/* Main Content */
    #main {
        scroll-margin-top: calc(var(--header-height) + 8px);
    }
    
    body {
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.2;
    }

    /* ===== HERO SECTION - ELEVATED ===== */
    .hero-section {
        min-height: 90vh;
        background: linear-gradient(135deg, #1a0f08 0%, var(--espresso) 50%, #2a1810 100%);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        /*padding: 5.6rem 4rem 5rem;*/
    }
    
    .hero-bg-animation {
        position: absolute;
        inset: 0;
        opacity: 0.03;
        background: 
            radial-gradient(circle at 20% 80%, var(--warm-beige) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, var(--warm-taupe) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, var(--light-beige) 0%, transparent 50%);
        animation: bgFloat 20s ease-in-out infinite;
    }
    
    @keyframes bgFloat {
        0%, 100% { transform: scale(1) rotate(0deg); }
        33% { transform: scale(1.1) rotate(120deg); }
        66% { transform: scale(0.95) rotate(240deg); }
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 4rem 2rem;
        max-width: 1100px;
        width: 100%;
        animation: heroReveal 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    @keyframes heroReveal {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--warm-beige);
        font-weight: 800;
        margin-bottom: 2.5rem;
        position: relative;
        padding: 0.5rem 1.5rem;
        background: rgba(212, 165, 116, 0.1);
        border: 1px solid rgba(212, 165, 116, 0.2);
        border-radius: 30px;
    }
    
    .hero-badge::before {
        content: '✓';
        font-weight: bold;
        color: var(--success-green);
    }
    
    .hero-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3.5rem, 8vw, 6rem);
        line-height: 0.95;
        color: var(--pure-white);
        margin-bottom: 1.5rem;
        letter-spacing: -0.03em;
        position: relative;
    }
    
    .hero-title .gradient-text {
        background: linear-gradient(92deg, 
            var(--pure-white) 0%, 
            var(--warm-beige) 25%, 
            var(--light-beige) 50%, 
            var(--warm-beige) 75%, 
            var(--pure-white) 100%);
        background-size: 200% auto;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: goldShimmer 4s linear infinite;
    }
    
    @keyframes goldShimmer {
        to { background-position: 200% center; }
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
        font-weight: 400;
        color: var(--sand);
        line-height: 1.5;
        max-width: 700px;
        margin: 0 auto 3.5rem;
        opacity: 0.95;
    }
    
    .hero-subtitle strong {
        color: var(--warm-beige);
        font-weight: 600;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-beige-dark) 100%);
        color: var(--pure-white);
        padding: 1.25rem 3rem;
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: var(--transition-base);
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4), inset 0 2px 0 rgba(255,255,255,0.3);
    }
    
    .btn-primary:hover::after {
        opacity: 1;
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--pure-white);
        padding: 1.25rem 3rem;
        border: 2px solid rgba(212, 165, 116, 0.4);
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.05em;
        font-size: 0.9rem;
        transition: var(--transition-base);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .btn-secondary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(212, 165, 116, 0.1);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .btn-secondary:hover {
        border-color: var(--warm-beige);
        transform: translateY(-2px);
    }
    
    .btn-secondary:hover::before {
        transform: scaleX(1);
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin-top: 5rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
        flex-wrap: wrap;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .stat-value {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
        color: var(--warm-beige);
        display: block;
        line-height: 1;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: var(--sand);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0.7;
    }
    
    /* ===== ALLY SECTION - POWERFUL ===== */
    .ally-section {
        padding: 8rem 0;
        background: var(--cream);
        position: relative;
    }
    
    .ally-content {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .section-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 6vw, 4.5rem);
        text-align: center;
        margin-bottom: 1rem;
        color: var(--espresso);
        line-height: 1;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.25rem;
        color: var(--warm-beige-dark);
        margin-bottom: 4rem;
        font-weight: 600;
    }
    
    .powerful-intro {
        font-size: 1.375rem;
        line-height: 1.7;
        color: var(--text-primary);
        margin-bottom: 3rem;
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .powerful-intro .highlight {
        background: linear-gradient(120deg, transparent 0%, rgba(212, 165, 116, 0.2) 20%, rgba(212, 165, 116, 0.2) 80%, transparent 100%);
        padding: 0 0.25rem;
        border-radius: 4px;
    }
    
    .truth-bomb {
        background: linear-gradient(135deg, var(--espresso) 0%, var(--rich-brown) 100%);
        color: var(--pure-white);
        padding: 3rem;
        border-radius: 20px;
        margin: 3rem 0;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }
    
    .truth-bomb::before {
        content: '⚠️';
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        opacity: 0.2;
    }
    
    .truth-bomb h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--warm-beige);
    }
    
    .truth-bomb p {
        font-size: 1.125rem;
        line-height: 1.7;
        opacity: 0.95;
    }
    
    .ally-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
    
    @media (max-width: 768px) {
        .ally-features {
            grid-template-columns: 1fr;
        }
    }
    
    .ally-feature {
        background: var(--pure-white);
        padding: 2.5rem;
        border-radius: 16px;
        position: relative;
        border: 1px solid var(--gray-100);
        transition: var(--transition-smooth);
        overflow: hidden;
    }
    
    .ally-feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--warm-beige), var(--warm-taupe));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    
    .ally-feature:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--warm-beige);
    }
    
    .ally-feature:hover::before {
        transform: scaleX(1);
    }
    
    .feature-number {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 4rem;
        color: var(--sand);
        opacity: 0.5;
        line-height: 1;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--warm-beige), var(--warm-taupe));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pure-white);
        margin-bottom: 1.5rem;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .ally-feature h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
        color: var(--espresso);
    }
    
    .ally-feature p {
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }
    
    /* ===== COMPARISON SECTION - DRAMATIC ===== */
    .comparison-section {
        padding: 8rem 0;
        background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .comparison-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .comparison-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
    }
    
    .comparison-intro p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }
    
    .versus-badge {
        display: inline-block;
        background: var(--espresso);
        color: var(--pure-white);
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        font-weight: 800;
        font-size: 0.875rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin: 3rem auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
    }
    
    .comparison-grid::after {
        content: 'VS';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3rem;
        color: var(--warm-beige);
        background: var(--cream);
        padding: 1rem;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-lg);
        z-index: 10;
    }
    
    .comparison-card {
        padding: 3rem;
        border-radius: 24px;
        position: relative;
        transition: var(--transition-smooth);
    }
    
    .old-way {
        background: rgba(255, 255, 255, 0.5);
        border: 2px solid var(--gray-300);
        opacity: 0.85;
        filter: grayscale(30%);
    }
    
    .new-way {
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(255,255,255,0.98) 100%);
        border: 3px solid var(--warm-beige);
        transform: scale(1.05);
        box-shadow: 0 30px 70px rgba(212, 165, 116, 0.25);
    }
    
    .new-way::before {
        content: 'RECOMMENDED';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--warm-beige);
        color: var(--pure-white);
        padding: 0.25rem 1rem;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.1em;
    }
    
    .comparison-card h3 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: center;
    }
    
    .old-way h3 { 
        color: var(--gray-600); 
    }
    
    .new-way h3 { 
        color: var(--warm-beige-dark);
    }
    
    .comparison-list {
        list-style: none;
        font-size: 1.05rem;
        line-height: 2.2;
    }
    
    .comparison-list li {
        padding-left: 2rem;
        position: relative;
        margin-bottom: 1.25rem;
        font-weight: 500;
    }
    
    .old-way .comparison-list li::before {
        content: "✕";
        position: absolute;
        left: 0;
        color: var(--danger-red);
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .new-way .comparison-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--success-green);
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    @media (max-width: 900px) {
        .comparison-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .comparison-grid::after {
            display: none;
        }
        
        .new-way {
            transform: scale(1);
        }
    }
    
    /* ===== PROOF SECTION - UNDENIABLE ===== */
    .proof-section {
        padding: 8rem 0;
        background: var(--pure-white);
        position: relative;
    }
    
    .proof-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .proof-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .proof-header .section-title {
        margin-bottom: 1rem;
    }
    
    .proof-subtext {
        font-size: 1.25rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }
    
    .trust-wall {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 5rem;
    }
    
    @media (max-width: 900px) {
        .trust-wall {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 500px) {
        .trust-wall {
            grid-template-columns: 1fr;
        }
    }
    
    .trust-metric {
        background: linear-gradient(135deg, var(--cream) 0%, var(--pure-white) 100%);
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        border: 2px solid var(--sand);
        position: relative;
        transition: var(--transition-smooth);
        overflow: hidden;
    }
    
    .trust-metric::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--warm-beige), var(--warm-taupe), var(--warm-beige));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .trust-metric:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--shadow-xl);
        border-color: var(--warm-beige);
    }
    
    .trust-metric:hover::after {
        transform: scaleX(1);
    }
    
    .trust-value {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3.5rem;
        color: var(--warm-beige-dark);
        margin-bottom: 0.5rem;
        display: block;
        line-height: 1;
    }
    
    .trust-label {
        font-size: 0.875rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
    }
    
    .testimonials-showcase {
        position: relative;
        margin-bottom: 3rem;
    }
    
    .testimonial-featured {
        background: linear-gradient(135deg, var(--espresso) 0%, var(--rich-brown) 100%);
        color: var(--pure-white);
        padding: 4rem;
        border-radius: 24px;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-2xl);
    }
    
    .testimonial-featured::before {
        content: '"';
        position: absolute;
        top: 2rem;
        left: 2rem;
        font-size: 8rem;
        color: var(--warm-beige);
        opacity: 0.1;
        font-family: serif;
    }
    
    .testimonial-featured-text {
        font-size: 1.5rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .testimonial-featured-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--warm-beige);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: var(--pure-white);
        font-size: 1.25rem;
    }
    
    .author-details {
        flex: 1;
    }
    
    .author-name {
        font-weight: 700;
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .author-rating {
        color: #F59E0B;
        font-size: 1.25rem;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        background: var(--cream);
        padding: 2.5rem;
        border-radius: 16px;
        border: 1px solid var(--sand);
        position: relative;
        transition: var(--transition-smooth);
        cursor: pointer;
    }
    
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        background: var(--pure-white);
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        font-weight: 700;
        color: var(--espresso);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .testimonial-rating {
        color: #F59E0B;
    }
    
    .reviews-cta {
        text-align: center;
        padding: 3rem;
        background: var(--cream);
        border-radius: 20px;
        margin-top: 3rem;
    }
    
    .reviews-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--espresso);
    }
    
    .reviews-cta p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-reviews {
        display: inline-block;
        background: var(--espresso);
        color: var(--pure-white);
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.05em;
        transition: var(--transition-base);
    }
    
    .btn-reviews:hover {
        background: var(--warm-beige-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    /* ===== FOUNDER SECTION - PERSONAL ===== */
    .founder-section {
        padding: 8rem 0;
        background: linear-gradient(180deg, var(--pure-white) 0%, var(--sand) 100%);
        position: relative;
    }
    
    .founder-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .founder-card {
        background: var(--pure-white);
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-2xl);
        display: grid;
        grid-template-columns: 1fr 2fr;
        min-height: 500px;
    }
    
    @media (max-width: 768px) {
        .founder-card {
            grid-template-columns: 1fr;
        }
    }
    
    .founder-visual {
        background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-taupe) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 3rem;
    }
    
    .founder-avatar-large {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: var(--pure-white);
        font-weight: 800;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border: 4px solid rgba(255, 255, 255, 0.3);
    }
    
    .founder-content {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .founder-name {
        font-size: 2rem;
        color: var(--espresso);
        margin-bottom: 0.5rem;
    }
    
    .founder-title {
        color: var(--warm-beige-dark);
        font-weight: 600;
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .founder-bio {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-secondary);
    }
    
    .founder-bio p {
        margin-bottom: 1.5rem;
    }
    
    .founder-quote {
        background: var(--cream);
        padding: 1.5rem;
        border-left: 4px solid var(--warm-beige);
        margin-top: 2rem;
        border-radius: 8px;
    }
    
    .founder-quote p {
        font-style: italic;
        color: var(--text-primary);
        font-size: 1.05rem;
        margin: 0;
    }
    
    /* ===== CONCIERGE SECTION - EXCLUSIVE ===== */
    .concierge-section {
        padding: 8rem 0;
        background: linear-gradient(135deg, var(--espresso) 0%, #2a1810 100%);
        color: var(--pure-white);
        position: relative;
        overflow: hidden;
    }
    
    .concierge-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,165,116,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    }
    
    .concierge-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }
    
    .concierge-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .concierge-header .section-title {
        color: var(--pure-white);
        margin-bottom: 1rem;
    }
    
    .concierge-header .section-subtitle {
        color: var(--sand);
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .network-showcase {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    @media (max-width: 768px) {
        .network-showcase {
            grid-template-columns: 1fr;
        }
    }
    
    .network-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: 20px;
        border: 1px solid rgba(212, 165, 116, 0.2);
        text-align: center;
        transition: var(--transition-smooth);
        position: relative;
        overflow: hidden;
    }
    
    .network-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .network-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgba(212, 165, 116, 0.1);
        border-color: var(--warm-beige);
    }
    
    .network-card:hover::before {
        opacity: 1;
    }
    
    .network-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, var(--warm-beige), var(--warm-taupe));
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    }
    
    .network-icon svg {
        width: 36px;
        height: 36px;
        color: var(--pure-white);
    }
    
    .network-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--pure-white);
    }
    
    .network-card p {
        font-size: 0.95rem;
        color: var(--sand);
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .concierge-promise {
        background: rgba(212, 165, 116, 0.1);
        border: 2px solid var(--warm-beige);
        border-radius: 20px;
        padding: 3rem;
        text-align: center;
    }
    
    .concierge-promise h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        color: var(--warm-beige);
    }
    
    .concierge-promise p {
        font-size: 1.125rem;
        line-height: 1.7;
        color: var(--sand);
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* ===== CTA SECTION - COMPELLING ===== */
    .cta-section {
        padding: 8rem 0;
        background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .cta-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        animation: pulse 4s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
        50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
    }
    
    .cta-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
        padding: 0 2rem;
    }
    
    .cta-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 6vw, 4.5rem);
        color: var(--espresso);
        margin-bottom: 1.5rem;
        line-height: 1;
    }
    
    .cta-subtitle {
        font-size: 1.375rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }
    
    .cta-features {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    
    .cta-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        color: var(--espresso);
    }
    
    .cta-feature svg {
        width: 24px;
        height: 24px;
        color: var(--success-green);
    }
    
    .cta-button-xl {
        display: inline-block;
        background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-beige-dark) 100%);
        color: var(--pure-white);
        padding: 1.5rem 4rem;
        border-radius: 60px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 1rem;
        transition: var(--transition-smooth);
        box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3), inset 0 2px 0 rgba(255,255,255,0.2);
        position: relative;
        overflow: hidden;
    }
    
    .cta-button-xl::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3));
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }
    
    .cta-button-xl:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 20px 50px rgba(212, 165, 116, 0.4), inset 0 3px 0 rgba(255,255,255,0.3);
    }
    
    .cta-button-xl:hover::before {
        transform: translateX(100%);
    }
    
    .cta-disclaimer {
        margin-top: 2rem;
        font-size: 0.875rem;
        color: var(--text-muted);
    }
    
       
    /* ===== ANIMATIONS ON SCROLL ===== */
    [data-animate] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    [data-animate].visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    [data-animate-delay] {
        transition-delay: calc(var(--delay) * 100ms);
    }
    
    /* ===== RESPONSIVE REFINEMENTS ===== */

    @media (max-width: 768px) {
        .hero-section {
            min-height: 100vh;
        }
        
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-stats {
            gap: 2rem;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
        
        .footer-wrap {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }
        
        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }
        
        .trust-wall {
            grid-template-columns: 1fr;
        }
    }

    /* ===== PRINT STYLES ===== */
    @media print {
        .hero-buttons,
        .cta-section {
            display: none;
        }
        
        body {
            font-size: 12pt;
            color: black;
            background: white;
        }
        
        a {
            color: black;
            text-decoration: underline;
        }
    }