/* ===================================
   Lauta Landing Page
   Premium Legal Tech Design System
   =================================== */

/* ===================================
   CSS Variables / Design Tokens
   =================================== */
:root {
    /* Primary Palette - Dark Slate */
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-slate-950: #020617;

    /* Accent - Professional Teal */
    --color-accent: #0891b2;
    --color-accent-light: #22d3ee;
    --color-accent-dark: #0e7490;
    --color-accent-glow: rgba(8, 145, 178, 0.4);

    /* Status Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    /* Background Colors */
    --bg-primary: var(--color-slate-900);
    --bg-secondary: var(--color-slate-50);
    --bg-card: #ffffff;

    /* Text Colors */
    --text-primary: var(--color-slate-900);
    --text-secondary: var(--color-slate-600);
    --text-muted: var(--color-slate-400);
    --text-light: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--color-accent-glow);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --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);

    /* Typography */
    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===================================
   Container
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow-lg), 0 0 20px var(--color-accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px var(--color-accent-glow);
}

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

.btn-primary-light {
    background: var(--text-light);
    color: var(--color-slate-900);
    box-shadow: var(--shadow-lg);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===================================
   Header / Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 100%);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.nav {
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

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

.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.nav-links li a:hover {
    color: var(--text-light);
}

.nav-links li a.btn {
    color: var(--text-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-4xl) var(--space-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-slate-950) 0%, var(--color-slate-900) 50%, var(--color-slate-800) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--color-accent-glow), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(8, 145, 178, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(34, 211, 238, 0.1), transparent);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at center, black, transparent);
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-accent-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

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

.hero-subtitle {
    color: var(--color-slate-300);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero-cta-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-slate-700);
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(8, 145, 178, 0.1);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-accent-light);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: var(--text-light);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.section-subtitle-light {
    color: var(--color-slate-300);
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.section-cta-dual {
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--color-slate-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--color-slate-300);
    background: var(--color-slate-50);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Stakes Section - Clean Numbers Design
   =================================== */
.stakes {
    background: var(--bg-secondary);
}

/* Stats Row */
.stakes-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.stakes-stat {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-slate-200);
    transition: all var(--transition-base);
}

.stakes-stat:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.stakes-stat-value {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.stakes-stat-value .stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stakes-stat-value .stat-symbol {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-left: 2px;
}

.stakes-stat-context {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-headline {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-detail {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Impact Cards Grid */
.stakes-impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.impact-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-slate-200);
    transition: all var(--transition-base);
}

.impact-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.impact-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-slate-100);
    color: var(--color-slate-500);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.impact-card:hover .impact-number {
    background: var(--color-accent);
    color: var(--text-light);
}

.impact-card h3 {
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.impact-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Value Proposition Section
   =================================== */
.value {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
}

.value-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.value-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.value-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.value-image-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.value-image-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

.value-grid {
    display: grid;
    gap: var(--space-md);
}

.value-cta-btn {
    justify-content: center;
    margin-top: var(--space-sm);
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-slate-200);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-accent);
}

.value-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px var(--color-accent-glow);
}

.value-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-light);
}

.value-content {
    flex: 1;
}

.value-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

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

.value-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.value-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    border-radius: var(--radius-full);
}

.value-check svg {
    width: 12px;
    height: 14px;
    stroke: var(--text-light);
}

/* ===================================
   Empathy Section
   =================================== */
.empathy {
    background: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-slate-800) 100%);
    position: relative;
    overflow: hidden;
}

.empathy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(8, 145, 178, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(34, 211, 238, 0.1), transparent);
    pointer-events: none;
}

.empathy .container {
    position: relative;
    z-index: 10;
}

.empathy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.empathy-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
}

.empathy-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
}

.empathy-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.empathy-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.empathy-stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
}

.empathy-stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.empathy-stat-desc {
    color: var(--color-slate-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Empathy Numbers Card */
.empathy-numbers-row {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
}

.empathy-number-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.empathy-big-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.empathy-number-plus {
    font-size: 0.6em;
}

.empathy-number-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-400);
}

/* Testimonials Stack */
.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
}

/* Testimonial Card */
.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    backdrop-filter: blur(20px);
    position: relative;
}

.testimonial-card-featured {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(8, 145, 178, 0.3);
}

.testimonial-quote {
    margin-bottom: var(--space-md);
}

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

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-light);
}

.author-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.author-info span {
    color: var(--color-slate-400);
    font-size: 0.875rem;
}

/* ===================================
   Plan / How It Works Section
   =================================== */
.plan {
    background: var(--bg-secondary);
    position: relative;
}

.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

.step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--text-light);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg), 0 0 30px var(--color-accent-glow);
    position: relative;
    z-index: 10;
    margin-bottom: var(--space-lg);
}

.step-content {
    flex: 1;
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-slate-200);
    transition: all var(--transition-base);
    width: 100%;
}

.step:hover .step-content {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

/* How It Works Demo Section */
.how-it-works-demo {
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--color-slate-200);
}

.demo-section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.demo-section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* Storylane Embed */
.storylane-embed-wrapper {
    max-width: 900px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.demo-cta-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.demo-cta-note p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
}

.demo-cta-note strong {
    color: var(--color-accent);
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-slate-100);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-md);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

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

/* ===================================
   Explainer Section
   =================================== */
.explainer {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
}

.explainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.explainer-content h2 {
    margin-bottom: var(--space-md);
}

.explainer-lead {
    font-size: 1.375rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.explainer-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.explainer-text p {
    margin-bottom: var(--space-lg);
}

.explainer-text p:last-child {
    margin-bottom: 0;
}

.explainer-image {
    position: relative;
}

.explainer-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.image-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.image-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-success);
}

/* ===================================
   Demo Section
   =================================== */
.demo-section {
    background: linear-gradient(135deg, var(--color-slate-100) 0%, var(--bg-secondary) 100%);
    padding: var(--space-3xl) 0;
}

.demo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    background: var(--bg-card);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-slate-200);
}

.demo-content h2 {
    margin-bottom: var(--space-md);
}

.demo-content > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
}

.demo-benefits svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-success);
}

/* ===================================
   Guarantee Badge
   =================================== */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
}

.guarantee-badge svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    stroke: var(--color-success);
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-text strong {
    font-size: 0.875rem;
    color: var(--color-success);
    font-weight: 700;
}

.guarantee-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===================================
   Form Trust Badges
   =================================== */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.form-trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

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

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--color-slate-50);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

.faq-answer p:first-child {
    padding-top: 0;
}

.faq-answer p + p {
    padding-top: var(--space-sm);
}

.faq-answer strong {
    color: var(--text-primary);
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-slate-200);
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.0625rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-slate-900);
    color: var(--text-light);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

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

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--color-slate-400);
    font-size: 0.9375rem;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-400);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-slate-300);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-slate-800);
}

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

/* ===================================
   Sticky CTA Button
   =================================== */
.sticky-cta {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition-base);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-2xl), 0 0 30px var(--color-accent-glow);
    padding: 0.875rem 1.5rem;
}

.sticky-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px var(--color-accent-glow);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    /* Stakes Section Tablet */
    .stakes-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stakes-impact {
        grid-template-columns: repeat(2, 1fr);
    }

    .empathy-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .value-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .value-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .demo-card {
        grid-template-columns: 1fr;
        padding: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}


@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-slate-900);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-4xl) var(--space-xl);
        gap: var(--space-lg);
        transition: right var(--transition-slow);
        box-shadow: var(--shadow-2xl);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.125rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: var(--space-4xl) var(--space-md) var(--space-2xl);
        min-height: auto;
        padding-top: 120px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    section {
        padding: var(--space-3xl) 0;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: var(--space-md);
    }

    .faq-question span {
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.875rem;
    }

    /* Guarantee Badge Mobile */
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    /* Form Trust Badges Mobile */
    .form-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    /* Stakes Section Mobile */
    .stakes-impact {
        grid-template-columns: 1fr;
    }
    
    .stakes-stat {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
        align-items: center;
    }
    
    .stakes-stat-context {
        align-items: center;
        text-align: center;
    }

    .value-layout {
        grid-template-columns: 1fr;
    }

    .value-image {
        max-width: 100%;
    }

    .value-card {
        flex-direction: column;
    }

    .value-check {
        align-self: flex-start;
    }

    /* Empathy Section Mobile */
    .empathy-grid {
        grid-template-columns: 1fr;
    }

    .empathy-stat-number {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    /* Explainer Section Mobile */
    .explainer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .explainer-image {
        order: -1;
    }

    .steps-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }
    
    .step-content {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-badge {
        font-size: 0.75rem;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .demo-card {
        padding: var(--space-lg);
    }
    
    /* Stakes Section Small Mobile */
    .stakes-stat {
        padding: var(--space-lg);
    }
    
    .impact-card {
        padding: var(--space-lg);
    }
    
    /* Sticky CTA Mobile */
    .sticky-cta {
        bottom: var(--space-md);
        right: var(--space-md);
        left: var(--space-md);
    }
    
    .sticky-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

