/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a5f3f;
    --primary-dark: #0f3d28;
    --accent: #f4a442;
    --dark: #1a1a1a;
    --gray: #4a4a4a;
    --light-gray: #e8e8e8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px var(--shadow);
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    color: var(--dark);
}

.btn-accept:hover {
    background: #e89430;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark);
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 30px var(--shadow);
    max-width: 90%;
    width: auto;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-offset-block {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    margin-left: 5%;
}

.hero-text-layer {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 50px var(--shadow);
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text-layer h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text-layer p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70vh;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(26, 95, 63, 0.3);
}

/* Intro Stagger */
.intro-stagger {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-top: 4rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-left p {
    font-size: 1.125rem;
    color: var(--gray);
}

.intro-right {
    flex: 1;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
}

.intro-right p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Stats Overlap */
.stats-overlap {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.stat-card {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 4px 20px var(--shadow);
}

.stat-1 {
    transform: rotate(-2deg) translateY(-10px);
}

.stat-2 {
    transform: translateY(20px);
    background: var(--accent);
    color: var(--dark);
}

.stat-3 {
    transform: rotate(1deg) translateY(-5px);
}

.stat-card h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.125rem;
}

/* Problem Diagonal */
.problem-diagonal {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.diagonal-content {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
}

.diagonal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 280px;
}

.problem-item h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.problem-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Insight Split */
.insight-split {
    display: flex;
    min-height: 700px;
    margin: 6rem 0;
}

.insight-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.insight-content {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.insight-content h2 {
    font-size: 2.25rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.insight-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Services Compact */
.services-compact {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-compact h2 {
    font-size: 2.75rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.services-lead {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 2.5rem;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-5px);
}

.sc-1 {
    margin-top: 2rem;
}

.sc-3 {
    margin-top: 1rem;
}

.sc-5 {
    margin-top: 1.5rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.service-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.btn-select {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background: var(--primary-dark);
}

.service-card.selected {
    border-color: var(--accent);
    background: #fffaf3;
}

/* Trust Layer */
.trust-layer {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 2rem;
    margin: 4rem 0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.trust-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Testimonial Offset */
.testimonial-offset {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 320px;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.tb-1 {
    transform: translateY(-20px);
}

.tb-2 {
    transform: translateY(20px);
}

.testimonial-block blockquote p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 1rem;
    color: var(--gray);
    font-style: normal;
}

/* CTA Diagonal */
.cta-diagonal {
    background: var(--accent);
    padding: 5rem 2rem;
    margin: 4rem 0;
    transform: skewY(-1deg);
}

.cta-content {
    transform: skewY(1deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-privacy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--gray);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Urgency Bar */
.urgency-bar {
    background: #fff9e6;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    padding: 1.5rem 2rem;
}

.urgency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-content p {
    font-size: 1rem;
    color: var(--dark);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.fc-1 {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #b8b8b8;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    color: #b8b8b8;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 10rem;
    }

    .hero-offset-block {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-stagger {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-left {
        padding-top: 0;
    }

    .insight-split {
        flex-direction: column;
    }

    .problem-grid {
        flex-direction: column;
    }

    .trust-points {
        flex-direction: column;
    }

    .nav-floating {
        top: 1rem;
        padding: 1rem;
        max-width: 95%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 5rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 30px var(--shadow);
        display: none;
        width: 90%;
        max-width: 400px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-text-layer h1 {
        font-size: 2rem;
    }

    .stats-overlap {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        transform: none !important;
    }

    .testimonial-offset {
        flex-direction: column;
    }

    .testimonial-block {
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}