:root {
    /* Colors - Clean & Friendly Light Palette */
    --bg-dark: #fafafa;
    /* Off-white background */
    --bg-card: #ffffff;
    /* Pure white cards */
    --bg-card-hover: #ffffff;
    --text-main: #1f2937;
    /* Dark slate for contrast */
    --text-muted: #64748b;
    /* Soft gray for secondary text */

    --accent-blue: #8B5CF6;
    /* Violet */
    --accent-coral: #F97316;
    /* Orange */
    --accent-pink: #EC4899;
    /* Pink */

    /* Gradients (Soft & Subtle) */
    --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    --gradient-text: linear-gradient(90deg, var(--accent-blue), var(--accent-coral));
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Fluid Type */
    --text-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --text-h2: clamp(2rem, 3vw + 1rem, 3rem);
    --text-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    --text-body: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    color-scheme: light;
    /* Force light mode */
}

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;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: #111827;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    text-transform: capitalize;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Animation Checkpoints */
/* Animation Checkpoints */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger Utilities (Applied by JS) */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Stagger Effects */
.stagger-delay-1 {
    transition-delay: 100ms;
}

.stagger-delay-2 {
    transition-delay: 200ms;
}

.stagger-delay-3 {
    transition-delay: 300ms;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
    background: rgba(250, 250, 250, 0.85);
    /* Light glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

/* Animated Background Blobs */
.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: float-blob 20s infinite ease-in-out alternate;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(139, 92, 246, 0.4);
    /* Violet */
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(236, 72, 153, 0.3);
    /* Pink */
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: rgba(249, 115, 22, 0.2);
    /* Orange */
    animation-delay: -10s;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, -30px) scale(0.9);
    }
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.hero h1 {
    font-size: clamp(3rem, 6vw + 1rem, 5.5rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.05;
    color: #111827;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero p {
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-tag {
    display: inline-block;
    background: #FFF7ED;
    /* Light orange bg */
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-coral);
    font-weight: 700;
    border: 1px solid rgba(249, 115, 22, 0.2);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.1);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Stats Section (New) */
.stats-section {
    background: white;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Marquee Section (Sticky Tech Ticker) */
.marquee-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-container.visible {
    transform: translateY(0);
}

.marquee-content {
    display: inline-block;
    animation: marquee 60s linear infinite;
    /* Slower, smoother */
}

.marquee-item {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', monospace;
    /* Tech feel */
    color: rgba(255, 255, 255, 0.8);
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-item span {
    color: var(--accent-blue);
    margin: 0 1.5rem;
    font-size: 0.8rem;
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Magnetic Button Effect */
.btn-magnetic {
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    display: inline-block;
    /* Ensure transform works */
}

/* Gradient Border Animation */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    to {
        --angle: 360deg;
    }
}

.card-gradient-border {
    position: relative;
    border: 2px solid transparent !important;
    /* Transparent border to show gradient */
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        conic-gradient(from var(--angle), var(--accent-blue), var(--accent-pink), var(--accent-coral), var(--accent-blue)) border-box;
    /* Use background-origin trick instead of pseudo element for cleaner border-radius handling?
       Actually, pseudo is better for animation. Sticking to pseudo but fixing radius. */
    background: var(--bg-card);
    background-clip: padding-box;
    /* We rely on the element's own border-radius (e.g. .card or .col-us) */
}

/* We need to ensure the element itself has the radius set, which .col-us does (12px) and .card does (24px). */

.card-gradient-border::after {
    content: '';
    position: absolute;
    /* Extend slightly outside the border box to ensure visibility */
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from var(--angle), var(--accent-blue), var(--accent-pink), var(--accent-coral), var(--accent-blue));
    z-index: -1;
    border-radius: inherit;
    /* inherit from parent */
    animation: rotate-border 4s linear infinite;
    opacity: 1;
    /* Make it pop more given user feedback */
}


/* Spotlight Effect for Cards */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: var(--spacing-md);
    transition: all 0.1s ease-out;
    box-shadow: var(--shadow-soft);
    position: relative;
    /* overflow: hidden; Removed to allow outer glow/border */

    /* For 3D Tilt */
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(139, 92, 246, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
    /* Ensure spotlight follows radius */
}

.card:hover::before {
    opacity: 1;
}

.card h3,
.card p {
    position: relative;
    z-index: 3;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(139, 92, 246, 0.2);
}

.card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
    transform: translateZ(20px);
    /* Pop out text */
}

.card p {
    transform: translateZ(10px);
}

.card.highlight {
    grid-column: span 2;
    background: linear-gradient(145deg, #eff6ff, #fdf4ff);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

@media (max-width: 768px) {
    .card.highlight {
        grid-column: span 1;
    }
}


/* Section Common */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: var(--text-h2);
    margin-bottom: var(--spacing-xs);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Benefits (New Section) */
.benefits {
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: var(--accent-blue);
}

/* Target Audience (New) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.audience-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.audience-card h3 {
    color: var(--accent-blue);
}

/* Checklist Section (New) */
.checklist-section {
    background: #111827;
    /* Dark background for contrast */
    color: white;
    padding: var(--spacing-xl) 0;
    transform: skewY(-2deg);
    margin: 2rem 0;
}

.checklist-section .container {
    transform: skewY(2deg);
    /* Un-skew content */
}

.checklist-section h2 {
    color: white;
}

.checklist-section p {
    color: #9ca3af;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    color: #10b981;
    /* Green */
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* How It Works (New) */
.how-it-works {
    padding: var(--spacing-xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    counter-reset: step-counter;
}

.step-card {
    position: relative;
    padding: var(--spacing-md);
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}


/* Comparison Grid (Replaces Table) */
.comparison {
    padding: var(--spacing-xl) 0;
}

.comparison-grid {
    margin-top: var(--spacing-lg);
    background: white;
    border-radius: 24px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.grid-header,
.grid-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.grid-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 700;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.grid-row {
    padding: 1.2rem 0;
}

.grid-row:last-child {
    border-bottom: none;
}

.grid-cell {
    padding: 0 1rem;
    font-weight: 500;
    color: #374151;
}

.mobile-label {
    display: none;
    /* Hidden on Desktop */
}

/* Highlight Column */
.col-us {
    color: var(--accent-blue);
    font-weight: 800;
    background: #fdf4ff;
    border-radius: 12px;
    padding: 1rem !important;
    /* Override cell padding */
    text-align: center;
}

/* Center other value columns too */
.grid-cell:not(:first-child) {
    /* text-align: center; - Optional, maybe keep left aligned */
}


/* FAQ (New) */
.faq {
    padding: var(--spacing-xl) 0;
    background: #FAFAFA;
    transform: skewY(-2deg);
    margin: 2rem 0;
}

.faq .container {
    transform: skewY(2deg);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f2937;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s;
}

.faq-item.faq-active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.faq-active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
    /* arbitrary large height */
}

/* Guarantee Section */
.guarantee {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: 24px;
    margin: var(--spacing-lg) auto;
    max-width: 1000px;
    transform: skewY(1deg);
    /* Subtle opposing tilt */
}

.guarantee .container {
    transform: skewY(-1deg);
}

/* Contact Form */
.contact {
    padding: var(--spacing-xl) 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #1f2937;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

#formStatus {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: var(--text-muted);
    background: white;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #111827;
}

@media (max-width: 1024px) {

    /* Tech Stack - Horizontal Scroll */
    .bento-grid {
        display: flex;
        /* Override grid */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-sm);
        /* Tighter gap */
        padding-bottom: 2rem;
        /* Space for scrollbar/dots */
        margin: 0 calc(var(--spacing-sm) * -1);
        /* Negative margin to go edge-to-edge */
        padding-left: var(--spacing-sm);
        /* Restore padding */
        padding-right: var(--spacing-sm);
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
        /* Ensure equal height */
    }

    .bento-grid .reveal {
        min-width: 85vw;
        /* Show mostly one card */
        scroll-snap-align: center;
        height: auto !important;
        /* Allow height to fit content */
        margin-bottom: 0;
        /* Reset any vertical margins from desktop usually */
    }

    .bento-grid .card {
        height: 100%;
        /* Fill height */
        padding: 1.5rem;
        /* Slightly reduced padding */
        /* Ensure no parallax transform artifacts remain (handled by JS reset, but good to be safe) */
    }

    /* Hide Scrollbar but allow scroll */
    .bento-grid::-webkit-scrollbar {
        height: 6px;
    }

    .bento-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        margin: 0 20px;
    }

    .bento-grid::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
}

@media (max-width: 768px) {

    /* Stack Card Sections Vertically */
    .bento-grid {
        display: grid;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        margin: var(--spacing-md) 0;
        padding-left: 0;
        padding-right: 0;
    }

    .bento-grid .reveal {
        min-width: unset;
        scroll-snap-align: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid #e5e7eb;
        box-shadow: var(--shadow-soft);
    }

    .nav-links a {
        color: #1f2937;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .text-h1 {
        font-size: 2.5rem;
    }

    /* Mobile Logo & Marquee */
    .logo {
        height: 32px;
        filter: none !important;
    }

    .marquee-container {
        padding: 0.25rem 0;
    }

    .marquee-item {
        font-size: 0.65rem;
        padding: 0 0.5rem;
    }

    .marquee-item span {
        margin: 0 0.5rem;
    }

    /* Mobile Comparison Card Optimization */
    .comparison-grid {
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .grid-header {
        display: none;
    }

    .grid-row {
        display: grid;
        /* Use grid for internal card layout */
        grid-template-columns: 1fr 1fr;
        /* 2 columns */
        grid-template-areas:
            "header header"
            "us us"
            "other1 other2";
        gap: 15px;
        background: white;
        border-radius: 20px;
        margin-bottom: 25px;
        padding: 25px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-cell {
        grid-area: header;
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: #111827;
        font-weight: 700;
        border-bottom: 2px solid #f3f4f6;
        padding-bottom: 15px !important;
        margin-bottom: 10px;
        padding-left: 0 !important;
        text-align: center;
    }

    .grid-cell {
        padding: 5px 0;
        display: block;
        /* Stack content internally if needed */
        border: none;
        /* Remove row dividing lines */
    }

    .col-us {
        grid-area: us;
        background: linear-gradient(135deg, #fdf4ff, #eff6ff);
        padding: 20px !important;
        border-radius: 16px;
        text-align: center;
        border: 2px solid rgba(139, 92, 246, 0.1);
    }

    .col-us .mobile-label {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--accent-blue);
        margin-bottom: 5px;
        font-weight: 600;
    }

    .col-us span:not(.mobile-label) {
        font-size: 1.5rem;
        /* Make the value BIG */
        display: block;
    }

    /* Targeting the other cells (DIY & Agency) */
    .grid-cell:nth-child(3) {
        grid-area: other1;
        text-align: center;
        background: #f9fafb;
        padding: 15px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .grid-cell:nth-child(4) {
        grid-area: other2;
        text-align: center;
        background: #f9fafb;
        padding: 15px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .mobile-label {
        display: block;
        color: #9ca3af;
        font-size: 0.75rem;
        margin-bottom: 4px;
        font-weight: 500;
    }
}

.grid-cell:last-child {
    border-bottom: none;
}

.mobile-label {
    display: inline-block;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 80px;
    font-size: 0.9rem;
}

/* Reset special column styling for mobile card view */
.col-us {
    background: rgba(139, 92, 246, 0.05);
    /* Lighter bg */
    border-radius: 8px;
    margin: 5px 0;
    padding: 10px !important;
}

.section-title h2 {
    font-size: 2rem;
    padding: 0 10px;
}

.hero h1 {
    font-size: 2.5rem;
}
}