/* ═══════════════════════════════════════════
   WLAD HOOMA — Design tokens & layout
   ═══════════════════════════════════════════ */

:root {
  /* Colors — navy shell + warm paper text + orange accent (existing brand lane) */
  --bg: #070d14;
  --bg-elevated: #0c1628;
  --surface: #121f36;
  --surface-2: #172642;
  --line: rgba(244, 240, 232, 0.1);
  --line-strong: rgba(244, 240, 232, 0.2);
  --text: #f4f0e8;
  --muted: #9aa6b2;
  --accent: #e86228;
  --accent-hover: #f0783c;
  --danger: #e85a4a;
  --ok: #5bbd6b;

  /* Spacing scale (rem) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Type scale */
  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.5rem, 3.2vw, 2rem);
  --text-2xl: clamp(1.85rem, 4vw, 2.75rem);
  --text-display: clamp(2.15rem, 5vw, 3.15rem);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;

  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;

  --shadow-fab: 0 12px 36px rgba(0, 0, 0, 0.42);
  --focus-ring: 2px solid var(--accent);
  --focus-offset: 3px;

  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: var(--text-base);
}

body.page-loading {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

button:focus:not(:focus-visible) {
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 100001;
  padding: var(--space-3) var(--space-5);
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline-color: var(--accent);
}

/* ─── PAGE LOAD ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
  width: min(280px, 86vw);
}

.page-loader__logo {
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.page-loader__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.page-loader__track {
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  overflow: hidden;
}

.page-loader__bar {
  height: 100%;
  width: 0;
  background: var(--text);
  transition: width 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.is-revealing .page-loader__bar {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__bar {
    transition: width 0.25s ease;
  }
  .page-loader {
    transition: opacity 0.2s ease;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Layout shells ─── */
.section-wrap {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
}

.section-wrap--narrow {
  max-width: 44rem;
}

.section-pad {
  padding-block: var(--space-16);
}

@media (max-width: 720px) {
  .section-pad {
    padding-block: var(--space-12);
  }
}

/* ─── TOP NAV ─── */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
  min-height: var(--nav-h);
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
  padding-block: var(--space-3);
  background: rgba(7, 13, 20, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.topnav-logo img {
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.topnav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
  flex-wrap: wrap;
}

.topnav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.topnav-link:hover {
  color: var(--text);
}

.topnav-link:focus-visible {
  border-radius: var(--radius-sm);
}

.topnav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-self: end;
}

.lang-pills {
  display: flex;
  gap: var(--space-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: var(--space-1);
  background: rgba(244, 240, 232, 0.03);
}

.pill {
  border: none;
  background: transparent;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  color: var(--muted);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}

.pill.is-on {
  background: var(--text);
  color: var(--bg);
}

.topnav-cta {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--accent);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.topnav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 900px) {
  .topnav {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }
  .topnav-center {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: var(--space-1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .topnav-center::-webkit-scrollbar {
    display: none;
  }
  .topnav-right {
    justify-self: end;
  }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-md);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn--secondary:hover {
  border-color: var(--muted);
  background: rgba(244, 240, 232, 0.05);
}

/* ─── HERO ─── */
.hero {
  padding-top: calc(var(--nav-h) + var(--space-12));
  padding-bottom: var(--space-10);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: var(--space-5);
  max-width: 22ch;
}

.hero-intro {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.65;
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.hero-tiktok-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
  max-width: 40rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.hero-tiktok-card:hover {
  background: var(--surface);
  border-color: var(--line-strong);
}

.hero-tiktok-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(244, 240, 232, 0.06);
  color: var(--text);
}

.hero-tiktok-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hero-tiktok-copy {
  flex: 1;
  min-width: 0;
}

.hero-tiktok-kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.hero-tiktok-handle {
  display: block;
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  color: var(--text);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.hero-tiktok-line {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}

.hero-tiktok-go {
  flex-shrink: 0;
  align-self: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero-tiktok-card:hover .hero-tiktok-go {
  color: var(--text);
}

@media (max-width: 480px) {
  .hero-tiktok-card {
    flex-wrap: wrap;
  }
  .hero-tiktok-go {
    width: 100%;
    padding-top: var(--space-3);
    margin-top: var(--space-1);
    border-top: 1px solid var(--line);
    align-self: stretch;
  }
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 var(--space-3);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}

.hero-metric-num {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.hero-metrics-dot {
  color: var(--line-strong);
  user-select: none;
}

@media (max-width: 540px) {
  .hero-metrics {
    flex-direction: column;
    gap: var(--space-2);
  }
  .hero-metrics-dot {
    display: none;
  }
}

/* ─── BELT ─── */
.belt {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.belt__line {
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Section intros ─── */
.section-intro {
  max-width: 40rem;
  margin-bottom: var(--space-10);
}

.tag {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.section-intro h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: var(--space-3);
}

.section-intro p {
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.65;
}

/* ─── How it works ─── */
.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  border-top: 1px solid var(--line);
  padding-top: var(--space-10);
}

.how-step {
  padding-right: var(--space-4);
}

.how-step__num {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.how-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.how-step__body {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ─── Videos ─── */
.video-rail {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.video-rail:has(> .video-card:only-child) {
  justify-content: flex-start;
  overflow-x: visible;
}

.video-rail::-webkit-scrollbar {
  height: 6px;
}

.video-rail::-webkit-scrollbar-track {
  background: transparent;
}

.video-rail::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 99px;
}

.video-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.15s ease;
}

.video-card:hover {
  border-color: var(--line-strong);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-open-tiktok {
  display: block;
  padding: var(--space-3) var(--space-3);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  border-top: 1px solid var(--line);
  transition: color 0.15s ease, background 0.15s ease;
}

.video-open-tiktok:hover {
  color: var(--text);
  background: rgba(244, 240, 232, 0.04);
}

.video-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

/* ─── Differentiation ─── */
.diff-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.diff-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  background: var(--bg-elevated);
}

.diff-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: var(--space-2);
}

.diff-item__body {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Instagram ─── */
.insta-spotlight__inner {
  display: flex;
  justify-content: center;
}

.insta-spotlight-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.insta-spotlight-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.insta-head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.insta-avatar {
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}

.insta-fullname {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.insta-handle {
  display: inline-block;
  margin-top: var(--space-1);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(244, 240, 232, 0.35);
  text-underline-offset: 3px;
}

.insta-handle:hover {
  text-decoration-color: var(--accent);
}

.insta-quickstats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  margin: 0 0 var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insta-quickstats li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 4.5rem;
}

.insta-qs-val {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text);
}

.insta-qs-lab {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insta-teaser {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 var(--space-4);
}

.insta-cta {
  width: 100%;
}

.insta-footnote {
  margin: var(--space-4) 0 0;
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.45;
  opacity: 0.9;
}

/* ─── Credibility ─── */
.cred-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  background: var(--bg-elevated);
  max-width: 44rem;
}

.cred-lead {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}

.cred-body {
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.65;
}

.cred-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

/* ─── FAQ ─── */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: var(--space-1);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--text-md);
  padding-block: var(--space-4);
  padding-inline-end: var(--space-6);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

.faq-item p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  padding-bottom: var(--space-4);
  max-width: 38rem;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-10);
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: var(--space-3);
}

.contact-left > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  font-size: var(--text-md);
}

.contact-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: var(--space-5);
}

.contact-avatar {
  border-radius: 50%;
}

.contact-proof strong {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--text-base);
}

.contact-proof span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.contact-bullets {
  list-style: none;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.contact-bullets li {
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
}

.contact-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-form {
  padding: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-field span {
  font-weight: 600;
  font-size: var(--text-sm);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(244, 240, 232, 0.04);
  transition: border-color 0.15s ease;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--accent);
}

.form-field select option {
  color: #111;
}

.err {
  min-height: 1.1rem;
  font-size: var(--text-sm);
  color: var(--danger);
}

.is-bad {
  border-color: var(--danger) !important;
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-turnstile-wrap {
  margin: var(--space-4) 0 var(--space-3);
}

.form-turnstile-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.form-turnstile-box {
  min-height: 70px;
}

.btn-submit {
  width: 100%;
  margin-top: var(--space-1);
}

.form-status {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  min-height: 1.4rem;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.fail {
  color: var(--danger);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .video-links .btn {
    width: 100%;
  }
}

/* ─── WhatsApp FAB ─── */
.whatsapp-fab {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 99950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-fab);
  transition: transform 0.15s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  color: #fff;
}

.whatsapp-fab:focus-visible {
  outline-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab:hover {
    transform: none;
  }
}

/* ─── FOOTER ─── */
.footer {
  padding-bottom: var(--space-10);
  border-top: 1px solid var(--line);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--line);
}

.footer-cta__kicker {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.footer-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 26rem;
}

.footer-cta__btn {
  flex-shrink: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-block: var(--space-8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-brand img {
  border-radius: 50%;
}

.footer-brand span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-5);
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: var(--text-xs);
  padding-bottom: var(--space-6);
}
