    :root {
        --black: #000000;
        --white: #ffffff;
        --gray: #8c8c8c;
        --off-white: #f5f5f7;
        --blue: #0062ff;
        --mid-blue: #5E9CFF;

        /* Card Color Tokens */
        --lifeos-start: #59baf2;
        --lifeos-mid: #DCE7ED;
        --lifeos-mid-2: #ffa985;
        --lifeos-end: #de1f32;
        --core-start: #07a3b2;
        --core-end: #d9ecc7;
        --note-start: #dbedf8;
        --note-end: #48c4f6;
        --book-start: #f0ebd3;
        --book-end: #f17e12;
        --contact-start: #f9e3de;
        --contact-end: #eb44b2;
        --red: #ff3b30;
    }

    /* ---------- TYPOGRAPHY ---------- */
    .heading>span {
        font-size: 3.5rem;
        font-weight: 600;
        display: inline-block;
        /* Changed from block to avoid forced full-width wrap */
        color: var(--black);
    }

    .heading_mid>span {
        font-size: 3rem;
        font-weight: 600;
        display: inline-block;
        /* Changed from block to avoid forced full-width wrap */
        color: var(--black);
    }

    .heading_small>span {
        font-size: 2.3rem;
        font-weight: 600;
        display: inline-block;
        color: var(--black);
    }

    .heading-gradient>span {
        background: linear-gradient(to right, var(--black), var(--mid-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .subheading>span {
        font-size: 1.3rem;
        display: block;
        font-weight: 450;
    }

    .highlight-blue {
        color: inherit;
        /* Let the parent gradient show through */
        font-weight: 700;
    }

    /* ---------- BASE ---------- */

    html {
        overflow-y: scroll;
        /* Force scrollbar to prevent layout shift */
    }

    body {
        font-family: "Inter", sans-serif;
        background-color: var(--off-white);
        color: var(--black);
        margin: 0;
        padding: 0;
    }

    /* Page Content Transition Wrapper - REMOVED */


    /* ---------- LENIS SMOOTH SCROLL ---------- */
    html.lenis,
    html.lenis body {
        height: auto;
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
        overflow: hidden;
    }

    .lenis.lenis-scrolling iframe {
        pointer-events: none;
    }

    /* ---------- HERO (STICKY CURTAIN EFFECT) ---------- */
    .hero-section {
        position: relative;
        z-index: 5;
        /* <--- Raised z-index to sit above banner */
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
        /* <--- Shadow casting upwards */

        padding: 200px 0 150px;
        /* Restored bottom padding */
        background: var(--white);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-section>*:not(.hero-video) {
        z-index: 1;
    }

    .main-heading {
        position: relative;
        /* <-- add this */
        text-align: center;
        z-index: 1;
        /* optional, but good */
    }

    .midtext {
        font-size: 1.7rem;
        display: block;
        font-weight: 350;
    }

    .hero-video {
        position: absolute;
        inset: 0;
        /* top:0; right:0; bottom:0; left:0 */
        z-index: 0;
        overflow: hidden;
    }

    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        /* lets cards/text be clickable */
    }

    /* Hero Benefits */
    .hero-benefits {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: -5px;
        flex-wrap: wrap;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--blue);
        font-weight: 500;
        font-size: 0.8rem;
    }

    .benefit-icon {
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero CTA */
    .hero-cta {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-button {
        background-color: var(--blue);
        color: var(--white);
        padding: 10px 30px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 350;
        text-decoration: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .cta-button:hover {
        opacity: 0.8;
    }

    /* ---------- SUBPAGE HERO (LifeOS, etc) ---------- */
    .subpage-hero {
        padding: 160px 0 100px;
        min-height: auto;
        display: block;
        text-align: center;
        background: var(--white);
        box-shadow: none;
    }

    .subpage-hero .main-heading {
        margin-bottom: 40px;
    }

    .hero-cta-group {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: -20px;
        margin-bottom: 100px;
    }

    .hero-price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        font-size: 1.7rem;
        font-weight: 400;
        color: var(--black);
    }

    .hero-price .price-was {
        font-size: 1.1rem;
        text-decoration: line-through;
        opacity: 0.5;
        font-weight: 400;
    }

    .hero-visual {
        max-width: 1400px;
        margin: -50px auto 0;
        padding: 0 40px;
        perspective: 2000px;
    }

    .subpage-hero .window-container {
        display: block;
        width: 100%;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
        background: var(--white);
        transform: rotateX(15deg) scale(0.9);
        transform-origin: center top;
        will-change: transform;
    }

    .subpage-hero .window-container video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
    }

    @media (max-width: 768px) {
        .subpage-hero {
            padding: 120px 0 60px;
        }

        .hero-visual {
            padding: 0 20px;
        }

        .subpage-hero .window-container {
            border-radius: 20px;
        }
    }

    .cta-subtext {
        font-size: 0.8rem;
        color: var(--black);
        margin: 0;
    }

    .cta-subtext .highlight {
        color: var(--blue);
        font-weight: 700;
    }

    /* ---------- PROMO BANNER (Reveal Animation) ---------- */
    .promo-banner {
        background-color: var(--off-white);
        color: var(--black);

        /* Layout */
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;

        /* Animation Base */
        height: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        font-size: 0.9rem;
        font-weight: 350;
    }

    .promo-content {
        padding: 10px 20px;
        text-align: center;
    }

    .promo-banner a {
        color: var(--blue);
        text-decoration: none;
        font-weight: inherit;
        margin-left: 5px;
    }

    .promo-banner a:hover {
        text-decoration: underline;
    }

    .promo-chevron {
        width: 0.8em;
        height: 0.8em;
        fill: currentColor;
        vertical-align: middle;
        margin-left: -4px;
        position: relative;
        top: -1px;
    }

    /* ---------- FLAGSHIP SECTION ---------- */
    .flagship-section {
        position: relative;
        z-index: 10;
        padding: 80px 0 100px;
        background: var(--off-white);
        color: var(--white);
    }

    .flagship-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .flagship-card {
        background: linear-gradient(200deg, var(--lifeos-start) 0%, var(--lifeos-mid) 50%, var(--lifeos-mid-2) 100%);
        border-radius: 30px;
        padding: 40px 40px 30px;
        display: grid;
        grid-template-columns: 330px 1fr;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        gap: 60px;
        align-items: stretch;
        color: #000;
        min-height: 500px;
        overflow: hidden;
        position: relative;
        /* anchor for absolute video */
    }

    /* Left Content */
    .flagship-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .flagship-header {
        display: flex;
        flex-direction: column;
        gap: 12px;
        /* <--- REDUCED GAP (was 20px) */
    }

    .flagship-title {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: -5px;
        line-height: 1;
    }

    .flagship-desc {
        font-size: 1.25rem;
        line-height: 1.4;
        opacity: 0.8;
        margin-bottom: 5px;
    }

    .flagship-price {
        display: flex;
        align-items: baseline;
        gap: 10px;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .price-original {
        font-size: 0.8rem;
        text-decoration: line-through;
        opacity: 0.5;
        font-weight: 400;
    }

    .flagship-actions {
        display: flex;
        gap: 0px;
        /* Tightened from 12px */
        margin-top: 5px;
        /* Nudged down slightly */
        align-items: center;
    }

    .btn-get {
        background: var(--blue);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        color: var(--white);
        padding: 7px 30px;
        font-size: 1rem;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 350;
        transition: opacity 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        height: max-content;
        position: relative;
        z-index: 1;
    }

    .btn-get:hover {
        opacity: 0.9;
        color: var(--white);
    }

    .btn-explore {
        font-size: 1rem;
        color: var(--blue);
        /* Set to var(--blue) by default */
        text-decoration: none;
        padding: 7px 20px;
        font-weight: 350;
        transition: opacity 0.2s;
    }

    /* Flagship Accordion (Synced with DB Style) */
    .flagship-accordion {
        display: flex;
        flex-direction: column;
        border-top: none;
        margin-top: 50px;
        width: 100%;
    }

    .accordion-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100% !important;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .accordion-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .accordion-header {
        width: 100%;
        padding: 8px 0;
        /* Reduced padding from 15px */
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        color: inherit;
    }

    .accordion-title {
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .accordion-chevron {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        opacity: 0.6;
    }

    .accordion-item.active .accordion-chevron {
        transform: rotate(180deg);
    }

    .accordion-content {
        height: 0;
        overflow: hidden;
        /* Animation handled by JS (gsap) */
    }

    .accordion-inner {
        padding: 0 0 12px 0px;
        /* Reduced bottom padding from 20px */
        font-size: 0.8rem;
        line-height: 1.5;
        opacity: 0.7;
        /* Keep text readable on light-mid gradient areas */
    }

    /* Override for flagship section light text if needed */
    .flagship-card .accordion-inner {
        color: rgba(0, 0, 0, 1);
    }


    /* Right Content — Absolutely positioned, independent of accordion */
    .flagship-visual {
        position: absolute;
        right: -40px;
        bottom: 0;
        /* Stuck to bottom by default */
        width: calc(100% - 410px);
        /* Refined Desktop width */
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        pointer-events: none;
    }

    .window-container {
        position: relative;
        height: 85%;
        width: auto;
        max-width: 100%;
        /* Prevent overlap */
        aspect-ratio: 16/9;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-radius: 20px 0 0 0px;
        pointer-events: auto;
        background: var(--white);
    }

    .window-container video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Fits perfectly due to aspect-ratio on container */
        z-index: 2;
        border-radius: 20px 0 0 0px;
        will-change: opacity;
    }

    /* Ensure first video is visible initially and defines aspect ratio container if needed */
    #flagshipVideo1 {
        position: relative;
        z-index: 2;
        opacity: 1;
    }

    #flagshipVideo2 {
        z-index: 3;
        opacity: 0;
    }

    /* Mobile Dots & Info Styling - Defined BEFORE media queries so they can be overridden */
    .flagship-mobile-content {
        display: none;
        /* Hidden by default (Desktop > 768px) */
    }

    .flagship-mobile-info {
        display: flex;
        flex-direction: column;
        gap: 2px !important;
        /* Extremely tight gap */
    }

    .mobile-info-title {
        font-size: 0.9rem !important;
        /* Compact title */
        font-weight: 700;
        margin: 0 !important;
        color: var(--black);
        line-height: 1.2;
    }

    .mobile-info-desc {
        font-size: 0.8rem !important;
        /* Minimalist description */
        line-height: 1.4;
        margin: 0 !important;
        opacity: 0.7;
        color: var(--black);
    }

    .flagship-dots {
        display: flex;
        gap: 12px;
        margin-top: 5px;
    }

    .flagship-dot {
        width: 8px;
        /* Reduced from 12px */
        height: 8px;
        /* Reduced from 12px */
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .flagship-dot.active {
        background: var(--black);
        transform: scale(1.15);
        /* Reduced scale slightly for better fit */
    }

    /* Responsive: Standard Desktop -> Hybrid Stack Transition */
    @media (max-width: 1440px) {
        .flagship-visual {
            width: calc(100% - 390px);
        }
    }

    /* Hybrid Stack (Header > Video > Dots) below 1440px */
    @media (max-width: 1440px) {
        .flagship-card {
            grid-template-columns: 1fr;
            padding: 40px 30px;
            gap: 0;
            /* Using margins on elements for precise control */
        }

        .flagship-info {
            display: contents;
            /* Allow grid to see children directly */
        }

        .flagship-header {
            order: 1;
            margin-bottom: 15px;
            /* Tightened gap to video */
        }

        .flagship-visual {
            order: 2;
            position: relative;
            width: 100%;
            height: auto;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
            margin-top: 40px;
            /* Tightened gap to dots */
            right: auto;
            bottom: auto;
        }

        .window-container {
            height: auto;
            width: 100%;
            border-radius: 20px;
            /* Rounded all corners in stacked mode */
        }

        .window-container video {
            border-radius: 20px;
        }

        .flagship-accordion {
            display: none !important;
        }

        .flagship-mobile-content {
            display: flex !important;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            order: 3;
            /* Places dots/info at the bottom below visual */
        }

        /* Specialized Typography for dots info at 1024px-1440px */
        .mobile-info-title {
            font-size: 1.4rem !important;
            margin-bottom: 5px !important;
        }

        .mobile-info-desc {
            font-size: 1rem !important;
            opacity: 0.75;
        }
    }

    @media (max-width: 768px) {
        .flagship-card {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 30px 25px;
            height: auto;
            min-height: unset !important;
            /* Allow height to be natural on mobile */
            overflow: visible;
            align-items: start;
        }

        /* Reset typography for true mobile screens */
        .mobile-info-title {
            font-size: 0.95rem !important;
        }

        .mobile-info-desc {
            font-size: 0.8rem !important;
        }

        .flagship-visual {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            min-height: auto;
            border-radius: 12px;
            transform: none;
            margin-top: 0px;
            margin-bottom: 20px;
            overflow: hidden;
            /* Prevent video bleeding */
            justify-content: center;
            align-items: center;
            right: auto;
            bottom: auto;
            display: flex;
            /* Ensure container actually centers the video */
        }

        .window-container {
            height: 100%;
            width: 100%;
            border-radius: 12px;
        }

        .window-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        /* Toggle Visibility - Handled at 1440px stack threshold */
    }



    /* ---------- BREATHING DOT GRID SECTION ---------- */
    .dot-grid-section {
        position: relative;
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Removed min-height to collapse empty space */
        padding-top: 100px;
        padding-bottom: 60px;
        overflow: hidden;
        background: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dot-grid-header {
        position: relative;
        z-index: 10;
        margin-bottom: 0px;
        max-width: 1000px;
        padding: 0 20px;
        opacity: 0;
    }

    .dot-grid-header .heading_mid {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .dot-grid-header .subheading span {
        font-size: 1.1rem;
    }

    #dotCanvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        /* Behind everything */
        pointer-events: none;
    }

    /* ---------- NETWORK VISUALIZATION ---------- */
    .network-container {
        position: relative;
        width: 100%;
        max-width: 1400px;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 5;
        margin: 40px auto;
        /* Edge Fading Mask */
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        pointer-events: none;
        overflow: hidden;
    }

    .network-node {
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 2;
        pointer-events: none;
        will-change: transform;
        opacity: 0;
        transform: translateY(-50%) scale(1);
    }

    .node-card {
        background: transparent;
        border-radius: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: none;
    }

    .node-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
    }


    /* Responsive Scaling */
    @media (max-width: 1024px) {
        .network-container {
            max-width: 1000px;
        }

        .dot-grid-header .heading_mid {
            font-size: 2.6rem;
        }

        .dot-grid-header .subheading span {
            font-size: 1.05rem;
        }
    }

    @media (max-width: 768px) {
        .dot-grid-section {
            padding: 60px 0;
        }

        .network-container {
            height: 120px;
            margin: 20px auto;
        }

        .node-card img {
            width: 50px;
            height: 50px;
        }

        .dot-grid-header .heading_mid {
            font-size: 2.2rem;
        }

        .dot-grid-header .subheading span {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .dot-grid-section {
            padding: 40px 0;
        }

        .network-container {
            height: 120px;
            margin: 10px auto;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .node-card img {
            width: 48px;
            height: 48px;
        }

        .dot-grid-header .heading_mid span {
            font-size: 1.2rem;
        }

        .dot-grid-header .subheading span {
            font-size: 0.7rem;
            line-height: 1.5;
        }
    }


    /* ---------- NAVBAR ---------- */
    .floating-nav {
        position: fixed;
        top: 20px;
        /* Base position */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 6px;
        /* Uniform gap */
        padding: 6px 6px;
        /* Base padding */
        /* Uniform padding for symmetry */
        background: rgba(230, 230, 235, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 100px;
        z-index: 1000;
        will-change: transform;
        /* Optimize rendering to prevent jitter */
        transform: translateX(-50%) translateZ(0);
        /* Hardware Acceleration Hack for Safari */
        -webkit-transform: translateX(-50%) translateZ(0);
        backface-visibility: hidden;
        /* Extra stability */
        -webkit-backface-visibility: hidden;

        /* Removed CSS Transitions for GSAP control */
    }

    /* Shared styles for nav items (brand and links) to support the active pill */
    .nav-item-base {
        padding: 6px 16px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--black);
        font-weight: 350;
        font-size: 0.9rem;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-brand:hover {
        color: var(--blue);
    }

    .nav-brand.nav-pill-active:hover {
        color: var(--black);
    }

    .nav-pill-active {
        background: var(--white);
        color: var(--black);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-logo {
        width: 15px;
        height: 15px;
        object-fit: contain;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
        padding-right: 0;
        overflow: hidden;
        /* Essential for masking during animation */

        /* Removed CSS Transitions for GSAP control */
    }


    /* Default link style (when not active) */
    .nav-link {
        color: var(--black);
        text-decoration: none;
        font-weight: 350;
        font-size: 0.9rem;
        transition: color 0.2s ease;
        padding: 6px 16px;
        border-radius: 100px;
        white-space: nowrap;
        /* Prevent wrap during transition */
    }

    .nav-link:hover {
        color: var(--blue);
    }

    .nav-link.nav-pill-active,
    .nav-link.nav-pill-active:hover {
        color: var(--black);
    }


    /* ========== RESPONSIVE: NAV COLLAPSE (1024px) ========== */
    @media (max-width: 1024px) {
        .floating-nav {
            padding: 6px 6px 0;
            flex-direction: column;
            border-radius: 20px;
            align-items: stretch;
        }

        .nav-links {
            flex-direction: column;
            gap: 2px;
            height: 0;
            overflow: hidden;
        }

        .nav-link {
            padding: 8px 12px;
        }
    }


    /* ========== RESPONSIVE: TABLET (768px) ========== */
    @media (max-width: 768px) {

        /* Typography */
        .heading>span {
            font-size: 1.8rem;
            /* Increased from 1.8rem */
        }

        .heading_mid>span {
            font-size: 1.4rem;
        }

        .subheading>span {
            font-size: 0.8rem;
            /* Increased from 0.8rem */
        }

        .accordion-title {
            font-size: 0.8rem;
        }

        .accordion-sub {
            font-size: 0.7rem;
        }

        /* Hero */
        .hero-section {
            padding: 100px 20px 60px;
            min-height: auto;
            justify-content: center;
            gap: 30px;
        }

        .benefit-item {
            font-size: 0.6rem;
            /* Reduced from 0.8rem */
        }

        .benefit-icon {
            font-size: 0.8rem;
        }

        .cta-button {
            font-size: 1rem;
            padding: 10px 25px;
        }

        /* Promo Banner */
        .promo-banner {
            font-size: 0.5rem;
        }

        .promo-content {
            padding: 8px 15px;
            font-size: 0.7rem;
        }

        /* Flagship */
        .flagship-section {
            padding: 50px 0;
        }

        .flagship-title {
            font-size: 2.2rem;
        }

        .flagship-desc {
            font-size: 1rem;
        }

        .flagship-price {
            font-size: 1.4rem;
        }

        .nav-item-base {
            padding: 5px 12px;
            font-size: 0.8rem;
        }

        .nav-link {
            font-size: 0.8rem;
            padding: 5px 12px;
        }

        /* Dot Grid */
        .dot-grid-content {
            padding: 0 20px;
        }
    }


    /* ========== RESPONSIVE: MOBILE (375px) ========== */
    @media (max-width: 375px) {

        /* Typography */
        .heading>span {
            font-size: 1.8rem;
            /* Increased from 1.2rem */
        }

        .heading_mid>span {
            font-size: 1rem;
        }

        .subheading>span {
            font-size: 0.8rem;
            /* Increased from 0.55rem */
        }

        /* Hero */
        .hero-section {
            padding: 80px 15px 60px;
        }

        .hero-benefits {
            gap: 10px;
            /* Tightened from 12px */
        }

        .benefit-item {
            font-size: 0.6rem;
            /* Reduced from 0.7rem */
        }

        .benefit-icon {
            font-size: 0.8rem;
        }

        .cta-button {
            font-size: 0.9rem;
            padding: 8px 20px;
        }

        .cta-subtext {
            font-size: 0.6rem;
        }

        /* Promo Banner */
        .promo-banner {
            font-size: 0.65rem;
        }

        /* Flagship */
        .flagship-section {
            padding: 30px 0;
        }

        .flagship-container {
            padding: 0 10px;
        }

        .flagship-card {
            padding: 20px 15px 20px;
            /* Reduced from 25px 20px 25px */
            border-radius: 20px;
            gap: 15px;
            /* Tighter internal layout */
        }

        .flagship-actions {
            justify-content: flex-start;
            gap: 10px;
        }

        .btn-get,
        .btn-explore {
            padding: 8px 15px;
            font-size: 0.9rem;
        }

        .flagship-title {
            font-size: 1.8rem;
            /* Reduced from 2.2rem */
            margin-bottom: 0;
        }

        .flagship-desc {
            font-size: 0.9rem;
            /* Reduced from 1rem */
            margin-bottom: 10px;
        }

        .flagship-price {
            font-size: 1.4rem;
        }

        .accordion-title {
            font-size: 0.85rem;
        }

        /* Navbar */
        .nav-item-base {
            padding: 4px 10px;
            font-size: 0.75rem;
        }

        .nav-logo {
            width: 12px;
            height: 12px;
        }
    }


    /* ---------- FEATURED TEMPLATES SECTION ---------- */
    .templates-section {
        position: relative;
        z-index: 15;
        padding: 60px 0 80px;
        background-color: linear-gradient(180deg var(--off-white), var(--white));
        text-align: center;
        overflow: hidden;
    }

    .templates-container {
        max-width: 1450px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .templates-section .heading {
        margin-bottom: 0 !important;
    }

    /* Custom Stacked Carousel */
    .carousel-track {
        position: relative;
        width: 100%;
        height: 580px;
        margin: 30px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        touch-action: pan-x;
    }

    /* Carousel Cards */
    .carousel-card {
        position: absolute;
        width: 460px;
        height: 415px;
        /* Reduced from 430px */
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        /* No CSS transitions — GSAP handles all animation */
        will-change: transform;
    }

    /* Hover effect moved to JavaScript for better control */

    .slide-content {
        padding: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
        /* Ensure text and buttons are above the video */
    }

    /* Price Tag (top-right) */
    .slide-price {
        position: absolute;
        top: 30px;
        right: 20px;
        text-align: right;
        line-height: 1.2;
    }

    .price-now {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--black);
        display: block;
    }

    .price-was {
        font-size: 0.85rem;
        color: rgba(0, 0, 0, 0.4);
        text-decoration: line-through;
        display: block;
    }

    /* Slide Title & Description */
    .slide-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0 0 5px;
        color: var(--black);
        text-align: left;
    }

    .slide-desc {
        font-size: 0.95rem;
        color: rgb(0, 0, 0);
        margin: 0 0 10px;
        font-weight: 350;
        text-align: left;
    }

    /* Slide CTA — removed frosted-glass pill */
    .slide-actions {
        display: flex;
        gap: 0px;
        /* Tightened from 12px */
        align-items: center;
        width: fit-content;
    }

    /* Card Visual (video area) */
    .card-visual {
        position: absolute;
        bottom: 0px;
        left: 20px;
        right: 0;
        aspect-ratio: 16 / 9;
        /* Matches standard video format to prevent cropping */
        display: block;
        pointer-events: none;
        z-index: 1;
        background: var(--white);
        border-radius: 20px 0 0 0;
        overflow: hidden;
        /* Clip video to rounded corners */
    }

    .card-visual video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Fill the frame without cropping sides since aspect-ratio matches */
        object-position: right bottom;
        border-radius: inherit;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        opacity: 1;
        position: relative;
        z-index: 2;
    }


    /* ---- Card Colors ---- */
    .card-lifeos {
        background: linear-gradient(200deg, var(--lifeos-start) 0%, var(--lifeos-mid) 25%, var(--lifeos-mid-2) 75%, var(--lifeos-end) 100%);
    }

    .card-core {
        background: linear-gradient(180deg, var(--core-end), var(--core-start));
    }

    .card-notes {
        background: linear-gradient(180deg, var(--note-start), var(--note-end));
    }

    .card-books {
        background: linear-gradient(180deg, var(--book-start), var(--book-end));
    }

    .card-contacts {
        background: linear-gradient(180deg, var(--contact-start), var(--contact-end));
    }

    /* Inactive cards: prevent interaction with inner content */
    .carousel-card:not(.is-active) .slide-content {
        pointer-events: none;
    }

    /* Carousel Navigation Arrows */
    .carousel-arrow {
        position: relative;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(100, 100, 100, 0.2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 200;
        transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
    }

    .carousel-arrow:hover {
        background: rgba(180, 180, 180, 0.6);
        transform: scale(1.1);
    }

    .carousel-arrow svg {
        stroke: white;
    }

    /* Responsive Arrows Removal */
    @media (max-width: 1024px) {

        .carousel-card {
            width: 380px;
            height: 350px;
        }

        .carousel-track {
            height: 500px;
        }

        .slide-title {
            font-size: 1.6rem;
        }

        .slide-desc {
            font-size: 0.85rem;
        }

        .price-now {
            font-size: 1.3rem;
        }

        .price-was {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 768px) {
        .carousel-track {
            height: 400px;
        }

        .carousel-card {
            width: 300px;
            height: 290px;
        }

        .slide-title {
            font-size: 1.4rem;
        }

        .slide-desc {
            font-size: 0.6rem;
        }

        .price-now {
            font-size: 1.15rem;
        }

        .price-was {
            font-size: 0.75rem;
        }

        .midtext {
            font-size: 1.2rem;
            margin-top: 10px;
        }
    }

    /* Carousel Controls */
    .carousel-controls-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
        position: relative;
        z-index: 200;
        margin-bottom: 20px;
        will-change: transform, opacity;
        backface-visibility: hidden;
    }

    .carousel-controls-pill {
        background: rgba(100, 100, 100, 0.2);
        border-radius: 100px;
        padding: 14px 22px;
        display: flex;
        align-items: center;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .carousel-pagination {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pagination-dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255);
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        border: none;
        position: relative;
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        touch-action: none;
        /* Prevent scrolling while scrubbing */
    }

    /* Larger hit area for scrubbing */
    .pagination-dot::after {
        content: '';
        position: absolute;
        top: -12px;
        bottom: -12px;
        left: -8px;
        right: -8px;
    }

    /* Disable transitions while scrubbing for instant feedback */
    .pagination-dot.is-scrubbing .dot-fill {
        transition: none !important;
    }

    .dot-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: var(--white);
        border-radius: inherit;
        pointer-events: none;
    }

    .pagination-dot.is-active {
        width: 32px;
        background: rgb(200, 200, 200);
        border-radius: 100px;
        opacity: 1;
    }

    .pagination-dot.is-active .dot-fill {
        background: var(--white);
    }

    .autoplay-toggle {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(100, 100, 100, 0.2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .autoplay-toggle:hover {
        background: rgba(180, 180, 180, 0.6);
    }

    .autoplay-toggle i {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .explore-arrow {
        width: 36px;
        height: 36px;
        background: var(--white);
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .explore-arrow svg {
        stroke: var(--blue);
    }

    /* ---------- PRICING SECTION ---------- */
    .pricing-section {
        padding: 60px 0;
        background-color: var(--off-white);
        position: relative;
        z-index: 10;
        overflow: hidden;
    }

    .pricing-header {
        margin-bottom: 70px;
    }

    .pricing-grid {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto 70px;
        padding: 0 20px;
    }

    .pricing-card {
        flex: 1;
        border-radius: 24px;
        padding: 45px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    /* Subscription Card */
    .sub-card {
        background-color: #FEF2F2;
        /* Light red tint */
        border: 1px solid rgba(239, 68, 68, 0.08);
    }

    .card-header-sub {
        display: flex;
        gap: 18px;
        margin-bottom: 40px;
    }

    .warning-icon {
        font-size: 2.8rem;
        color: #EF4444;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-text-sub h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #B91C1C;
        margin: 0;
    }

    .header-text-sub p {
        font-size: 0.95rem;
        color: #EF4444;
        margin: 4px 0 0;
        font-weight: 400;
    }

    .sub-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sub-pill {
        background: var(--white);
        border-radius: 14px;
        padding: 18px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        transition: transform 0.2s ease;
    }

    .sub-pill:hover {
        transform: translateY(-2px);
    }

    .pill-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sub-pill-icon {
        color: var(--red);
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pill-title {
        font-weight: 500;
        color: var(--black);
        font-size: 1.1rem;
    }

    .pill-price {
        font-weight: 600;
        font-size: 1.3rem;
        color: var(--black);
    }

    .pill-price small {
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 400;
        margin-left: 2px;
    }

    /* LifeOS Card */
    .lifeos-pricing-card {
        background: linear-gradient(145deg, #0062ff 0%, #001a4d 100%);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lifeos-title {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -0.5px;
    }

    .lifeos-price-row {
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 15px;
    }

    .price-main {
        font-size: 4rem;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .price-strike {
        font-size: 1.6rem;
        text-decoration: line-through;
        opacity: 0.4;
        font-weight: 400;
    }

    .divider-lifeos {
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
        margin-bottom: 30px;
        width: 100%;
    }

    .lifeos-features {
        list-style: none;
        padding: 0;
        margin: 0 0 45px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .lifeos-features li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 1.15rem;
        font-weight: 400;
        opacity: 0.95;
    }

    .lifeos-features img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .lifeos-actions {
        margin-top: auto;
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .btn-lifeos-get {
        background: var(--white);
        color: var(--blue);
        padding: 14px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: inline-block;
    }

    .btn-lifeos-learn {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        opacity: 0.7;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .btn-lifeos-get:hover {
        transform: scale(1.05);
    }

    .btn-lifeos-learn:hover {
        opacity: 1;
        transform: translateX(3px);
    }

    /* Footer CTA */
    .pricing-footer {
        margin-top: 20px;
    }

    .pricing-cta {
        display: inline-block;
        padding: 14px 45px;
        font-size: 1.25rem;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    }

    .pricing-footer .cta-subtext {
        margin-top: 20px;
        font-size: 0.9rem;
    }

    /* Scroll Trigger Initial States (JS will animate) */
    .pricing-header,
    .pricing-card,
    .pricing-footer {
        opacity: 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .pricing-grid {
            flex-direction: column;
            align-items: center;
            max-width: 550px;
            gap: 30px;
        }

        .pricing-card {
            width: 100%;
            padding: 35px;
        }

        .heading-pricing span {
            font-size: 2.8rem;
        }

        .pricing-section {
            padding: 80px 0;
        }

        /* Typography Adjustments */
        .price-main {
            font-size: 3.5rem;
        }

        .lifeos-title {
            font-size: 2.2rem;
        }

        .header-text-sub h3 {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        /* Pricing layout handled at 1024px */
    }

    @media (max-width: 375px) {
        .heading-pricing span {
            font-size: 2.2rem;
        }

        .price-main {
            font-size: 3.2rem;
        }

        .pricing-card {
            padding: 30px 20px;
        }

        .card-header-sub {
            gap: 12px;
        }

        .warning-icon {
            width: 36px;
            height: 36px;
        }

        .header-text-sub h3 {
            font-size: 1.4rem;
        }

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

        .lifeos-actions {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .btn-lifeos-get {
            width: 100%;
            text-align: center;
        }

        /* 768px & 480px Adjustments */
        .price-main {
            font-size: 3rem;
        }

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

        .header-text-sub h3 {
            font-size: 1.4rem;
        }

        .pill-title {
            font-size: 1rem;
        }

        .pill-price {
            font-size: 1.2rem;
        }

        .btn-lifeos-get,
        .btn-lifeos-learn {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .price-main {
            font-size: 2.5rem;
        }

        .lifeos-title {
            font-size: 1.8rem;
        }

        .header-text-sub h3 {
            font-size: 1.3rem;
        }

        .header-text-sub p {
            font-size: 0.85rem;
        }

        .pill-title {
            font-size: 0.95rem;
        }

        .pill-price {
            font-size: 1.1rem;
        }

        .lifeos-features li span {
            font-size: 1rem;
        }

        .btn-lifeos-get {
            font-size: 0.95rem;
            padding: 12px 30px;
        }

        .btn-lifeos-learn {
            font-size: 0.95rem;
        }
    }

    /* ========== RESPONSIVE: TABLET (768px) ========== */
    @media (max-width: 768px) {
        .templates-section {
            padding: 60px 0;
        }

        .explore-all-btn {
            font-size: 0.9rem;
            padding: 6px 6px 6px 20px;
            margin-top: 20px;
        }

        .explore-arrow {
            width: 30px;
            height: 30px;
        }

        .explore-arrow svg {
            width: 14px;
            height: 14px;
        }
    }

    /* ========== RESPONSIVE: MOBILE (480px) ========== */
    @media (max-width: 375px) {
        .templates-section {
            padding: 40px 0;
        }

        .carousel-track {
            height: 320px;
        }

        .carousel-card {
            width: 280px;
            height: 260px;
        }

        .card-visual {
            left: 15px;
            aspect-ratio: 16 / 9;
            border-radius: 12px 0 0 0;
        }

        .slide-content {
            padding: 15px;
        }

        .slide-title {
            font-size: 1.15rem;
            margin-bottom: 2px;
        }

        .slide-desc {
            font-size: 0.65rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .slide-price {
            top: 15px;
            right: 15px;
        }

        .price-now {
            font-size: 1rem;
        }

        .price-was {
            font-size: 0.65rem;
        }

        .slide-actions {
            padding: 2px 4px;
            margin-bottom: 10px;
        }

        .slide-actions .btn-get {
            padding: 4px 14px;
            font-size: 0.75rem;
        }

        .slide-actions .btn-explore {
            font-size: 0.6rem;
            padding: 4px 10px;
        }

        .explore-all-btn {
            font-size: 0.8rem;
            padding: 5px 5px 5px 16px;
            gap: 8px;
        }

        .explore-arrow {
            width: 26px;
            height: 26px;
        }

        .explore-arrow svg {
            width: 12px;
            height: 12px;
        }
    }

    /* ---------- SETUP STEPS SECTION ---------- */
    .setup-section {
        padding: 100px 0 120px;
        background-color: var(--off-white);
        overflow: hidden;
    }

    .setup-header {
        margin-bottom: 64px;
        text-align: center;
    }

    .setup-section .heading span {
        font-size: 4rem;
        margin-bottom: 10px;
    }

    .setup-grid {
        display: flex;
        flex-direction: column;
        gap: 64px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Cards Row */
    .setup-cards-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        width: 100%;
        padding: 0 20px;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 24px 20px;
        border-radius: 20px;
        cursor: pointer;
        position: relative;
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
        overflow: hidden;
        /* For gradient pseudo-element */
    }


    /* Gradient Layer for Fade */
    .step-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(150deg, #0062ff 0%, #001a4d 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    /* Active State */
    .step-item.active {
        border-color: transparent;
    }

    .step-item.active::before {
        opacity: 1;
    }

    .step-icon-wrapper {
        width: 36px;
        height: 36px;
        background: var(--blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--white);
        transition: all 0.4s ease;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .step-item.active .step-icon-wrapper {
        background: var(--white);
        color: var(--blue);
    }

    .step-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
        z-index: 2;
    }

    .step-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0;
        color: var(--black);
        transition: color 0.4s ease;
    }

    .step-desc {
        font-size: 0.9rem;
        color: var(--gray);
        margin: 0;
        line-height: 1.5;
        transition: color 0.4s ease;
    }

    .step-item.active .step-title,
    .step-item.active .step-desc {
        color: var(--white);
    }

    /* Preview Col (Display Frame) */
    .setup-preview-col {
        width: 100%;
        padding: 0 20px;
    }

    .preview-browser-frame {
        width: 100%;
    }

    .preview-content {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 32px;
    }

    .preview-media {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.6s ease;
        pointer-events: none;
    }

    .preview-media.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Scoped for LifeOS subpage */
    .lifeos-page .step-title {
        font-size: 1.3rem;
    }

    .lifeos-page .step-desc {
        font-size: 0.8rem;
    }

    .preview-media video,
    .preview-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: none !important;
        outline: none !important;
    }

    /* Responsive Setup */
    @media (max-width: 1024px) {
        .setup-section {
            padding: 80px 0;
        }

        .setup-section .heading span {
            font-size: 3rem;
        }

        .setup-section .subheading span {
            font-size: 1.1rem;
        }

        .setup-grid {
            gap: 16px;
        }

        .setup-cards-row {
            gap: 16px;
            padding: 0 20px;
        }

        .setup-preview-col {
            padding: 0 20px;
        }

        .step-item {
            padding: 20px 16px;
            border-radius: 16px;
        }

        .step-title {
            font-size: 1.1rem;
        }

        .preview-browser-frame {
            padding: 0;
            border-radius: 32px;
        }
    }

    @media (max-width: 768px) {
        .setup-section {
            padding: 60px 20px 80px;
        }

        .setup-grid {
            gap: 40px;
        }

        .setup-header {
            margin-bottom: 32px;
        }

        .setup-section .heading span {
            font-size: 2.1rem;
        }

        .setup-section .subheading span {
            font-size: 0.9rem;
        }

        .setup-cards-row {
            grid-template-columns: 1fr;
            gap: 16px;
            padding: 0 20px;
            width: 100%;
            max-width: 500px;
        }

        .step-item {
            flex-direction: row;
            align-items: center;
            padding: 16px 20px;
            gap: 24px;
            border-radius: 16px;
        }


        .step-icon-wrapper {
            width: 32px;
            height: 32px;
            font-size: 1rem;
        }

        .step-title {
            font-size: 1.1rem;
        }

        .step-desc {
            font-size: 0.85rem;
        }

        .setup-preview-col {
            padding: 0 20px;
        }

        .preview-browser-frame {
            padding: 0;
            border-radius: 0;
        }

        .preview-content {
            border-radius: 24px;
        }
    }

    @media (max-width: 480px) {
        .setup-section {
            padding: 40px 20px 60px;
        }

        .setup-section .heading span {
            font-size: 1.8rem;
        }

        .setup-section .subheading span {
            font-size: 0.9rem;
        }

        .setup-cards-row {
            padding: 0 16px;
        }

        .step-item {
            padding: 20px 16px;
            gap: 24px;
        }

        .step-icon-wrapper {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }

        .step-title {
            font-size: 1rem;
        }

        .step-desc {
            font-size: 0.8rem;
        }

        .preview-browser-frame {
            padding: 0;
            border-radius: 0;
        }

        .preview-content {
            border-radius: 16px;
        }
    }

    /* ---------- FEATURES SECTION ---------- */
    .features-section {
        padding: 120px 0 180px;
        background-color: var(--white);
    }

    .feature-row {
        display: flex;
        align-items: center;
        gap: 80px;
        margin-bottom: 180px;
    }

    .feature-row:last-child {
        margin-bottom: 0;
    }

    .feature-row.row-reverse {
        flex-direction: row-reverse;
    }

    .feature-visual {
        flex: 1.2;
        perspective: 1000px;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text .heading_small {
        margin-bottom: 24px;
    }

    .feature-heading-icon {
        color: var(--red);
        margin-right: 12px;
        font-size: 0.9em;
        vertical-align: middle;
    }

    .feature-text .subheading {
        font-size: 1.2rem;
        line-height: 1.5;
        color: var(--black);
        opacity: 0.8;
        text-align: left;
    }

    /* Features Section Tilts */
    .feature-row .static-frame {
        transform: rotateY(8deg) rotateX(2deg);
        transition: transform 0.5s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .feature-row.row-reverse .static-frame {
        transform: rotateY(-8deg) rotateX(2deg);
    }

    .feature-row .static-frame:hover,
    .feature-row.row-reverse .static-frame:hover {
        transform: rotateY(0) rotateX(0);
    }

    @media (max-width: 768px) {
        .features-section {
            padding: 80px 0;
        }

        .feature-row,
        .feature-row.row-reverse {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .feature-text .heading,
        .feature-text .subheading {
            text-align: center;
        }

        .feature-visual {
            width: 100%;
        }
    }

    /* ==========================================================================
       DATABASES SHOWCASE SECTION
       ========================================================================== */
    .databases-section {
        background: var(--off-white);
        padding: 100px 0;
        overflow: hidden;
    }

    .databases-header {
        margin-bottom: 20px;
    }

    .databases-header .heading {
        margin-bottom: 10px;
    }

    /* Video Carousel */
    .db-carousel-container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto 80px;
        z-index: 10;
    }

    .db-carousel-track {
        height: 620px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1200px;
        user-select: none;
        cursor: grab;
    }

    .db-carousel-track:active {
        cursor: grabbing;
    }

    .db-carousel-slide {
        position: absolute;
        width: 960px;
        height: 540px;
        border-radius: 24px;
        background: var(--white);

        overflow: hidden;
        will-change: transform, opacity;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .db-carousel-slide video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        pointer-events: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        /* Slight rounding for database videos */
    }


    /* Database Controls */
    .db-controls {
        margin-top: 30px;
    }

    .db-carousel-pagination {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Database Details Layout */
    .db-details-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 100px;
        max-width: 1100px;
        margin: 0 auto;
        align-items: start;
    }

    .db-title-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

    .db-main-icon {
        width: 54px;
        height: 54px;
        object-fit: contain;
    }

    .db-info-col .heading_mid {
        margin: 0;
    }

    .db-info-col .subheading {
        color: var(--gray);
        line-height: 1.6;
        font-size: 1.15rem;
    }

    /* Database Accordion */
    .key-features-heading {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 30px;
        color: var(--black);
    }

    .db-accordion {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .db-acc-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .db-acc-header {
        width: 100%;
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
    }

    .db-acc-title-wrap {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .db-acc-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--blue);
        font-size: 1.4rem;
    }

    .db-acc-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--black);
    }

    .db-acc-chevron {
        font-size: 1.3rem;
        color: var(--black);
        transition: transform 0.3s ease;
    }

    .db-acc-item.is-active .db-acc-chevron {
        transform: rotate(180deg);
    }

    .db-acc-content {
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .db-acc-inner {
        padding: 0 0 24px 48px;
        color: var(--gray);
        font-size: 1.05rem;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .db-carousel-slide {
            width: 700px;
            height: 394px;
        }

        .db-carousel-track {
            height: 500px;
        }

        .db-details-grid {
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .db-details-grid {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .db-carousel-slide {
            width: 90vw;
            height: calc(90vw * 0.5625);
        }

        .db-carousel-track {
            height: calc(90vw * 0.7);
        }

        .db-main-icon {
            width: 44px;
            height: 44px;
        }

        .db-acc-title {
            font-size: 1.15rem;
        }

        .db-acc-inner {
            padding-left: 0;
            font-size: 0.95rem;
        }
    }

    /* ---------- FAQ SECTION ---------- */
    .faq-section {
        position: relative;
        padding: 60px 0px 100px;
        background-color: var(--white);
        overflow: hidden;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

    .faq-header {
        margin-bottom: 60px;
        opacity: 0;
        /* JS Reveal */
    }

    .faq-header .heading {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: -1px;
        color: var(--black);
    }

    .faq-header .subheading {
        font-size: 1rem;
        color: var(--black);
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-list {
        margin-top: 50px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 0;
        /* JS Reveal */
    }

    .faq-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
    }

    .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 0;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--black);
        transition: color 0.3s ease;
        outline: none;
    }


    .faq-icon {
        font-size: 2rem;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        color: var(--black);
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
        /* Plus to Cross */
    }

    .faq-answer {
        height: 0;
        overflow: hidden;
        transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        opacity: 0;
    }

    .faq-item.active .faq-answer {
        opacity: 1;
    }

    .faq-answer-inner {
        padding: 0 0 28px;
        font-size: 1rem;
        line-height: 1.7;

        max-width: 100%;
    }

    @media (max-width: 768px) {
        .faq-section {
            padding: 80px 40px;
        }

        .faq-header .heading {
            font-size: 2.1rem;
        }

        .faq-header .subheading {
            font-size: 0.95rem;
        }

        .faq-question {
            font-size: 1.1rem;
            padding: 24px 0;
        }

        .faq-answer-inner {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .faq-section {
            padding: 60px 25px;
        }

        .faq-header .heading {
            font-size: 1.8rem;
        }

        .faq-header .subheading {
            font-size: 0.9rem;
        }

        .faq-question {
            font-size: 1rem;
        }
    }

    /* ---------- FOOTER SECTION ---------- */
    .site-footer {
        background-color: var(--off-white);
        padding: 80px 0 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--black);
    }

    .footer-container {
        max-width: 1450px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        gap: 60px;
        margin-bottom: 80px;
    }

    .footer-brand {
        max-width: 280px;
    }

    .footer-logo-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .footer-brand-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--black);
        margin: 0;
    }

    .footer-tagline {
        font-size: 1rem;
        color: var(--gray);
        line-height: 1.5;
        margin: 0;
    }

    .footer-links {
        display: flex;
        gap: 80px;
    }

    .footer-column {
        min-width: 140px;
    }

    .footer-heading {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 25px;
    }

    .footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-list a {
        text-decoration: none;
        color: var(--gray);
        font-size: 0.95rem;
        font-weight: 400;
        transition: color 0.2s ease;
    }

    .footer-list a:hover {
        color: var(--blue);
    }

    .footer-bottom {
        width: 100%;
    }

    .footer-divider {
        height: 1px;
        background-color: rgba(0, 0, 0, 0.1);
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-copyright p {
        font-size: 0.9rem;
        color: var(--gray);
        margin: 0;
    }

    /* Responsive Footer */
    @media (max-width: 1024px) {
        .footer-links {
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 50px;
        }

        .footer-brand {
            max-width: 100%;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }

    @media (max-width: 375px) {
        .footer-links {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .footer-container {
            padding: 0 20px;
        }

        .site-footer {
            padding: 60px 0 30px;
        }
    }