/* =====================================================
   KYBERKATSASTUS - Enterprise B2B Landing Page
   Restrained, professional design for Finnish executives
   ===================================================== */

:root {
    /* System */
    --container: 1140px;
    --header-height: 64px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --transition: 0.2s ease;
    --radius: 8px;

    /* ===== DARK MODE (Default) ===== */
    /* Nordic Trust Palette - richer, more depth */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-elevated: rgba(51, 65, 85, 0.6);
    --bg-navbar: rgba(15, 20, 25, 0.9);

    /* Conservative text hierarchy - improved contrast */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Accent - cyan/indigo gradient style */
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-bright: #38bdf8;
    --accent-muted: rgba(59, 130, 246, 0.15);
    --accent-glow: rgba(56, 189, 248, 0.4);

    /* Functional colors - improved contrast */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Borders with glow potential */
    --border: rgba(148, 163, 184, 0.15);
    --border-muted: rgba(148, 163, 184, 0.08);
    --border-glow: rgba(56, 189, 248, 0.3);

    /* Gradients */
    --gradient-glow-1: rgba(59, 130, 246, 0.08);
    --gradient-glow-2: rgba(56, 189, 248, 0.06);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);

    /* Report mockup (light section in dark mode) */
    --report-bg: #ffffff;
    --report-text: #1f2328;
    --report-text-muted: #656d76;
    --report-border: #d1d9e0;
    --report-accent-bg: #f6f8fa;
    --report-success-bg: #dafbe1;
    --report-success: #1a7f37;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    /* Subtle gradient mesh background */
    background-image:
        radial-gradient(circle at 15% 50%, var(--gradient-glow-1), transparent 25%),
        radial-gradient(circle at 85% 30%, var(--gradient-glow-2), transparent 25%);
    background-attachment: fixed;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography - conservative sizing */
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
strong { color: var(--text-primary); font-weight: 600; }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   NAVIGATION - Clean, minimal
   ===================================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-muted);
    z-index: 100;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-img text {
    fill: var(--text-primary);
}

.logo-icon { display: none; } /* Remove emoji */

.logo-footer {
    height: 48px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

/* Buttons - with subtle glow */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--border-glow);
}

.btn-lg { padding: 12px 24px; font-size: 0.9375rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-nav { padding: 8px 16px; }

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* =====================================================
   HERO - Professional with subtle glow
   ===================================================== */

.hero {
    padding: calc(var(--header-height) + 80px) 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background glow for hero */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Remove urgency banner - too salesy */
.urgency-banner { display: none; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-text > .badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.badge-icon { display: none; } /* Remove emojis */

.badge-warning {
    border-color: var(--warning);
    color: var(--warning);
    background: rgba(240, 183, 47, 0.1);
}

.hero h1 {
    margin-bottom: 20px;
}

/* Remove gradient text - too flashy */
.hero h1 .highlight {
    color: var(--text-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.hero-solution {
    font-size: 1rem;
    padding: 16px;
    background: var(--bg-card);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 28px;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Dashboard mockup - simplified */
.hero-visual { perspective: none; }

.dashboard-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Top gradient border glow effect */
.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.dashboard-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-muted);
}

/* Remove macOS window dots - cliché */
.window-controls { display: none; }

.dashboard-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-body { padding: 20px; }

.status-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.status-indicator.success { color: var(--success); }

.status-indicator svg { width: 14px; height: 14px; }

.score-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.score-ring {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 6;
}

.score-fill {
    fill: none;
    stroke: var(--success);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 260 283;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.score-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.score-details { flex: 1; }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-muted);
    font-size: 0.8125rem;
}

.detail-row:last-child { border-bottom: none; }

.detail-label { color: var(--text-muted); }
.detail-value { font-weight: 500; color: var(--text-primary); }
.detail-value.success { color: var(--success); }
.detail-value.warning { color: var(--warning); }

.report-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.report-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.report-info { flex: 1; }

.report-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
}

.report-status {
    font-size: 0.75rem;
    color: var(--success);
}

.report-btn {
    padding: 6px 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
}

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

/* Remove scroll indicator - unnecessary */
.scroll-indicator { display: none; }

/* =====================================================
   SECTIONS - Clean structure
   ===================================================== */

.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-muted);
}

.section-dark {
    background: var(--bg-secondary);
    background-image:
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05), transparent 30%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-muted);
    color: var(--accent-bright);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-title { margin-bottom: 12px; }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* =====================================================
   PROBLEM SECTION
   ===================================================== */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
}

/* Top gradient line */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    opacity: 0.5;
}

.problem-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.problem-icon.warning {
    background: rgba(240, 183, 47, 0.15);
    color: var(--warning);
}

.problem-icon.danger {
    background: rgba(248, 81, 73, 0.15);
    color: var(--danger);
}

.problem-icon.info {
    background: var(--accent-muted);
    color: var(--accent-bright);
}

.problem-card h3 { margin-bottom: 10px; }

.problem-card p { font-size: 0.9375rem; margin-bottom: 16px; }

.problem-quote {
    padding: 12px;
    background: var(--bg-secondary);
    border-left: 2px solid var(--warning);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-quote q {
    display: block;
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.problem-quote cite {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.problem-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stat-divider {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.problem-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comparison-item {
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.8125rem;
}

.comparison-item.bad {
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid rgba(248, 81, 73, 0.2);
}

.comparison-item.good {
    background: rgba(63, 185, 80, 0.1);
    border: 1px solid rgba(63, 185, 80, 0.2);
}

.comparison-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.comparison-item.bad .comparison-label { color: var(--danger); }
.comparison-item.good .comparison-label { color: var(--success); }

.comparison-item code {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.problem-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.problem-cta p {
    font-size: 1rem;
    margin-bottom: 16px;
}

/* =====================================================
   SOLUTION SECTION
   ===================================================== */

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-content h4 { margin-bottom: 6px; }

.feature-content p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Report mockup - professional document look */
.solution-visual { padding-top: 20px; }

.report-mockup {
    background: var(--report-bg);
    color: var(--report-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: background 0.3s ease, color 0.3s ease;
}

.report-header-mock {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--report-border);
}

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

.report-date {
    font-size: 0.75rem;
    text-align: right;
    color: var(--report-text-muted);
    line-height: 1.5;
}

.report-body-mock { padding: 24px; }

.report-section-title {
    font-size: 0.9375rem;
    color: var(--report-text);
    margin-bottom: 12px;
}

.report-text {
    font-size: 0.875rem;
    color: var(--report-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.report-score-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--report-success-bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.report-grade {
    width: 40px;
    height: 40px;
    background: var(--report-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.report-grade-text strong {
    display: block;
    color: var(--report-success);
    font-size: 0.875rem;
}

.report-grade-text span {
    font-size: 0.75rem;
    color: var(--report-success);
}

.report-findings { margin-bottom: 16px; }

.finding-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--report-border);
    font-size: 0.8125rem;
}

.finding-row:last-child { border-bottom: none; }

.finding-label { color: var(--report-text-muted); }

.finding-value { font-weight: 600; }
.finding-value.green { color: var(--report-success); }
.finding-value.yellow { color: var(--warning); }

.report-recommendation {
    font-size: 0.8125rem;
    color: var(--report-text-muted);
    padding: 12px;
    background: var(--report-accent-bg);
    border-radius: var(--radius);
    margin-bottom: 0;
}

.report-recommendation strong {
    color: var(--report-text);
    font-weight: 700;
}

.report-footer-mock {
    padding: 12px 24px;
    background: var(--report-accent-bg);
    font-size: 0.6875rem;
    color: var(--report-text-muted);
    text-align: center;
    border-top: 1px solid var(--report-border);
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step { text-align: center; }

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step-content { padding: 0 8px; }

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}

.step-icon svg { width: 24px; height: 24px; }

.step-content h3 { margin-bottom: 8px; }

.step-content p {
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(63, 185, 80, 0.15);
    color: var(--success);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 500;
}

.step-time svg { width: 14px; height: 14px; }

/* Remove connector lines */
.process-connector { display: none; }

.process-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.summary-stat { text-align: center; }

.summary-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.summary-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.summary-vs {
    font-size: 1rem;
    color: var(--text-muted);
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(148, 163, 184, 0.25);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px -10px var(--accent-glow);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h3 { margin-bottom: 6px; }

.pricing-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li.pro svg { color: var(--success); }
.pricing-features li.con svg { color: var(--danger); }
.pricing-features li.neutral svg { color: var(--text-muted); }

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 640px;
    margin: 32px auto 0;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pricing-note svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-note p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* =====================================================
   SOCIAL PROOF - Subtle, not salesy
   ===================================================== */

.social-proof-content {
    max-width: 640px;
    margin: 0 auto;
}

/* Hide fake progress bar - too manipulative */
.pilot-status { display: none; }

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote svg { display: none; } /* Remove oversized quote marks */

.testimonial-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    padding-left: 0;
    border-left: 2px solid var(--accent);
    padding-left: 16px;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
}

.author-name {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
}

.author-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
}

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

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

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

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.faq-answer ul {
    list-style: none;
    margin-bottom: 12px;
}

.faq-answer li {
    padding: 6px 0 6px 16px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.faq-answer li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-desc {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-checklist {
    list-style: none;
    margin-bottom: 28px;
}

.contact-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9375rem;
}

.contact-checklist svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.contact-guarantee {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-guarantee svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-guarantee p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Form States */
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner { animation: spin 1s linear infinite; }

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

.form-success,
.form-error {
    text-align: center;
    padding: 32px;
}

.success-icon svg { color: var(--success); margin-bottom: 16px; }
.error-icon svg { color: var(--danger); margin-bottom: 16px; }

.form-success h3,
.form-error h3 { margin-bottom: 8px; }

.form-error a {
    color: var(--accent);
}

.form-error a:hover { text-decoration: underline; }

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--bg-secondary);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand .logo { margin-bottom: 12px; }

.footer-brand p {
    font-size: 0.875rem;
    max-width: 280px;
}

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

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .hero-content,
    .solution-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-grid,
    .pricing-grid,
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
    }

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

    .mobile-menu-btn { display: flex; }

    .hero {
        padding-top: calc(var(--header-height) + 40px);
        min-height: auto;
    }

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

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .trust-signals {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 16px;
        justify-content: flex-start;
    }

    .form-row { grid-template-columns: 1fr; }

    .footer-main { grid-template-columns: 1fr; gap: 32px; }

    .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }

    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

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

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

    .contact-form-wrapper { padding: 20px; }

    .footer-links { grid-template-columns: 1fr; }
}

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.lang-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: all var(--transition);
    text-transform: uppercase;
}

.lang-switcher a:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    border-color: var(--border);
}

.lang-switcher a.active {
    color: var(--accent-bright);
    background: var(--accent-muted);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 16px;
        right: 60px;
        margin: 0;
        padding: 0;
        border: none;
    }
}


/* =====================================================
   COOKIE CONSENT BANNER (GDPR)
   ===================================================== */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

#cookie-consent-banner.visible {
    transform: translateY(0);
}

#cookie-consent-banner.hidden {
    transform: translateY(100%);
}

.cookie-consent-content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
}

.cookie-consent-content p a {
    color: var(--accent-bright);
    text-decoration: underline;
}

.cookie-consent-content p a:hover {
    color: var(--accent-hover);
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-buttons .btn {
        flex: 1;
        max-width: 150px;
    }
}
