/* ═══════════════════════════════════════════════════════
   Kabel Planer (Exoda Cable) Landing Page – Styles
   Dark + Electric Blue theme, Inter font
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    /* Primary – Dark professional */
    --bg-dark: #080b12;
    --bg-section: #0c0f18;
    --bg-card: #111528;
    --bg-card-hover: #161c34;

    /* Accent – Electric Blue */
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.12);
    --accent-glow-strong: rgba(59, 130, 246, 0.25);

    /* Secondary – Copper/Orange for cable feel */
    --copper: #e8873a;
    --copper-light: #f0a060;

    /* Text */
    --text-primary: #eef2f9;
    --text-secondary: rgba(238, 242, 249, 0.65);
    --text-muted: rgba(238, 242, 249, 0.4);

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(59, 130, 246, 0.25);

    /* Gradients */
    --gradient-hero: linear-gradient(155deg, #0a0d1a 0%, #111a30 40%, #080b14 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
    --gradient-card: linear-gradient(145deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0.01) 100%);
    --gradient-download: linear-gradient(135deg, #0f1428 0%, #162040 50%, #0f1428 100%);

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .5);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, .6);
    --shadow-accent: 0 4px 30px rgba(59, 130, 246, 0.15);

    /* Spacing */
    --section-py: 100px;
    --container-max: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    /* Transitions */
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ── Section Helpers ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn .material-icons-outlined {
    font-size: 20px;
}

.btn--accent {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
    box-shadow: 0 6px 40px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn--ghost {
    background: transparent;
    color: var(--accent-light);
    border: 1.5px solid var(--border-accent);
}

.btn--ghost:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 8px 20px;
    font-size: .875rem;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Hero download links: wave effect (desktop pointers only) */
.hero__cta .btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero__cta .btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    transform: translate(-50%, -50%) scale(0.15);
    transform-origin: center;
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.3);
    z-index: 0;
    pointer-events: none;
}

.hero__cta .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 45%,
            rgba(255, 255, 255, 0.42) 50%,
            rgba(255, 255, 255, 0.2) 55%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-140%) skewX(-22deg);
    z-index: 0;
    pointer-events: none;
}

.hero__cta .btn>* {
    position: relative;
    z-index: 1;
}

@keyframes waveRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.15);
    }

    25% {
        opacity: 0.55;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(8.5);
    }
}

@keyframes waveSweep {
    0% {
        opacity: 0;
        transform: translateX(-140%) skewX(-22deg);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(140%) skewX(-22deg);
    }
}

@media (hover: hover) and (pointer: fine) {
    .hero__cta .btn:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 34px rgba(59, 130, 246, 0.35), var(--shadow-accent);
    }

    .hero__cta .btn:hover::before {
        animation: waveRing 980ms cubic-bezier(.25, .6, .4, 1) infinite;
    }

    .hero__cta .btn:hover::after {
        animation: waveSweep 880ms ease-out infinite;
    }
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 11, 18, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.navbar__logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
}

.navbar__logo-icon .material-icons-outlined {
    color: #fff;
    font-size: 24px;
}

.navbar__brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.navbar__links a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.navbar__links a:not(.btn):hover {
    color: var(--accent-light);
}

.navbar__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar__links a:not(.btn):hover::after {
    width: 100%;
}

/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
    background: var(--gradient-hero);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

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

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__title--accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ── Phone Frame ── */
.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a28, #0d0d14);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, .06), var(--shadow-accent);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #060608;
    border-radius: 14px;
    z-index: 10;
}

.phone-frame__screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
}

.phone-frame__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-frame--small {
    width: 220px;
    height: 455px;
    border-radius: 32px;
    padding: 10px;
}

.phone-frame--small::before {
    top: 14px;
    width: 80px;
    height: 22px;
    border-radius: 12px;
}

.phone-frame--small .phone-frame__screen {
    border-radius: 24px;
}

/* ══════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════ */
.features {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.06);
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card__desc {
    font-size: .925rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SHOWCASE
   ══════════════════════════════════════════════════════ */
.showcase {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

.showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.showcase__text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.showcase__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.showcase__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: var(--text-secondary);
}

.showcase__list .material-icons-outlined {
    font-size: 22px;
    color: var(--accent);
}

.showcase__image {
    position: relative;
    display: flex;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════
   SCREENSHOTS
   ══════════════════════════════════════════════════════ */
.screenshots {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.screenshots__carousel {
    position: relative;
    overflow: hidden;
}

.screenshots__track {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    transition: var(--transition);
}

.screenshot-item {
    text-align: center;
    flex-shrink: 0;
}

.screenshot-item__label {
    margin-top: 16px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-secondary);
}

.screenshots__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.screenshots__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .1);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
}

.screenshots__arrow:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--bg-section);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0 20px;
    position: relative;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-accent);
}

.step__icon {
    margin-bottom: 12px;
}

.step__icon .material-icons-outlined {
    font-size: 36px;
    color: var(--accent);
}

.step__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step__desc {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-accent), transparent);
    margin-top: 72px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ══════════════════════════════════════════════════════
   DOWNLOAD CTA
   ══════════════════════════════════════════════════════ */
.download {
    padding: var(--section-py) 0;
    background: var(--gradient-download);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

.download__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.download__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.download__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 560px;
}

.download__badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    transition: var(--transition);
    display: inline-block;
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.store-badge__svg {
    height: 52px;
    width: auto;
}

.download__icon {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), var(--shadow-accent);
    border: 1px solid var(--border-accent);
    flex-shrink: 0;
}

.download__icon .material-icons-outlined {
    font-size: 80px;
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
    background: #050710;
    color: var(--text-muted);
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-icon .material-icons-outlined {
    color: #fff;
    font-size: 22px;
}

.footer__brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer__tagline {
    font-size: .925rem;
    margin-bottom: 8px;
}

.footer__version {
    font-size: .8rem;
    color: var(--text-muted);
}

.footer__heading {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer__nav ul li,
.footer__legal ul li,
.footer__contact ul li {
    margin-bottom: 10px;
}

.footer__nav a,
.footer__legal a,
.footer__contact a {
    font-size: .9rem;
    transition: var(--transition);
}

.footer__nav a:hover,
.footer__legal a:hover,
.footer__contact a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    margin-top: 48px;
    padding: 24px 0;
    text-align: center;
    font-size: .85rem;
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger feature cards */
.features__grid .animate-on-scroll:nth-child(2) {
    transition-delay: .06s;
}

.features__grid .animate-on-scroll:nth-child(3) {
    transition-delay: .12s;
}

.features__grid .animate-on-scroll:nth-child(4) {
    transition-delay: .18s;
}

.features__grid .animate-on-scroll:nth-child(5) {
    transition-delay: .24s;
}

.features__grid .animate-on-scroll:nth-child(6) {
    transition-delay: .30s;
}

.features__grid .animate-on-scroll:nth-child(7) {
    transition-delay: .36s;
}

.features__grid .animate-on-scroll:nth-child(8) {
    transition-delay: .42s;
}

.features__grid .animate-on-scroll:nth-child(9) {
    transition-delay: .48s;
}

/* ══════════════════════════════════════════════════════
   FLOATING PARTICLES (added via JS)
   ══════════════════════════════════════════════════════ */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    15% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .hero__inner {
        gap: 40px;
    }

    .showcase__inner {
        gap: 40px;
    }

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

    .steps {
        flex-wrap: wrap;
        gap: 32px;
    }

    .step__connector {
        display: none;
    }
}

/* ── Mobile Large ── */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        border-left: 1px solid var(--border);
    }

    .navbar__links.active {
        right: 0;
    }

    .navbar__links a {
        color: var(--text-primary) !important;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        order: -1;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero__visual {
        order: 2;
    }

    .phone-frame {
        width: 220px;
        height: 455px;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-frame::before {
        top: 14px;
        width: 80px;
        height: 22px;
        border-radius: 12px;
    }

    .phone-frame__screen {
        border-radius: 24px;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .showcase__inner {
        grid-template-columns: 1fr;
    }

    .showcase__text .section-title {
        text-align: center;
    }

    .showcase__text {
        text-align: center;
    }

    .showcase__list {
        align-items: center;
    }

    .screenshots__track {
        gap: 24px;
    }

    .phone-frame--small {
        width: 180px;
        height: 370px;
    }

    .download__inner {
        flex-direction: column;
        text-align: center;
    }

    .download__badges {
        justify-content: center;
    }

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

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

/* ── Mobile Small ── */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.85rem;
    }

    .hero__subtitle {
        font-size: .95rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--lg {
        padding: 12px 24px;
        justify-content: center;
    }

    .features__grid {
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

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

    .screenshots__track {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES (datenschutz, impressum, daten-loeschen)
   ══════════════════════════════════════════════════════ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-dark);
}

.legal-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.legal-page h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-page p,
.legal-page ul,
.legal-page li {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
    list-style: disc;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-light);
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-page table th,
.legal-page table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: .925rem;
    color: var(--text-secondary);
}

.legal-page table th {
    color: var(--text-primary);
    font-weight: 600;
}

/* Data deletion form */
.delete-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 32px;
    max-width: 600px;
}

.delete-form label {
    display: block;
    font-size: .925rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.delete-form input,
.delete-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: inherit;
    font-size: .95rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

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

.delete-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

.delete-form__success {
    display: none;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #22c55e;
    text-align: center;
    margin-top: 16px;
}

/* Navbar on legal pages */
.navbar--solid {
    background: rgba(8, 11, 18, .95) !important;
    box-shadow: 0 1px 0 var(--border) !important;
}