/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Umuve — Premium Landing Page v2
   Bold, polished, conversion-optimized
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS Variables
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
    /* Backgrounds */
    --color-bg: #FFFFFF;
    --color-elevated: #ffffff;
    --color-subtle: #F9FAFB;
    --color-wash: #F3F4F6;

    /* Text — deep charcoal */
    --color-text: #1a1a1a;
    --color-text-secondary: #5c5c5c;
    --color-text-muted: #8a8a8a;
    --color-text-ghost: #b5b5b5;

    /* Accent — red */
    --color-accent: #DC2626;
    --color-accent-hover: #B91C1C;
    --color-accent-subtle: rgba(220, 38, 38, 0.08);
    --color-accent-border: rgba(220, 38, 38, 0.25);

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #DC2626, #E11D48, #F43F5E);
    --gradient-dark: linear-gradient(135deg, #111111, #1a1a1a);
    --gradient-accent-soft: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(225, 29, 72, 0.05));

    /* Glass — frosted white */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.85);

    /* Shadows — 5-tier system */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-accent: 0 4px 14px rgba(220, 38, 38, 0.2), 0 2px 6px rgba(220, 38, 38, 0.1);
    --shadow-accent-lg: 0 8px 30px rgba(220, 38, 38, 0.25), 0 4px 12px rgba(220, 38, 38, 0.15);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Timing functions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Container */
    --max-width: 1200px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SVG Icons
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-logo {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.icon-btn {
    width: 18px;
    height: 18px;
}

.icon-card {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.bento-accent .icon-card {
    color: #ffffff;
}

.icon-process {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
}

.icon-star {
    width: 18px;
    height: 18px;
    color: #e8a500;
}

.icon-inline {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
    vertical-align: -3px;
    margin-right: var(--space-2);
}

.icon-faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Reset & Base
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Layout
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-32) 0;
    position: relative;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Navbar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), transform 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.navbar--top {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo-icon {
    font-size: 1.5rem;
}

.badge {
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent-subtle);
    border: 1px solid var(--color-accent-border);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hamburger Toggle (mobile only) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    color: var(--color-text);
    z-index: 101;
}

.nav-toggle-close {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-open {
    display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}

.nav-link:hover {
    color: var(--color-text);
    opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Typography
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.gradient-text {
    background: linear-gradient(135deg, #DC2626, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Buttons
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
    border: none;
    position: relative;
}

.btn-icon {
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent-lg);
}

.btn-secondary {
    background: var(--color-elevated);
    color: var(--color-text);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-subtle);
    border-color: var(--color-accent-border);
}

.btn-glow {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: var(--shadow-accent);
}

.btn-glow:hover {
    background: var(--color-accent-hover);
}

.btn-xl {
    padding: var(--space-4) var(--space-8);
    font-size: 1.0625rem;
}

/* Shimmer — hidden in refined version */
.btn-shimmer {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Hero Section
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-32) 0 var(--space-24);
    position: relative;
    overflow: hidden;
    background: #0a0a0a url('hero-poster.jpg') center / cover no-repeat;
}

/* Desktop: show video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}

/* Mobile: hide video, show image */
.hero-mobile-img {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    .hero-mobile-img {
        display: block;
    }
}

/* Staggered hero entrance */
.hero-stagger {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s var(--ease-out-expo) forwards;
}

.hero-stagger:nth-child(1) { animation-delay: 0.1s; }
.hero-stagger:nth-child(2) { animation-delay: 0.25s; }
.hero-stagger:nth-child(3) { animation-delay: 0.4s; }
.hero-stagger:nth-child(4) { animation-delay: 0.55s; }
.hero-stagger:nth-child(5) { animation-delay: 0.7s; }
.hero-stagger:nth-child(6) { animation-delay: 0.85s; }
.hero .scroll-indicator { animation-delay: 1.1s; }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-8);
    position: relative;
    backdrop-filter: blur(8px);
}

.badge-glow {
    display: none;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-6);
    color: #ffffff;
}

.title-line {
    display: block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #EF4444;
    font-weight: 600;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* Hero button overrides */
.hero .btn-primary {
    background: var(--gradient-accent);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-accent-lg);
    font-size: 1.0625rem;
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3), 0 6px 16px rgba(220, 38, 38, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-1);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Trust Pills (replaces trust bar) */
.trust-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.875rem;
    color: white;
    transition: background 0.3s var(--ease-out-expo);
}

.trust-pill:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Legacy trust bar — kept for backward compat */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    text-align: left;
}

.trust-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
}

.trust-text span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-separator {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: opacity 0.4s;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Hero Decorative Border Lines
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero-borders {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    max-width: var(--max-width);
    margin: 0 auto;
    left: 0;
    right: 0;
}

.hero-border {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%
    );
}

.hero-border--outer-left  { left: 0; }
.hero-border--outer-right { right: 0; }
.hero-border--inner-left  { left: 33.333%; }
.hero-border--inner-right { left: 66.666%; }

@media (min-width: 1024px) {
    .hero-borders {
        display: block;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Logo Cloud — Infinite Scroll
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.logo-cloud-section {
    padding: var(--space-16) 0 var(--space-12);
    background: var(--color-bg);
    text-align: center;
    overflow: hidden;
}

.logo-cloud-title {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
    letter-spacing: 0.01em;
}

.logo-cloud-title strong {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.logo-cloud-track {
    position: relative;
    width: 100%;
    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);
}

.logo-cloud-slider {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    width: max-content;
    animation: logo-cloud-scroll 30s linear infinite;
}

.logo-cloud-slider:hover {
    animation-play-state: paused;
}

.logo-cloud-img {
    height: 24px;
    width: auto;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: opacity 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
    flex-shrink: 0;
}

.logo-cloud-img:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

/* Trust Badges (replaces logo cloud images) */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    background: var(--color-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    flex-shrink: 0;
    transition: box-shadow 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo);
}

.trust-badge:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-border);
}

.trust-badge-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: -0.01em;
}

.trust-badge-text strong {
    color: var(--color-text);
    font-weight: 700;
}

@keyframes logo-cloud-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Section Headers
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent-subtle);
    border: 1px solid var(--color-accent-border);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Bento Grid (Features)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.features-section {
    background: var(--color-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.bento-card {
    padding: var(--space-8);
    background: var(--color-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Gradient border on hover */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
}

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

/* Icon Badges */
.card-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent-soft);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    transition: transform 0.3s var(--ease-out-expo);
}

.bento-card:hover .card-icon-wrap {
    transform: scale(1.05);
}

.card-icon-wrap--light {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon-wrap--green {
    background: rgba(220, 38, 38, 0.12);
}

/* Accent Hero Card */
.bento-accent {
    background: var(--gradient-accent);
    border-color: transparent;
}

.bento-card.bento-accent h3 {
    color: #ffffff;
}

.bento-card.bento-accent p {
    color: rgba(255, 255, 255, 0.8);
}

.bento-accent:hover {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

/* Card CTA link */
.card-cta {
    display: inline-block;
    margin-top: var(--space-6);
    padding: var(--space-3) var(--space-6);
    background: #ffffff;
    color: var(--color-accent);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.25s var(--ease-out-expo);
}

.card-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.bento-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Eco Card */
.bento-eco {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-color: rgba(220, 38, 38, 0.15);
}

.bento-eco:hover {
    border-color: var(--color-accent-border);
}

.bento-eco-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.eco-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.eco-stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eco-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: var(--space-2);
    max-width: 140px;
}

/* Stagger animation for bento cards */
[data-animate-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-animate-stagger].visible > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-stagger].visible > *:nth-child(2) { transition-delay: 80ms; }
[data-animate-stagger].visible > *:nth-child(3) { transition-delay: 160ms; }
[data-animate-stagger].visible > *:nth-child(4) { transition-delay: 240ms; }
[data-animate-stagger].visible > *:nth-child(5) { transition-delay: 320ms; }
[data-animate-stagger].visible > *:nth-child(6) { transition-delay: 400ms; }

[data-animate-stagger].visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Process Section
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process-section {
    background: var(--color-subtle);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    position: relative;
}

/* Horizontal connecting line on desktop */
.process-grid::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: var(--color-accent-border);
    z-index: 0;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    background: var(--gradient-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px white, var(--shadow-accent);
    z-index: 1;
    position: relative;
}

.process-card-body {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-8);
    transition: all 0.3s var(--ease-out-expo);
}

.process-card:hover .process-card-body {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-icon {
    font-size: 3.5rem;
    margin: 0 0 var(--space-4);
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-text);
}

.process-card p {
    color: var(--color-text-secondary);
}

.process-line {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Testimonials — Scrolling Columns
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonials-section {
    background: var(--color-bg);
}

/* Columns container with gradient mask */
.testimonials-columns {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    max-height: 740px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

/* Single column */
.testimonials-col {
    display: flex;
    flex-direction: column;
}

/* Hidden on smaller screens */
.testimonials-col--md {
    display: none;
}

.testimonials-col--lg {
    display: none;
}

/* Scrolling inner container */
.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    padding-bottom: var(--space-6);
    animation: testimonial-scroll-up linear infinite;
}

.testimonials-scroll--slow {
    animation-duration: 25s;
}

.testimonials-scroll--mid {
    animation-duration: 30s;
}

.testimonials-scroll--fast {
    animation-duration: 22s;
}

@keyframes testimonial-scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Individual testimonial card */
.tc-card {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0, 0, 0, 0.02);
    max-width: 320px;
    width: 100%;
    background: var(--color-elevated);
    transition: box-shadow 0.3s var(--ease-out-expo);
}

.tc-card:hover {
    box-shadow: var(--shadow-md);
}

.tc-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-6);
}

.tc-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    color: white;
    letter-spacing: 0.5px;
    background: var(--color-accent);
}

.tc-meta {
    display: flex;
    flex-direction: column;
}

.tc-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.tc-role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* Testimonial Aggregate */
.testimonial-aggregate {
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-4);
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.testimonial-aggregate .icon-star {
    vertical-align: -2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Service Areas
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.areas-section {
    background: var(--color-bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.area-card {
    padding: var(--space-8);
    background: var(--color-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.area-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.area-card:hover {
    box-shadow: var(--shadow-md);
}

.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.area-list span {
    padding: var(--space-2) var(--space-4);
    background: var(--color-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: all 0.2s var(--ease-out-expo);
}

.area-list span:hover {
    background: rgba(220, 38, 38, 0.06);
    border-color: rgba(220, 38, 38, 0.2);
    color: var(--color-accent);
}

.areas-note {
    text-align: center;
    font-style: italic;
    color: var(--color-text-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ Section
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.faq-section {
    background: var(--color-subtle);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--glass-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    width: 100%;
    padding: var(--space-6) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question[aria-expanded="true"] .icon-faq-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-answer p {
    padding-bottom: var(--space-6);
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Final CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-section {
    background: var(--gradient-dark);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Radial red glow */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Dot grid texture */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.cta-section .btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent-lg);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.35), 0 6px 16px rgba(220, 38, 38, 0.2);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.guarantee {
    font-size: 0.875rem;
    opacity: 0.7;
    font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Footer
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
    background: #111111;
    color: #ffffff;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-3);
}

.footer .logo {
    color: #ffffff;
}

.footer-links h4 {
    margin-bottom: var(--space-4);
    color: #ffffff;
}

.footer-links a,
.footer-links p {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-2);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-6);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: var(--space-2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Animations
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Responsive
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: var(--shadow-lg);
        padding: var(--space-2) 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: var(--space-3) var(--space-6);
        font-size: 1rem;
    }

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

    .nav-links .btn {
        margin: var(--space-2) var(--space-6) var(--space-3);
        justify-content: center;
    }

    /* Hero mobile */
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

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

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-6);
    }

    .trust-pills {
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Trust bar legacy */
    .trust-bar {
        flex-direction: column;
        gap: var(--space-4);
    }

    .trust-separator {
        display: none;
    }

    /* Bento grid */
    .bento-grid {
        grid-template-columns: 1fr;
    }

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

    .bento-eco-inner {
        flex-direction: column;
        text-align: center;
    }

    .eco-stat {
        margin-top: var(--space-4);
    }

    /* Process */
    .process-grid::before {
        display: none;
    }

    /* Testimonials — single column on mobile */
    .testimonials-columns {
        max-height: 600px;
    }

    .tc-card {
        max-width: 100%;
    }

    /* Areas */
    .areas-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .section {
        padding: var(--space-16) 0;
    }
}

/* Show 2nd column on medium screens */
@media (min-width: 769px) {
    .testimonials-col--md {
        display: flex;
    }
}

/* Show 3rd column on large screens */
@media (min-width: 1024px) {
    .testimonials-col--lg {
        display: flex;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Accessibility
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-stagger {
        opacity: 1;
        transform: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AI-Optimized Content Blocks
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.definition-section {
    background: var(--color-subtle);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.definition-content {
    max-width: 900px;
    margin: 0 auto;
}

.definition-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    text-align: center;
}

.definition-answer {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
}

.definition-answer p {
    margin-bottom: var(--space-6);
}

.definition-answer p:last-child {
    margin-bottom: 0;
}

.definition-answer strong {
    color: var(--color-text);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-12);
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: all 0.3s var(--ease-out-expo);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    display: block;
    margin-bottom: var(--space-2);
}

.stat-source {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-style: italic;
}

@media (max-width: 640px) {
    .definition-title {
        font-size: 1.75rem;
    }

    .definition-answer {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
