/* dameun.yagcomunicacion.com — v11 — YAG Premium */

:root {
  --bg:            #0d0c0a;
  --bg-alt:        #111009;
  --surface:       #181610;
  --surface-raised:#211f18;
  --text:          #fafaf9;
  --text-dim:      #a8a29e;
  --text-faint:    rgba(250, 250, 249, 0.32);
  --accent:        #f97316;
  --accent-hover:  #ea580c;
  --accent-subtle: rgba(249, 115, 22, 0.1);
  --line:          rgba(255, 255, 255, 0.06);
  --line-strong:   rgba(255, 255, 255, 0.1);
  --font-display:  "Barlow", system-ui, sans-serif;
  --font-body:     "Figtree", system-ui, sans-serif;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --max:           min(68rem, 92vw);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── BODY — warm dark + grid texture ───────────────────── */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 60px 60px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

/* ── SCROLL PROGRESS BAR ────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 300; pointer-events: none;
  background: rgba(255,255,255,0.04);
}
.scroll-progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 0%; background: var(--accent);
  transition: width 80ms linear;
  transform-origin: 0 0;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress-fill {
    width: 100%; transition: none;
    transform: scaleX(0);
    animation: scroll-grow linear both;
    animation-timeline: scroll(root);
  }
  @keyframes scroll-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
}

/* ── UTILS ──────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0.5rem; z-index: 200;
  padding: 0.5rem 1.5rem; background: var(--accent); color: #fff;
  font-weight: 700; border-radius: 4px; text-decoration: none;
}
.skip:focus { left: 0.5rem; }
.wrap { width: var(--max); margin-inline: auto; padding-inline: 1.25rem; }

/* ── HEADER ─────────────────────────────────────────────── */
.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 12, 10, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.top.scrolled { background: rgba(13, 12, 10, 0.97); }
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 3.75rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.3rem;
  letter-spacing: -0.02em; color: var(--text); text-decoration: none;
}
.brand-dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  color: var(--text-dim); text-decoration: none; font-size: 0.86rem;
  font-weight: 500; transition: color 0.15s;
}
.nav a:hover { color: var(--text); }
.nav-tel { color: var(--text-dim) !important; white-space: nowrap; }

.menu-btn {
  display: none; width: 2.5rem; height: 2.5rem; padding: 0;
  border: 1px solid var(--line-strong); border-radius: 6px;
  background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-icon { display: flex; flex-direction: column; gap: 5px; width: 16px; }
.menu-icon span {
  display: block; height: 2px; border-radius: 1px; background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.menu-btn[aria-expanded="true"] .menu-icon span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon span:last-child  { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  display: none; position: fixed; inset: 0; top: 3.75rem; z-index: 98;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
}
.nav-scrim.is-visible { display: block; }

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .btn-nav, .nav-tel { display: none; }
  .nav {
    position: fixed; top: 3.75rem; left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.75rem 1.25rem 1.5rem;
    background: rgba(13, 12, 10, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.2s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.7rem 1.25rem; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; font-family: var(--font-body);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.12s ease-out, background 0.15s, border-color 0.15s, box-shadow 0.2s;
  min-height: 44px; line-height: 1; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn:active { transform: translateY(1px) !important; }

/* Shimmer sweep on CTA buttons */
.btn-accent::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-accent:hover::before {
  animation: btn-shimmer 0.55s ease forwards;
}
@keyframes btn-shimmer {
  from { left: -80%; }
  to   { left: 130%; }
}

.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
}
.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.5);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.18);
}
.btn-nav {
  background: var(--accent); color: #fff; padding: 0.45rem 0.9rem;
  font-size: 0.82rem; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}
.btn-nav:hover { background: var(--accent-hover); }
.btn-full { width: 100%; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; min-height: 36px; }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 10px; border-radius: 99px;
  background: var(--accent-subtle);
  border: 1px solid rgba(249, 115, 22, 0.22);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 2.25rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 6.5rem);
  overflow: hidden;
}

/* Orange glow blobs */
.hero-glow {
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 150%;
  background: radial-gradient(ellipse at 30% 50%, rgba(249, 115, 22, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  top: auto; bottom: -30%; left: auto; right: -15%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 70% 70%, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
}

/* Oversized watermark — typographic texture */
.hero-wm {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14rem, 35vw, 26rem);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(249, 115, 22, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }

/* Hero entrance animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.badge        { animation: fade-up 0.5s var(--ease) both; }
.hero-h1      { animation: fade-up 0.55s 0.06s var(--ease) both; }
.hero-sub     { animation: fade-up 0.55s 0.15s var(--ease) both; }
.hero-actions { animation: fade-up 0.55s 0.24s var(--ease) both; }
.stats-row    { animation: fade-up 0.55s 0.33s var(--ease) both; }
.price-card   { animation: fade-up 0.7s  0.08s var(--ease) both; }
@media (prefers-reduced-motion: reduce) {
  .badge,.hero-h1,.hero-sub,.hero-actions,.stats-row,.price-card {
    animation: none; opacity: 1;
  }
}

/* MASSIVE headline — the single biggest upgrade */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.25rem, 8.5vw, 6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.em-accent { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: var(--text-dim); line-height: 1.75;
  max-width: 50ch; margin-bottom: 2rem;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }

/* ── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
}
.stat-plus { color: var(--accent); }
.stat-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim);
}
.stat-div { width: 1px; height: 2.5rem; background: var(--line-strong); flex-shrink: 0; }
@media (max-width: 480px) { .stat-div { display: none; } }

/* ── PRICE CARD ──────────────────────────────────────────── */
.price-card {
  border-radius: 16px;
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.06),
    0 40px 100px -20px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.05);
  /* 3D tilt via JS — smooth reset */
  will-change: transform;
  transition: box-shadow 0.3s var(--ease);
}
.price-card:hover {
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.1),
    0 48px 110px -20px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.card-chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--line);
}
.chrome-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.chrome-title {
  font-family: ui-monospace, monospace; font-size: 0.72rem;
  color: var(--text-dim); flex: 1; margin-left: 4px;
}
.chrome-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: #22c55e;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
.card-body { padding: clamp(1.5rem, 3vw, 2.25rem); }
.card-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.2rem;
}
.card-desde {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 900;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: -0.25rem;
}
.card-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 0.5rem;
}
.currency { color: var(--accent); }
.card-note {
  font-size: 0.8rem; color: var(--text-dim);
  margin-bottom: 1.25rem; line-height: 1.5;
}
.card-checks { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.card-checks li {
  display: flex; align-items: baseline; gap: 0.6rem;
  padding: 0.5rem 0; font-size: 0.88rem; color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.card-checks li:last-child { border-bottom: none; }
.card-checks li::before { content: "✓"; color: var(--accent); font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.card-fine { margin-top: 0.75rem; font-size: 0.72rem; color: var(--text-faint); line-height: 1.5; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.ticker {
  overflow: hidden; background: var(--bg-alt);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 13px 0; user-select: none;
}
.ticker-track {
  display: inline-flex; align-items: center;
  gap: 1.5rem; white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.ticker-track span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.t-sep { color: var(--accent) !important; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: clamp(4.5rem, 9vw, 6.5rem) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }

.section-header { margin-bottom: 3.5rem; }
.section-kicker {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.section-h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08; letter-spacing: -0.025em;
}

/* ── EDITORIAL INCLUDE GRID ──────────────────────────────── */
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem;
}
.include-item {
  display: flex;
  gap: 1.25rem;
  padding: 2.25rem 2rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
  cursor: default;
}
.include-item:hover { background: rgba(249, 115, 22, 0.03); }
.include-item:hover .in-num { color: rgba(249, 115, 22, 0.4); transition: color 0.2s; }
.include-item:nth-child(odd) { border-right: 1px solid var(--line); }
/* Bottom row: no bottom border */
.include-item:nth-last-child(-n+2) { border-bottom: none; }

.in-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.75rem;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(249, 115, 22, 0.22);
  min-width: 3rem;
  flex-shrink: 0;
}
.in-content {}
.in-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.375rem;
  line-height: 1.2;
}
.in-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 36ch;
}

.include-aside {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.include-aside .col-card-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.25rem; letter-spacing: -0.02em;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .include-grid { grid-template-columns: 1fr; }
  .include-item:nth-child(odd) { border-right: none; }
  .include-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .include-item:last-child { border-bottom: none; }
  .include-item { padding: 1.5rem 0; }
  .include-aside { flex-direction: column; align-items: flex-start; }
}

/* ── TWO-COL ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.two-col-flip { grid-template-columns: 0.8fr 1.2fr; }
@media (max-width: 768px) { .two-col, .two-col-flip { grid-template-columns: 1fr; } }

.col-lead {
  font-size: 1rem; color: var(--text-dim);
  line-height: 1.75; max-width: 52ch; margin-bottom: 2rem;
}
.col-card-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.25rem; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.625rem 0; font-size: 0.95rem; color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }

/* ── CODE BOX ────────────────────────────────────────────── */
.code-box {
  padding: clamp(1.25rem, 3vw, 1.75rem); border-radius: 14px;
  background: var(--surface-raised); border: 1px solid var(--line-strong);
}
.section-alt .code-box { background: var(--surface); border-color: var(--line); }
.code-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.75rem;
}
.code-pre {
  margin: 0 0 1rem; padding: 1rem;
  border-radius: 8px; background: rgba(0,0,0,0.4);
  border: 1px solid var(--line); overflow-x: auto;
  font-size: 0.78rem; line-height: 1.6; color: var(--text-dim);
  white-space: pre-wrap; word-break: break-all;
}
code { font-family: ui-monospace, "Cascadia Code", "Fira Code", monospace; }

/* ── TESTIMONIO ──────────────────────────────────────────── */
.testimonial { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.quote {
  max-width: 52rem; margin-inline: auto; text-align: center;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.75;
  color: var(--accent);
  opacity: 0.18;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}
.quote-footer cite {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-style: normal;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 44rem; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1rem;
  list-style: none; position: relative;
  padding: 1.125rem 2rem 1.125rem 0; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem; font-weight: 300; color: var(--text-dim); line-height: 1;
  transition: color 0.15s;
}
.faq[open] summary::after { content: "−"; color: var(--accent); }
.faq p { padding: 0 0 1.25rem; color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; max-width: 60ch; }

/* ── CTA END ─────────────────────────────────────────────── */
.cta-end {
  position: relative;
  padding: clamp(5.5rem, 14vw, 9rem) 0;
  border-top: 1px solid var(--line);
  overflow: hidden; background: var(--bg-alt);
}
.cta-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 65%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 38rem; margin-inline: auto; text-align: center;
}
.cta-h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.cta-sub { color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.foot { padding: 1rem 0; border-top: 1px solid var(--line); }
.foot-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.8rem; color: var(--text-dim); }
.foot-inner a { color: var(--text-dim); text-decoration: none; }
.foot-inner a:hover { color: var(--text); }

/* ── STICKY BAR ──────────────────────────────────────────── */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150; padding: 0.875rem 1rem;
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
  text-align: center; font-weight: 700; font-size: 0.9rem;
  color: #fff; text-decoration: none; background: var(--accent);
  box-shadow: 0 -4px 24px rgba(249, 115, 22, 0.4);
}
@media (max-width: 768px) {
  .sticky-bar { display: block; }
  body { padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px)); }
}

/* ── SCROLL ENTRANCE ─────────────────────────────────────── */
[data-entrance] { opacity: 0; transform: translateY(24px); }
[data-entrance].is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
@media (prefers-reduced-motion: reduce) { [data-entrance] { opacity: 1; transform: none; } }

/* ── FOCUS ───────────────────────────────────────────────── */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
