/* =========================================================
   QR Code Gold Coin — Premium theme
   Cyberweb Hotels, LLC
   ========================================================= */

:root {
  --gold-1: #f7e7a6;
  --gold-2: #e6c66a;
  --gold-3: #d4af37;
  --gold-4: #b8912b;
  --gold-deep: #8a6d1f;

  --ink-0: #07090f;
  --ink-1: #0b0e16;
  --ink-2: #10141f;
  --ink-3: #161b28;
  --ink-4: #1e2536;

  --line: rgba(212, 175, 55, .16);
  --line-soft: rgba(255, 255, 255, .07);

  --text: #eef1f7;
  --muted: #a7afc0;
  --muted-2: #7a8296;

  --white: #ffffff;
  --whatsapp: #25d366;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, .75);
  --shadow-gold: 0 20px 50px -20px rgba(212, 175, 55, .45);

  --gold-grad: linear-gradient(135deg, var(--gold-1), var(--gold-3) 55%, var(--gold-4));
  --maxw: 1200px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--ink-0);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(212, 175, 55, .12), transparent 60%),
    radial-gradient(700px 500px at 0% 15%, rgba(184, 145, 43, .08), transparent 60%),
    radial-gradient(1000px 700px at 50% 120%, rgba(212, 175, 55, .07), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(1200px 700px at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: min(var(--maxw), 92%); margin-inline: auto; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-1), var(--gold-3) 60%, var(--gold-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.serif { font-family: var(--serif); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-gold {
  background: var(--gold-grad);
  color: #221a05;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(212,175,55,.6); }

.btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold-3); color: var(--gold-1); transform: translateY(-3px); }

.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 11, 18, .72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; letter-spacing: .3px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: #241b06;
  box-shadow: var(--shadow-gold);
  flex: none;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { font-size: 1.05rem; line-height: 1.1; }
.brand-name small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .93rem; position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-grad); border-radius: 2px; transition: width .28s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: .3s; }

/* ---------- Section frame ---------- */
section { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-2);
  padding: .4rem .9rem; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(212,175,55,.06);
}
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 1rem 0 .8rem;
  letter-spacing: -.5px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: center;
}
.price-badge {
  display: inline-flex; align-items: baseline; gap: .5rem;
  padding: .5rem 1rem .5rem .6rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(212,175,55,.06);
  margin-bottom: 1.4rem; font-weight: 600; color: var(--muted);
}
.price-badge b { color: var(--gold-1); font-size: 1.05rem; }
.price-badge .pill { background: var(--gold-grad); color:#241b06; font-weight:800; font-size:.7rem; padding:.2rem .6rem; border-radius:999px; letter-spacing:.5px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 34rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; color: var(--muted); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-2); flex:none; }

/* Hero coin visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 440px; }
.coin-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.35), transparent 62%);
  filter: blur(20px);
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ transform: scale(1); opacity:.85 } 50%{ transform: scale(1.08); opacity:1 } }
.coin {
  position: relative;
  width: 320px; height: 320px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff6d8, transparent 45%),
    conic-gradient(from 210deg, #b8912b, #f7e7a6, #d4af37, #8a6d1f, #f5d77e, #b8912b);
  display: grid; place-items: center;
  box-shadow: 0 40px 80px -30px rgba(212,175,55,.7), inset 0 0 0 10px rgba(255,255,255,.14), inset 0 0 40px rgba(138,109,31,.5);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }
.coin-inner {
  width: 240px; height: 240px; border-radius: 18px; background: #0c0f18;
  display: grid; place-items: center; padding: 18px;
  box-shadow: inset 0 0 0 2px rgba(212,175,55,.5);
}
.coin-inner svg { width: 100%; height: 100%; }
.coin-ring {
  position: absolute; inset: -22px; border-radius: 50%;
  border: 1px dashed rgba(212,175,55,.4);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }
.chip {
  position: absolute; display: flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem; border-radius: 12px;
  background: rgba(16,20,31,.85); border: 1px solid var(--line);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
  font-size: .82rem; font-weight: 700;
  animation: floaty 5s ease-in-out infinite;
}
.chip svg { width: 20px; height: 20px; color: var(--gold-2); }
.chip.c1 { top: 6%; left: -4%; animation-delay: .4s; }
.chip.c2 { bottom: 12%; right: -6%; animation-delay: 1.2s; }
.chip.c3 { bottom: -2%; left: 12%; animation-delay: 2s; }

/* ---------- Logo strip ---------- */
.strip { padding: 2.2rem 0; border-block: 1px solid var(--line-soft); }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.strip-label { color: var(--muted-2); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.strip-stats { display: flex; gap: clamp(1.5rem, 5vw, 3.5rem); flex-wrap: wrap; }
.strip-stat b { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-1); display: block; line-height: 1; }
.strip-stat span { font-size: .82rem; color: var(--muted); }

/* ---------- Feature highlights ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feat {
  padding: 1.8rem 1.5rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line-soft);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feat:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-lg); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(212,175,55,.1); border: 1px solid var(--line); margin-bottom: 1.1rem;
}
.feat-ico svg { width: 26px; height: 26px; color: var(--gold-1); }
.feat h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.feat p { color: var(--muted); font-size: .92rem; }

/* ---------- Modules ---------- */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.mod {
  position: relative; overflow: hidden;
  padding: 1.9rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-1));
  border: 1px solid var(--line-soft);
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.mod::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.mod:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow-lg); }
.mod:hover::before { transform: scaleX(1); }
.mod-top { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.mod-ico {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex: none;
  background: var(--gold-grad); color: #241b06; box-shadow: var(--shadow-gold);
}
.mod-ico svg { width: 24px; height: 24px; }
.mod-num { margin-left: auto; font-family: var(--serif); font-size: 1.4rem; color: rgba(212,175,55,.28); font-weight: 700; }
.mod h3 { font-size: 1.12rem; }
.mod .tag { font-size: .72rem; color: var(--gold-2); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.mod p { color: var(--muted); font-size: .93rem; margin: .6rem 0 1rem; }
.mod-benefit {
  display: flex; gap: .55rem; align-items: flex-start;
  font-size: .85rem; color: var(--text);
  padding-top: 1rem; border-top: 1px solid var(--line-soft);
}
.mod-benefit svg { width: 16px; height: 16px; color: var(--whatsapp); flex: none; margin-top: 3px; }
.mod-benefit b { color: var(--gold-1); }

/* ---------- Benefits (why) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why {
  padding: 1.9rem; border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line-soft);
  transition: transform .3s, background .3s, border-color .3s;
}
.why:hover { transform: translateY(-5px); background: rgba(212,175,55,.05); border-color: var(--line); }
.why-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,55,.1); margin-bottom: 1rem; }
.why-ico svg { width: 24px; height: 24px; color: var(--gold-1); }
.why h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.why p { color: var(--muted); font-size: .92rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.8rem; border-radius: var(--radius); background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line-soft); }
.step-n {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.2rem;
  color: #241b06; background: var(--gold-grad); margin-bottom: 1rem; box-shadow: var(--shadow-gold);
}
.step-n::before { content: counter(step); }
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Pricing ---------- */
.price-wrap { display: grid; grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
.price-card {
  position: relative; overflow: hidden;
  padding: 2.6rem; border-radius: 24px; text-align: center;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-1));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 480px; height: 480px; background: radial-gradient(circle, rgba(212,175,55,.16), transparent 60%);
}
.price-card > * { position: relative; }
.price-flag { display: inline-block; padding: .35rem .9rem; border-radius: 999px; background: var(--gold-grad); color: #241b06; font-weight: 800; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.4rem; }
.price-amount { font-family: var(--serif); font-size: 4rem; font-weight: 600; line-height: 1; }
.price-amount span { font-size: 1.1rem; color: var(--muted); font-family: var(--font); font-weight: 600; }
.price-note { color: var(--muted); margin: .6rem 0 1.8rem; }
.price-list { text-align: left; margin: 1.8rem 0; display: grid; gap: .8rem; }
.price-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text); }
.price-list svg { width: 20px; height: 20px; color: var(--gold-1); flex: none; margin-top: 3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem 1.4rem; border-radius: var(--radius);
  background: rgba(255,255,255,.02); border: 1px solid var(--line-soft);
  transition: border-color .3s, transform .3s;
}
.info-card:hover { border-color: var(--line); transform: translateX(4px); }
.info-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; background: rgba(212,175,55,.1); border: 1px solid var(--line); }
.info-ico svg { width: 22px; height: 22px; color: var(--gold-1); }
.info-card h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: .2rem; }
.info-card a, .info-card p { color: var(--text); font-weight: 600; word-break: break-word; }
.info-card a:hover { color: var(--gold-1); }
.info-card small { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; margin-top: .2rem; }

.form-card {
  padding: 2rem; border-radius: 22px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-1));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .45rem; color: var(--text); }
.field label .req { color: var(--gold-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm);
  background: rgba(0,0,0,.35); border: 1px solid var(--line-soft); color: var(--text);
  font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-3); box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field select option { background: var(--ink-3); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: .4rem 0 1.2rem; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold-3); flex: none; }
.form-note { text-align: center; font-size: .82rem; color: var(--muted-2); margin-top: 1rem; }
.form-error {
  display: none; margin: 0 0 1rem; padding: .8rem 1rem; border-radius: var(--radius-sm);
  background: rgba(224, 78, 78, .1); border: 1px solid rgba(224, 78, 78, .4);
  color: #ffb4b4; font-size: .88rem; font-weight: 600;
}
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success.show { display: block; animation: fadeUp .5s ease; }
.form-success .tick { width: 66px; height: 66px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad); }
.form-success .tick svg { width: 34px; height: 34px; color: #241b06; }
.form-success h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem); border-radius: 26px;
  background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(184,145,43,.05));
  border: 1px solid var(--line);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(212,175,55,.2), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 40rem; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; margin: 1rem 0; max-width: 20rem; }
.footer h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 1rem; }
.footer ul li { margin-bottom: .6rem; }
.footer ul a { color: var(--text); font-size: .92rem; opacity: .8; transition: .2s; }
.footer ul a:hover { color: var(--gold-1); opacity: 1; }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line-soft); transition: .25s; }
.socials a:hover { border-color: var(--gold-3); background: rgba(212,175,55,.08); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: var(--gold-1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: .85rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-1); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.6);
  animation: floaty 4s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* Fail-safe: if JS/IntersectionObserver never runs, show everything */
html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .coin, .coin-ring, .coin-glow, .chip, .wa-float { animation: none !important; }
}
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: none } }

/* ---------- Subpage header ---------- */
.subhead { padding: clamp(3rem,6vw,5rem) 0 2rem; text-align: center; }
.subhead h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem,5vw,3.4rem); margin: 1rem 0 .6rem; }
.subhead p { color: var(--muted); max-width: 38rem; margin: 0 auto; font-size: 1.05rem; }
.crumbs { color: var(--muted-2); font-size: .85rem; }
.crumbs a:hover { color: var(--gold-1); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 360px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 1rem;
    padding: 1.5rem 4%; background: rgba(9,11,18,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
  }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  .feat-grid, .mod-grid, .why-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .coin { width: 260px; height: 260px; }
  .coin-inner { width: 190px; height: 190px; }
}
