* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.hamburger-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-btn {
    background: #2c3e50;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hamburger-btn span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #2c3e50;
    padding: 100px 40px 40px;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-menu a:hover {
    border-bottom-color: #3498db;
}

.hero-asymmetric {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 20px;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-left: 8%;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 22px;
    color: #5a6c7d;
    max-width: 480px;
    line-height: 1.5;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-right: -10%;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    object-fit: cover;
    background-color: #e9ecef;
}

.hero-accent-box {
    position: absolute;
    bottom: 120px;
    left: 10%;
    background: #3498db;
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(52,152,219,0.3);
    max-width: 320px;
    z-index: 3;
}

.hero-accent-box p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.intro-staggered {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 1;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
    line-height: 1.2;
}

.intro-left p {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.7;
}

.intro-right-offset {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.intro-right-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f1f3f5;
}

.intro-note {
    position: absolute;
    bottom: -40px;
    right: -60px;
    background: #e74c3c;
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    max-width: 280px;
    box-shadow: 0 8px 24px rgba(231,76,60,0.25);
}

.intro-note p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.problem-amplify {
    background: #f8f9fa;
    padding: 100px 20px;
}

.problem-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.problem-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.problem-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.problem-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.problem-item.large {
    flex: 1 1 55%;
    min-width: 320px;
}

.problem-item.small-offset {
    flex: 1 1 35%;
    min-width: 280px;
    margin-top: 60px;
}

.problem-item.medium-shifted {
    flex: 1 1 45%;
    min-width: 300px;
    margin-left: auto;
    margin-top: -40px;
}

.solution-reveal {
    padding: 120px 20px;
}

.solution-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-image-bg {
    flex: 1;
    position: relative;
}

.solution-image-bg img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #dee2e6;
}

.solution-text-float {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    margin-left: -80px;
    z-index: 2;
}

.solution-text-float h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a252f;
}

.solution-text-float p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #2980b9;
}

.services-preview {
    background: #f8f9fa;
    padding: 100px 20px;
}

.services-title-shifted {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 12%;
    font-size: 48px;
    color: #1a252f;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(33.333% - 27px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.offset-up {
    margin-top: -40px;
}

.service-card.offset-down {
    margin-top: 40px;
}

.service-card.offset-center {
    margin-top: 0;
}

.service-card.offset-up-right {
    margin-top: -30px;
}

.service-card.offset-left {
    margin-top: 20px;
}

.service-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e9ecef;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-select {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #2980b9;
}

.trust-building {
    padding: 120px 20px;
}

.trust-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a252f;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    font-size: 18px;
    color: #5a6c7d;
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
    font-weight: 700;
}

.trust-testimonials-scattered {
    flex: 1;
    position: relative;
    height: 500px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: absolute;
}

.testimonial-card.pos-1 {
    top: 0;
    left: 0;
    width: 380px;
}

.testimonial-card.pos-2 {
    bottom: 60px;
    right: 0;
    width: 360px;
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.form-section-offset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #229954;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ffffff;
    padding: 80px 20px 40px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 13px;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 30px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    transition: bottom 0.3s;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    color: #27ae60;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .hero-text-block h1 {
        font-size: 52px;
    }

    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-text-block {
        padding-left: 0;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

    .hero-image-overlap {
        margin-right: 0;
    }

    .hero-accent-box {
        position: static;
        margin-top: 30px;
    }

    .intro-staggered {
        flex-direction: column;
        gap: 40px;
    }

    .intro-right-offset {
        margin-top: 0;
    }

    .intro-note {
        position: static;
        margin-top: 20px;
    }

    .problem-item {
        flex: 1 1 100% !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .solution-wrapper {
        flex-direction: column;
    }

    .solution-text-float {
        margin-left: 0;
    }

    .services-title-shifted {
        padding-left: 0;
        text-align: center;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 40px;
    }

    .trust-testimonials-scattered {
        height: auto;
        position: static;
    }

    .testimonial-card {
        position: static !important;
        margin-bottom: 20px;
        width: 100% !important;
    }

    .form-container-asymmetric {
        padding: 40px 30px;
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        gap: 40px;
    }
}