/* ============================================================
   KAMMERFUCHS WEBSITE - Design System
   Version: 1.0
   
   Farbsystem basierend auf KFStyleConstants.swift
   Dark/Light Mode via prefers-color-scheme + manual toggle
   Responsive: Mobile-first (375px → 1440px)
   ============================================================ */

 /* ── Lokale Fonts (DSGVO-konform) ───────────────────────────── */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/outfit-v15-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/outfit-v15-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/outfit-v15-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/outfit-v15-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/outfit-v15-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/dm-sans-v17-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Brand Colors */
    --brand: #E8741A;
    --brand-light: #FFF3E8;
    --brand-hover: #D4650F;
    --brand-glow: rgba(232, 116, 26, 0.15);

    /* iOS System Colors (Light) */
    --primary: #007AFF;
    --primary-hover: #0066D6;
    --secondary: #5856D6;
    --success: #34C759;
    --warning: #FF9500;
    --error: #FF3B30;
    --info: #5AC8FA;

    /* Surfaces (Light) */
    --bg: #FEFEFE;
    --bg-alt: #F5F5F7;
    --bg-hero: linear-gradient(135deg, #FEFEFE 0%, #FFF8F2 50%, #F5F5F7 100%);
    --surface: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --border: #E5E5EA;
    --border-subtle: #F0F0F5;

    /* Text (Light) */
    --text: #1D1D1F;
    --text-secondary: #6E6E73;
    --text-tertiary: #AEAEB2;
    --text-inverse: #FFFFFF;

    /* Shadows (Light - matching EAStyle from KFStyleConstants) */
    /* App: shadowOpacity 0.1, darkModeShadowOpacity 0.3 */
    /* App: defaultRadius 8, xOffset 0, yOffset 4 */
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 3px 8px rgba(0,0,0,0.10), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-brand: 0 3px 8px rgba(232, 116, 26, 0.15);
    --shadow-card-hover: 0 4px 16px rgba(232, 116, 26, 0.20);
    
    /* EAStyle Card Shadows (colored, like the app) */
    --shadow-card: 0 3px 8px rgba(232, 116, 26, 0.15);
    --shadow-card-border: rgba(232, 116, 26, 0.25);
    --shadow-card-border-width: 1px;

    /* Layout */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --container: 1200px;
    --nav-height: 72px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.3s var(--ease);
    --transition-fast: 0.15s var(--ease);
}

/* ── Dark Mode ─────────────────────────────────────────────── */
[data-theme="dark"] {
    --brand: #F0923A;
    --brand-light: #2A1E10;
    --brand-hover: #F5A85A;
    --brand-glow: rgba(240, 146, 58, 0.15);

    --primary: #0A84FF;
    --primary-hover: #409CFF;
    --secondary: #5E5CE6;
    --success: #30D158;
    --warning: #FF9F0A;
    --error: #FF453A;
    --info: #64D2FF;

    --bg: #0A0A0F;
    --bg-alt: #1C1C1E;
    --bg-hero: linear-gradient(135deg, #0A0A0F 0%, #15120E 50%, #1C1C1E 100%);
    --surface: #1C1C1E;
    --surface-elevated: #2C2C2E;
    --border: #38383A;
    --border-subtle: #2C2C2E;

    --text: #F5F5F7;
    --text-secondary: #98989D;
    --text-tertiary: #636366;
    --text-inverse: #1D1D1F;

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.20), 0 1px 2px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.30), 0 2px 4px rgba(0,0,0,0.20);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.25);
    --shadow-brand: 0 4px 8px rgba(240, 146, 58, 0.30);
    --shadow-card-hover: 0 4px 16px rgba(240, 146, 58, 0.25);
    
    /* EAStyle Card Shadows Dark Mode */
    --shadow-card: 0 4px 8px rgba(240, 146, 58, 0.30);
    --shadow-card-border: rgba(240, 146, 58, 0.30);
    --shadow-card-border-width: 1px;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --brand: #F0923A;
        --brand-light: #2A1E10;
        --brand-hover: #F5A85A;
        --brand-glow: rgba(240, 146, 58, 0.15);
        --primary: #0A84FF;
        --primary-hover: #409CFF;
        --secondary: #5E5CE6;
        --success: #30D158;
        --warning: #FF9F0A;
        --error: #FF453A;
        --info: #64D2FF;
        --bg: #0A0A0F;
        --bg-alt: #1C1C1E;
        --bg-hero: linear-gradient(135deg, #0A0A0F 0%, #15120E 50%, #1C1C1E 100%);
        --surface: #1C1C1E;
        --surface-elevated: #2C2C2E;
        --border: #38383A;
        --border-subtle: #2C2C2E;
        --text: #F5F5F7;
        --text-secondary: #98989D;
        --text-tertiary: #636366;
        --text-inverse: #1D1D1F;
        --shadow-sm: 0 1px 4px rgba(0,0,0,0.20), 0 1px 2px rgba(0,0,0,0.15);
        --shadow-md: 0 4px 8px rgba(0,0,0,0.30), 0 2px 4px rgba(0,0,0,0.20);
        --shadow-lg: 0 4px 12px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.25);
        --shadow-brand: 0 4px 8px rgba(240, 146, 58, 0.30);
        --shadow-card-hover: 0 4px 16px rgba(240, 146, 58, 0.25);
        --shadow-card: 0 4px 8px rgba(240, 146, 58, 0.30);
        --shadow-card-border: rgba(240, 146, 58, 0.30);
        --shadow-card-border-width: 1px;
    }
}

/* ── Language Toggle ───────────────────────────────────────── */
html.lang-de .lang-en { display: none !important; }
html.lang-en .lang-de { display: none !important; }

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--brand-hover); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

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

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(254, 254, 254, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: background var(--transition), border-color var(--transition);
}

[data-theme="dark"] .nav,
.dark-scheme .nav {
    background: rgba(10, 10, 15, 0.85);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .nav {
        background: rgba(10, 10, 15, 0.85);
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Menu Toggle */
.nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-menu-btn:hover { background: var(--bg-alt); }

@media (min-width: 768px) {
    .nav-menu-btn { display: none; }
}

.nav-menu-btn svg { width: 24px; height: 24px; }

/* Control Buttons (Theme, Language) */
.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all var(--transition-fast);
}

.control-btn:hover {
    background: var(--brand-light);
    color: var(--brand);
    border-color: var(--brand);
}

.control-btn svg { width: 18px; height: 18px; }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active { display: block; }

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
    text-decoration: none;
}

.mobile-menu a:last-child { border-bottom: none; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: var(--bg-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .hero-inner {
        flex-direction: row;
        text-align: left;
        gap: 60px;
        padding: 80px 0;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--brand-light);
    border: 1px solid var(--brand);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand);
    margin-bottom: 24px;
}

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

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero h1 .brand-text {
    background: linear-gradient(135deg, var(--brand) 0%, #D4650F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-actions { justify-content: flex-start; }
}

.hero-visual {
    flex-shrink: 0;
    position: relative;
}

.hero-logo-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

@media (min-width: 768px) {
    .hero-logo-wrapper { width: 320px; height: 320px; }
}

@media (min-width: 1024px) {
    .hero-logo-wrapper { width: 380px; height: 380px; }
}

.hero-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(232, 116, 26, 0.2));
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--brand-hover);
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 116, 26, 0.3);
}

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

.btn-secondary:hover {
    background: var(--bg-alt);
    color: var(--text);
    border-color: var(--brand);
    transform: translateY(-2px);
}

.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--text);
    color: var(--bg);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
}

.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg);
}

.btn-appstore svg { width: 28px; height: 28px; }

.btn-appstore-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-appstore-text small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
}

.btn-appstore-text strong {
    font-size: 1.05rem;
    font-weight: 600;
}

/* ── Section Base ──────────────────────────────────────────── */
section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    section { padding: 100px 0; }
}

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

.section-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

/* ── Features Section ──────────────────────────────────────── */
.features { background: var(--bg-alt); }

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

.feature-card {
    background: var(--surface);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--brand);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-icon-blue { background: rgba(0, 122, 255, 0.12); }
.feature-icon-green { background: rgba(52, 199, 89, 0.12); }
.feature-icon-orange { background: rgba(255, 149, 0, 0.12); }
.feature-icon-purple { background: rgba(88, 86, 214, 0.12); }
.feature-icon-cyan { background: rgba(90, 200, 250, 0.12); }
.feature-icon-red { background: rgba(255, 59, 48, 0.12); }

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ── How It Works ──────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand);
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-brand);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

@media (min-width: 768px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(50% + 40px);
        width: calc(100% - 80px);
        height: 2px;
        background: linear-gradient(90deg, var(--brand), var(--border));
        opacity: 0.5;
    }
}

/* ── Pricing Section ───────────────────────────────────────── */
.pricing { background: var(--bg-alt); }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

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

.pricing-card {
    background: var(--surface);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--brand);
    box-shadow: var(--shadow-brand);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #FFF;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 16px 0 4px;
    color: var(--brand);
}

.pricing-price-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features .cross {
    color: var(--text-tertiary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features .cross + span {
    color: var(--text-tertiary);
}

/* ── Privacy Section ───────────────────────────────────────── */
.privacy-highlight {
    background: var(--surface);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.privacy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.privacy-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.privacy-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.privacy-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-alt);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

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

/* ── Target Groups / Use Cases ─────────────────────────────── */
.targets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.target-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--surface);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.target-tag:hover {
    border-color: var(--brand);
    background: var(--brand-light);
    transform: translateY(-2px);
}

.target-tag .tag-icon { font-size: 1.2rem; }

/* ── CTA Section ───────────────────────────────────────────── */
.cta {
    background: var(--bg-alt);
    text-align: center;
}

.cta-inner {
    background: linear-gradient(135deg, var(--brand) 0%, #D4650F 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-brand);
}

.cta-inner h2 {
    color: #FFF;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.cta-inner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta .btn-appstore {
    background: #FFF;
    color: var(--brand);
}

.cta .btn-appstore:hover {
    background: #F5F5F7;
    color: var(--brand);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-brand img { width: 36px; height: 36px; border-radius: 8px; }

.footer-brand span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    color: var(--text);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-decoration: none;
}

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

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

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

.cookie-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-inner { flex-direction: row; }
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    line-height: 1.5;
}

.cookie-btn {
    padding: 10px 24px;
    background: var(--brand);
    color: #FFF;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
}

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

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    .hero-logo-wrapper::before { animation: none; }
    .hero-badge-dot { animation: none; }
}

/* ── Legal / Content Pages ─────────────────────────────────── */
.page-content {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    min-height: 70vh;
}

.page-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.page-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.page-content h2 {
    font-size: 1.35rem;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-light);
}

.page-content h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.page-content ul, .page-content ol {
    margin: 12px 0 20px 24px;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content a { text-decoration: underline; }

.placeholder {
    background: var(--brand-light);
    border: 2px dashed var(--brand);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--brand);
    word-break: break-all;
}

/* ── Support Page ──────────────────────────────────────────── */
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.support-card {
    background: var(--surface);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.support-card h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.faq-q {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--brand);
    font-weight: 300;
    transition: transform var(--transition-fast);
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 500px;
}

/* Support Form */
.support-form { display: flex; flex-direction: column; gap: 16px; }

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

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

.form-hint {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

/* ── Universal Link Fallback ───────────────────────────────── */
.fallback-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hero);
    text-align: center;
    padding: 40px 24px;
}

.fallback-card {
    background: var(--surface);
    border: var(--shadow-card-border-width) solid var(--shadow-card-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 420px;
    box-shadow: var(--shadow-card);
}

.fallback-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.fallback-card h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.fallback-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.fallback-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

.fallback-status {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

/* ── Utility Classes ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-brand { color: var(--brand); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
