/* AzAd Vault — Premium marketing site */
:root {
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dark: #a8871e;
  --gold-muted: rgba(212, 175, 55, 0.55);
  --bg: #000000;
  --surface: #0c0c0c;
  --card: #161616;
  --card-elevated: #1c1c1c;
  --border: #2a2a2a;
  --border-gold: rgba(212, 175, 55, 0.22);
  --text: #f8f8f8;
  --muted: #9a9a9a;
  --on-gold: #0a0a0a;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  --gold-glow: 0 0 80px rgba(212, 175, 55, 0.12);
  --nav-h: 76px;
  --max: 1200px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 50% at 10% -10%, rgba(212, 175, 55, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 40% at 95% 15%, rgba(212, 175, 55, 0.05), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(212, 175, 55, 0.04), transparent 45%);
}

img { max-width: 100%; height: auto; display: block; }

a:not(.btn):not(.play-badge):not(.nav__brand) {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:not(.btn):not(.play-badge):not(.nav__brand):hover {
  color: var(--gold-light);
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav__brand:hover { color: var(--text); }

.nav__brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a:not(.btn) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__links a:not(.btn):hover { color: var(--gold-light); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* ── Buttons (isolated from global link styles) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: var(--on-gold);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(145deg, #f2d058 0%, #e0bc42 45%, #c9a22e 100%);
  color: var(--on-gold);
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--outline {
  background: rgba(212, 175, 55, 0.04);
  color: var(--gold-light);
  border: 1.5px solid var(--gold-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(212, 175, 55, 0.14);
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.15);
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 56px) 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, #f5d76e 0%, var(--gold-light) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.hero__tagline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero__stat strong {
  display: block;
  font-size: 1.65rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1.2;
}

.hero__stat span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero__visual {
  position: relative;
}

.hero__visual > img:first-child {
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--gold-glow);
  border: 1px solid var(--border-gold);
}

.hero__phone {
  position: absolute;
  bottom: -20px;
  left: -28px;
  width: 34%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(212, 175, 55, 0.25);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Promise banner ── */
.promise {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.promise__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--gold-glow);
}

.promise__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  color: var(--gold);
}

.promise__text {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.55;
}

.promise__text em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 700;
}

/* ── Sections ── */
section { padding: 100px 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0;
  line-height: 1.75;
}

/* ── Trust bar ── */
.trust {
  padding: 36px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.25s;
}

.trust__item:hover {
  background: rgba(212, 175, 55, 0.04);
}

.trust__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.trust__item strong {
  font-size: 0.925rem;
  font-weight: 700;
}

.trust__item span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Features ── */
.features { background: var(--bg); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: linear-gradient(160deg, var(--card-elevated), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--gold-glow), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.feature-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.06));
  color: var(--gold-light);
  margin-bottom: 20px;
  border: 1px solid var(--border-gold);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Screenshots (full image, no crop) ── */
.screenshots {
  background: var(--surface);
  overflow: hidden;
}

.screenshots__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.screenshots__controls {
  display: flex;
  gap: 10px;
}

.screenshots__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.screenshots__btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  transform: scale(1.05);
}

.screenshots__track-wrap {
  overflow: hidden;
  margin-inline: calc(-1 * max(0px, (100vw - var(--max)) / 2 - 24px));
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  padding-bottom: 8px;
}

.screenshots__track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: grab;
  user-select: none;
}

.screenshots__track:active { cursor: grabbing; }

.screenshot-card {
  flex: 0 0 min(300px, 82vw);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: visible;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.screenshot-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

.screenshot-card__frame {
  padding: 20px 20px 0;
  background: linear-gradient(180deg, #222 0%, #141414 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.screenshot-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.screenshot-card figcaption {
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ── Security ── */
.security { background: var(--bg); }

.security__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.security__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.security__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--card-elevated), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
}

.security__list li:hover { border-color: var(--border-gold); }

.security__list .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
}

.security__list strong { color: var(--gold-light); }

.security__visual {
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.06), var(--card));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--gold-glow);
}

.security__dial {
  width: 168px;
  height: 168px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 5px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(145deg, var(--gold-light), var(--gold-dark)) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--gold-light);
  box-shadow: var(--gold-glow);
}

.security__visual h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.security__visual p {
  color: var(--muted);
  font-size: 0.925rem;
  margin: 0;
  line-height: 1.65;
}

/* ── How it works ── */
.how {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.how__step {
  position: relative;
  padding: 30px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
  transition: border-color 0.25s, transform 0.25s;
}

.how__step:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.how__step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: var(--on-gold);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.how__step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.how__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Premium / Pricing ── */
.premium { background: var(--bg); }

.premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pricing-card {
  background: linear-gradient(160deg, var(--card-elevated), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--gold-muted);
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.1) 0%, var(--card) 55%);
  box-shadow: var(--gold-glow), 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.pricing-card--featured::before {
  content: "Recommended";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.pricing-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.pricing-card .price {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pricing-card .price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-card li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq__list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq__item.open {
  border-color: var(--border-gold);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--gold-light); }

.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.35s ease;
  color: var(--gold);
}

.faq__item.open .faq__question svg { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.7;
}

.faq__item.open .faq__answer { max-height: 280px; }

/* ── CTA ── */
.cta-banner { padding: 72px 0 100px; }

.cta-banner__inner {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 55%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin: 0 0 14px;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: var(--muted);
  margin: 0 0 32px;
  position: relative;
  font-size: 1.05rem;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px 12px 16px;
  background: #0a0a0a;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative;
}

.play-badge:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
  color: var(--text);
}

.play-badge svg {
  width: 30px;
  height: 30px;
  color: var(--gold-light);
}

.play-badge span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.play-badge small {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.play-badge strong {
  font-size: 1.05rem;
  font-weight: 700;
}

/* ── Footer ── */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer__brand img {
  width: 52px;
  border-radius: 13px;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.65;
}

.footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 18px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li { margin-bottom: 11px; }

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__bottom code {
  background: var(--card);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  border: 1px solid var(--border);
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: var(--on-gold);
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Privacy / legal pages ── */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 36px;
  border-bottom: 1px solid var(--border);
}

.page-hero__meta {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.page-content {
  max-width: 760px;
  padding: 48px 24px 96px;
  margin-inline: auto;
}

.page-content h2 {
  font-size: 1.2rem;
  margin: 2.5rem 0 0.85rem;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.page-content h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--text);
}

.page-content ul,
.page-content ol {
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.page-content li { margin-bottom: 0.45rem; }

.page-content p {
  color: var(--muted);
  line-height: 1.75;
}

.page-content a { color: var(--gold-light); }
.page-content a:hover { color: var(--gold); }

.page-content code {
  background: var(--card);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  color: var(--text);
}

.policy-summary {
  padding: 24px 28px;
  margin: 28px 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}

.policy-summary p:last-child { margin-bottom: 0; }

.policy-summary strong { color: var(--gold-light); }

.policy-toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 28px 0 36px;
}

.policy-toc h2 {
  margin: 0 0 12px !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold) !important;
}

.policy-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 2;
  column-gap: 32px;
}

.policy-toc a {
  font-size: 0.9rem;
  text-decoration: none;
}

.policy-toc a:hover { text-decoration: underline; }

.policy-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.policy-table th,
.policy-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}

.policy-table th {
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.policy-table tr:last-child td { border-bottom: none; }

.policy-table td strong { color: var(--text); }

@media (max-width: 600px) {
  .policy-toc ol { columns: 1; }
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero__grid,
  .security__grid,
  .premium__grid,
  .footer__grid { grid-template-columns: 1fr; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__phone { display: none; }
  .hero__visual { order: -1; }

  .promise__inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.97);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open { display: flex; }

  .nav__links .btn { width: 100%; justify-content: center; }

  .nav__toggle { display: block; }

  .features__grid,
  .how__steps { grid-template-columns: 1fr; }

  .hero__stats { gap: 24px; }

  .cta-banner__inner { padding: 44px 24px; }

  section { padding: 72px 0; }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
}
