/* ============================================================
   Drone Spot Finder — Landing page
   On-brand with the Angular app: Inter + teal gradient
   (#0f766e -> #159895), mint accent #a3edeb, filters-panel /
   popup-hero card language. Self-contained, no jQuery, no icon font.
   ============================================================ */

:root {
    --brand-teal: #0f766e;
    --brand-teal-strong: #0c5f58;
    --brand-teal-light: #159895;
    --brand-accent: #a3edeb;
    --brand-gradient: linear-gradient(135deg, #0f766e 0%, #159895 100%);
    --brand-tint-08: rgba(15, 118, 110, 0.08);
    --brand-tint-12: rgba(15, 118, 110, 0.12);
    --brand-tint-22: rgba(15, 118, 110, 0.22);

    --ink: #0f172a;
    --ink-mid: #334155;
    --ink-soft: #56727b;

    --surface: #ffffff;
    --surface-soft: #f4f9f9;
    --border-soft: rgba(15, 118, 110, 0.16);

    --card-radius: 1.25rem;
    --pill-radius: 999px;
    --shadow-panel: 0 16px 34px rgba(15, 23, 42, 0.08);
    --shadow-panel-lg: 0 30px 60px rgba(15, 23, 42, 0.14);
    --shadow-tile: 0 10px 24px rgba(15, 118, 110, 0.28);

    --maxw: 1160px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    line-height: 1.6;
    background:
        radial-gradient(circle at 82% -8%, rgba(163, 237, 235, 0.45), transparent 42%),
        radial-gradient(circle at -6% 12%, rgba(15, 118, 110, 0.08), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f4f9f9 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

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

h1, h2, h3 {
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--ink);
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- shared bits ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-teal-strong);
}

.eyebrow::before {
    content: "";
    width: 1.6rem;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-gradient);
}

.section {
    padding: 5.5rem 0;
}

.section__head {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section__head .eyebrow {
    justify-content: center;
}

.section__title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    margin-top: 0.9rem;
}

.section__lead {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--ink-soft);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--pill-radius);
    font-family: var(--font);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn svg {
    width: 1.15em;
    height: 1.15em;
}

.btn--primary {
    background: var(--brand-gradient);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.32);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 118, 110, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--brand-teal-strong);
    border-color: var(--border-soft);
}

.btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.4);
    box-shadow: var(--shadow-panel);
}

.btn--lg {
    padding: 1rem 1.9rem;
    font-size: 1.05rem;
}

/* Google Play badge as a link */
.badge-play img {
    height: 3.25rem;
    width: auto;
    transition: transform 0.15s ease;
}

.badge-play:hover img {
    transform: translateY(-2px);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: linear-gradient(180deg, rgba(244, 249, 249, 0.9) 0%, rgba(244, 249, 249, 0.72) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--border-soft);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    background: rgba(244, 249, 249, 0.94);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 4.75rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand__mark {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tile);
    flex-shrink: 0;
    overflow: hidden;
}

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

.brand__title {
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #102a43;
    line-height: 1.1;
}

.brand__eyebrow {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #56727b;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-mid);
    transition: color 0.15s ease;
}

.site-nav__links a:hover {
    color: var(--brand-teal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--brand-teal-strong);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem;
    border: 1px solid var(--border-soft);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
}

.lang-switch button {
    border: 0;
    background: transparent;
    padding: 0.35rem 0.6rem;
    border-radius: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ink-mid);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch button:hover {
    color: var(--brand-teal);
}

.lang-switch button.is-active {
    background: var(--brand-teal);
    color: #fff;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding: 4rem 0 5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero__title {
    font-size: clamp(2.3rem, 5vw, 3.65rem);
    font-weight: 800;
    margin-top: 1.2rem;
}

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

.hero__lead {
    margin-top: 1.4rem;
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 34rem;
}

.hero__actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__trust {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    list-style: none;
    padding: 0;
}

.hero__trust li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-mid);
}

.hero__trust svg {
    width: 1.05rem;
    height: 1.05rem;
    color: var(--brand-teal);
    flex-shrink: 0;
}

/* ---------- device / map mockup ---------- */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.device {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 2.4rem;
    padding: 0.75rem;
    background: linear-gradient(160deg, #16323b 0%, #0f766e 55%, #159895 100%);
    box-shadow: var(--shadow-panel-lg);
}

.device::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    height: 1.35rem;
    background: #16323b;
    border-radius: 0 0 1rem 1rem;
    z-index: 3;
}

.device__screen {
    position: relative;
    border-radius: 1.8rem;
    overflow: hidden;
    aspect-ratio: 9 / 18;
    /* faux-map fallback shown until a real screenshot is dropped in */
    background:
        linear-gradient(0deg, rgba(15, 118, 110, 0.06), rgba(15, 118, 110, 0.06)),
        repeating-linear-gradient(0deg, rgba(15, 118, 110, 0.06) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.06) 0 1px, transparent 1px 44px),
        linear-gradient(155deg, #eef7f6 0%, #dcefed 100%);
}

.device__screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* faux roads for the fallback map */
.device__screen::before,
.device__screen::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.device__screen::before {
    top: 34%;
    left: -10%;
    width: 130%;
    height: 10px;
    transform: rotate(-18deg);
    box-shadow: 0 90px 0 -1px rgba(255, 255, 255, 0.7);
}

.device__screen::after {
    top: -10%;
    left: 58%;
    width: 12px;
    height: 130%;
    transform: rotate(14deg);
    box-shadow: -120px 0 0 -2px rgba(255, 255, 255, 0.6);
}

.map-pin {
    position: absolute;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    border-radius: 50% 50% 50% 2px;
    transform: rotate(45deg);
    background: var(--brand-gradient);
    box-shadow: 0 6px 14px rgba(15, 118, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin::after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #fff;
    transform: rotate(-45deg);
}

.map-pin--a { top: 22%; left: 24%; }
.map-pin--b { top: 46%; left: 60%; }
.map-pin--c { top: 66%; left: 33%; animation-delay: 0.4s; }

.device .map-pin { animation: pin-float 3.4s ease-in-out infinite; }

@keyframes pin-float {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-6px); }
}

/* floating stat chip over the device */
.hero__chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.95rem;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    box-shadow: var(--shadow-panel);
    z-index: 4;
}

.hero__chip-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.7rem;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__chip-icon svg { width: 1.15rem; height: 1.15rem; }

.hero__chip strong { display: block; font-size: 0.95rem; line-height: 1.1; }

.hero__chip span { font-size: 0.74rem; color: var(--ink-soft); }

.hero__chip--tl { top: 8%; left: -6%; }
.hero__chip--br { bottom: 10%; right: -8%; }

/* ============================================================
   Feature grid (filters-panel card language)
   ============================================================ */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-soft);
    background:
        radial-gradient(circle at top left, rgba(163, 237, 235, 0.5), transparent 42%),
        linear-gradient(180deg, rgba(248, 252, 252, 0.98), rgba(239, 247, 246, 0.96));
    box-shadow: var(--shadow-panel);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-panel-lg);
}

.feature-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background: var(--brand-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tile);
}

.feature-card__icon svg { width: 1.5rem; height: 1.5rem; }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.96rem;
    color: var(--ink-soft);
}

/* ============================================================
   How it works — steps
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    position: relative;
}

.step {
    position: relative;
    padding: 2rem 1.6rem;
    border-radius: var(--card-radius);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-panel);
    text-align: center;
}

.step__num {
    width: 3.4rem;
    height: 3.4rem;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tile);
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.step p {
    margin-top: 0.6rem;
    font-size: 0.96rem;
    color: var(--ink-soft);
}

/* ============================================================
   Showcase — framed screenshots
   ============================================================ */
.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.shot {
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--surface);
    box-shadow: var(--shadow-panel);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shot:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-panel-lg);
}

.shot__frame {
    position: relative;
    aspect-ratio: 4 / 3;
    /* fallback until real screenshot is provided */
    background:
        radial-gradient(circle at 30% 20%, rgba(163, 237, 235, 0.6), transparent 55%),
        linear-gradient(155deg, #eef7f6 0%, #d7edeb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shot__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shot__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-teal-strong);
    opacity: 0.7;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shot__placeholder svg { width: 2.4rem; height: 2.4rem; }

.shot__cap {
    padding: 1.1rem 1.3rem;
}

.shot__cap strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 700;
}

.shot__cap span {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta {
    padding: 4rem 0 5.5rem;
}

.cta__panel {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    text-align: center;
    background: var(--brand-gradient);
    box-shadow: var(--shadow-panel-lg);
}

.cta__panel::before,
.cta__panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.cta__panel::before {
    width: 22rem;
    height: 22rem;
    top: -10rem;
    right: -6rem;
}

.cta__panel::after {
    width: 16rem;
    height: 16rem;
    bottom: -9rem;
    left: -4rem;
}

.cta__inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
    color: #fff;
}

.cta__title {
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
}

.cta__lead {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta__actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta .btn--primary {
    background: #ffffff;
    color: var(--brand-teal-strong);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, #0f3037 0%, #0c2429 100%);
    color: rgba(255, 255, 255, 0.72);
    padding: 3.5rem 0 2rem;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .brand__title { color: #fff; }

.site-footer .brand__eyebrow { color: rgba(255, 255, 255, 0.55); }

.footer__tagline {
    margin-top: 1rem;
    max-width: 22rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__cols {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer__col h4 {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
}

.footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__col a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.15s ease;
}

.footer__col a:hover { color: var(--brand-accent); }

.footer__social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.2rem;
}

.footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 0.15s ease, transform 0.15s ease;
}

.footer__social a:hover {
    background: var(--brand-gradient);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 1.2rem;
    height: 1.2rem;
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 34rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    box-shadow: var(--shadow-panel-lg);
    font-size: 0.9rem;
    color: var(--ink-mid);
    z-index: 1400;
}

.cookie a {
    color: var(--brand-teal);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-accept-button {
    margin-left: auto;
    flex-shrink: 0;
    padding: 0.6rem 1.3rem;
    border: none;
    border-radius: var(--pill-radius);
    background: var(--brand-gradient);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ============================================================
   Scroll-reveal
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .device .map-pin { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
    .features__grid,
    .steps,
    .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__visual { order: -1; }

    .device { max-width: 320px; }
}

@media (max-width: 720px) {
    .section { padding: 4rem 0; }

    .site-nav__links,
    .site-nav .btn {
        display: none;
    }

    .nav-toggle { display: flex; }

    /* mobile dropdown menu */
    .site-nav.is-open {
        position: absolute;
        top: 4.75rem;
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
        background: var(--surface);
        border: 1px solid var(--border-soft);
        border-radius: 1.1rem;
        box-shadow: var(--shadow-panel-lg);
    }

    .site-nav.is-open .site-nav__links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }

    .site-nav.is-open .btn {
        display: inline-flex;
    }

    .site-nav.is-open .nav-toggle { display: none; }

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

    .hero__chip--tl { top: 2%; left: -2%; }

    .hero__chip--br { bottom: 4%; right: -2%; }

    .site-footer__top { flex-direction: column; gap: 2rem; }
}

@media (max-width: 420px) {
    .hero__actions { flex-direction: column; align-items: stretch; }

    .hero__actions .btn,
    .hero__actions .badge-play { justify-content: center; }

    .hero__chip { display: none; }
}
