/* ============================================
   Daddy — landing page styles
   ============================================ */

:root {
    --bg: #0b1020;
    --bg-2: #0f172a;
    --bg-3: #111a35;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --text: #e8ecf6;
    --text-dim: #aab3c8;
    --text-mute: #7a8499;

    --primary: #6366f1;
    --primary-2: #8b5cf6;
    --primary-dark: #4f46e5;
    --accent: #10b981;
    --accent-2: #34d399;
    --warn: #f59e0b;
    --danger: #ef4444;

    --grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #10b981 100%);
    --grad-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(16, 185, 129, 0.12));

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-lg: 0 30px 60px -20px rgba(8, 12, 30, 0.6), 0 18px 36px -18px rgba(99, 102, 241, 0.3);
    --shadow-glow: 0 0 0 1px rgba(99, 102, 241, 0.4), 0 20px 40px -10px rgba(99, 102, 241, 0.45);

    --container: 1200px;
    --header-h: 72px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.01em; }
p { margin: 0; }

/* ============================================
   Background decor
   ============================================ */
.bg-decor {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.10), transparent 50%),
        var(--bg);
}
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floaty 18s ease-in-out infinite;
}
.bg-orb-1 { width: 480px; height: 480px; background: #6366f1; top: -120px; left: -100px; }
.bg-orb-2 { width: 520px; height: 520px; background: #10b981; bottom: -180px; right: -120px; animation-delay: -6s; }
.bg-orb-3 { width: 360px; height: 360px; background: #8b5cf6; top: 40%; left: 60%; opacity: 0.3; animation-delay: -12s; }
@keyframes floaty {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.05); }
}

/* ============================================
   Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}
.section-lead {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.6), 0 24px 50px -10px rgba(99, 102, 241, 0.55); }
.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); transform: translateY(-2px); }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background 0.25s var(--ease), backdrop-filter 0.25s var(--ease), border-color 0.25s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: rgba(11, 16, 32, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 800;
    font-size: 20px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}
.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--grad);
    color: #fff;
    box-shadow: 0 8px 20px -6px rgba(99, 102, 241, 0.5);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 14.5px;
    transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }

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

.lang-switch {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
}
.lang-btn {
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--text-dim);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 12px -4px rgba(99, 102, 241, 0.6);
}
.lang-btn-block {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid var(--border);
    margin-bottom: 6px;
    font-size: 13.5px;
    color: var(--text-dim);
}
.lang-btn-block:hover { background: var(--surface); color: var(--text); }
.lang-btn-block.is-active { background: var(--grad-soft); border-color: rgba(99, 102, 241, 0.4); color: var(--text); }

.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(11, 16, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-mobile a {
    padding: 12px 0;
    color: var(--text-dim);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile.is-open { display: flex; }

/* ============================================
   Hero
   ============================================ */
.hero {
    padding: calc(var(--header-h) + 60px) 0 80px;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}
.eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-title {
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-gradient {
    display: inline-block;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 18px 26px; color: var(--text-dim); font-size: 14px; }
.hero-bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero-bullets svg { color: var(--accent); }

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin-left: auto;
}
.phone {
    position: relative;
    width: 86%;
    margin: 0 auto;
    aspect-ratio: 9 / 18;
    background: linear-gradient(160deg, #1a2240, #0e1530);
    border-radius: 36px;
    padding: 14px;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-10px); }
}
.phone-bar {
    height: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    color: var(--text-mute);
    font-size: 11px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}
.phone-bar > span { width: 8px; height: 8px; border-radius: 50%; background: var(--text-mute); opacity: 0.4; }
.phone-title { margin-left: auto; }
.phone-screen {
    position: relative;
    height: calc(100% - 40px);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(99, 102, 241, 0.15), transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.18), transparent 50%),
        #0a1024;
    overflow: hidden;
    padding: 14px;
    border: 1px solid var(--border);
}
.phone-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 12px;
    transform: translateX(0);
    opacity: 0;
    animation: cardIn 0.6s var(--ease) forwards;
}
.phone-card-1 { animation-delay: 0.4s; }
.phone-card-2 { animation-delay: 0.7s; }
.phone-card-3 { animation-delay: 1.0s; }
@keyframes cardIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.phone-card-row { display: flex; align-items: center; gap: 10px; }
.phone-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 13px;
    flex-shrink: 0;
}
.a-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.a-2 { background: linear-gradient(135deg, #10b981, #34d399); }
.a-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.phone-card-name { color: var(--text); font-weight: 600; }
.phone-card-sub { color: var(--text-dim); font-size: 11px; display: flex; align-items: center; gap: 6px; }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot-online { background: var(--accent); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); animation: pulse 2s infinite; }
.dot-zone { background: #6366f1; }
.dot-warn { background: var(--warn); }

.phone-zone {
    position: absolute;
    width: 90px; height: 90px;
    border: 2px dashed rgba(99, 102, 241, 0.7);
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.12);
    bottom: 30px; right: 25px;
    animation: zonePulse 4s ease-in-out infinite;
}
@keyframes zonePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}
.phone-pin {
    position: absolute;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}
.phone-pin-1 { top: 50%; left: 30%; }
.phone-pin-2 { bottom: 50px; right: 60px; background: var(--primary); box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3); }
.pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
.phone-pin-dot {
    position: absolute;
    inset: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.float-card {
    position: absolute;
    background: rgba(20, 27, 56, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    animation: floaty 8s ease-in-out infinite;
}
.float-1 { top: 8%; left: -10px; }
.float-2 { bottom: 12%; right: -10px; animation-delay: -4s; }
.float-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
}
.float-icon-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.float-icon-2 { background: linear-gradient(135deg, #10b981, #34d399); }
.float-title { font-weight: 700; font-size: 13px; color: var(--text); }
.float-sub { font-size: 11.5px; color: var(--text-dim); }

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 80px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}
.stat { text-align: center; padding: 8px; }
.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.stat-lbl { color: var(--text-dim); font-size: 13px; margin-top: 6px; }

/* ============================================
   Features
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature:hover::before { opacity: 0.5; }
.feature > * { position: relative; }
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--grad-soft);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c4c8ff;
    margin-bottom: 18px;
}
.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.feature p { color: var(--text-dim); font-size: 14.5px; line-height: 1.65; }
.feature-lg {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.10), rgba(16, 185, 129, 0.06));
    border-color: rgba(99, 102, 241, 0.2);
}
.feature-lg h3 { font-size: 22px; }
.feature-lg p { font-size: 15.5px; max-width: 540px; }
.feature-cta {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature-cta h3 { color: #fff; }
.feature-cta p { color: rgba(255, 255, 255, 0.85); }
.feature-cta .btn { align-self: flex-start; background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.25); }
.feature-cta .btn:hover { background: rgba(255, 255, 255, 0.28); }

/* ============================================
   Steps
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step-num {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--grad);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px -8px rgba(99, 102, 241, 0.5);
}
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 15px; }

/* ============================================
   WebApp
   ============================================ */
.webapp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.webapp-text .section-kicker { margin-bottom: 18px; }
.webapp-text .section-title { text-align: left; margin-bottom: 16px; }
.webapp-text .section-lead { margin-bottom: 28px; }

.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 15.5px; }
.check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.webapp-visual { position: relative; }
.map-card {
    background: linear-gradient(160deg, #1a2240, #0e1530);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-lg);
}
.map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.map-search {
    color: var(--text-dim);
    font-size: 13px;
}
.map-tools { display: flex; gap: 4px; }
.map-tool {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    color: var(--text);
    background: var(--surface-2);
    font-size: 14px;
    font-weight: 600;
}
.map-canvas {
    position: relative;
    aspect-ratio: 5 / 3;
    border-radius: 10px;
    background:
        linear-gradient(135deg, #0a1428 0%, #1a2a4a 50%, #0a1428 100%);
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
.map-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-zone {
    position: absolute;
    border: 2px dashed;
    border-radius: 50%;
    animation: zonePulse 5s ease-in-out infinite;
}
.map-zone-1 {
    width: 80px; height: 80px;
    top: 20%; left: 15%;
    border-color: rgba(99, 102, 241, 0.7);
    background: rgba(99, 102, 241, 0.15);
}
.map-zone-2 {
    width: 100px; height: 100px;
    bottom: 18%; right: 12%;
    border-color: rgba(16, 185, 129, 0.7);
    background: rgba(16, 185, 129, 0.15);
    animation-delay: -2s;
}
.map-pin {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25);
}
.pin-1 { top: 78%; left: 8%; border-color: #6366f1; }
.pin-2 { top: 60%; left: 35%; }
.pin-3 { top: 30%; left: 60%; border-color: #10b981; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25); }
.pin-4 { top: 18%; left: 85%; }
.map-legend {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 12.5px;
    color: var(--text-dim);
    flex-wrap: wrap;
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot-route { background: var(--primary); }
.legend-dot-entry { background: rgba(99, 102, 241, 0.4); border: 1px dashed #6366f1; }
.legend-dot-presence { background: rgba(16, 185, 129, 0.4); border: 1px dashed #10b981; }

.map-card-mini { margin-top: 16px; padding: 18px; }
.map-mini-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.map-mini-lbl { color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.map-mini-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
}
.map-mini-val small { font-size: 12px; color: var(--text-dim); font-weight: 500; margin-left: 2px; }

/* ============================================
   Privacy
   ============================================ */
.privacy-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.privacy-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.privacy-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.privacy-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.10));
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.privacy-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.privacy-card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: grid; gap: 12px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: rgba(99, 102, 241, 0.4); }
.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #c4c8ff; }
.faq-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--text-dim);
    border-radius: 1px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-icon::after { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   Final CTA
   ============================================ */
.cta { padding: 100px 0; position: relative; }
.cta-inner {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.cta-glow {
    position: absolute;
    inset: -2px;
    background: var(--grad);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.5;
    filter: blur(40px);
}
.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 14px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.cta-lead { color: var(--text-dim); font-size: 17px; max-width: 540px; margin: 0 auto 28px; }
.cta .hero-cta { justify-content: center; }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
    margin-top: 40px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-tag { color: var(--text-dim); font-size: 14.5px; max-width: 280px; margin-top: 12px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-cols a, .footer-cols button {
    display: block;
    color: var(--text-dim);
    font-size: 14.5px;
    margin-bottom: 8px;
    transition: color 0.2s var(--ease);
    text-align: left;
    width: 100%;
}
.footer-cols a:hover { color: var(--text); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-mute);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-lg { grid-column: span 2; }
    .webapp { grid-template-columns: 1fr; gap: 40px; }
    .steps { grid-template-columns: 1fr; }
    .privacy-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
    .container { padding: 0 18px; }
    .section { padding: 64px 0; }
    .nav-links { display: none; }
    .lang-switch { display: none; }
    .nav-burger { display: inline-flex; }
    .nav-actions .btn { display: none; }
    .hero { padding: calc(var(--header-h) + 30px) 0 40px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 50px; padding: 18px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-lg { grid-column: span 1; }
    .privacy-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-inner { padding: 48px 24px; }
    .float-1, .float-2 { display: none; }
    .phone { width: 80%; }
    .lang-btn { padding: 5px 9px; font-size: 11.5px; }
}

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