/* ═══════════════════════════════════════════════
   MiniTubeKiddy — Landing Page CSS
   Renk Paleti: Mor + Koyu Lacivert
   ═══════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────── */
:root {
    /* Mor tonları */
    --purple-50: #f5f0ff;
    --purple-100: #ede5ff;
    --purple-200: #d4c4ff;
    --purple-300: #b794f6;
    --purple-400: #9f67ff;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --purple-800: #5b21b6;
    --purple-900: #4c1d95;

    /* Koyu lacivert tonları */
    --navy-50: #e8eaf6;
    --navy-100: #c5cae9;
    --navy-200: #9fa8da;
    --navy-300: #7986cb;
    --navy-400: #5c6bc0;
    --navy-500: #3f51b5;
    --navy-600: #283593;
    --navy-700: #1a237e;
    --navy-800: #0d1550;
    --navy-900: #070b2e;
    --navy-950: #040618;

    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, var(--purple-600) 0%, var(--navy-700) 100%);
    --gradient-hero: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--purple-900) 100%);
    --gradient-card: linear-gradient(145deg, rgba(139, 92, 246, 0.08) 0%, rgba(26, 35, 126, 0.08) 100%);
    --gradient-text: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-300) 50%, #60a5fa 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);

    /* Diğer */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);
}

/* ── Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy-950);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Navbar ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(4, 6, 24, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-tv {
    width: 18px;
    height: 18px;
    color: white;
}

.logo-accent {
    color: var(--purple-400);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-selector {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.lang-selector:hover {
    border-color: var(--border-hover);
}

.lang-selector option {
    background: var(--navy-900);
    color: var(--text-primary);
}

/* RTL desteği */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-container {
    direction: rtl;
}

[dir="rtl"] .step {
    flex-direction: row-reverse;
}

[dir="rtl"] .safety-item {
    flex-direction: row-reverse;
}

/* Mobil menü açık hali */
.nav-links.mobile-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(4, 6, 24, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--purple-700);
    top: -10%;
    right: -5%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--navy-600);
    bottom: -5%;
    left: 10%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--purple-500);
    top: 40%;
    left: 30%;
    animation: float 25s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple-300);
    margin-bottom: 24px;
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--border-hover);
    background: var(--surface);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple-400);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Phone Mockup ──────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    background: var(--navy-900);
    border-radius: 32px;
    padding: 12px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.phone-screen {
    background: var(--navy-950);
    border-radius: 22px;
    overflow: hidden;
    padding: 16px;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phone-avatar {
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.phone-video-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-video-card {
    display: flex;
    gap: 10px;
    padding: 8px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.phone-video-card:hover {
    background: var(--surface-hover);
}

.video-thumb {
    width: 96px;
    height: 62px;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.thumb-1 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.thumb-2 {
    background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.thumb-3 {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.video-play i {
    width: 20px;
    height: 20px;
    color: white;
}

.video-duration {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.65rem;
    padding: 1px 4px;
    border-radius: 3px;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.video-title {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.video-channel {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 2px;
}

.video-badge i {
    width: 10px;
    height: 10px;
}

.video-badge.safe {
    color: #34d399;
}

/* ── Features ──────────────────────────────────── */
.features {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple-400);
}

.feature-icon.blue {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

.feature-icon.navy {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* AI feature card — vurgulu */
.feature-card-ai {
    border-color: rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.06);
}

.feature-card-ai:hover {
    border-color: var(--purple-500);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon.ai-glow {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    color: white;
}

/* ── AI Analysis Section ──────────────────────── */
.ai-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.04) 50%, transparent 100%);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-graphic {
    position: relative;
    width: 280px;
    height: 280px;
}

.ai-circle {
    position: absolute;
    inset: 60px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.3);
    animation: aiPulse 3s ease-in-out infinite;
}

.ai-circle i {
    width: 56px;
    height: 56px;
    color: white;
}

@keyframes aiPulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
    }
}

.ai-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.orbit-1 {
    inset: 30px;
    animation: orbitSpin 8s linear infinite;
}

.orbit-2 {
    inset: 10px;
    animation: orbitSpin 12s linear infinite reverse;
}

.orbit-3 {
    inset: -10px;
    animation: orbitSpin 16s linear infinite;
}

.ai-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-400);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--purple-400);
}

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ai-content .section-tag {
    text-align: left;
}

.ai-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ai-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple-400);
}

.ai-feature-icon i {
    width: 20px;
    height: 20px;
}

.ai-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.ai-feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ai-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ai-graphic {
        width: 200px;
        height: 200px;
    }

    .ai-circle {
        inset: 40px;
    }

    .ai-circle i {
        width: 36px;
        height: 36px;
    }

    .ai-content h2 {
        font-size: 1.8rem;
    }
}

/* ── How It Works ──────────────────────────────── */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.steps-container {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-icon {
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple-400);
}

.step-icon i {
    width: 22px;
    height: 22px;
}

.step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--purple-600), var(--navy-700));
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Safety ────────────────────────────────────── */
.safety {
    padding: 120px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-content .section-tag {
    text-align: left;
}

.safety-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.safety-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.safety-check {
    width: 28px;
    height: 28px;
    background: rgba(52, 211, 153, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #34d399;
    margin-top: 2px;
}

.safety-check i {
    width: 14px;
    height: 14px;
}

.safety-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.safety-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Shield Graphic */
.safety-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-graphic {
    position: relative;
    width: 280px;
    height: 280px;
}

.shield-outer {
    position: absolute;
    inset: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.shield-inner i {
    width: 64px;
    height: 64px;
    color: white;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.ring-1 {
    inset: 20px;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    inset: 5px;
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
    inset: -10px;
    animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.03);
    }
}

/* ── Download / Coming Soon ────────────────────── */
.download {
    padding: 80px 0 120px;
}

.download-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.download-content {
    position: relative;
    z-index: 1;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: badgePulse 2s ease-in-out infinite;
}

.coming-soon-badge i {
    width: 18px;
    height: 18px;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

.download-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-content .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
}

.download-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 36px;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    transition: var(--transition);
    opacity: 0.9;
}

.store-badge:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.store-badge svg {
    height: 48px;
    width: auto;
}

/* ── Footer ────────────────────────────────────── */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--purple-400);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .safety-visual {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        display: none;
    }

    .download-card {
        padding: 48px 24px;
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .safety-content h2 {
        font-size: 1.8rem;
    }

    .shield-graphic {
        width: 200px;
        height: 200px;
    }

    .shield-outer {
        inset: 30px;
    }

    .shield-inner i {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 260px;
    }
}