/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:      #0E0E0E;
  --ink-80:   #1A1A1A;
  --gold:     #C8963A;
  --gold-h:   #D9A848;
  --gold-lt:  #F5E6C8;
  --gold-bg:  #FDF6E8;
  --red:      #B71C1C;
  --red-bg:   #FFF5F5;
  --green:    #166534;
  --amber:    #92400E;
  --white:    #FFFFFF;
  --off:      #FAFAF8;
  --muted:    #6B6B6B;
  --border:   #E5E0D5;
  --font-head:'Playfair Display', Georgia, serif;
  --font-ui:  'Inter', system-ui, sans-serif;
  --r:        10px;
  --r-lg:     16px;
  --r-xl:     24px;
  --max:      1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--ink); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ─── URGENCY ────────────────────────────────────────── */
.urgency { background: var(--red); padding: 12px 0; text-align: center; }
.urgency p { font-size: 15px; font-weight: 600; color: #fff; }
.urgency strong { color: #FFD580; font-weight: 800; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1.5px solid rgba(200,150,58,.25);
  padding: 16px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.15; }
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 10px; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; cursor: pointer; border: none;
  font-family: var(--font-ui); font-weight: 700;
  letter-spacing: .02em; line-height: 1;
  transition: transform .14s, opacity .14s, box-shadow .14s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-sm  { font-size: 14px; padding: 12px 22px; border-radius: 6px; }
.btn-md  { font-size: 16px; padding: 18px 34px; border-radius: var(--r); }
.btn-lg  { font-size: 18px; padding: 22px 44px; border-radius: var(--r); }
.btn-xl  { font-size: 20px; padding: 24px 52px; border-radius: var(--r); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-h); box-shadow: 0 8px 28px rgba(200,150,58,.35); }
.btn-dark { background: var(--ink); color: var(--white); border: 1.5px solid rgba(255,255,255,.15); }
.btn-dark:hover { background: #2A2A2A; }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-ink { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: var(--white); }
.btn-full { width: 100%; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--ink); padding: 88px 0 100px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,150,58,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 72px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,58,.15); border: 1px solid rgba(200,150,58,.3);
  color: var(--gold); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.0; letter-spacing: -.02em; margin-bottom: 6px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; }
.hero-desc { font-size: clamp(17px, 1.8vw, 20px); color: rgba(255,255,255,.7); line-height: 1.7; max-width: 520px; margin-bottom: 42px; }
.hero-desc strong { color: var(--gold); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-direction: column; gap: 8px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.45); }
.trust-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(200,150,58,.2); border: 1px solid rgba(200,150,58,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-check svg { width: 10px; height: 10px; stroke: var(--gold); stroke-width: 2.5; fill: none; }
.hero-book { position: relative; z-index: 1; display: flex; justify-content: center; }
.book-wrap { position: relative; width: 300px; }
.book-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1E1E1E 0%, #161616 100%);
  border-radius: 8px; border-left: 6px solid var(--gold);
  box-shadow: 24px 24px 80px rgba(0,0,0,.7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 36px 28px; text-align: center;
}
.book-placeholder .bp-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.2); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.book-placeholder .bp-title { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1.0; margin-bottom: 0; }
.book-placeholder .bp-gold { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1.0; margin-bottom: 24px; }
.book-placeholder .bp-edition { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .1em; text-transform: uppercase; }
.book-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(183,28,28,.5);
}

/* ─── STATS ──────────────────────────────────────────── */
.stats { background: var(--gold); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(0,0,0,.12); }
.stat:last-child { border-right: none; }
.stat-val { display: block; font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 12px; font-weight: 700; color: rgba(0,0,0,.55); letter-spacing: .07em; text-transform: uppercase; line-height: 1.4; }

/* ─── GENERIC SECTION ────────────────────────────────── */
.section { padding: 96px 0; }
.section-off { background: var(--off); }
.section-dark { background: var(--ink); }
.eyebrow-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-bg);
  border: 1px solid rgba(200,150,58,.3);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow-tag.light { background: rgba(200,150,58,.12); color: var(--gold); border-color: rgba(200,150,58,.25); }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--ink);
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px;
}
.sec-head.dark h2 { color: var(--white); }
.sec-head p { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.7; }
.sec-head.center p { margin: 0 auto; }
.sec-head.dark p { color: rgba(255,255,255,.55); }
.gold-rule { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 24px; }
.gold-rule.center { margin: 14px auto 24px; }

/* ─── SECCIÓN CARDS ──────────────────────────────────── */
.sections-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sec-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px 28px; background: var(--white);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.sec-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(200,150,58,.1); }
.sec-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.sec-card-num { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--gold-lt); line-height: 1; margin-bottom: 12px; display: block; }
.sec-card-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.sec-card-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }
.sec-card-tag {
  display: inline-block; margin-top: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-bg);
  border: 1px solid rgba(200,150,58,.25); padding: 4px 12px; border-radius: 100px;
}
.sec-card.featured { background: var(--gold-bg); border-color: rgba(200,150,58,.4); }

/* ─── QUOTE ──────────────────────────────────────────── */
.quote-sec { background: var(--ink); padding: 96px 0; position: relative; overflow: hidden; }
.quote-sec::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); }
.quote-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.big-quote { font-family: var(--font-head); font-size: 7rem; line-height: .55; color: rgba(200,150,58,.15); display: block; margin-bottom: 12px; }
.quote-text { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--white); line-height: 1.55; font-style: italic; margin-bottom: 28px; }
.quote-text strong { color: var(--gold); font-style: normal; font-weight: 700; }
.quote-attr { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .12em; text-transform: uppercase; }

/* ─── AUTOR ──────────────────────────────────────────── */
.autor-sec { background: var(--ink); padding: 96px 0; }
.autor-grid { display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: center; }
.autor-photo-wrap { position: relative; }
.autor-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #1E1E1E, #2A2A2A);
  border: 2px solid rgba(200,150,58,.3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Si hay foto real, insertar aquí */
.autor-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-xl); }
.autor-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 32px;
}
.autor-icon { font-size: 4rem; opacity: .4; }
.autor-photo-label { font-size: 11px; color: rgba(255,255,255,.2); letter-spacing: .1em; text-transform: uppercase; text-align: center; }
.autor-logo {
  margin-top: 20px;
  width: 100%; max-width: 240px;
  margin-left: auto; margin-right: auto;
  display: block;
}
.autor-logo-placeholder {
  background: rgba(200,150,58,.08);
  border: 1px solid rgba(200,150,58,.2);
  border-radius: var(--r);
  padding: 16px 20px; text-align: center;
  margin-top: 20px;
}
.autor-logo-placeholder p { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .1em; text-transform: uppercase; }
.autor-content .eyebrow-tag { }
.autor-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -.01em; margin-bottom: 24px; }
.autor-content h2 span { color: var(--gold); }
.autor-content p { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 18px; }
.autor-content p strong { color: var(--gold); font-weight: 600; }
.autor-content p:last-of-type { margin-bottom: 0; }

/* ─── COUNTDOWN ──────────────────────────────────────── */
.countdown-sec {
  background: var(--ink-80);
  border-top: 1px solid rgba(200,150,58,.15);
  border-bottom: 1px solid rgba(200,150,58,.15);
  padding: 52px 0;
}
.countdown-inner { text-align: center; }
.countdown-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: block;
}
.countdown-grid { display: inline-flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.cd-block {
  background: var(--ink); border: 1.5px solid rgba(200,150,58,.3);
  border-radius: var(--r); padding: 20px 28px; min-width: 90px; text-align: center;
}
.cd-num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 900;
  color: var(--white); display: block; line-height: 1; margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.cd-lbl { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: .14em; text-transform: uppercase; }
.cd-sep { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 900; margin-bottom: 12px; }

.countdown-note { font-size: 15px; color: rgba(255,255,255,.45); }

/* ─── FUENTES ────────────────────────────────────────── */
.sources-sec { background: var(--ink); padding: 72px 0; }
.sources-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.src-pill {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 10px 20px; border-radius: 100px;
  transition: color .15s, border-color .15s, background .15s; cursor: default;
}
.src-pill:hover { color: var(--gold); border-color: rgba(200,150,58,.4); background: rgba(200,150,58,.07); }

/* ─── PRICING ────────────────────────────────────────── */
.pricing-sec { background: var(--off); padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.price-card {
  border-radius: var(--r-xl); padding: 48px 40px;
  position: relative; overflow: hidden;
  border: 1.5px solid var(--border); background: var(--white);
}
.price-card.featured { background: var(--ink); border-color: var(--gold); box-shadow: 0 24px 64px rgba(0,0,0,.25); }
.price-star {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 0 0 10px 10px; white-space: nowrap;
}
.price-plan { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 24px; display: block; }
.price-card:not(.featured) .price-plan { color: var(--muted); }
.price-card.featured .price-plan { color: var(--gold); }
.price-old { font-size: 1.4rem; color: rgba(255,255,255,.3); text-decoration: line-through; margin-bottom: 2px; display: block; font-weight: 600; }
.price-card:not(.featured) .price-old { color: var(--muted); }
.price-num { font-family: var(--font-head); font-size: clamp(3rem, 5vw, 4rem); font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-card:not(.featured) .price-num { color: var(--ink); }
.price-card.featured .price-num { color: var(--white); }
.price-num sup { font-size: .42em; vertical-align: super; margin-right: 2px; }
.price-cadence { font-size: 15px; margin-bottom: 8px; }
.price-card:not(.featured) .price-cadence { color: var(--muted); }
.price-card.featured .price-cadence { color: rgba(255,255,255,.5); }
.price-save { display: inline-block; background: var(--red); color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 28px; }
.price-sep { height: 1px; margin: 24px 0; }
.price-card:not(.featured) .price-sep { background: var(--border); }
.price-card.featured .price-sep { background: rgba(255,255,255,.1); }
.price-feats { list-style: none; margin-bottom: 32px; }
.price-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.5; margin-bottom: 14px; }
.price-card:not(.featured) .price-feats li { color: var(--ink); }
.price-card.featured .price-feats li { color: rgba(255,255,255,.8); }
.feat-ck { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.feat-ck svg { width: 11px; height: 11px; stroke: var(--ink); stroke-width: 2.5; fill: none; }

/* ─── PAYMENT METHODS ────────────────────────────────── */
.payment-methods { margin-top: 18px; text-align: center; }
.payment-methods p { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.price-card:not(.featured) .payment-methods p { color: var(--muted); }
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px; padding: 5px 10px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.price-card:not(.featured) .pay-badge { background: rgba(0,0,0,.05); border-color: var(--border); color: var(--muted); }
.price-guarantee {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; justify-content: center;
  font-size: 13px; font-weight: 600;
}
.price-card.featured .price-guarantee { color: rgba(255,255,255,.4); }
.price-card:not(.featured) .price-guarantee { color: var(--green); }
.price-note { font-size: 13px; text-align: center; margin-top: 14px; line-height: 1.6; }
.price-card.featured .price-note { color: rgba(255,255,255,.4); }
.price-card:not(.featured) .price-note { color: var(--muted); }

/* ─── DELIVERY STRIP ─────────────────────────────────── */
.delivery-strip {
  background: var(--gold-bg); border-top: 1px solid rgba(200,150,58,.2); border-bottom: 1px solid rgba(200,150,58,.2);
  padding: 20px 0; margin-top: 40px;
}
.delivery-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.delivery-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--ink); }
.delivery-icon { font-size: 1.3rem; }

/* ─── GARANTÍA ───────────────────────────────────────── */
.guarantee {
  max-width: 700px; margin: 52px auto 0;
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--gold-bg); border: 1.5px solid rgba(200,150,58,.3);
  border-radius: var(--r-lg); padding: 36px 40px;
}
.guarantee-icon { font-size: 2.8rem; flex-shrink: 0; line-height: 1; }
.guarantee-text h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.guarantee-text p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-sec { background: var(--white); padding: 96px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-of-type { border-top: 1px solid var(--border); }
summary.faq-q {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 26px 0; font-size: 18px; font-weight: 700;
  color: var(--ink); cursor: pointer; user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
.faq-arr {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--off); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: var(--gold); line-height: 1;
  transition: transform .2s;
}
details[open] summary.faq-q .faq-arr { transform: rotate(45deg); background: var(--gold-bg); border-color: var(--gold); }
.faq-ans { font-size: 16px; color: var(--muted); line-height: 1.75; padding: 0 48px 28px 0; max-width: 680px; }

/* ─── FINAL CTA ──────────────────────────────────────── */
.final-sec {
  background: var(--ink); padding: 112px 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-sec::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.final-sec::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,150,58,.08), transparent); pointer-events: none; }
.final-inner { position: relative; z-index: 1; }
.final-sec h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.final-sec h2 span { color: var(--gold); }
.final-sec p { font-size: 18px; color: rgba(255,255,255,.55); max-width: 540px; margin: 0 auto 48px; line-height: 1.7; }
.final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-note { margin-top: 28px; font-size: 14px; color: rgba(255,255,255,.3); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 48px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 36px; }
.footer-logo { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 360px; }
.footer-links h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px; text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.2); line-height: 1.8; }
.footer-bottom strong { color: rgba(255,255,255,.4); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-book { order: -1; }
  .book-wrap { max-width: 260px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(0,0,0,.12); border-right: 1px solid rgba(0,0,0,.12); }
  .stat:nth-child(4) { border-top: 1px solid rgba(0,0,0,.12); border-right: none; }
  .sections-grid { grid-template-columns: 1fr 1fr; }
  .autor-grid { grid-template-columns: 1fr; gap: 48px; }
  .autor-photo-wrap { max-width: 280px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .sections-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 72px; }
  .section { padding: 72px 0; }
  .price-card { padding: 36px 24px; }
  .guarantee { flex-direction: column; padding: 28px; }
  .final-sec { padding: 80px 0; }
  .nav-links .btn-ghost { display: none; }
  .hero-btns .btn-ghost { display: none; }
  .countdown-grid { gap: 8px; }
  .cd-block { padding: 16px 18px; min-width: 72px; }
  .cd-num { font-size: 2.2rem; }
  .delivery-items { gap: 20px; }
}

/* ─── RESPONSIVE / LATE OVERRIDES ─── */
@keyframes countUp {
  0%  { transform: translateY(8px); opacity: 0; }
  100%{ transform: translateY(0);   opacity: 1; }
}
.copies-flash { animation: countUp .5s ease; }