/* ============================================================
   Buskando — Landing page styles
   Built on the Buskando design system.
   ============================================================ */

@import url('assets/colors_and_type.css');

/* Override imported heading colors on dark sections */
.hero h1, .hero h2, .hero h3, .hero-h1,
.final h1, .final h2, .final h3,
.section.dark h1, .section.dark h2, .section.dark h3,
.step h3,
.footer h1, .footer h2, .footer h3, .footer h4 { color: #fff; }

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bk-font-sans);
  font-size: var(--bk-text-base);
  line-height: 1.55;
  color: var(--bk-fg);
  background: var(--bk-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--bk-link); text-decoration: none; transition: color .2s var(--bk-ease-standard); }
a:hover { color: var(--bk-link-hover); }
button { font: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── Reusable ──────────────────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding-inline: 24px; }
.eyebrow {
  display: inline-block;
  font-size: var(--bk-text-eyebrow);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--bk-blue);
  margin-bottom: 14px;
}
.dark .eyebrow { color: var(--bk-yellow); }
.h2 {
  font-family: var(--bk-font-display);
  font-weight: 900;
  font-size: var(--bk-text-h2);
  letter-spacing: -1px;
  line-height: 1.06;
  margin: 0 0 16px;
  text-wrap: balance;
}
.lead {
  font-size: var(--bk-text-lg);
  line-height: 1.55;
  color: var(--bk-fg-muted);
  margin: 0;
  max-width: 56ch;
}
.dark .lead { color: rgba(255,255,255,.78); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-inline: auto; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--bk-radius-pill);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -.1px;
  border: 0;
  cursor: pointer;
  transition: transform .2s var(--bk-ease-standard), box-shadow .2s var(--bk-ease-standard), opacity .2s, background .2s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--bk-yellow); outline-offset: 2px; }
.btn-primary {
  background: var(--bk-yellow);
  color: var(--bk-navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--bk-shadow-yellow); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--bk-navy);
  border: 1.5px solid rgba(0,43,127,.18);
}
.btn-outline:hover { background: var(--bk-blue-soft); transform: translateY(-2px); border-color: var(--bk-navy); }
.btn-store { display: inline-block; transition: transform .2s var(--bk-ease-standard), opacity .2s; }
.btn-store img { height: 48px; width: auto; }
.btn-store:hover { transform: translateY(-2px); }
.btn-store:active { opacity: .85; }

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  background: rgba(0, 27, 90, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -.3px;
}
.nav-brand:hover { color: #fff; filter: brightness(1.15); }
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 14.5px; font-weight: 500;
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 9px 18px; font-size: 14.5px; }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 132px 0 96px;
  background:
    radial-gradient(circle at 88% -10%, rgba(249,232,20,.16), transparent 38%),
    radial-gradient(circle at 8% 90%, rgba(51,102,204,.28), transparent 42%),
    linear-gradient(145deg, #001d5c 0%, #002b7f 45%, #1a3fa3 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
  opacity: .6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: var(--bk-radius-pill);
  background: rgba(249,232,20,.12);
  border: 1px solid rgba(249,232,20,.28);
  font-size: 13px; font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--bk-yellow); border-radius: 50%; box-shadow: 0 0 10px rgba(249,232,20,.7); }
.hero-h1 {
  font-family: var(--bk-font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -2px;
  line-height: 1.02;
  margin: 0 0 22px;
}
.hero-h1 .accent {
  background: var(--bk-yellow);
  color: var(--bk-navy);
  padding: 12px 10px 16px;
  border-radius: 12px;
  display: inline-block;
  max-width: max-content;
  margin: 4px 0;
  letter-spacing: -2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.04), 0 8px 22px rgba(249,232,20,.35);
}
.hero-pp {
  display: block; margin-top: 18px;
  font-family: var(--bk-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: rgba(255,255,255,.62);
  letter-spacing: 0;
}
.hero-sub {
  font-size: 18.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0 0 30px;
  max-width: 50ch;
}
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-actions .stores { display: flex; gap: 10px; }
.hero-actions .browse-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: var(--bk-radius-pill);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600; font-size: 14.5px;
  border: 1.5px solid rgba(255,255,255,.16);
  cursor: pointer;
}
.hero-actions .browse-link:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
}
.hero-actions .browse-link svg { width: 16px; height: 16px; }

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars > div {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bk-yellow), var(--bk-blue));
  border: 2px solid var(--bk-navy);
  margin-left: -8px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  color: var(--bk-navy);
}
.hero-trust .avatars > div:first-child { margin-left: 0; }
.hero-trust .avatars > div:nth-child(2) { background: linear-gradient(135deg, #fff, #b3c4e6); }
.hero-trust .avatars > div:nth-child(3) { background: linear-gradient(135deg, #f9e814, #f7c948); }
.hero-trust .avatars > div:nth-child(4) { background: linear-gradient(135deg, #3366cc, #1a3fa3); color: #fff; }
.hero-trust .stars { color: var(--bk-yellow); font-size: 15px; letter-spacing: 1px; line-height: 1; }
.hero-trust .meta { font-size: 13.5px; color: rgba(255,255,255,.78); margin-top: 3px; }

.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ── Hero 3-phone fan ── */
.hero-phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 10px 0;
}
.hero-phone {
  position: relative;
  border-radius: var(--bk-radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #002b7f 0%, #0036a0 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--bk-shadow-lg);
  flex-shrink: 0;
  aspect-ratio: 1320 / 2868;
}
.hero-phone img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-phone--center {
  width: 50%;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
}
.hero-phone--left {
  width: 40%;
  z-index: 2;
  transform: rotate(-8deg) translateX(26px) translateY(10px);
  opacity: .78;
}
.hero-phone--right {
  width: 40%;
  z-index: 2;
  transform: rotate(8deg) translateX(-26px) translateY(10px);
  opacity: .78;
}
.hero-float {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.hero-float-1 {
  top: -4px; left: 5%;
  background: var(--bk-yellow);
  color: var(--bk-navy);
  padding: 7px 12px;
  border-radius: var(--bk-radius-pill);
  font-weight: 800; font-size: 12px;
  letter-spacing: .6px;
  box-shadow: var(--bk-shadow-yellow);
  transform: rotate(-6deg);
  display: flex; align-items: center; gap: 6px;
}
.hero-float-2 {
  bottom: 28px; right: -18px;
  background: #fff;
  color: var(--bk-navy);
  padding: 10px 14px;
  border-radius: var(--bk-radius-lg);
  font-weight: 700; font-size: 13px;
  box-shadow: var(--bk-shadow-lg);
  transform: rotate(3deg);
  display: flex; align-items: center; gap: 8px;
}
.hero-float-2 .ico {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--bk-blue-soft);
  color: var(--bk-navy);
  display: grid; place-items: center;
  font-size: 14px;
}
.hero-float-2 small {
  display: block; font-weight: 500; font-size: 11px; color: var(--bk-fg-subtle); letter-spacing: .2px;
}

@media (max-width: 880px) {
  .hero { padding: 110px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-phones { max-width: 340px; }
}

/* ─── Yellow stat strip ──────────────────────────────────── */
.strip {
  background: var(--bk-yellow);
  color: var(--bk-navy);
  padding: 44px 24px;
}
.strip-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.strip .stat {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  text-align: center;
  padding: 0 12px;
}
.strip .num {
  font-family: var(--bk-font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -.5px;
  line-height: 1;
}
.strip .lbl {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  opacity: .82;
}
.strip .div { width: 1px; height: 36px; background: rgba(0,43,127,.22); }
@media (max-width: 720px) {
  .strip .div { display: none; }
}

/* ─── Sections ──────────────────────────────────────────── */
.section { padding: 96px 0; }
.section.alt { background: var(--bk-bg); }
.section.dark {
  background:
    radial-gradient(circle at 80% 0%, rgba(249,232,20,.06), transparent 40%),
    linear-gradient(180deg, var(--bk-navy-deep), var(--bk-navy));
  color: #fff;
}

/* ─── Categories ────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat {
  background: var(--bk-surface);
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 26px 22px 22px;
  transition: transform .2s var(--bk-ease-standard), box-shadow .2s, border-color .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-lg);
  border-color: rgba(0,43,127,.14);
}
.cat-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--bk-blue-soft);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--bk-navy);
  transition: background .2s, color .2s;
}
.cat:hover .cat-tile { background: var(--bk-navy); color: #fff; }
.cat-tile svg { width: 26px; height: 26px; stroke-width: 2; }
.cat-name {
  font-weight: 700; font-size: 16px; color: var(--bk-navy);
  margin: 0 0 2px;
}
.cat-count { font-size: 13px; color: var(--bk-fg-subtle); margin: 0; }
.cat-arrow {
  position: absolute; top: 22px; right: 22px;
  width: 24px; height: 24px;
  color: var(--bk-fg-subtle);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .2s, transform .2s, color .2s;
}
.cat:hover .cat-arrow { opacity: 1; transform: translateX(0); color: var(--bk-navy); }
@media (max-width: 880px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Showcase (5 marketing screenshots) ─────────────────── */
.showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: end;
}
.shot {
  position: relative;
  background: linear-gradient(180deg, #002b7f 0%, #0036a0 100%);
  border-radius: var(--bk-radius-xl);
  overflow: hidden;
  aspect-ratio: 1320 / 2868;
  box-shadow: var(--bk-shadow-md);
  transition: transform .3s var(--bk-ease-standard), box-shadow .3s;
  border: 1px solid rgba(0,43,127,.08);
}
.shot:hover {
  transform: translateY(-8px) rotate(-.5deg);
  box-shadow: var(--bk-shadow-lg);
  z-index: 2;
}
.shot:nth-child(even):hover { transform: translateY(-8px) rotate(.5deg); }
.shot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.shot-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.shot-cap strong {
  display: block;
  font-family: var(--bk-font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: var(--bk-yellow);
}
@media (max-width: 1000px) { .showcase { grid-template-columns: repeat(3, 1fr); } .shot:nth-child(n+4) { display: none; } }
@media (max-width: 640px)  { .showcase { grid-template-columns: repeat(2, 1fr); } .shot:nth-child(n+3) { display: none; } }

/* ─── How it works ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--bk-radius-lg);
  transition: background .2s, transform .2s var(--bk-ease-standard), border-color .2s;
}
.step:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--bk-radius-pill);
  background: var(--bk-yellow);
  color: var(--bk-navy);
  font-family: var(--bk-font-display);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--bk-font-display);
  font-weight: 800; font-size: 22px;
  letter-spacing: -.4px;
  margin: 0 0 10px;
  color: #fff;
}
.step p { color: rgba(255,255,255,.72); margin: 0; line-height: 1.55; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ─── Why Buskando split ────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.split-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.split-list li {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--bk-fg-muted);
}
.split-list li strong { color: var(--bk-navy); font-weight: 700; }
.split-list .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--bk-yellow);
  color: var(--bk-navy);
  display: grid; place-items: center;
}
.split-list .check svg { width: 16px; height: 16px; stroke-width: 3; }
.split-mock {
  position: relative;
  display: grid;
  place-items: center;
}
.split-mock .phone-device {
  width: 100%;
  max-width: 300px;
  border-radius: var(--bk-radius-xl);
  overflow: hidden;
  box-shadow: var(--bk-shadow-lg);
  aspect-ratio: 1320 / 2868;
  background: linear-gradient(180deg, #002b7f 0%, #0036a0 100%);
  border: 1px solid rgba(0,43,127,.08);
}
.split-mock .phone-device img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ─── Testimonials ──────────────────────────────────────── */
.tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test {
  background: var(--bk-surface);
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  transition: transform .2s var(--bk-ease-standard), box-shadow .2s;
}
.test:hover {
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-lg);
}
.test .stars {
  color: var(--bk-yellow);
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 14px;
}
.test q {
  font-family: var(--bk-font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -.3px;
  color: var(--bk-navy);
  flex-grow: 1;
  quotes: none;
}
.test q::before, .test q::after { content: ''; }
.test-who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--bk-divider);
}
.test-who .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bk-blue-soft), #cdd9ee);
  color: var(--bk-navy);
  display: grid; place-items: center;
  font-weight: 700;
}
.test-who .name { font-weight: 700; color: var(--bk-navy); font-size: 14.5px; }
.test-who .role { font-size: 12.5px; color: var(--bk-fg-subtle); }
@media (max-width: 880px) { .tests { grid-template-columns: 1fr; } }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1.5px solid var(--bk-divider);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--bk-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bk-navy);
  letter-spacing: -.2px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bk-blue); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bk-blue-soft);
  display: grid; place-items: center;
  color: var(--bk-navy);
  transition: transform .25s var(--bk-ease-standard), background .2s, color .2s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--bk-yellow);
}
.faq-icon svg { width: 14px; height: 14px; stroke-width: 2.5; }
.faq-body {
  padding: 0 4px 24px;
  color: var(--bk-fg-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ─── Final CTA ─────────────────────────────────────────── */
.final {
  background:
    radial-gradient(circle at 80% 20%, rgba(249,232,20,.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(51,102,204,.32), transparent 45%),
    linear-gradient(135deg, var(--bk-navy-deep), var(--bk-navy));
  color: #fff;
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final h2 {
  font-family: var(--bk-font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1.5px;
  line-height: 1.04;
  margin: 0 0 16px;
  text-wrap: balance;
}
.final h2 .pp {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,.62);
  letter-spacing: 0;
  margin-top: 14px;
}
.final p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  margin: 0 auto 32px;
  max-width: 540px;
}
.final-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; align-items: center;
}
.final-divider { color: rgba(255,255,255,.4); font-weight: 600; font-size: 13px; padding: 0 8px; }

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--bk-navy-deeper);
  color: rgba(255,255,255,.7);
  padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 20px;
  margin-bottom: 14px;
}
.footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); margin: 0 0 18px; max-width: 320px; }
.footer-stores { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-stores .btn-store img { height: 38px; }
.footer h4 {
  color: #fff;
  font-family: var(--bk-font-display);
  font-weight: 700;
  font-size: 13px; letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 4px 0 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer ul a:hover { color: var(--bk-yellow); }
.footer-bottom {
  max-width: 1120px; margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--bk-yellow); }
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Lang toggle (small) ───────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--bk-radius-pill);
  padding: 3px;
  margin-left: 8px;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.65);
  padding: 5px 11px;
  border-radius: var(--bk-radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .4px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-toggle button.on {
  background: var(--bk-yellow);
  color: var(--bk-navy);
}
@media (max-width: 760px) { .lang-toggle { display: none; } }

/* ─── Anim ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--bk-ease-emphasized), transform .7s var(--bk-ease-emphasized);
  }
  .reveal.in { opacity: 1; transform: none; }
}
