
    /* --- Hero Structure --- */
    .hero-split {
        display: grid;
        grid-template-columns: 50% 50%;
        height: 100vh;
        min-height: 850px;
        width: 100%;
    }

    /* --- Left Content: High Contrast --- */
    .hero-left {
        background: var(--light-grey);
        display: flex;
        align-items: center;
        padding: 0 10%;
        position: relative;
    }

    .inner-box { max-width: 620px; }

    .kicker-text {
        color: var(--action-orange);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 11px;
        margin-bottom: 1.5rem;
        display: block;
    }

    .main-title {
        font-size: clamp(3.2rem, 5.5vw, 5.5rem);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -3px;
        color: var(--deep-black);
        margin-bottom: 2.5rem;
    }

    /* SHINY FOREST GREEN (The "Money" Look) */
    .shiny-green {
        background: var(--green-shimmer);
        background-size: 300% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: greenFlow 5s linear infinite;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        letter-spacing: -1px;
    }

    @keyframes greenFlow { 
        0% { background-position: 0% center; } 
        100% { background-position: 300% center; } 
    }

    /* --- CRO Points --- */
    .cro-points {
        display: grid;
        gap: 18px;
        margin-bottom: 4rem;
    }

    .cro-point {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1rem;
        font-weight: 700;
        color: #515154;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cro-point i { 
        color: var(--forest-green); 
        font-size: 1.2rem; 
    }

    /* --- Buttons that POP --- */
    .hero-btns { display: flex; gap: 20px; }

    .master-btn {
        padding: 22px 45px;
        border-radius: 4px;
        font-weight: 900;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .btn-orange { 
        background: var(--action-orange); 
        color: #fff; 
        box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
    }
    
    .btn-orange:hover { 
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 69, 0, 0.3);
    }

    .btn-dark { 
        background: var(--deep-black); 
        color: #fff; 
    }

    .btn-dark:hover { 
        background: var(--forest-green);
        transform: scale(1.05) translateY(-5px);
    }

    /* --- Right Visual --- */
    .hero-right { 
        position: relative; 
        overflow: hidden; 
        background: #000;
    }
    
    .swiper-img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        opacity: 0.9;
    }

    /* Mobile */
    @media (max-width: 1024px) {
        .hero-split { grid-template-columns: 1fr; height: auto; }
        .hero-left { padding: 100px 8%; order: 2; }
        .hero-right { height: 50vh; order: 1; }
        .hero-btns { flex-direction: column; }
        .master-btn { text-align: center; }
    }

    /* Hide "Talk to an Expert" button on phones (640px and below) */
    @media (max-width: 640px) {
        .btn-dark {
            display: none !important;
        }
    }


    /* --- The Master Gallery Layout --- */
    .expedition-wrap {
        background: #ffffff;
        padding: 140px 8%;
        font-family: 'Inter', sans-serif;
        color: #000000;
    }

    .expedition-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* --- Editorial Header --- */
    .exp-header {
        margin-bottom: 100px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .exp-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3rem, 5vw, 4.5rem);
        font-weight: 900;
        letter-spacing: -3px;
        line-height: 1;
    }

    .exp-title span {
        color: #FF4500;
        font-style: italic;
    }

    .exp-subtitle {
        max-width: 400px;
        color: #86868b;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* --- The 2-Card Power Grid --- */
    .exp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    /* --- The "Manish-Approved" Card Design --- */
    .exp-card {
        background: #FBFBFD; /* Apple-style Off White */
        border-radius: 40px;
        overflow: hidden;
        border: 1px solid #F2F2F2;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: pointer;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    /* THE COOL HOVER EFFORT: Magnetic Lift */
    .exp-card:hover {
        transform: translateY(-20px) scale(1.02);
        background: #ffffff;
        border-color: #0F3D2E;
        box-shadow: 0 50px 100px rgba(0,0,0,0.12);
    }

    .exp-visual {
        width: 100%;
        height: 480px;
        overflow: hidden;
        position: relative;
    }

    .exp-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

    .exp-card:hover .exp-visual img {
        transform: scale(1.1);
    }

    /* Badges */
    .status-badge {
        position: absolute;
        top: 30px;
        left: 30px;
        background: #FF4500;
        color: #fff;
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        z-index: 10;
        box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
    }

    .location-badge {
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        color: #000;
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 10;
    }

    /* Card Content */
    .exp-info {
        padding: 50px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .exp-meta {
        color: #0F3D2E; /* Forest Green Accent */
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        display: flex;
        gap: 20px;
    }

    .exp-meta i { color: #FF4500; }

    .exp-name {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .exp-hook {
        font-size: 1.15rem;
        color: #515154;
        line-height: 1.7;
        margin-bottom: 40px;
        font-weight: 400;
    }

    /* --- THE POP-UP BUTTON --- */
    .exp-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 40px;
        border-top: 1px solid #F2F2F2;
    }

    .pop-btn {
        background: #000000;
        color: #ffffff;
        padding: 20px 45px;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* THE BUTTON POP: Expands and Elevates on Hover */
    .exp-card:hover .pop-btn {
        background: #FF4500;
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 69, 0, 0.4);
    }

    .origin-tag {
        font-size: 12px;
        font-weight: 700;
        color: #86868b;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* --- Mobile --- */
    @media (max-width: 1024px) {
        .exp-grid { grid-template-columns: 1fr; }
        .exp-header { flex-direction: column; align-items: flex-start; gap: 30px; }
        .expedition-wrap { padding: 80px 5%; }
        .exp-visual { height: 350px; }
        .exp-name { font-size: 2.2rem; }
    }

    /* --- Tablet & Medium Screens (768px and below) --- */
    @media (max-width: 768px) {
        /* Stack cards vertically */
        .exp-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0;
        }

        .exp-card {
            width: 100%;
            border-radius: 24px;
        }

        /* Reduce image height on tablet */
        .exp-visual {
            height: 300px;
        }

        /* Adjust content padding */
        .exp-info {
            padding: 35px;
        }

        /* Adjust text sizes */
        .exp-name {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .exp-hook {
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .exp-meta {
            font-size: 12px;
            gap: 15px;
        }

        /* Button and tag layout */
        .exp-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            flex-wrap: wrap;
            border-top: 1px solid #E8E8E8;
            padding-top: 25px;
        }

        .pop-btn {
            flex: 1;
            min-width: 120px;
            padding: 14px 20px;
            font-size: 12px;
            border-radius: 12px;
        }

        .origin-tag {
            font-size: 11px;
            white-space: normal;
            text-align: right;
        }

        /* Header adjustments */
        .exp-title {
            font-size: 2rem;
        }

        .exp-subtitle {
            max-width: 100%;
            font-size: 1rem;
        }

        /* Remove hover effects on touch devices */
        .exp-card:hover {
            transform: none;
        }

        .exp-card:hover .pop-btn {
            transform: none;
        }
    }

    /* --- Mobile Phones (640px and below) --- */
    @media (max-width: 640px) {
        .expedition-wrap {
            padding: 60px 4%;
        }

        .exp-container {
            padding: 0 0;
        }

        /* Stack cards */
        .exp-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .exp-card {
            border-radius: 20px;
            background: #fff;
        }

        /* Smaller images on mobile */
        .exp-visual {
            height: 250px;
        }

        .exp-visual img {
            object-fit: cover;
        }

        /* Adjust content padding for mobile */
        .exp-info {
            padding: 25px 20px;
        }

        /* Typography for mobile */
        .exp-name {
            font-size: 1.5rem;
            line-height: 1.2;
            margin-bottom: 12px;
            font-weight: 800;
        }

        .exp-hook {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #666;
            margin-bottom: 20px;
        }

        .exp-meta {
            font-size: 11px;
            gap: 12px;
            margin-bottom: 15px;
        }

        .exp-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Footer with buttons stacked on small screens */
        .exp-footer {
            flex-direction: column;
            gap: 12px;
            padding-top: 20px;
        }

        .pop-btn {
            width: 100%;
            padding: 13px 16px;
            font-size: 11px;
            border-radius: 10px;
            font-weight: 700;
            text-align: center;
            background: #000;
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pop-btn:active {
            background: #FF4500;
            transform: scale(0.98);
        }

        .origin-tag {
            width: 100%;
            text-align: left;
            font-size: 10px;
            color: #999;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
        }

        /* Status and location badges */
        .status-badge {
            top: 15px;
            left: 15px;
            padding: 8px 16px;
            font-size: 9px;
        }

        .location-badge {
            top: 15px;
            right: 15px;
            padding: 8px 16px;
            font-size: 9px;
        }

        /* Header text */
        .exp-header {
            gap: 20px;
            margin-bottom: 30px;
        }

        .exp-title {
            font-size: 1.6rem;
            font-weight: 900;
        }

        .exp-subtitle {
            font-size: 0.95rem;
            max-width: 100%;
            color: #666;
        }
    }

    /* --- Small Phones (480px and below) --- */
    @media (max-width: 480px) {
        .expedition-wrap {
            padding: 50px 3%;
        }

        .exp-visual {
            height: 200px;
        }

        .exp-info {
            padding: 20px 15px;
        }

        .exp-name {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .exp-hook {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .pop-btn {
            padding: 12px 14px;
            font-size: 10px;
        }

        .exp-title {
            font-size: 1.4rem;
        }

        .exp-subtitle {
            font-size: 0.9rem;
        }
    }

    /* --- The Process Stage --- */
    .process-stage {
        background: #f5f5f7; /* Apple Grey */
        padding: 200px 8%;
        font-family: 'Inter', sans-serif;
        color: #000;
        position: relative;
    }

    .process-container { max-width: 1300px; margin: 0 auto; }

    /* --- THE HEADLINE: ARCHITECTURAL AUTHORITY --- */
    .process-header { margin-bottom: 140px; }

    .process-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 10px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 3rem;
        display: block;
    }

    .process-title {
        font-size: clamp(3.5rem, 8.5vw, 8.5rem);
        font-weight: 900;
        line-height: 0.82;
        letter-spacing: -6px;
    }

    .process-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E;
        letter-spacing: -2px;
    }

    /* --- THE TIMELINE UX --- */
    .journey-map {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 120px;
        position: relative;
    }

    .journey-step {
        background: #ffffff;
        padding: 60px 40px;
        border-radius: 48px;
        border: 1px solid #e5e5e7;
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 450px;
    }

    /* THE HOVER: Magnetic Lift & Line Glow */
    .journey-step:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 60px 120px rgba(0,0,0,0.06);
        border-color: #0F3D2E;
    }

    .step-number {
        font-size: 12px;
        font-weight: 900;
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 40px;
        display: block;
    }

    .step-icon {
        font-size: 32px;
        color: #0F3D2E;
        margin-bottom: 30px;
        transition: 0.3s ease;
    }

    .journey-step:hover .step-icon {
        transform: rotate(-10deg) scale(1.2);
    }

    .step-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .step-desc {
        font-size: 1rem;
        color: #86868b;
        line-height: 1.6;
    }

    /* --- THE "INVITATION" STAGE --- */
    .invite-stage {
        text-align: center;
        padding: 100px 0;
        background: #ffffff;
        border-radius: 56px;
        border: 1px solid #e5e5e7;
        position: relative;
        overflow: hidden;
    }

    .invite-text {
        margin-bottom: 45px;
        font-size: 1.6rem;
        font-weight: 600;
        color: #86868b;
        letter-spacing: -0.5px;
    }

    .pop-action-btn {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 30px 90px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 17px;
        text-transform: uppercase;
        letter-spacing: 5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    }

    /* THE POP EFFORT */
    .pop-action-btn:hover {
        transform: scale(1.15) translateY(-15px);
        background: #FF4500;
        box-shadow: 0 45px 90px rgba(255, 69, 0, 0.45);
    }

    /* Mobile Logic */
    @media (max-width: 1200px) {
        .journey-map { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
        .journey-map { grid-template-columns: 1fr; }
        .process-title { font-size: 3.5rem; letter-spacing: -2px; }
        .invite-stage { padding: 60px 30px; }
        .pop-action-btn { padding: 25px 50px; font-size: 14px; width: 100%; }
    }

    /* --- The Gallery Stage --- */
    .gallery-section {
        background: #ffffff; /* Stark White for high-end contrast */
        padding: 180px 8%;
        font-family: 'Inter', sans-serif;
        color: #000;
    }

    .gallery-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    /* --- THE HEADLINE: ARCHITECTURAL POWER --- */
    .gallery-header { margin-bottom: 120px; }

    .gallery-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 12px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2.5rem;
        display: block;
    }

    .gallery-title {
        font-size: clamp(3.5rem, 8.5vw, 8rem);
        font-weight: 900;
        line-height: 0.82;
        letter-spacing: -6px;
    }

    .gallery-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E;
        letter-spacing: -2px;
    }

    /* --- THE BENTO GRID UX --- */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 450px);
        gap: 25px;
        margin-bottom: 100px;
    }

    .gallery-item {
        position: relative;
        border-radius: 40px;
        overflow: hidden;
        background: #f5f5f7;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: crosshair;
    }

    /* ASYMMETRIC WEIGHTING */
    .g-large { grid-column: span 2; grid-row: span 2; }
    .g-tall { grid-row: span 2; }

    /* THE HOVER: Magnetic Zoom & Depth */
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        filter: grayscale(0.2);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
        filter: grayscale(0);
    }

    /* GLASS TAGS */
    .g-tag {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        padding: 15px 30px;
        border-radius: 100px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .gallery-item:hover .g-tag {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- THE POP CTA --- */
    .gallery-footer {
        text-align: center;
        padding: 100px 0;
        background: #f5f5f7;
        border-radius: 56px;
    }

    .gallery-pop-btn {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 28px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gallery-pop-btn:hover {
        transform: scale(1.15) translateY(-10px);
        background: #FF4500;
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.4);
    }

    /* Mobile Logic */
    @media (max-width: 1024px) {
        .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
        .g-large, .g-tall { grid-column: span 2; height: 400px; }
        .gallery-title { font-size: 3.5rem; letter-spacing: -2px; }
    }

    /* --- The Proof Stage --- */
    .proof-section {
        background: #f5f5f7; /* Apple Grey */
        padding: 180px 8%;
        font-family: 'Inter', sans-serif;
        color: #000;
    }

    .proof-container { max-width: 1400px; margin: 0 auto; }

    /* --- THE HEADLINE: ARCHITECTURAL AUTHORITY --- */
    .proof-header { margin-bottom: 120px; text-align: left; }

    .proof-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 8px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2.5rem;
        display: block;
    }

    .proof-title {
        font-size: clamp(3.5rem, 8.5vw, 8rem);
        font-weight: 900;
        line-height: 0.85;
        letter-spacing: -6px;
    }

    .proof-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E;
        letter-spacing: -2px;
    }

    /* --- The Editorial Story Grid --- */
    .proof-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 100px;
    }

    .story-card {
        background: #ffffff;
        padding: 60px 45px;
        border-radius: 56px;
        border: 1px solid #e5e5e7;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    /* HOVER: 3D Magnetic Lift */
    .story-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 60px 120px rgba(0,0,0,0.06);
        border-color: #0F3D2E;
    }

    .stars { color: #FF4500; font-size: 12px; margin-bottom: 30px; letter-spacing: 3px; }

    .story-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 40px;
        color: #000;
        letter-spacing: -0.5px;
    }

    .story-text span {
        display: block;
        margin-top: 15px;
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 400;
        color: #86868b;
        font-style: normal;
    }

    .story-author {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-top: 30px;
        border-top: 1px solid #f2f2f2;
    }

    .author-img {
        width: 50px;
        height: 50px;
        background: #eee;
        border-radius: 50%;
        overflow: hidden;
    }

    .author-name { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
    .author-meta { font-size: 11px; color: #86868b; text-transform: uppercase; }

    /* --- THE POP-UP CTA: THE STAGE --- */
    .proof-footer {
        text-align: center;
        padding: 100px 0;
        background: #ffffff;
        border-radius: 56px;
        border: 1px solid #e5e5e7;
        margin-top: 50px;
    }

    .proof-btn {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 28px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 4px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .proof-btn:hover {
        transform: scale(1.15) translateY(-12px);
        background: #FF4500;
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.4);
    }

    /* Mobile Logic */
    @media (max-width: 1100px) {
        .proof-grid { grid-template-columns: 1fr; }
        .proof-title { font-size: 3.5rem; letter-spacing: -2px; }
        .story-card { padding: 50px 30px; }
    }


    /* --- The Animation (The "Pop") --- */
    @keyframes slideUpFade {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .soul-section {
        background: #ffffff;
        padding: 220px 8%;
        font-family: 'Inter', sans-serif;
        color: var(--deep-black);
        overflow: hidden;
    }

    .soul-container {
        max-width: 1300px;
        margin: 0 auto;
        animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* --- THE HEADLINE: ARCHITECTURAL HUMILITY --- */
    .soul-header { margin-bottom: 100px; }

    .soul-kicker {
        color: var(--fire);
        text-transform: uppercase;
        letter-spacing: 12px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2.5rem;
        display: block;
    }

    .soul-title {
        font-size: clamp(3.5rem, 8vw, 7.5rem);
        font-weight: 900;
        line-height: 0.85;
        letter-spacing: -6px;
    }

    .soul-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--forest);
        letter-spacing: -2px;
    }

    /* --- THE FLOATING LETTER CARD --- */
    .soul-card {
        background: var(--apple-grey);
        padding: 100px;
        border-radius: 64px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: var(--soft-shadow);
        position: relative;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* THE HOVER: High-End Elevation */
    .soul-card:hover {
        transform: translateY(-20px) scale(1.01);
        box-shadow: 0 80px 160px rgba(0,0,0,0.12);
        background: #ffffff; /* Turns white on hover for "Focus" */
    }

    .soul-content {
        max-width: 850px;
        font-size: 1.7rem;
        line-height: 1.4;
        font-weight: 400;
        color: #1d1d1f;
    }

    .soul-content strong {
        font-weight: 900;
        color: var(--deep-black);
        border-bottom: 3px solid var(--fire);
    }

    .soul-subtext {
        margin-top: 50px;
        font-size: 1.2rem;
        color: #86868b;
        line-height: 1.8;
        font-weight: 500;
        display: block;
    }

    /* --- THE SIGNATURE TOUCH --- */
    .soul-signature {
        margin-top: 60px;
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-style: italic;
        color: var(--forest);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .soul-signature::before {
        content: "";
        width: 60px;
        height: 1px;
        background: var(--forest);
        display: inline-block;
    }

    /* --- THE FOOTER COMMANDS --- */
    .soul-footer {
        margin-top: 100px;
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .pop-expert-btn {
        display: inline-block;
        background: var(--deep-black);
        color: #fff;
        padding: 30px 90px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 17px;
        text-transform: uppercase;
        letter-spacing: 5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .pop-expert-btn:hover {
        transform: scale(1.15) translateY(-10px);
        background: var(--fire);
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.4);
    }

    .soul-note {
        font-size: 14px;
        font-weight: 700;
        color: #86868b;
        max-width: 320px;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }

    /* Mobile Logic */
    @media (max-width: 1024px) {
        .soul-card { padding: 60px 30px; border-radius: 40px; }
        .soul-title { font-size: 3.5rem; letter-spacing: -3px; }
        .soul-content { font-size: 1.3rem; }
        .soul-footer { flex-direction: column; text-align: center; gap: 30px; }
    }


   
    .legacy-section {
        background: var(--grey-apple);
        padding: 180px 8%;
        font-family: 'Inter', sans-serif;
        color: var(--deep-black);
    }

    .legacy-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    /* --- THE HEADLINE: ARCHITECTURAL AUTHORITY --- */
    .legacy-header { 
        margin-bottom: 120px; 
    }

    .legacy-kicker {
        color: var(--fire);
        text-transform: uppercase;
        letter-spacing: 10px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2.5rem;
        display: block;
    }

    .legacy-title {
        font-size: clamp(3.5rem, 8.5vw, 8rem);
        font-weight: 900;
        line-height: 0.9; /* Fixed from 0.8 to allow descenders space */
        letter-spacing: -5px; /* Refined for readability */
    }

    .legacy-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--forest);
        letter-spacing: -2px;
        display: block;
        margin-top: 10px;
    }

    /* --- THE ASYMMETRIC GRID --- */
    .legacy-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
        align-items: center;
    }

    .legacy-narrative p {
        font-size: 1.6rem;
        line-height: 1.4;
        color: #1d1d1f;
        margin-bottom: 40px;
        font-weight: 400;
    }

    .legacy-narrative strong {
        font-weight: 900;
        color: var(--fire);
        display: block;
        margin-top: 10px;
        font-size: 1.8rem;
    }

    /* --- THE VAULT: PHYSICAL OBJECT DESIGN --- */
    .vault-card {
        background: var(--deep-black);
        color: #fff;
        padding: 80px 60px;
        border-radius: var(--radius);
        position: relative;
        transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    }

    .vault-card:hover {
        transform: translateY(-15px) rotate(1deg);
        box-shadow: 0 80px 160px rgba(0,0,0,0.3);
        border-color: var(--fire);
    }

    .vault-status {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pulse-dot {
        width: 10px; height: 10px;
        background: var(--fire);
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
        box-shadow: 0 0 15px var(--fire);
        animation: pulseHeart 2s infinite;
    }

    @keyframes pulseHeart { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.3); } }

    .status-label { font-weight: 900; text-transform: uppercase; letter-spacing: 3px; font-size: 11px; }

    .vault-title {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .vault-desc {
        font-size: 1.1rem;
        color: #a1a1a6;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .vault-badge {
        display: inline-block;
        border: 1px solid var(--fire);
        padding: 10px 20px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        color: var(--fire);
        letter-spacing: 2px;
    }

    /* --- THE POP-UP CTA STAGE --- */
    .legacy-footer {
        margin-top: 100px;
        background: #ffffff;
        padding: 80px;
        border-radius: var(--radius);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #e5e5e7;
    }

    .footer-context {
        max-width: 450px;
        font-size: 1.1rem;
        color: #86868b;
        line-height: 1.5;
    }

    .footer-context strong { color: var(--deep-black); font-weight: 900; font-size: 1.4rem; display: block; margin-bottom: 10px; }

    .pop-btn {
        background: var(--fire);
        color: #fff;
        padding: 28px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 4px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 40px rgba(255, 69, 0, 0.2);
    }

    .pop-btn:hover {
        transform: scale(1.1) translateY(-10px);
        background: var(--deep-black);
        box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }

    /* Mobile Logic */
    @media (max-width: 1024px) {
        .legacy-grid { grid-template-columns: 1fr; gap: 60px; }
        .legacy-footer { flex-direction: column; text-align: center; gap: 40px; padding: 40px; }
        .legacy-title { font-size: 3.5rem; letter-spacing: -2px; }
        .vault-card { padding: 50px 30px; }
    }


    /* --- The Editorial Stage --- */
    .manifesto-wrap {
        background: #f5f5f7; /* Apple Grey */
        padding: 160px 8%;
        font-family: 'Inter', sans-serif;
        color: #1d1d1f;
    }

    .manifesto-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* --- The "Manish" Headline Strategy --- */
    .manifesto-top {
        margin-bottom: 120px;
        max-width: 1000px;
    }

    .m-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 7px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2rem;
        display: block;
    }

    .m-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(3.2rem, 7vw, 6rem);
        font-weight: 900;
        line-height: 0.9;
        letter-spacing: -4px;
        color: #000;
    }

    .m-title span {
        color: #0F3D2E; /* Forest Green */
        font-style: italic;
        letter-spacing: -1px;
    }

    /* --- The "Secret Sauce" Grid (Unique Content) --- */
    .m-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr; /* Asymmetric for editorial look */
        gap: 40px;
        margin-bottom: 100px;
    }

    .m-card {
        background: #ffffff;
        border-radius: 48px;
        padding: 80px 60px;
        border: 1px solid #e5e5e7;
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* HOVER: The Magnetic Lift */
    .m-card:hover {
        transform: translateY(-20px) scale(1.01);
        box-shadow: 0 60px 120px rgba(0,0,0,0.07);
        border-color: #0F3D2E;
    }

    .m-card i {
        font-size: 44px;
        color: #0F3D2E;
        margin-bottom: 40px;
    }

    .m-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .m-card p {
        font-size: 1.25rem;
        color: #515154;
        line-height: 1.7;
        font-weight: 400;
    }

    /* Feature Highlights */
    .m-pill-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
    }

    .m-pill {
        background: #f5f5f7;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #1d1d1f;
    }

    /* --- THE BUTTON THAT POPS --- */
    .m-footer {
        text-align: center;
        padding: 60px 0;
    }

    .pop-action {
        display: inline-block;
        background: #FF4500;
        color: #fff;
        padding: 26px 70px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 3px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 15px 35px rgba(255, 69, 0, 0.3);
    }

    /* THE POP EFFORT */
    .pop-action:hover {
        transform: scale(1.15) translateY(-10px);
        background: #000;
        box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }

    /* --- Mobile --- */
    @media (max-width: 1024px) {
        .m-grid { grid-template-columns: 1fr; }
        .manifesto-wrap { padding: 100px 5%; }
        .m-card { padding: 60px 30px; }
        .m-title { font-size: 3.2rem; letter-spacing: -2px; }
    }



    /* --- The Team Stage --- */
    .team-section {
        background: #f5f5f7;
        padding: 160px 8%;
        font-family: 'Inter', sans-serif;
        color: #1d1d1f;
    }

    .team-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .team-header {
        margin-bottom: 100px;
        max-width: 800px;
    }

    .team-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-weight: 900;
        font-size: 12px;
        margin-bottom: 2rem;
        display: block;
    }

    .team-title {
        font-family: 'Inter', sans-serif;
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -4px;
        color: #000;
    }

    .team-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E;
    }

    /* --- The Grid --- */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 30px;
    }

    .team-card {
        background: #ffffff;
        border-radius: 40px;
        overflow: hidden;
        border: 1px solid #e5e5e7;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
    }

    .team-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 50px 100px rgba(0,0,0,0.08);
        border-color: #0F3D2E;
    }

    .team-visual {
        width: 100%;
        height: 480px;
        background: #eee;
        overflow: hidden;
    }

    .team-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.8s ease;
    }

    .team-card:hover .team-visual img { transform: scale(1.1); }

    .team-info { padding: 50px 40px; }

    .member-name {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 10px;
        color: #000;
        letter-spacing: -1px;
    }

    .member-vibe {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-style: italic;
        color: #0F3D2E;
        margin-bottom: 25px;
        display: block;
    }

    .member-story {
        font-size: 1.05rem;
        color: #86868b;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .member-specialty {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #FF4500;
        padding: 10px 20px;
        background: rgba(255, 69, 0, 0.05);
        border-radius: 50px;
    }


    /* --- Heading & CTA Overhaul --- */
    .z-section {
        background: var(--grey-apple);
        padding: 180px 8%;
        font-family: 'Inter', sans-serif;
        color: var(--deep-black);
    }

    .z-container { max-width: 1400px; margin: 0 auto; }

    /* THE HEADLINE: Massive, Bold, Unavoidable */
    .z-header { margin-bottom: 120px; }

    .z-kicker {
        color: var(--pop-orange);
        text-transform: uppercase;
        letter-spacing: 8px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2rem;
        display: block;
    }

    .z-title {
        font-size: clamp(3.5rem, 8.5vw, 8rem); /* Extreme Scale */
        font-weight: 900;
        line-height: 0.85; /* Tight line height for impact */
        letter-spacing: -6px; /* Apple-style tight tracking */
        margin-left: -5px; /* Alignment fix for massive fonts */
    }

    .z-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: var(--forest);
        letter-spacing: -2px;
    }

    /* --- The Bento Grid: Minimalist Product Style --- */
    .z-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 100px;
    }

    .z-card {
        background: #ffffff;
        padding: 80px 50px;
        border-radius: var(--radius);
        border: 1px solid #e5e5e7;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* HOVER EFFORT: The 3D Magnetic Lift */
    .z-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 60px 120px rgba(0,0,0,0.08);
        border-color: var(--forest);
    }

    .z-icon {
        font-size: 40px;
        color: var(--forest);
        margin-bottom: 40px;
        transition: 0.3s ease;
    }

    .z-card:hover .z-icon { color: var(--pop-orange); transform: rotate(-10deg); }

    .z-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 25px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .z-card p {
        font-size: 1.15rem;
        color: var(--text-sub);
        line-height: 1.6;
    }

    /* --- THE CTA: The "High-Elevation" Pop --- */
    .z-footer-action {
        text-align: center;
        padding: 80px 0;
        background: #ffffff;
        border-radius: var(--radius);
        border: 1px solid #e5e5e7;
        margin-top: 50px;
    }

    .z-pop-button {
        display: inline-block;
        background: var(--deep-black);
        color: #ffffff;
        padding: 28px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 4px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    /* THE BUTTON POP: Massive elevation and color flip */
    .z-pop-button:hover {
        transform: scale(1.15) translateY(-12px);
        background: var(--pop-orange);
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.4);
    }

    .z-footer-text {
        margin-bottom: 40px;
        font-size: 1.4rem;
        font-weight: 500;
        color: var(--text-sub);
    }

    /* Mobile Logic */
    @media (max-width: 1100px) {
        .z-grid { grid-template-columns: 1fr; }
        .z-section { padding: 100px 5%; }
        .z-title { font-size: 3.5rem; letter-spacing: -2px; }
        .z-card { padding: 60px 30px; }
    }


    /* --- The Safety Stage --- */
    .safety-stage {
        background: #f5f5f7; /* Apple Grey */
        padding: 200px 8%;
        font-family: 'Inter', sans-serif;
        color: #000;
    }

    .safety-container { max-width: 1400px; margin: 0 auto; }

    /* --- THE HEADLINE: ARCHITECTURAL AUTHORITY --- */
    .safety-header { margin-bottom: 120px; }

    .safety-kicker {
        color: #FF4500; /* Orangered */
        text-transform: uppercase;
        letter-spacing: 10px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 3rem;
        display: block;
    }

    .safety-title {
        font-size: clamp(3.5rem, 8.5vw, 8rem);
        font-weight: 900;
        line-height: 0.82;
        letter-spacing: -6px;
    }

    .safety-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E; /* Forest Green */
        letter-spacing: -2px;
    }

    /* --- The Technical Bento Grid --- */
    .safety-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 100px;
    }

    .safety-card {
        background: #ffffff;
        padding: 80px 60px;
        border-radius: 56px;
        border: 1px solid #e5e5e7;
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        overflow: hidden;
    }

    /* HOVER: Magnetic Lift & Glow */
    .safety-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 60px 120px rgba(0,0,0,0.08);
        border-color: #0F3D2E;
    }

    .safety-icon {
        font-size: 44px;
        color: #0F3D2E;
        margin-bottom: 40px;
    }

    .safety-card:hover .safety-icon {
        color: #FF4500;
        transform: scale(1.1);
    }

    .safety-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .safety-card p {
        font-size: 1.2rem;
        color: #515154;
        line-height: 1.7;
        font-weight: 400;
    }

    /* --- THE POP-UP CALL TO ACTION --- */
    .safety-footer {
        text-align: center;
        padding: 100px 0;
        background: #ffffff;
        border-radius: 56px;
        border: 1px solid #e5e5e7;
        margin-top: 50px;
    }

    .safety-btn {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 28px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .safety-btn:hover {
        transform: scale(1.15) translateY(-10px);
        background: #FF4500;
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.4);
    }

    /* Mobile */
    @media (max-width: 1024px) {
        .safety-grid { grid-template-columns: 1fr; }
        .safety-title { font-size: 3.5rem; letter-spacing: -2px; }
        .safety-card { padding: 60px 30px; }
    }

    /* --- The FAQ Stage --- */
    .faq-stage {
        background: #f5f5f7; /* Apple Grey */
        padding: 200px 8%;
        font-family: 'Inter', sans-serif;
        color: #000;
    }

    .faq-container { max-width: 1200px; margin: 0 auto; }

    /* --- THE HEADLINE: ARCHITECTURAL AUTHORITY --- */
    .faq-header { margin-bottom: 120px; text-align: left; }

    .faq-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 10px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 3rem;
        display: block;
    }

    .faq-title {
        font-size: clamp(3.5rem, 8.5vw, 8rem);
        font-weight: 900;
        line-height: 0.82;
        letter-spacing: -6px;
    }

    .faq-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E;
        letter-spacing: -2px;
    }

    /* --- THE MINIMALIST ACCORDION --- */
    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 100px;
    }

    .faq-item {
        background: #ffffff;
        border-radius: 32px;
        border: 1px solid #e5e5e7;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-item:hover {
        border-color: #0F3D2E;
        transform: translateY(-5px);
    }

    .faq-trigger {
        width: 100%;
        padding: 40px 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
    }

    .faq-question {
        font-size: 1.4rem;
        font-weight: 800;
        color: #000;
        letter-spacing: -0.5px;
        max-width: 90%;
    }

    .faq-icon {
        font-size: 18px;
        color: #FF4500;
        transition: 0.4s;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        padding: 0 50px;
    }

    .faq-text {
        padding-bottom: 40px;
        font-size: 1.15rem;
        line-height: 1.7;
        color: #515154;
    }

    /* Active State */
    .faq-item.active { border-color: #0F3D2E; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
    .faq-item.active .faq-icon { transform: rotate(180deg); }
    .faq-item.active .faq-content { max-height: 500px; }

    /* --- THE POP-UP CTA --- */
    .faq-footer {
        text-align: center;
        padding: 100px 0;
        background: #ffffff;
        border-radius: 56px;
        border: 1px solid #e5e5e7;
    }

    .faq-btn {
        display: inline-block;
        background: #000;
        color: #fff;
        padding: 28px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .faq-btn:hover {
        transform: scale(1.15) translateY(-10px);
        background: #FF4500;
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.4);
    }

    /* Mobile */
    @media (max-width: 1024px) {
        .faq-title { font-size: 3.5rem; letter-spacing: -2px; }
        .faq-trigger { padding: 30px; }
        .faq-content { padding: 0 30px; }
    }

    /* --- The Lead Stage --- */
    .lead-section {
        background: #f5f5f7; /* Apple Grey */
        padding: 180px 8%;
        font-family: 'Inter', sans-serif;
        color: #000;
    }

    .lead-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 120px;
        align-items: center;
    }

    /* --- THE HEADLINE: ARCHITECTURAL POWER --- */
    .lead-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 12px;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 2.5rem;
        display: block;
    }

    .lead-title {
        font-size: clamp(3.5rem, 8vw, 7.5rem);
        font-weight: 900;
        line-height: 0.85;
        letter-spacing: -6px;
        margin-bottom: 40px;
    }

    .lead-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        color: #0F3D2E;
        letter-spacing: -2px;
    }

    .lead-desc {
        font-size: 1.4rem;
        color: #86868b;
        line-height: 1.5;
        max-width: 550px;
    }

    /* --- THE HARDWARE FORM UX --- */
    .lead-card {
        background: #ffffff;
        padding: 70px;
        border-radius: 60px;
        border: 1px solid #e5e5e7;
        box-shadow: 0 40px 100px rgba(0,0,0,0.04);
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .lead-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 80px 160px rgba(0,0,0,0.08);
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .full-width { grid-column: span 2; }

    /* Input Styling */
    .form-input, .form-select {
        width: 100%;
        padding: 24px 30px;
        border-radius: 24px;
        border: 2px solid #f5f5f7;
        background: #f5f5f7;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        outline: none;
        appearance: none; /* Removes default arrow */
    }

    .form-input:focus, .form-select:focus {
        background: #fff;
        border-color: #FF4500;
        box-shadow: 0 10px 30px rgba(255, 69, 0, 0.05);
    }

    /* Custom Dropdown Arrow */
    .select-wrapper { position: relative; }
    .select-wrapper::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #86868b;
        font-size: 12px;
    }

    /* THE POP BUTTON */
    .lead-pop-btn {
        width: 100%;
        background: #000;
        color: #fff;
        padding: 30px;
        border-radius: 100px;
        border: none;
        font-weight: 900;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 5px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        margin-top: 10px;
    }

    .lead-pop-btn:hover {
        transform: scale(1.05) translateY(-5px);
        background: #FF4500;
        box-shadow: 0 40px 80px rgba(255, 69, 0, 0.3);
    }

    .security-note {
        display: block;
        text-align: center;
        margin-top: 30px;
        font-size: 11px;
        color: #86868b;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 800;
    }

    /* Mobile */
    @media (max-width: 1024px) {
        .lead-container { grid-template-columns: 1fr; gap: 60px; }
        .form-grid { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; }
        .lead-title { font-size: 4rem; letter-spacing: -3px; }
        .lead-card { padding: 40px 25px; border-radius: 40px; }
    }



    
    /* --- The Master Layout --- */
    .cro-impact {
        background: #ffffff;
        padding: 160px 8%;
        font-family: 'Inter', sans-serif;
        color: #1d1d1f;
        line-height: 1.5;
    }

    .cro-container {
        max-width: 1300px;
        margin: 0 auto;
    }

    /* --- Header Strategy --- */
    .cro-header {
        max-width: 800px;
        margin-bottom: 100px;
    }

    .cro-kicker {
        color: #FF4500;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 800;
        font-size: 13px;
        margin-bottom: 1rem;
        display: block;
    }

    .cro-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.8rem, 5.5vw, 5rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -3px;
        color: #000;
    }

    /* --- The 3-Pillar Bento Grid (Conversion Focused) --- */
    .cro-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 80px;
    }

    .cro-card {
        padding: 60px 40px;
        background: #fbfbfd;
        border-radius: 32px;
        border: 1px solid #f2f2f2;
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cro-card:hover {
        transform: scale(1.02);
        background: #fff;
        box-shadow: 0 40px 100px rgba(0,0,0,0.08);
        border-color: #0F3D2E;
    }

    /* Vibrant Icon Styling */
    .cro-icon {
        width: 80px;
        height: 80px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 40px;
        transition: transform 0.3s ease;
    }

    .cro-card:hover .cro-icon {
        transform: rotate(-10deg) scale(1.1);
    }

    .bg-green { background: rgba(15, 61, 46, 0.08); color: #0F3D2E; }
    .bg-orange { background: rgba(255, 69, 0, 0.08); color: #FF4500; }
    .bg-black { background: rgba(0, 0, 0, 0.05); color: #000; }

    .cro-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 20px;
        color: #000;
        line-height: 1.2;
    }

    .cro-card p {
        font-size: 1.1rem;
        color: #515154;
        line-height: 1.6;
    }

    /* --- The "Trust Bar" (CRO Secret Sauce) --- */
    .trust-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #0F3D2E;
        padding: 40px 60px;
        border-radius: 100px;
        color: #fff;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .stat-item i { color: #FF4500; font-size: 20px; }
    .stat-item span { font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }

    .stat-item strong { color: #fff; display: block; font-size: 24px; }

    /* --- Mobile Responsive --- */
    @media (max-width: 1024px) {
        .cro-grid { grid-template-columns: 1fr; }
        .trust-bar { flex-direction: column; gap: 40px; border-radius: 32px; padding: 40px; text-align: center; }
        .cro-impact { padding: 100px 5%; }
        .cro-card { padding: 40px 30px; }
    }


