/* ========================================
   VIDEO AUDIO BUTTON
   ======================================== */
.video-container {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.video-audio-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.video-audio-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-1px);
}

.video-audio-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-audio-btn svg {
    flex-shrink: 0;
}

/* ========================================
   SIMPLIFAQ LAUNCH PAGE - MODERN DESIGN
   Ultra-modern, gradient-rich design
   ======================================== */

/* REQUIRED FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=League+Spartan:wght@700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ========================================
   CSS VARIABLES & THEME
   ======================================== */
:root {
    /* SimpliFaq Brand Colors - Tech Modern */
    --brand-primary: #60A5FA;
    --brand-secondary: #A78BFA;
    --brand-accent: #F472B6;
    --brand-light: #DBEAFE;
    --brand-soft: #EDE9FE;
    
    /* Tech Colors */
    --tech-blue: #60A5FA;
    --tech-lavender: #A78BFA;
    --tech-pink: #F472B6;
    --tech-cyan: #22D3EE;
    --tech-green: #4ADE80;
    
    /* Dark Mode Colors */
    --dark-bg: #0A0A0A;
    --dark-card: #171717;
    --dark-border: #262626;
    
    /* Gradients - Tech Modern */
    --gradient-primary: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #F472B6 100%);
    --gradient-secondary: linear-gradient(135deg, #A78BFA 0%, #F472B6 100%);
    --gradient-blue: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    --gradient-purple: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    --gradient-lavender: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 100%);
    --gradient-green: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
    --gradient-orange: linear-gradient(135deg, #FB923C 0%, #F472B6 100%);
    --gradient-pink: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
    --gradient-cyan: linear-gradient(135deg, #22D3EE 0%, #06B6D4 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #171717 100%);
    --gradient-glass: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);

    /* Neutral Colors - Refined palette */
    --gray-50: #FAFBFC;
    --gray-100: #F4F5F7;
    --gray-200: #E8EAED;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #0F172A;

    /* Typography - Modern font stack */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font sizes - Fluid scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Spacing - 4px base scale */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;

    /* Legacy spacing (for compatibility) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Shadows - Softer, more modern */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.12), 0 16px 32px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 28px rgba(99, 102, 241, 0.12);

    /* Border Radius - Smoother corners */
    --radius-xs: 0.25rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Line heights */
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.75;

    /* Letter spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.02em;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: transparent;
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
    font-weight: 400;
    letter-spacing: var(--tracking-normal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ========================================
   FLOWING GRADIENT RIBBON - STRIPE STYLE
   Clean, elegant wave · SimpliFaq brand
   ======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #ffffff;
}

.gradient-orb {
    position: absolute;
    opacity: 1;
}

/* Layer 1: Large soft sweep — top-right, tech blue to lavender */
.orb-1 {
    width: 900px;
    height: 900px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.6) 0%, rgba(167, 139, 250, 0.4) 35%, rgba(244, 114, 182, 0.2) 65%, transparent 85%);
    filter: blur(60px);
    opacity: 0.9;
    animation: wave-drift-1 25s infinite ease-in-out;
}

/* Layer 2: Mid lavender-pink arc — below and slightly left */
.orb-2 {
    width: 700px;
    height: 700px;
    top: 50px;
    right: -50px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.5) 0%, rgba(244, 114, 182, 0.3) 40%, rgba(96, 165, 250, 0.15) 70%, transparent 90%);
    filter: blur(50px);
    opacity: 0.8;
    animation: wave-drift-2 30s infinite ease-in-out;
}

/* Layer 3: Small cyan accent — bottom-right */
.orb-3 {
    width: 500px;
    height: 500px;
    top: 300px;
    right: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.4) 0%, rgba(96, 165, 250, 0.2) 50%, transparent 80%);
    filter: blur(60px);
    opacity: 0.6;
    animation: wave-drift-3 35s infinite ease-in-out;
}

/* Ribbon container */
.ribbon-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Crisp ribbon arc — the main visual stripe-like curve with brand colors */
.ribbon {
    position: absolute;
    width: 700px;
    height: 700px;
    top: -100px;
    right: -80px;
    border-radius: 50%;
    opacity: 1;
    background:
        conic-gradient(
            from 200deg at 50% 50%,
            transparent 0deg,
            rgba(255, 255, 255, 0.98) 30deg,
            rgba(96, 165, 250, 0.5) 80deg,
            rgba(167, 139, 250, 0.7) 130deg,
            rgba(244, 114, 182, 0.5) 170deg,
            rgba(96, 165, 250, 0.3) 210deg,
            transparent 260deg
        );
    filter: blur(15px);
    animation: ribbon-slow-rotate 50s infinite linear;
}

/* Soft glow behind the ribbon */
.ribbon-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 65%;
    background:
        radial-gradient(ellipse 60% 50% at 70% 35%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 60% 55%, rgba(96, 165, 250, 0.1) 0%, transparent 55%);
    filter: blur(5px);
    animation: glow-breathe 20s infinite ease-in-out;
}

/* Thin accent lines */
.ribbon-light-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ribbon-line {
    position: absolute;
    height: 1px;
    border-radius: 1px;
    animation: line-fade 12s infinite ease-in-out;
}

.ribbon-line-1 {
    width: 400px;
    top: 22%;
    right: 8%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), rgba(96, 165, 250, 0.3), transparent);
    animation-delay: 0s;
}

.ribbon-line-2 {
    width: 320px;
    top: 38%;
    right: 3%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.35), rgba(221, 214, 254, 0.25), transparent);
    animation-delay: -3s;
}

.ribbon-line-3 {
    width: 450px;
    top: 52%;
    right: -2%;
    background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.3), rgba(59, 130, 246, 0.25), transparent);
    animation-delay: -6s;
}

.ribbon-line-4 {
    width: 280px;
    top: 66%;
    right: 12%;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.3), rgba(221, 214, 254, 0.2), transparent);
    animation-delay: -9s;
}

/* Animations */
@keyframes wave-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 15px) scale(1.03); }
    66% { transform: translate(10px, -10px) scale(0.98); }
}

@keyframes wave-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 20px); }
}

@keyframes wave-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.04); }
}

@keyframes ribbon-slow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow-breathe {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes line-fade {
    0%, 100% { opacity: 0; transform: translateX(0); }
    30% { opacity: 0.5; }
    50% { opacity: 0.6; transform: translateX(-20px); }
    70% { opacity: 0.4; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .gradient-orb,
    .ribbon,
    .ribbon-glow,
    .ribbon-line {
        animation: none;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .orb-1 { right: -250px; }
    .orb-2 { right: -150px; }
    .ribbon { right: -150px; }
}

@media (max-width: 768px) {
    .orb-1 { width: 600px; height: 600px; right: -250px; top: -150px; }
    .orb-2 { width: 450px; height: 450px; right: -150px; }
    .orb-3 { width: 350px; height: 350px; right: -50px; }
    .ribbon { width: 500px; height: 500px; right: -180px; filter: blur(25px); }
    .ribbon-line { display: none; }
}

/* ========================================
   STRIPE-STYLE HEADER
   ======================================== */
.glass-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-family: 'League Spartan', var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000 !important;
}

.logo-highlight {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.location-icon {
    width: 18px;
    height: 18px;
    color: var(--brand-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation Button */
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    color: #4b5563;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.blog-link:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.blog-link:hover::after {
    width: 80%;
}

.blog-link svg {
    width: 18px;
    height: 18px;
    color: inherit;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1002;
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--brand-primary);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--brand-primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu - Enhanced Design */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 6rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Menu Links */
.mobile-menu .blog-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    /* Touch-friendly size */
    padding: 0.875rem 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    border-radius: var(--radius-lg);
    background: transparent;
    transition: all 0.25s ease;
    position: relative;
}

.mobile-menu .blog-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 0.25s ease;
}

.mobile-menu .blog-link:hover,
.mobile-menu .blog-link:active {
    background: rgba(99, 102, 241, 0.08);
    color: var(--brand-primary);
}

.mobile-menu .blog-link:hover::before,
.mobile-menu .blog-link:active::before {
    height: 24px;
}

.mobile-menu .blog-link::after {
    display: none;
}

/* Mobile Menu CTA Button */
.mobile-menu .btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.mobile-menu .location-badge {
    margin-top: 2rem;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-lg);
}

/* Close hint for accessibility */
.mobile-menu::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: transparent;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    .nav-right {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 0 0;
    /* Remove horizontal padding */
    position: relative;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 2rem;
    /* Add padding to content instead */
    margin: 0 auto;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 4rem);
    font-weight: 800;
    line-height: var(--leading-tight);
    margin-bottom: var(--spacing-6);
    color: var(--gray-900);
    letter-spacing: var(--tracking-tight);
}

.gradient-text {
    background: linear-gradient(135deg, #6366F1 0%, #A855F7 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Floating Cards for Hero Visual */
.floating-card {
    position: absolute;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--spacing-4);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.floating-card.activity {
    left: 10%;
    bottom: 15%;
    width: 11rem;
    animation: float-gentle-slow 5s ease-in-out infinite;
}

.floating-card.notification {
    right: 22%;
    top: 25%;
    max-width: 12rem;
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    line-height: var(--leading-relaxed);
    color: var(--gray-600);
    margin-bottom: var(--spacing-8);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--gray-800);
    font-weight: 600;
}

/* Ubuntu for text boxes */
.feature-card p,
.step-card p,
.ziva-section p,
.trust-content p {
    font-family: 'Ubuntu', sans-serif;
}

/* ========================================
   COUNTDOWN
   ======================================== */
.countdown-wrapper {
    margin: 3rem 0;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Note: Countdown styles in countdown.css will be updated separately */

/* ========================================
   HERO VISUAL (Dashboard & Invoice)
   ======================================== */
.hero-visual {
    margin-top: 4rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Full width */
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    /* No padding for edge-to-edge */
    overflow: hidden;
    /* Ensure no scrollbar if image is huge */
}

.mockup-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    width: 100%;
    max-width: 100%;
    /* Full width */
    height: auto;
    border-radius: 0;
    /* No border radius for edge-to-edge */
    box-shadow: none;
    /* No shadow needed for edge-to-edge */
    object-fit: cover;
    min-height: 400px;
    /* Ensure visibility */
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.floating-element.qr-bill-preview {
    position: absolute;
    right: 18%;
    /* Moved much closer to center */
    top: 65%;
    /* Moved lower */
    transform: translateY(-50%);
    width: 300px;
    /* Slightly smaller for better proportion */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    animation: float-gentle 6s ease-in-out infinite;
    z-index: 20;
}

.floating-element.qr-bill-preview img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .floating-element.qr-bill-preview {
        right: -30px;
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        margin-top: 2rem;
    }

    .hero-mockup {
        max-width: 100%;
    }

    .floating-element.qr-bill-preview {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 240px;
        margin: 2rem auto 0;
        animation: none;
    }
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ========================================
   LAUNCH MODE - HERO CTA SECTION
   ======================================== */
.launch-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.btn-launch-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4), 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-launch-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-launch-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5), 0 6px 16px rgba(99, 102, 241, 0.4);
}

.btn-launch-primary:hover::before {
    left: 100%;
}

.btn-launch-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.btn-launch-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

/* Trial Info */
.launch-trial-info {
    font-size: 0.95rem;
    color: var(--gray-600);
    text-align: center;
    margin: 0;
}

.launch-trial-info strong {
    color: var(--gray-800);
    font-weight: 700;
}

/* Offer Banner */
.launch-offer-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 1.25rem;
    padding: 1.5rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow:
        0 10px 40px rgba(236, 72, 153, 0.15),
        0 4px 12px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    animation: banner-glow 3s ease-in-out infinite;
}

.launch-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #EC4899 0%, #2563EB 50%, #6366F1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes banner-glow {

    0%,
    100% {
        box-shadow:
            0 10px 40px rgba(236, 72, 153, 0.15),
            0 4px 12px rgba(37, 99, 235, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow:
            0 15px 50px rgba(236, 72, 153, 0.25),
            0 6px 16px rgba(37, 99, 235, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
}

.offer-banner-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.offer-banner-text {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--gray-700);
}

.offer-banner-discount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563EB 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.offer-banner-deadline {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.offer-banner-deadline strong {
    color: var(--gray-800);
}

.offer-days-left {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: var(--radius-full);
    font-weight: 700;
    color: #2563EB;
    font-size: 0.85rem;
    animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Trust badges in hero */
.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.hero-content .trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Responsive for launch CTA */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cta-container {
        display: flex;
        flex-direction: column;
    }

    .launch-trial-info {
        order: 1;
        margin-bottom: 1rem;
    }

    .launch-hero-cta {
        order: 2;
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-launch-primary,
    .btn-launch-secondary {
        width: 100%;
        justify-content: center;
    }

    .launch-offer-banner {
        order: 3;
        padding: 1.25rem 1.5rem;
        margin: 0 1rem;
    }

    .offer-banner-discount {
        font-size: 1.25rem;
    }
}

.notify-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.notify-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 35px -10px rgba(99, 102, 241, 0.4);
}

.notify-button:hover::before {
    left: 100%;
}

.notify-button:active {
    transform: translateY(0);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.notify-button:hover .arrow-icon {
    transform: translateX(4px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-full);
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--spacing-24) var(--spacing-8);
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    color: var(--brand-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--spacing-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-4);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

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

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

/* Center last card if alone */
.features-grid>.feature-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Decorative corner gradient */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Bottom accent line */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.12);
    box-shadow:
        0 4px 8px rgba(99, 102, 241, 0.04),
        0 12px 32px rgba(99, 102, 241, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.06);
}

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

.feature-card:hover::after {
    width: 60%;
}

/* Feature Icon - Modern pill style */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon glow effect */
.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-2deg);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2;
    position: relative;
    z-index: 1;
}

/* Gradient backgrounds with glow */
.gradient-blue {
    background: var(--gradient-blue);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.gradient-blue::after {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.gradient-purple {
    background: var(--gradient-purple);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.gradient-purple::after {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.gradient-green {
    background: var(--gradient-green);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.gradient-green::after {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.gradient-orange {
    background: var(--gradient-orange);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.gradient-orange::after {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.gradient-pink {
    background: var(--gradient-pink);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.gradient-pink::after {
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.gradient-cyan {
    background: var(--gradient-cyan);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.gradient-cyan::after {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

/* Feature Content */
.feature-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-2);
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-snug);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--brand-primary);
}

.feature-card p {
    color: var(--gray-500);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-500);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: var(--spacing-5);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-tag {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
    color: var(--brand-primary);
}

.feature-tag.new {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    color: #EC4899;
    border: 1px solid rgba(236, 72, 153, 0.15);
}

.feature-tag.new::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #EC4899;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ========================================
   FEATURE FLAGS PANEL (Hidden by default)
   ======================================== */
.feature-flags-panel {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px dashed var(--brand-primary);
    border-radius: var(--radius-lg);
    display: none;
    /* Hidden by default, toggle with ?debug=true */
}

.feature-flags-panel.active {
    display: block;
}

.feature-flags-panel h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

.flag-toggles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flag-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.flag-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.flag-toggle span {
    font-weight: 500;
    color: var(--gray-900);
}

/* ========================================
   STATS SECTION - REMOVED
   ======================================== */
/* Stats section removed to avoid speculation
.stats-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
*/

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: var(--spacing-16) var(--spacing-8);
    max-width: 720px;
    margin: 0 auto;
}

.trust-content {
    text-align: center;
    padding: var(--spacing-12);
    background: #ffffff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
}

.trust-badge {
    display: inline-flex;
    margin-bottom: var(--spacing-5);
}

.swiss-flag {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.trust-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-3);
    letter-spacing: var(--tracking-tight);
}

.trust-content p {
    color: var(--gray-600);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-6);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-3);
}

.trust-badges .badge {
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-600);
}

/* ========================================
   FOOTER
   ======================================== */
.glass-footer {
    background: #ffffff;
    border-top: 1px solid var(--gray-100);
    padding: var(--spacing-10) var(--spacing-8) var(--spacing-5);
    margin-top: var(--spacing-16);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-6);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-1);
}

.footer-brand p {
    color: var(--gray-500);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    align-items: flex-end;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    color: var(--brand-primary);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modalSlideIn var(--transition-slow);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 3rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .location-badge {
        display: none;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden {
    display: none !important;
}

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

/* ========================================
   NEW SECTIONS - FEATURE FLAGS
   ======================================== */

/* About Extended Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.about-tagline {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Beta Section */
.beta-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gray-50);
}

.beta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.beta-alert {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.beta-alert-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beta-alert-icon svg {
    width: 24px;
    height: 24px;
    color: #F59E0B;
}

.beta-alert-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.beta-alert-content p {
    color: var(--gray-700);
}

.beta-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.beta-info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.beta-info-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.beta-info-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.beta-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.beta-info-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.beta-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.beta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.beta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.beta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.beta-button.secondary {
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.beta-button.secondary:hover {
    border-color: var(--brand-primary);
    background: var(--gray-50);
}

.beta-button svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-content {
    text-align: center;
}

.faq-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--gray-900);
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.newsletter-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-primary);
    color: white;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.newsletter-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.newsletter-header p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.newsletter-body {
    padding: 2rem;
}

.newsletter-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form-placeholder {
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.placeholder-content {
    margin-bottom: 1.5rem;
}

.placeholder-content svg {
    width: 48px;
    height: 48px;
    color: var(--gray-400);
    margin: 0 auto 1rem;
}

.placeholder-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.placeholder-content p.small {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.newsletter-temp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-900);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.newsletter-temp-button:hover {
    background: var(--brand-primary);
    transform: translateY(-2px);
}

.newsletter-legal {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.newsletter-legal svg {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.newsletter-legal a {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* Flag Category */
.flag-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.flag-category strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--brand-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {

    .about-grid,
    .beta-info-grid {
        grid-template-columns: 1fr;
    }

    .beta-alert {
        flex-direction: column;
        text-align: center;
    }

    .beta-cta {
        flex-direction: column;
    }

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

    .newsletter-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   STORY / ABOUT PAGE STYLES
   ======================================== */
.story-container {
    background: #ffffff;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-10);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-card);
}

.story-block {
    margin-bottom: var(--spacing-10);
    padding-bottom: var(--spacing-10);
    border-bottom: 1px solid var(--gray-100);
}

.story-block:last-child,
.story-last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-label {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--spacing-4);
}

.story-heading {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-5);
    font-family: var(--font-display);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
}

.story-block p {
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    color: var(--gray-600);
    margin-bottom: var(--spacing-4);
    text-align: left;
}

.story-block p:last-child {
    margin-bottom: 0;
}

.story-list {
    list-style: none;
    margin: var(--spacing-5) 0;
    padding: 0;
}

.story-list li {
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    color: var(--gray-600);
    margin-bottom: var(--spacing-3);
    padding-left: var(--spacing-6);
    position: relative;
}

.story-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: var(--text-base);
}

.story-emphasis {
    font-style: italic;
    padding-left: var(--spacing-5);
    border-left: 3px solid rgba(99, 102, 241, 0.3);
    margin: var(--spacing-5) 0;
    color: var(--gray-500);
}

.story-highlight {
    font-weight: 600;
    color: var(--gray-800);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
}

.story-vision {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(37, 99, 235, 0.04) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    margin-top: var(--spacing-2);
}

/* Responsive for story pages */
@media (max-width: 768px) {
    .story-container {
        padding: 2rem 1.5rem;
    }

    .story-heading {
        font-size: 1.5rem;
    }

    .story-block {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .story-block p {
        font-size: 1rem;
    }
}

/* ========================================
   LEGAL PAGES (Privacy, Terms, Mentions)
   ======================================== */
.privacy-policy {
    min-height: 100vh;
    padding: 6rem 1.5rem 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 1;
}

/* Ocultar fondo animado en páginas legales */
body:has(.privacy-policy) .bg-animation {
    display: none;
}

/* Header transparente para páginas legales */
body:has(.privacy-policy) .glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body:has(.privacy-policy) .logo-text {
    color: var(--gray-900);
}

/* Footer claro para páginas legales */
body:has(.privacy-policy) .glass-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body:has(.privacy-policy) .footer-brand p,
body:has(.privacy-policy) .footer-bottom p {
    color: var(--gray-700);
}

body:has(.privacy-policy) .footer-links a {
    color: var(--gray-700);
}

body:has(.privacy-policy) .footer-links a:hover {
    color: var(--brand-primary);
}

.privacy-policy .container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-policy h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: var(--font-display);
}

.privacy-policy .container>p[style*="text-align: center"] {
    color: var(--gray-700) !important;
    font-size: 0.9rem;
}

.privacy-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--brand-primary);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.privacy-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.privacy-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}

.privacy-content ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
}

.privacy-content strong {
    color: var(--gray-900);
    font-weight: 600;
}

.privacy-content a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.privacy-content a:hover {
    color: var(--brand-secondary);
    text-decoration: underline;
}

.back-home {
    margin-top: 2rem;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 5rem 1rem 2rem;
    }

    .privacy-policy .container {
        padding: 1.5rem;
    }

    .privacy-policy h1 {
        font-size: 1.5rem;
    }

    .privacy-content h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1rem;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 0.9rem;
    }

    /* Footer más compacto en móvil */
    .glass-footer {
        padding: 2rem 1.25rem 1.5rem;
        margin-top: 3rem;
        position: relative;
        z-index: 1;
        /* Ensure footer is above other elements */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
    }

    .footer-brand p {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-links {
        grid-column: 1 / -1;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
    }

    .footer-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        /* Touch-friendly */
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: var(--gray-600);
        text-decoration: none;
        border-radius: var(--radius-md);
        transition: all 0.25s ease;
        width: 100%;
        max-width: 280px;
    }

    .footer-links a:hover,
    .footer-links a:active {
        background: rgba(99, 102, 241, 0.08);
        color: var(--brand-primary);
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        border-top: 1px solid var(--gray-100);
    }

    .footer-bottom p {
        font-size: 0.75rem;
        text-align: center;
    }

    /* Fix para inputs en formularios - evitar que se abra el menú móvil */
    .story-container form {
        position: relative;
        z-index: 1;
        touch-action: manipulation;
    }

    .story-container form input,
    .story-container form textarea,
    .story-container form button {
        touch-action: manipulation;
    }

    /* Asegurar que inputs sean accesibles */
    .story-block input,
    .story-block textarea {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Highlight Offer Style */
.highlight-offer {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1rem 1.7rem;
    margin: 1.5rem auto;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gray-800);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
    text-align: center;
    max-width: 800px;
}

.highlight-offer strong {
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 1.15em;
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   CLEAN DESIGN - REVOLUTIONARY
   ======================================== */

/* Header */
.clean-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Ensure main content is above the ribbon background but transparent */
main {
    position: relative;
    z-index: 1;
    background: transparent;
}

.clean-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clean-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-900);
}

.clean-logo img {
    width: 40px;
    height: 40px;
}

.clean-logo .logo-text {
    font-family: 'League Spartan', var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #000000 !important;
}

.clean-logo .logo-highlight {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.clean-nav-links {
    display: flex;
    gap: 32px;
}

.clean-nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.clean-nav-links a:hover {
    color: var(--brand-primary);
}

.clean-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.clean-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
}

.clean-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--brand-primary);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.clean-btn:hover {
    background: var(--brand-accent);
}

/* Hero */
.clean-hero {
    padding: 160px 48px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.clean-hero-content {
    max-width: 520px;
}

.clean-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--dark-bg);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.clean-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--tech-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.clean-badge-secondary {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    color: var(--tech-blue);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.clean-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.clean-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clean-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.clean-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.clean-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #0A0A0A;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.clean-btn-primary:hover {
    background: #171717;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.clean-btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.clean-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #0A0A0A;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #0A0A0A;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-btn-secondary:hover {
    background: #0A0A0A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.clean-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Mockup Visual */
.clean-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    place-self: center;
}

.clean-mockup {
    width: 100%;
    max-width: 640px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.clean-mockup .video-container,
.clean-mockup video {
    width: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

.clean-split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clean-split-visual .clean-mockup,
.clean-split-visual video {
    width: 100%;
    max-width: 100%;
}

.clean-mockup-header {
    padding: 12px 16px;
    background: var(--gray-100);
    display: flex;
    gap: 8px;
}

.clean-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.clean-dot:first-child { background: #FF5F57; }
.clean-dot:nth-child(2) { background: #FEBC2E; }
.clean-dot:nth-child(3) { background: #28C840; }

.clean-video {
    width: 100%;
    display: block;
}

/* Sections */
.clean-section {
    padding: 100px 48px;
}

.clean-section.alt {
    background: rgba(249, 250, 251, 0.7);
}

.clean-container {
    max-width: 1100px;
    margin: 0 auto;
}

.clean-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.clean-section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 48px;
    font-weight: 500;
}

/* Time Savings Section - Highlighted subtitle */
.text-cross {
    text-decoration: line-through;
    text-decoration-color: var(--tech-blue);
    text-decoration-thickness: 3px;
    color: #9ca3af;
    font-weight: 400;
}

.text-arrow {
    color: var(--tech-blue);
    font-weight: 700;
    margin: 0 12px;
    font-size: 1.5rem;
}

.text-highlight-value {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

/* Features Grid */
.clean-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.clean-feature {
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.clean-feature:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.clean-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.clean-feature h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.clean-feature p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.clean-feature:hover .clean-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
}

.clean-feedback-note {
    text-align: center;
    margin-top: 40px;
    color: var(--gray-500);
    font-size: 0.9375rem;
    font-style: italic;
}

/* Split Section */
.clean-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.clean-split-content {
    padding-right: 32px;
}

.clean-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--tech-lavender) 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.clean-split-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.clean-split-content p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.clean-list li::before {
    content: "✓";
    color: var(--brand-primary);
    font-weight: 700;
}

.clean-split-visual video,
.clean-split-visual .clean-mockup {
    width: 100%;
    max-width: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: block;
}

.clean-split-visual .video-wrapper-small {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.clean-split-visual .video-wrapper-small video {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Comparison - Tech Modern Style */
.clean-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 32px;
}

.clean-compare-card {
    padding: 40px 32px;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.clean-compare-card.highlight {
    border: 2px solid var(--tech-blue);
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.15), 0 25px 50px -12px rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: hidden;
}

.clean-compare-card.highlight::before {
    content: 'RECOMMANDÉ';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 8px 16px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0 0 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.clean-compare-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.clean-compare-card.highlight h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 24px;
}

.clean-compare-card ul {
    list-style: none;
    padding: 0;
}

.clean-compare-card li {
    padding: 14px 0;
    border-bottom: 1px solid #E5E5E5;
    color: var(--gray-600);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clean-compare-card li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.clean-compare-card li:last-child {
    border-bottom: none;
}

/* Comparison Card Icons - Elegant Style */
.clean-compare-card:not(.highlight) li::before {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #94a3b8;
    content: '—';
    font-weight: 300;
    font-size: 0.875rem;
}

.clean-compare-card.highlight li::before {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    content: '✓';
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25);
}

.clean-impact {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 48px;
}

.clean-impact strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Text Highlights - Tech Style */
.text-highlight {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tech-blue);
    font-size: 0.875em;
}

.text-value {
    font-size: 1.3em;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--dark-bg);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Card Tech Style */
.card-tech {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-tech:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--tech-blue);
}

/* Section Dark */
.section-dark {
    background: var(--dark-bg);
    color: white;
}

.section-dark .clean-section-title {
    color: white;
}

.section-dark .clean-section-subtitle {
    color: #A3A3A3;
}

/* Glow Effects */
.glow-blue {
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.3);
}

.glow-purple {
    box-shadow: 0 0 60px rgba(167, 139, 250, 0.3);
}

/* Testimonials */
.clean-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.clean-testimonial {
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.clean-testimonial p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.clean-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clean-avatar {
    width: 44px;
    height: 44px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.clean-testimonial-author div {
    display: flex;
    flex-direction: column;
}

.clean-testimonial-author strong {
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.clean-testimonial-author span {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.testimonial-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    border: 1px solid var(--gray-200);
    padding: 4px;
}

/* Templates Section */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 48px auto;
}

.template-card {
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
}

.template-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.template-preview {
    margin-bottom: 20px;
}

.template-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--brand-primary);
}

.template-format {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.template-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.template-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.templates-cta {
    text-align: center;
    margin-top: 32px;
}

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

/* Invoice Preview Section */
.invoice-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 48px auto;
}

.invoice-preview-card {
    text-align: center;
}

.invoice-preview-image {
    margin-bottom: 24px;
}

.invoice-mockup-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.mockup-document {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    margin: 0 auto;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.mockup-logo {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

.mockup-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: 0.05em;
}

.mockup-badge {
    background: var(--brand-primary);
    color: white;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
}

.mockup-qr {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 8px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-qr.small {
    width: 60px;
    height: 60px;
}

.mockup-qr::before {
    content: '';
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 4px;
}

.mockup-qr.small::before {
    width: 40px;
    height: 40px;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Invoice Carousel Styles */
.invoice-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 48px auto 0;
}

.invoice-carousel .carousel-container {
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.invoice-carousel .carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.invoice-carousel .carousel-slide {
    min-width: 100%;
    padding: 32px;
    box-sizing: border-box;
    text-align: center;
}

.invoice-carousel .slide-mockup {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.invoice-carousel .mockup-body {
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.invoice-badge-standard {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.invoice-company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--tech-lavender) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mockup-qr-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 12px;
    margin: 16px 0;
    position: relative;
}

.mockup-qr-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 6px;
}

.mockup-qr-medium {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 10px;
    margin: 12px 0;
    position: relative;
}

.mockup-qr-medium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 5px;
}

.mockup-qr-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 8px;
    margin-top: 16px;
    position: relative;
}

.mockup-qr-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 4px;
}

.mockup-invoice-lines {
    width: 100%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.inv-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.inv-line.short {
    width: 60%;
}

.inv-line.medium {
    width: 80%;
}

.invoice-table {
    width: 100%;
    max-width: 220px;
    border-collapse: collapse;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.table-row.header {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #cbd5e1;
}

.table-row.total {
    border-bottom: none;
    border-top: 2px solid #cbd5e1;
    margin-top: 8px;
    padding-top: 12px;
}

.table-row span {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    display: block;
}

.table-row span:first-child {
    width: 60%;
}

.table-row span:last-child {
    width: 30%;
}

.invoice-carousel .slide-caption {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Invoice Real Images Styles */
.invoice-image-wrapper {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.invoice-real-image {
    width: 100%;
    height: auto;
    display: block;
}

.qr-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
}

.mockup-line {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
}

.mockup-line.short {
    width: 60%;
}

.mockup-payment-info {
    background: rgba(99, 102, 241, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--brand-primary);
    font-weight: 600;
}

.invoice-preview-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.invoice-preview-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.invoice-preview-note {
    text-align: center;
    margin-top: 32px;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.invoice-preview-note a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.invoice-preview-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .invoice-preview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Suisse Romande Section */
.suisse-romande-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.suisse-romande-text p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.evolution-block {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    margin-top: 32px;
}

.evolution-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.evolution-block p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.suisse-romande-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sr-map-visual {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.sr-badge {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    display: block;
}

.sr-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.city {
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    font-weight: 500;
}

@media (max-width: 968px) {
    .suisse-romande-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .suisse-romande-text {
        text-align: center;
    }
    
    .evolution-block {
        text-align: left;
    }
}

/* Multilingual Note */
.multilingual-note {
    margin-top: 24px;
    padding: 12px 20px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 8px;
    color: var(--brand-primary);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

/* CTA Section - Light background with brand gradient */
.clean-cta-section {
    padding: 120px 48px;
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #fdf2f8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clean-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, rgba(167, 139, 250, 0.1) 30%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.clean-cta-section > .clean-container {
    position: relative;
    z-index: 1;
}

.clean-cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.clean-cta-section p {
    color: #475569;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.clean-btn-primary.large {
    padding: 20px 40px;
    font-size: 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.5);
}

.clean-btn-primary.large:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.6);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.clean-footer {
    padding: 64px 48px 32px;
    background: #ffffff;
    color: var(--gray-900);
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.clean-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.clean-footer-brand img {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.clean-footer-brand p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.footer-blog-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

.footer-blog-link:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    color: var(--brand-primary);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--brand-primary-dark, #4f46e5);
    transform: translateY(-2px);
}

.clean-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clean-footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.clean-footer-links a:hover {
    color: white;
}

.clean-footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.clean-footer-legal a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.clean-footer-legal a:hover {
    color: var(--brand-primary);
}

.clean-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.clean-footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .clean-hero {
        grid-template-columns: 1fr;
        padding: 140px 32px 80px;
        text-align: center;
    }

    .clean-hero-content {
        max-width: 100%;
    }

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

    .clean-features-grid {
        grid-template-columns: 1fr;
    }

    .clean-split {
        grid-template-columns: 1fr;
    }

    .clean-split-content {
        padding-right: 0;
        text-align: center;
    }

    .clean-split-content h2,
    .clean-split-content .clean-list {
        text-align: left;
    }

    .clean-testimonials {
        grid-template-columns: 1fr;
    }

    .clean-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .clean-nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .clean-nav {
        padding: 16px 24px;
    }

    .clean-hero {
        padding-top: 100px;
    }

    .clean-hero,
    .clean-section,
    .clean-cta-section,
    .clean-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .clean-cta-group {
        flex-direction: column;
    }

    .clean-comparison {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content img {
    transform: scale(1);
}

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

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}