@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500;600&family=Space+Grotesk:wght@300;400;500;600&display=swap');

    /*
     * TruTec Landing Page - Unified Style
     * Matching Login Page (EB Garamond, Space Grotesk, Warm Beige, Glassmorphism)
     */

    :root {
        --bg-warm: #f7f5f1;
        --text-primary: #1f1f1a;
        --text-secondary: rgba(31, 31, 26, 0.72);
        --accent-dark: #1f1f1a;
        /* Existing variables that might still be used, adjusted for new theme */
        --border-subtle: rgba(31, 31, 26, 0.1);
        --border: rgba(31, 31, 26, 0.2);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --bg-subtle: rgba(255, 255, 255, 0.5);
        /* Accent colors */
        --accent: #758eff;
        --accent-warm: #3b82f6;
        --accent-warm-light: rgba(59, 130, 246, 0.15);
        --accent-warm-medium: rgba(59, 130, 246, 0.25);
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        background-color: var(--bg-warm);
        color: var(--text-primary);
        font-family: 'Space Grotesk', sans-serif;
        /* Default body font */
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'EB Garamond', serif;
        font-weight: 500;
        letter-spacing: -0.03em;
    }

    /* Floating Sticky Nav - Consolidated */
    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        background: transparent;
    }

    .nav-container {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 2rem;
        position: relative;
        transition: all 0.4s ease;
    }

    .site-nav.scrolled {
        background: rgba(247, 245, 241, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .site-nav.scrolled .nav-container {
        padding: 0.8rem 2rem;
    }

    .nav-links {
        display: flex;
        gap: 2.5rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-primary);
        text-decoration: none;
        opacity: 0.7;
        transition: all 0.2s ease;
    }

    .nav-link:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

    @media (max-width: 1024px) {
        .nav-links {
            display: none;
            /* Hide middle links on smaller screens */
        }
    }

    /* Utilities */
    .section-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
    }

    .hide-mobile {
        display: block;
    }

    .show-mobile {
        display: none;
    }

    @media (max-width: 768px) {
        .hide-mobile {
            display: none !important;
        }

        .show-mobile {
            display: block !important;
        }
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* REVEAL ANIMATIONS */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    /* Pulse animation for walkthrough */
    @keyframes pulse-soft {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(31, 31, 26, 0.1);
        }

        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 15px rgba(31, 31, 26, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(31, 31, 26, 0);
        }
    }

    .pulse-icon {
        animation: pulse-soft 3s infinite;
    }

    /* HERO SECTION - REFINED */
    .hero-section {
        position: relative;
        padding: 4rem 0 6rem;
        overflow: hidden;
        background: var(--bg-warm);
        text-align: center;
    }

    /* Grainy noise overlay for premium feel */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
        opacity: 0.03;
        pointer-events: none;
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1.25rem;
        background: rgba(31, 31, 26, 0.05);
        border: 1px solid rgba(31, 31, 26, 0.08);
        border-radius: 99px;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        backdrop-filter: blur(4px);
    }

    .hero-title {
        font-family: 'EB Garamond', serif;
        font-size: clamp(2rem, 7vw, 4.5rem);
        font-weight: 500;
        line-height: 1.1;
        letter-spacing: -0.04em;
        margin-bottom: 1rem;
        /* Tightened */
        color: var(--text-primary);
    }

    .hero-subtitle-main {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        /* Larger as requested */
        color: var(--text-secondary);
        margin-bottom: 2rem;
        /* Tightened */
        max-width: 800px;
        line-height: 1.5;
    }

    .capability-bar {
        display: flex;
        justify-content: center;
        gap: clamp(1rem, 5vw, 4rem);
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 4rem;
    }

    @media (max-width: 768px) {
        .hero-subtitle-main {
            display: block;
        }

        .capability-bar {
            display: none;
        }
    }

    .capability-item {
        text-align: center;
    }

    .capability-number {
        font-family: 'EB Garamond', serif;
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        font-weight: 500;
        color: var(--text-primary);
    }

    .capability-label {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-secondary);
        font-weight: 600;
    }

    .v-divider {
        width: 1px;
        height: 30px;
        background: rgba(0, 0, 0, 0.1);
    }

    .hero-visual-large {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 3rem;
        position: relative;
        z-index: 2;
    }

    .app-preview-card-large {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        box-shadow:
            0 50px 100px -20px rgba(0, 0, 0, 0.15),
            0 30px 60px -30px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .app-preview-card-large:hover {
        transform: translateY(-8px) scale(1.01);
    }

    /* Legacy hero-footer-content - replaced by guided-tour-section */

    .hero-subtitle-large {
        font-size: 1.8rem;
        line-height: 1.3;
        color: var(--text-primary);
        margin-bottom: 2rem;
        font-family: 'EB Garamond', serif;
    }

    .hero-benefits-grid {
        display: grid;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .benefit-item-large {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
        color: var(--text-secondary);
    }

    .benefit-item-large i {
        color: #10b981;
        /* Success Green */
    }

    /* Calendly Embed Styling */
    .calendly-inline-widget {
        min-width: 320px;
        height: 580px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border-subtle);
        background: #fff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    /* Guided Tour Section */
    .guided-tour-section {
        background: #ffffff;
        padding: 5rem 0;
        margin: 0;
    }

    .guided-tour-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: center;
    }

    .guided-tour-text {
        text-align: left;
    }

    .guided-tour-calendly {
        background: #fff;
        border-radius: 20px;
        padding: 1rem;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .guided-tour-calendly .calendly-inline-widget {
        border: none;
        box-shadow: none;
        height: 560px;
    }

    @media (max-width: 900px) {
        .guided-tour-section {
            padding: 1.75rem 0;
        }

        .guided-tour-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
            padding: 0 1.5rem;
        }

        .guided-tour-text {
            text-align: center;
        }

        .guided-tour-text .animated-line {
            margin-left: auto;
            margin-right: auto;
        }

        .guided-tour-text > div:first-child {
            margin-left: auto;
            margin-right: auto;
        }

        .guided-tour-text h2 {
            font-size: 2rem !important;
        }

        .guided-tour-calendly .calendly-inline-widget {
            height: 520px;
        }
    }

    /* Mobile Spacing */
    @media (max-width: 768px) {
        .hero-section {
            padding: 5rem 0 2rem;
        }

        .calendly-inline-widget {
            height: 520px;
        }
    }

    @media (max-width: 900px) {
        .hero-footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .hero-subtitle-large {
            font-size: 1.5rem;
        }

        .benefit-item-large {
            justify-content: center;
        }
    }

    /* Hero Background Depth Layers */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
        opacity: 0.04;
        pointer-events: none;
        z-index: 1;
    }

    /* Sophisticated Mesh Gradients */


    .btn-hero {
        padding: 0.95rem 2.5rem;
        border-radius: 99px;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: 'Space Grotesk', sans-serif;
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, #1f1f1a, #3a3a30);
        color: #f7f5f1;
        box-shadow: 0 10px 20px rgba(31, 31, 26, 0.1);
        transition: all 0.4s ease;
    }

    .btn-hero-primary:hover {
        background: linear-gradient(135deg, var(--accent-warm), #2563eb);
        box-shadow: 0 18px 35px rgba(59, 130, 246, 0.25);
    }

    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.5);
        color: var(--text-primary);
        border: 1px solid rgba(31, 31, 26, 0.1);
        backdrop-filter: blur(4px);
        box-shadow: var(--shadow-sm);
        /* Keep existing shadow */
    }

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 640px) {
        .hero-cta-group {
            flex-direction: column;
            width: 100%;
            align-items: stretch;
            gap: 0.75rem;
        }

        .btn-hero {
            width: 100%;
            text-align: center;
            display: block; /* Ensure it behaves as a block element */
        }
    }

    .app-preview-header {
        height: 48px;
        border-bottom: 1px solid var(--border-subtle);
        background: #fafafa;
        display: flex;
        align-items: center;
        padding: 0 1.5rem;
        gap: 0.75rem;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #e4e4e7;
    }

    /* HOW IT WORKS */
    .how-it-works {
        padding: 8rem 0;
        background: #ffffff;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        margin-top: 6rem;
        position: relative;
    }

    /* Connecting line behind markers */
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 5%;
        right: 5%;
        height: 1px;
        background: linear-gradient(90deg,
                transparent 0%,
                var(--border) 15%,
                var(--border) 85%,
                transparent 100%);
        z-index: 0;
    }

    .step-item {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centered alignment */
        text-align: center;
        transition: transform 0.3s ease;
    }

    .step-item:hover {
        transform: translateY(-5px);
    }

    /* The circle around the icon */
    .step-marker {
        width: 64px;
        height: 64px;
        background: #ffffff;
        border: 1px solid var(--border-subtle);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        margin-bottom: 2rem;
        font-size: 1.5rem;
        color: var(--text-primary);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        position: relative;
    }

    .step-marker::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(31, 31, 26, 0.05), transparent);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .step-item:hover .step-marker::after {
        opacity: 1;
    }

    .step-item:hover .step-marker {
        border-color: var(--accent-warm);
        color: var(--accent-warm);
    }

    .step-heading {
        font-family: 'EB Garamond', serif;
        font-size: 1.75rem;
        font-weight: 500;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .step-text {
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 1.05rem;
        max-width: 600px;
    }

    @media (max-width: 768px) {
        .steps-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .steps-grid::before {
            display: none;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .step-marker {
            margin: 0 auto 1rem;
            /* Ensure centered marker */
        }

        .step-text {
            max-width: 100%;
            padding: 0 1rem;
        }

        .hero-title {
            font-size: 2rem !important;
        }

    }

    /* BENTO GRID */
    .bento-section {
        padding: 6rem 0;
        background: #fafafa;
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }

    .bento-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }

    .bento-box {
        background: #ffffff;
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 2.5rem;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }

    .bento-box:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-warm);
    }

    .bento-box.wide {
        grid-column: span 2;
    }

    .bento-icon-lg {
        font-size: 2rem;
        color: var(--text);
        margin-bottom: 1.5rem;
        display: inline-block;
        padding: 1rem;
        background: var(--bg-subtle);
        border-radius: 12px;
    }

    /* TABS / TRADES */
    .trades-section {
        padding: 8rem 0;
        background: var(--bg-warm);
    }

    .trade-nav {
        display: flex;
        justify-content: center;
        margin-bottom: 4rem;
    }

    .trade-pill-group {
        display: inline-flex;
        background: var(--bg-subtle);
        padding: 0.3rem;
        border-radius: 99px;
        border: 1px solid var(--border-subtle);
    }

    .trade-pill {
        padding: 0.75rem 2rem;
        border-radius: 99px;
        font-weight: 500;
        color: var(--text-secondary);
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .trade-pill.active {
        background: #52524e;
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(31, 31, 26, 0.12);
        font-weight: 600;
    }

    .coming-soon-badge {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        color: #fff;
        padding: 0.2rem 0.5rem;
        border-radius: 99px;
        margin-left: 0.4rem;
        vertical-align: middle;
    }

    .live-badge {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        margin-left: 0.4rem;
        vertical-align: middle;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
        animation: pulse-live 2s ease-in-out infinite;
    }

    @keyframes pulse-live {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
        }

        50% {
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
        }
    }

    .trade-panel {
        display: none;
        animation: fadeScale 0.4s ease-out;
    }

    .trade-panel.active {
        display: block;
    }

    /* TRADE GRID REDESIGN */
    .trade-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .trade-col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .trade-section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.85rem;
        text-transform: none;
        /* Title case, not uppercase */
        letter-spacing: 0;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--text);
    }

    .trade-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .trade-list li {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 0.4rem;
        color: var(--text-secondary);
        font-size: 0.85rem;
        line-height: 1.4;
        align-items: flex-start;
    }

    .trade-list li i {
        color: #d4d4d8;
        margin-top: 0.2rem;
        flex-shrink: 0;
        font-size: 0.9em;
    }

    .value-box {
        background: #fafafa;
        border: 1px solid var(--border-subtle);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .value-box i {
        color: #fbbf24;
        margin-top: 0.1rem;
        font-size: 1rem;
    }

    .value-text {
        color: var(--text);
        font-weight: 500;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Site Photos - Side by Side */
    .site-photos-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 4rem;
        align-items: center;
    }

    /* Phone frame mockup */
    .phone-frame {
        position: relative;
        width: 280px;
        aspect-ratio: 9/19.5;
        background: #1a1a1a;
        border-radius: 40px;
        border: 5px solid #2a2a2a;
        box-shadow:
            0 0 0 2px #1a1a1a,
            0 30px 60px rgba(0,0,0,0.18),
            0 8px 20px rgba(0,0,0,0.12);
        overflow: hidden;
    }

    .phone-notch {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 24px;
        background: #1a1a1a;
        border-radius: 14px;
        z-index: 2;
    }

    .phone-frame video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .site-photos-text {
        text-align: left;
    }

    .site-photos-features {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .site-photos-feature {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .site-photos-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        margin-top: 1px;
    }

    .site-photos-feature strong {
        display: block;
        font-family: 'EB Garamond', serif;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 2px;
        color: var(--text-primary);
    }

    .site-photos-feature p {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.82rem;
        color: var(--text-secondary);
        line-height: 1.5;
        margin: 0;
    }

    @media (max-width: 768px) {
        #billing {
            padding: 3rem 0 !important;
            overflow-x: clip;
        }

        #billing > div > div {
            grid-template-columns: 1fr !important;
            gap: 2.5rem !important;
        }

        #billing h2 {
            font-size: 2rem !important;
        }

        #billing .reveal-right {
            text-align: center;
            order: -1;
        }

        #billing .reveal-right > div:first-child {
            margin-left: auto;
            margin-right: auto;
        }

        #billing .reveal-right p {
            max-width: 100% !important;
            margin-left: auto;
            margin-right: auto;
        }

        #billing .section-container {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        #billing .reveal-left {
            order: 1;
            padding: 0 0.5rem;
        }

        #billing .site-photos-feature {
            text-align: left;
        }

        .billing-mockup {
            width: min(100%, 300px) !important;
            max-width: 300px !important;
            transform: none;
            margin: 0 auto;
        }

        .billing-mockup > div {
            overflow: hidden;
        }

        #billing .site-photos-feature p {
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        #billing .reveal-right .animated-line {
            margin-left: auto;
            margin-right: auto;
        }

        .site-photos-section {
            padding: 3rem 0 !important;
        }
        .site-photos-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .phone-frame {
            width: 220px;
            margin: 0 auto;
        }
        .site-photos-text {
            text-align: center;
        }
        .site-photos-text h2 {
            font-size: 2rem !important;
        }
        .site-photos-text p {
            max-width: 100% !important;
            margin-left: auto;
            margin-right: auto;
        }
        .site-photos-text > div:first-child {
            margin-left: auto;
            margin-right: auto;
        }
        .site-photos-feature {
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .trades-section {
            padding: 3rem 0;
        }

        .trade-nav {
            margin-bottom: 1.5rem;
            overflow-x: auto;
            justify-content: flex-start;
            -webkit-overflow-scrolling: touch;
        }

        .trade-pill-group {
            flex-shrink: 0;
        }

        .trade-pill {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .trade-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .trade-col {
            gap: 1rem;
        }

        .trade-section-title {
            margin-bottom: 0.5rem;
            font-size: 0.8rem;
        }

        .trade-list li {
            margin-bottom: 0.3rem;
            font-size: 0.8rem;
            gap: 0.4rem;
        }

        .value-box {
            margin-top: 0.75rem;
            padding: 0.75rem;
        }

        .value-text {
            font-size: 0.85rem;
        }
    }

    /* FEATURES SECTION */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    .feature-card {
        background: #ffffff;
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 2.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-warm);
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        background: #f4f4f5;
        /* Zinc-100 */
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: #52525b;
        /* Zinc-600 */
        font-size: 1.25rem;
    }

    .feature-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text);
    }

    .feature-desc {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        color: var(--text-secondary);
        /* Restored to secondary */
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        padding-left: 1rem;
        position: relative;
    }

    .feature-list li::before {
        content: "•";
        color: var(--text-tertiary);
        position: absolute;
        left: 0;
        top: 0;
    }

    @media (max-width: 1024px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    .hero-benefits {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        margin-top: 3.5rem;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
        position: relative;
        z-index: 2;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-secondary);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .benefit-item i {
        color: var(--accent-warm);
        font-size: 1.1rem;
    }

    @media (max-width: 640px) {
        .hero-benefits {
            flex-direction: column;
            gap: 1.25rem;
            align-items: flex-start;
            /* Align items to start of container */
            width: fit-content;
            /* Container scales to content */
            margin: 2.5rem auto 0;
            /* Center the container itself */
            padding-left: 0;
        }

        .benefit-item {
            width: 100%;
            justify-content: flex-start;
            text-align: left;
        }
    }

    .trade-feature-list li {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .trade-feature-list i {
        color: var(--text);
        margin-top: 3px;
    }

    /* FAQ */
    .faq-section {
        padding: 6rem 0;
        background: #ffffff;
    }

    .faq-item {
        background: white;
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        margin-bottom: 1rem;
        transition: all 0.2s;
    }

    .faq-item:hover {
        border-color: var(--accent-warm);
    }

    .faq-question {
        padding: 1.5rem;
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.05rem;
    }

    .faq-answer {
        color: var(--text-secondary);
        line-height: 1.6;
        border-top: 1px solid transparent;
        max-height: 0;
        overflow: hidden;
        padding: 0 1.5rem;
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 1.5rem 1.5rem;
        border-color: var(--bg-subtle);
    }

    .faq-question i {
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-item.active {
        box-shadow: var(--shadow-sm);
    }

    /* CONTACT SECTION */
    .contact-section {
        padding: 8rem 0;
        background: var(--bg-warm);
    }

    .contact-form-container {
        max-width: 600px;
        margin: 0 auto;
        background: var(--bg-warm);
        padding: 3rem;
        border-radius: 24px;
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-sm);
    }

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

    .form-group-landing label {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .form-control-landing {
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: #ffffff;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    .form-control-landing:focus {
        outline: none;
        border-color: var(--accent-warm);
        box-shadow: 0 0 0 4px var(--accent-warm-light);
    }

    .btn-contact-submit {
        width: 100%;
        padding: 1rem;
        border-radius: 99px;
        background: linear-gradient(135deg, #1f1f1a, #3a3a30);
        color: #f7f5f1;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .btn-contact-submit:hover {
        background: linear-gradient(135deg, var(--accent-warm), #2563eb);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
    }

    .btn-contact-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .contact-success-msg {
        display: none;
        padding: 1.5rem;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.2);
        color: #16a34a;
        border-radius: 16px;
        text-align: center;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    /* FOOTER */
    .site-footer {
        background: #ffffff;
        border-top: 1px solid var(--border-subtle);
        padding: 4rem 0;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .footer-heading {
        color: var(--text);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .footer-link {
        display: block;
        margin-bottom: 0.75rem;
        color: var(--text-secondary);
        transition: color 0.15s;
    }

    .footer-link:hover {
        color: var(--accent-warm);
        text-decoration: underline;
        text-decoration-color: var(--accent-warm);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeScale {
        from {
            opacity: 0;
            transform: scale(0.98);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* NAVBAR */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-btn {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        padding: 0.6rem 1.25rem;
        border-radius: 999px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .nav-btn-ghost {
        background: rgba(255, 255, 255, 0.5);
        color: var(--text-primary);
        border: 1px solid rgba(31, 31, 26, 0.12);
    }

    .nav-btn-ghost:hover {
        background: rgba(255, 255, 255, 0.8);
        border-color: rgba(31, 31, 26, 0.2);
    }

    .nav-btn-primary {
        background: linear-gradient(135deg, #1f1f1a, #3a3a30);
        color: #f7f5f1;
        box-shadow: 0 2px 8px rgba(31, 31, 26, 0.15);
        transition: all 0.3s ease;
    }

    .nav-btn-primary:hover {
        background: linear-gradient(135deg, var(--accent-warm), #2563eb);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .nav-btn-secondary {
        background: rgba(255, 255, 255, 0.6);
        color: var(--text-primary);
        border: 1px solid rgba(31, 31, 26, 0.12);
    }

    .nav-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(31, 31, 26, 0.2);
    }

    @media (max-width: 768px) {
        .site-nav {
            padding: 0.75rem 1rem;
            overflow: hidden;
        }

        .nav-container {
            padding: 0 !important;
        }

        .nav-actions {
            gap: 0.35rem;
            margin-left: auto;
            max-width: calc(100vw - 88px);
        }

        .nav-btn {
            font-size: 0.7rem;
            padding: 0.4rem 0.65rem;
            white-space: nowrap;
        }

        /* Smaller play button on mobile */
        .play-icon-container {
            width: 64px;
            height: 64px;
        }

        .play-icon-container i {
            font-size: 1.25rem !important;
            margin-left: 4px !important;
        }
    }

    /* Hero padding refinement - moved up */
    .hero-section {
        padding-top: 6rem;
    }

    /* Play Button Hover Effect */
    /* Play Button Styles */
    .play-button-overlay {
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .play-icon-container {
        position: relative;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        width: 96px;
        height: 96px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Hover Effects - KISS & Nice */
    .app-preview-card-large:hover .play-icon-container {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    .app-preview-card-large:hover img {
        transform: scale(1.02);
        opacity: 1 !important;
        /* Brighten image slightly on hover */
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
            margin-bottom: 1rem !important;
        }

        .hero-subtitle-main {
            margin-bottom: 1.5rem !important;
            line-height: 1.6;
        }

        .hero-content-grid {
            gap: 2rem !important;
            margin-bottom: 2rem !important;
        }

        .hero-video-side {
            padding: 0 0.5rem;
        }

        .bento-grid,
        .trade-layout {
            grid-template-columns: 1fr;
        }

        .bento-box.wide {
            grid-column: span 1;
        }

        .trade-layout {
            gap: 3rem;
        }
    }


    /* Reveal Transition */

    /* VIDEO PLAY BUTTON OVERLAY */
    .video-play-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 1.5rem;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        outline: none;
    }

    .video-play-overlay:hover .play-button {
        transform: translateY(-4px) scale(1.02);
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .play-button {
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 99px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .play-button i {
        font-size: 1.2rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .play-button span {
        color: white;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    /* VIDEO MODAL */
    .video-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .video-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .video-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(8px);
    }

    .video-modal-content {
        position: relative;
        width: 90%;
        max-width: 1100px;
        transform: scale(0.9);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .video-modal.active .video-modal-content {
        transform: scale(1);
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        background: #000;
        z-index: 10000;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }

    .video-modal-close {
        position: absolute;
        top: -50px;
        right: 0;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        color: white;
        font-size: 1.25rem;
    }

    .video-modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .play-button {
            width: 72px;
            height: 72px;
        }

        .play-button i {
            font-size: 1.75rem;
            margin-left: 4px;
        }

        /* Full screen video modal on mobile */
        .video-modal-content {
            width: 100%;
            max-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .video-wrapper {
            border-radius: 0;
            box-shadow: none;
        }

        .video-modal-close {
            top: 16px;
            right: 16px;
            position: fixed;
            z-index: 10001;
        }
    }

    /* NEW HERO LAYOUT: Side-by-Side */
    .hero-content-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
        /* Center text for grid items */
        margin-bottom: 4rem;
        position: relative;
        z-index: 5;
    }

    .hero-text-side {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Center align items */
        /* Center text */
    }

    .video-thumbnail-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 */
        border-radius: 20px;
        overflow: hidden;
        box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.1);
        transform: translateZ(0);
        cursor: pointer;
    }

    .play-button-circle {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(12px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    .hero-browser-frame:hover .play-button-circle {
        transform: scale(1.35);
        background: var(--accent-warm);
        border-color: var(--accent-warm);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.2);
    }

    /* Blueprint Browser Frame - Match Hero Styles */
    .blueprint-browser-frame {
        cursor: pointer;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .blueprint-browser-frame:hover {
        transform: translateY(-8px) scale(1.01);
        border-color: rgba(117, 142, 255, 0.3);
        box-shadow: 0 50px 100px -20px rgba(117, 142, 255, 0.2);
    }

    .blueprint-preview-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.95;
        transition: transform 0.4s ease;
    }

    .blueprint-browser-frame:hover .blueprint-preview-img {
        transform: scale(1.02);
    }

    .blueprint-browser-frame:hover .blueprint-play-btn {
        transform: scale(1.35);
        background: var(--accent-warm);
        border-color: var(--accent-warm);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.2);
    }

    /* Browser Frame Styles */
    .hero-browser-frame {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        transform: translateZ(0);
        cursor: pointer;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-browser-frame:hover {
        transform: translateY(-8px) scale(1.01);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 50px 100px -20px rgba(59, 130, 246, 0.2);
    }

    .browser-header {
        height: 44px;
        border-bottom: 1px solid rgba(31, 31, 26, 0.08);
        background: rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        padding: 0 1.25rem;
        gap: 0.6rem;
    }

    .browser-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .video-frame-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    @media (max-width: 1024px) {
        .hero-content-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .hero-text-side {
            align-items: center;
        }

        .hero-title {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle-main {
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* TRUST/CREDIBILITY SECTION */
    .trust-section {
        padding: 2rem 0;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.35);
        border-radius: 16px;
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-container {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
    }

    .trust-block {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .trust-logos,
    .trust-investor {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-label {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

    .trust-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .trust-logo {
        height: 30px;
        width: auto;
        max-width: 80px;
        object-fit: contain;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .trust-logo:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    .trust-block-investor .trust-label {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
        margin-bottom: 1rem;
        margin-top: 0;
        line-height: 1.5;
    }

    .trust-divider {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, transparent, var(--border), transparent);
        align-self: center;
    }

    .trust-investor {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .trust-logo-pear {
        height: 40px;
        max-width: 80px;
        opacity: 0.8;
    }

    @media (max-width: 900px) {
        /* Use only the dedicated mobile trust block */
        .trust-section {
            display: none;
        }
    }

    /* Mobile Trust Section - shown at bottom */
    .trust-section-mobile {
        display: none;
        background: var(--bg-warm);
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .trust-section-mobile .trust-label {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.55rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-secondary);
        margin-bottom: 0.8rem;
    }

    .trust-section-mobile .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }

    .trust-section-mobile .trust-logo {
        height: 26px;
        width: auto;
        max-width: 60px;
        object-fit: contain;
        opacity: 0.8;
    }

    .trust-section-mobile .trust-logo-pear {
        height: 30px;
        max-width: 60px;
        opacity: 0.8;
    }

    .trust-section-mobile .trust-divider {
        width: 40px;
        height: 1px;
        background: var(--border);
        margin: 0 auto 2rem;
    }

    @media (max-width: 900px) {
        .trust-section-mobile {
            display: block;
        }
    }

    /* TESTIMONIAL SECTION */
    .testimonial-section {
        padding: 3rem 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: #ffffff;
        border: 1px solid var(--border-subtle);
        border-radius: 20px;
        padding: 2.5rem 3rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        position: relative;
    }

    .testimonial-quote {
        position: relative;
    }

    .testimonial-icon {
        color: var(--accent-warm);
        font-size: 1.5rem;
        opacity: 0.6;
        margin-bottom: 1rem;
        display: block;
    }

    .testimonial-quote p {
        font-family: 'EB Garamond', serif;
        font-size: 1.5rem;
        line-height: 1.6;
        color: var(--text-primary);
        font-style: italic;
        margin: 0;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-subtle);
    }

    .testimonial-author-info {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .testimonial-name {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.95rem;
    }

    .testimonial-role {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.8rem;
        color: var(--text-secondary);
    }

    @media (max-width: 768px) {
        .testimonial-section {
            padding: 2rem 1rem;
        }

        .testimonial-card {
            padding: 2rem 1.5rem;
        }

        .testimonial-quote p {
            font-size: 1.25rem;
        }
    }

    /* INFINITE CAROUSEL REFINED */
    .carousel-section {
        margin: 6rem 0;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .carousel-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }

    .carousel-title {
        font-family: 'EB Garamond', serif;
        font-size: 2.5rem;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .carousel-subtitle {
        font-family: 'Space Grotesk', sans-serif;
        color: var(--text-secondary);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        /* Fade masks for smooth edges */
        mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    }

    .carousel-track {
        display: flex;
        gap: 32px;
        width: max-content;
        animation: scroll 40s linear infinite;
        /* Faster scroll speed */
        padding: 1rem 0 3rem;
    }

    .carousel-track:hover {
        /* animation-play-state: paused; DISABLED per user request */
    }

    .carousel-card {
        position: relative;
        flex: 0 0 500px;
        height: 340px;
        border-radius: 20px;
        overflow: hidden;
        background: transparent;
        /* Changed from #fff to blend if image doesn't fill */
        /* box-shadow removed or lightened since images might be odd shapes */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: default;
    }

    .carousel-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    }

    .carousel-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Prevent cropping */
        /* transition removed to simplify */
    }

    .carousel-card:hover img {
        /* transform removed */
    }

    /* Glassmorphism Badge instead of gradient overlay */
    .carousel-badge {
        position: absolute;
        bottom: 24px;
        left: 24px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 99px;
        color: #1f1f1a;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        z-index: 10;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

    /* Icon inside badge */
    .carousel-badge i {
        margin-right: 8px;
        color: var(--accent-warm);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-500px * 4 - 32px * 4));
            /* 500px width + 32px gap */
        }
    }

    @media (max-width: 768px) {
        .carousel-section {
            margin: 2rem 0 0.75rem;
        }

        .carousel-track {
            padding: 0.5rem 0 1rem;
        }

        .carousel-card {
            flex: 0 0 340px;
            /* Increased from 280px */
            height: 240px;
            /* Increased from 180px */
        }

        .carousel-title {
            font-size: 2rem;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-340px * 4 - 32px * 4));
            }
        }

        .how-it-works-grid {
            grid-template-columns: 1fr !important;
            gap: 2rem !important;
        }

        .how-it-works-text {
            text-align: center !important;
        }

        .how-it-works-title {
            font-size: 2.5rem !important;
        }

        .how-it-works-desc {
            max-width: 100% !important;
            margin: 0 auto !important;
        }
    }

    /* How It Works Grid - Desktop */
    .how-it-works-grid {
        display: grid;
        grid-template-columns: 0.6fr 1.6fr;
        gap: 3rem;
        align-items: center;
    }

    .how-it-works-text {
        text-align: left;
    }

    .how-it-works-title {
        font-size: 3rem;
        margin-bottom: 1.25rem;
        color: var(--text-primary);
        line-height: 1.1;
    }

    .how-it-works-desc {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 320px;
    }

    .how-it-works-accent-bar {
        width: 40px;
        height: 3px;
        background: var(--accent-warm);
        border-radius: 2px;
        margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
        .how-it-works-accent-bar {
            margin: 0 auto 1.5rem;
        }
    }

    /* ============================================================
       STRIPE-INSPIRED ANIMATION SYSTEM
       ============================================================ */

    /* --- Animated Gradient Orbs (Hero Background) --- */
    .gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
        z-index: 0;
        will-change: transform;
    }

    .gradient-orb-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
        top: -10%;
        right: -5%;
        animation: orb-drift-1 25s ease-in-out infinite;
    }

    .gradient-orb-2 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
        bottom: 10%;
        left: -10%;
        animation: orb-drift-2 30s ease-in-out infinite;
    }

    .gradient-orb-3 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
        top: 40%;
        left: 30%;
        animation: orb-drift-3 20s ease-in-out infinite;
    }

    @keyframes orb-drift-1 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -40px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.95); }
    }

    @keyframes orb-drift-2 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(-30px, 30px) scale(1.05); }
        66% { transform: translate(40px, -20px) scale(0.9); }
    }

    @keyframes orb-drift-3 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(50px, 20px) scale(1.15); }
        66% { transform: translate(-30px, -40px) scale(0.85); }
    }

    /* --- Hero Stagger Entrance --- */
    .hero-stagger > * {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(6px);
        transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-stagger.animate > *:nth-child(1) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); filter: blur(0); }
    .hero-stagger.animate > *:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); filter: blur(0); }
    .hero-stagger.animate > *:nth-child(3) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); filter: blur(0); }
    .hero-stagger.animate > *:nth-child(4) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); filter: blur(0); }
    .hero-stagger.animate > *:nth-child(5) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); filter: blur(0); }

    .hero-video-entrance {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
        filter: blur(8px);
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 0.4s;
    }

    .hero-video-entrance.animate {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

    /* --- Directional Reveal Variants --- */
    .reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(4px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(50px);
        filter: blur(4px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }

    .reveal-scale {
        opacity: 0;
        transform: scale(0.9);
        filter: blur(6px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-scale.active {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    /* --- Stagger Children (for grids/lists) --- */
    .stagger-children > * {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stagger-children.active > *:nth-child(1)  { transition-delay: 0s;    opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(2)  { transition-delay: 0.07s; opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(3)  { transition-delay: 0.14s; opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(4)  { transition-delay: 0.21s; opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(5)  { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(6)  { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(7)  { transition-delay: 0.42s; opacity: 1; transform: translateY(0); }
    .stagger-children.active > *:nth-child(8)  { transition-delay: 0.49s; opacity: 1; transform: translateY(0); }

    /* --- CTA Button Shimmer --- */
    .btn-shimmer {
        position: relative;
        overflow: hidden;
    }

    .btn-shimmer::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        animation: shimmer-sweep 8s ease-in-out infinite;
    }

    @keyframes shimmer-sweep {
        0%, 85% { left: -100%; }
        95%, 100% { left: 100%; }
    }

    .btn-shimmer:hover::after {
        animation: none;
        left: 100%;
        transition: left 0.4s ease;
    }

    /* --- Card Glow Border on Hover --- */
    .glow-card {
        position: relative;
        overflow: hidden;
    }

    .glow-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid transparent;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2)) border-box;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .glow-card:hover::after {
        opacity: 1;
    }

    .glow-card:hover {
        box-shadow: 0 20px 60px -15px rgba(59, 130, 246, 0.12),
                    0 10px 20px -10px rgba(0, 0, 0, 0.06);
    }

    /* --- Trust Section Entrance (synced with hero) --- */
    .trust-entrance {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trust-entrance.animate {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    /* --- Trust Section Stagger --- */
    .trust-stagger {
        overflow: hidden;
    }

    .trust-stagger > * {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .trust-stagger.animate > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
    .trust-stagger.animate > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
    .trust-stagger.animate > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
    .trust-stagger.animate > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

    /* Pear VC pops in after Vanderbilt */
    .pear-entrance {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pear-entrance.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Carousel synced with hero entrance */
    .carousel-entrance {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .carousel-entrance.animate {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    /* --- Accent Text Underline Animation --- */
    .text-accent-line {
        position: relative;
        display: inline;
    }

    .text-accent-line::after {
        content: none;
    }

    /* --- Animated Gradient Line --- */
    .animated-line {
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-warm), var(--accent), var(--accent-warm));
        background-size: 200% 100%;
        border-radius: 2px;
        animation: gradient-slide 3s ease infinite;
    }

    @keyframes gradient-slide {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* --- Phone Frame Entrance --- */
    .phone-entrance {
        opacity: 0;
        transform: translateY(60px) rotate(3deg);
        filter: blur(6px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .phone-entrance.active {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }

    /* --- Counter Animation --- */
    .counter-value {
        display: inline-block;
        font-variant-numeric: tabular-nums;
    }

    /* --- Scroll Progress Bar --- */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-warm), var(--accent));
        z-index: 10001;
        width: 0%;
        transition: width 0.05s linear;
    }

    /* --- Enhanced Carousel Hover --- */
    .carousel-card:hover .carousel-badge {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* --- Bento Section Enhanced Entry --- */
    .bento-box,
    .feature-card {
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .bento-box:hover,
    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    }

    /* --- Subtle Float for Feature Icons --- */
    @keyframes gentle-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }

    .float-on-hover:hover .feature-icon-wrapper,
    .float-on-hover:hover .bento-icon-lg {
        animation: gentle-float 2s ease-in-out infinite;
    }

    /* --- Guided Tour Entrance --- */
    .guided-tour-container > * {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
        transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .guided-tour-container.animate > *:nth-child(1) {
        transition-delay: 0.1s;
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    .guided-tour-container.animate > *:nth-child(2) {
        transition-delay: 0.3s;
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    /* --- Centered Hero Layout (Stripe-style) --- */
    .hero-center {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 780px;
        margin: 0 auto 3rem;
    }

    .hero-center .hero-title {
        text-align: center;
    }

    .hero-center .hero-subtitle-main {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-center .hero-cta-group {
        justify-content: center;
    }

    /* Inline Trust Logos */
    .hero-trust-inline {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-inline-label {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-secondary);
        white-space: nowrap;
    }

    .hero-trust-inline img {
        height: 28px;
        width: auto;
        max-width: 70px;
        object-fit: contain;
        opacity: 0.85;
        transition: all 0.3s ease;
    }

    .hero-trust-inline img:hover {
        opacity: 1;
        transform: scale(1.08);
    }

    .trust-inline-sep {
        width: 1px;
        height: 24px;
        background: var(--border);
        flex-shrink: 0;
    }

    /* Full-width video below hero text */
    .hero-video-full {
        max-width: 1100px;
        margin: 0 auto;
    }

    @media (max-width: 640px) {
        .hero-center {
            margin-bottom: 2rem;
        }

        .hero-trust-inline {
            gap: 0.75rem 1rem;
        }

        .hero-trust-inline img {
            height: 22px;
            max-width: 55px;
        }

        .trust-inline-sep {
            display: none;
        }

        .trust-inline-label {
            width: 100%;
            text-align: center;
            margin-top: 0.25rem;
        }
    }

    /* --- Respect Reduced Motion --- */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        .gradient-orb { display: none; }
        .scroll-progress { display: none; }
    }
/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Better Mobile Optimization */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }
    
    .stats-section {
        gap: 1.5rem !important;
    }
    
    .stat-item .stat-number {
        font-size: 2rem !important;
    }
    
    .how-it-works-grid, .site-photos-grid {
        gap: 2rem;
    }
}

/* ============================================================
   HIGH-QUALITY MICRO ANIMATIONS
   ============================================================ */

/* 1. Arrow Links Sweep Right */
.arrow-link i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.arrow-link:hover i {
    transform: translateX(4px);
}

/* 2. Navbar Underline Reveal */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-warm);
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* 3. Primary Button Interactive Scale */
.btn-hero-primary, .btn-contact-submit, .nav-btn-primary {
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.1s ease;
}
@media (hover: hover) and (pointer: fine) {
    .btn-hero-primary:hover, .btn-contact-submit:hover, .nav-btn-primary:hover {
        transform: translateY(-2px);
    }
}
.btn-hero-primary:active, .btn-contact-submit:active, .nav-btn-primary:active {
    transform: scale(0.96) translateY(0);
}

/* Secondary Button Interactive Scale */
.btn-hero-secondary, .nav-btn-secondary {
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.1s ease;
}
@media (hover: hover) and (pointer: fine) {
    .btn-hero-secondary:hover, .nav-btn-secondary:hover {
        transform: translateY(-2px);
    }
}
.btn-hero-secondary:active, .nav-btn-secondary:active {
    transform: scale(0.96) translateY(0);
}

/* 4. Site Photos Feature Icon Hover Jiggle */
.site-photos-feature {
    cursor: default;
}
.site-photos-feature:hover .site-photos-feature-icon {
    animation: gentle-jiggle 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gentle-jiggle {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.1); }
    50% { transform: rotate(5deg) scale(1.1); }
    75% { transform: rotate(-3deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

/* 5. Smooth shadow depth to feature lists */
.site-photos-feature {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-photos-features:hover .site-photos-feature:not(:hover) {
    opacity: 0.6;
}
.site-photos-feature:hover {
    transform: translateX(4px);
}

/* 6. FAQ Rotate background on hover */
.faq-item {
    position: relative;
    overflow: hidden;
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-warm);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
.faq-item:hover::before, .faq-item.active::before {
    transform: scaleY(1);
}

/* 7. Subtle 3D lift for mockups */
.billing-mockup, .phone-frame {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.billing-mockup:hover, .phone-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.calculator-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.calc-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.calc-sliders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calc-slider-group {
    background: var(--bg-warm);
    border-radius: 14px;
    padding: 1.1rem 1.35rem 0.9rem;
    border: 1px solid rgba(31, 31, 26, 0.06);
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.65rem;
}

.calc-label {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.calc-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-warm);
    font-variant-numeric: tabular-nums;
}

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-warm) 0%, rgba(59, 130, 246, 0.15) 0%);
    outline: none;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent-warm);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent-warm);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    cursor: pointer;
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.calc-results-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.calc-headline {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-warm);
    border-radius: 16px;
    border: 1px solid rgba(31, 31, 26, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-headline-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.calc-headline-sublabel {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.calc-headline-number {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    color: var(--accent-warm);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0.2rem 0;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-headline-number.bump {
    transform: scale(1.06);
}

.calc-payback-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.calc-payback-inline i {
    font-size: 0.7rem;
}

.calc-card {
    padding: 1.1rem 1.25rem;
    background: var(--bg-warm);
    border-radius: 14px;
    border: 1px solid rgba(31, 31, 26, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.calc-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}

.calc-card-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    margin-bottom: 1px;
}

.calc-card-math {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    color: var(--text-secondary);
    opacity: 0;
    font-variant-numeric: tabular-nums;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calc-card:hover .calc-card-math,
.calc-card.show-math .calc-card-math {
    opacity: 0.7;
    max-height: 1.5em;
    margin-bottom: 6px;
}

.calc-card-title {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.calc-card-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .calc-results-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 3.5rem 0;
    }

    .calc-sliders-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .calc-results-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .calc-headline-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .calc-slider-group {
        padding: 1rem 1.1rem 0.8rem;
    }
}
