/* ============ RESET / BASE ============ */
:root {
  --bg: #0F1A2E;
  --bg-2: #0B1422;
  --surface: #152339;
  --surface-2: #1A2A44;
  --border: rgba(201, 169, 110, 0.15);
  --border-strong: rgba(201, 169, 110, 0.35);
  --gold: #C9A96E;
  --gold-soft: #d9bd87;
  --gold-dim: rgba(201, 169, 110, 0.5);
  --text: #FFFFFF;
  --text-muted: #A8B0BA;
  --text-dim: #8A93A1;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(201, 169, 110, 0.15);
  --font-head: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 200; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 200; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 400; }
p { color: var(--text-muted); }
.gold { color: var(--gold); font-weight: 300; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 16px;
}
.eyebrow.gold { color: var(--gold); }

.disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  font-style: italic;
}
.disclaimer.center { text-align: center; margin-top: 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn-block { display: block; width: 100%; }
.btn-small {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--border-strong);
}
.btn-ghost { color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }
.btn-gold-small {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold-small:hover { background: var(--gold-soft); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 26, 46, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--text);
}
.logo span {
  color: var(--gold);
  margin-left: 4px;
  font-weight: 200;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 11px !important;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  transition: color 0.2s;
}
.lang-toggle:hover { color: var(--gold); }
.lang-toggle .lang-active { color: var(--gold); }
.lang-toggle .lang-sep { margin: 0 4px; color: var(--text-dim); }
.menu-btn {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-out infinite alternate;
  filter: grayscale(0.3) brightness(0.5);
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 26, 46, 0.4) 0%, rgba(15, 26, 46, 0.85) 60%, var(--bg) 100%),
    linear-gradient(90deg, rgba(15, 26, 46, 0.7) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  margin: 16px 0 20px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-facts span {
  font-size: 10px;
  letter-spacing: 2px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-weight: 500;
}
.hero-cta {
  margin-bottom: 20px;
}
.hero-cta-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--border-strong);
  overflow: hidden;
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--gold);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(50px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 12px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
}
.trust-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ============ SECTION BASE ============ */
.section {
  padding: 80px 0;
  position: relative;
}
.section-head {
  margin-bottom: 48px;
}
.section-head.centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.section-lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ============ PAIN ============ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.pain-num {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.6;
}
.pain-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

/* ============ SOLUTION ============ */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.solution-text p { margin-bottom: 16px; }
.solution-text p:last-child { margin-bottom: 0; }
.solution-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.85);
  border: 1px solid var(--border);
}
.facts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 12px;
}
.fact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.fact span {
  font-size: 13px;
  color: var(--text);
}

/* ============ USP ============ */
.usp {
  background: var(--bg-2);
}
.usp-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: center;
}
.usp-block:last-child { margin-bottom: 0; }
.usp-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
}
.usp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.75);
  transition: transform 0.6s;
}
.usp-block:hover .usp-media img { transform: scale(1.05); }
.usp-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 26, 46, 0.9);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  padding: 8px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.usp-media-dark {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  aspect-ratio: 4/3;
}
/* In the dark variant, position the tag at top-left so it doesn't overlap centered content */
.usp-media-dark .usp-tag {
  top: 16px;
  bottom: auto;
}
.usp-notlist {
  padding: 56px 24px 32px;
}
.usp-notlist .x {
  display: block;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 200;
  line-height: 1;
}
.usp-notlist strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 200;
  letter-spacing: 6px;
  color: var(--text);
  margin: 10px 0 6px;
}
.usp-notlist p {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  .usp-notlist { padding: 48px 32px; }
  .usp-notlist .x { font-size: 4rem; }
  .usp-notlist strong { font-size: 3rem; letter-spacing: 8px; }
  .usp-notlist p { font-size: 12px; letter-spacing: 2px; }
}
.usp-text h3 {
  margin-bottom: 20px;
}
.usp-text p {
  margin-bottom: 16px;
}
.check-list, .x-list {
  list-style: none;
  margin-top: 20px;
}
.check-list li, .x-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child, .x-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.x-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.check-list.inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ============ HOW (TIMELINE) ============ */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border-strong);
}
.timeline-step {
  position: relative;
  padding-bottom: 40px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--bg);
}
.timeline-step::after {
  content: '';
  position: absolute;
  left: -28px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.timeline-step.reveal.is-visible::after { opacity: 1; }
.step-time {
  font-family: var(--font-head);
  font-weight: 300;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

/* ============ DIFFERENTIATORS ============ */
.diff { background: var(--bg-2); }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}
.compare th, .compare td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.compare th {
  background: var(--surface);
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.compare th.us, .compare td.us {
  color: var(--gold);
  font-weight: 600;
  background: rgba(201, 169, 110, 0.04);
}
.compare th.us { color: var(--gold); }
.compare tr:last-child td { border-bottom: none; }
.diff-quote {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text);
  max-width: 800px;
  margin: 40px auto 0;
  font-style: italic;
  line-height: 1.5;
}

/* ============ FORWHO ============ */
.forwho-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.forwho-col {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
}
.forwho-col h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.forwho-col.yes h4 { color: var(--gold); }
.forwho-col.no h4 { color: var(--text-muted); }
.forwho-col ul {
  list-style: none;
}
.forwho-col li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.forwho-col li:last-child { border-bottom: none; }
.forwho-col.yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
.forwho-col.no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 16px;
}

/* ============ TESTIMONIALS ============ */
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.test-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.test-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.test-quote {
  font-family: var(--font-head);
  font-weight: 300;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}
.test-author {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
.test-author span {
  color: var(--text-dim);
  font-weight: 400;
  margin-left: 4px;
}

/* ============ PRICING ============ */
.price-includes {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.price-includes h4 {
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.price-card.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  white-space: nowrap;
}
.price-name {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
}
.price-card.featured .price-amount { color: var(--gold); }
.price-old {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 4px;
}
.price-desc {
  font-size: 13px;
  margin: 16px 0 24px;
  flex: 1;
}
.price-card .btn { margin-top: auto; }

/* ============ FLIP CARD (Bono) ============ */
.price-card.flip-card {
  perspective: 1200px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.price-card.flip-card:hover {
  transform: none;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-card.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}
.flip-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: border-color 0.3s;
}
.price-card.flip-card:hover .flip-face {
  border-color: var(--border-strong);
}
.flip-back {
  transform: rotateY(180deg);
  padding-top: 56px;
}
.flip-back-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  font-family: var(--font-head);
  font-weight: 300;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.flip-back-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

/* Front face: "desde 50€/sesión" */
.price-amount-bono {
  font-size: 2.8rem !important;
  margin-top: 8px;
}
.price-from {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.price-per {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* Bono list */
.bono-list {
  list-style: none;
  margin: 12px 0 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bono-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  position: relative;
  text-align: left;
}
.bono-row:last-child { border-bottom: none; }
.bono-row.popular {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid var(--border-strong);
  padding: 14px 12px;
  margin: 6px 0;
}
.bono-tag {
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  text-transform: uppercase;
}
.bono-info {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.bono-info strong {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.bono-info span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.bono-prices { text-align: right; }
.bono-total {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1;
}
.bono-each {
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.bono-each span { color: var(--text-dim); }
.bono-meta {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 200;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-a {
  padding: 0 40px 24px 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============ FINAL CTA / FORM ============ */
.final-cta {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.form, .form-alt {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
}
.form-row {
  margin-bottom: 20px;
}
.form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.form input, .form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form input:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
}
.form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form button { margin-top: 12px; }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  font-size: 14px;
}
.form-success.show { display: block; }
.form-alt {
  background: transparent;
  border: 1px dashed var(--border-strong);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.form-alt h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-alt p {
  margin-bottom: 24px;
}
.form-alt-meta {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  margin-bottom: 70px; /* отступ для sticky CTA на мобильном */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
}
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

/* ============ STICKY CTA MOBILE ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 90;
  background: var(--bg-2);
  border-top: 1px solid var(--border-strong);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.sticky-main {
  background: var(--gold);
  color: var(--bg);
}
.sticky-wa {
  flex: 0 0 38% !important;
  color: var(--gold);
  border-left: 1px solid var(--border-strong);
}

/* ============ WHATSAPP FLOATING ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ EXIT MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.show { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s;
}
.modal-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold);
  padding: 40px 28px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  font-weight: 200;
  line-height: 1;
}
.modal-close:hover { color: var(--gold); }
.modal-card h3 {
  font-size: 1.6rem;
  margin: 8px 0 12px;
  color: var(--text);
}
.modal-card p {
  margin-bottom: 24px;
  font-size: 14px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-form input {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}
.modal-form input:focus { outline: none; border-color: var(--gold); }
.modal-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
}
.modal-success.show { display: block; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 90px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 16px 20px;
  z-index: 95;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MOBILE MENU OVERLAY ============ */
@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 18px;
    color: var(--text);
  }
  .nav-cta {
    align-self: stretch;
    text-align: center;
    margin-top: 8px;
  }
}

/* ============ TABLET ============ */
@media (min-width: 600px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .facts-row { grid-template-columns: repeat(4, 1fr); }
  .trust-strip { grid-template-columns: repeat(4, 1fr); padding: 36px 20px; }
  .forwho-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .check-list.inline { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ============ DESKTOP ============ */
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .section { padding: 120px 0; }
  .menu-btn { display: none; }
  .nav-links { display: flex; }
  .nav-inner { padding: 0 32px; }
  .solution-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .usp-block { grid-template-columns: 1fr 1fr; gap: 48px; }
  .usp-block.reverse .usp-media { order: 2; }
  .test-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .form-wrap { grid-template-columns: 2fr 1fr; }
  .sticky-cta { display: none !important; }
  .wa-float { display: flex; }
  .footer { margin-bottom: 0; }
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    bottom: 24px;
    left: auto;
    right: 24px;
    max-width: 500px;
  }
  .cookie-banner p { flex: 1; }
}

/* ============ LARGE DESKTOP ============ */
@media (min-width: 1200px) {
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================================
   BLOQUES NUEVOS · UA Beauty Valencia 2026
   ====================================================================== */

/* ============ SELECTOR DE IDIOMA ============ */
.lang { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 7px 10px;
  border: 1px solid var(--border-strong);
  transition: color 0.2s, border-color 0.2s;
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.lang-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.25s;
}
.lang.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 156px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  padding: 4px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.lang-menu button:hover { background: rgba(201, 169, 110, 0.08); color: var(--text); }
.lang-menu button.is-active { color: var(--gold); }

/* ============ SERVICIOS ============ */
.serv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.serv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.serv-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.serv-num {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 12px;
}
.serv-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.serv-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.serv-card p { font-size: 14px; }
.serv-link {
  margin-top: 20px;
  align-self: flex-start;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  transition: border-color 0.25s;
}
.serv-link:hover { border-bottom-color: var(--gold); }

/* ============ OTROS PRECIOS ============ */
.price-other {
  max-width: 700px;
  margin: 32px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.price-other h4 {
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.price-other-list { list-style: none; }
.price-other-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.price-other-list li:last-child { border-bottom: none; }
.price-other-list strong {
  color: var(--gold);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
.price-other-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ SOBRE NOSOTROS ============ */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.85);
  border: 1px solid var(--border);
}
.about-text p { margin-bottom: 16px; }

/* ============ RESERVAR (Telegram / WhatsApp) ============ */
.book-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.book-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.book-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.book-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
}
.book-tg .book-icon { color: #35a6de; }
.book-wa .book-icon { color: #25D366; }
.book-card h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
}
.book-badge {
  display: inline-block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  padding: 5px 12px;
  margin-bottom: 16px;
}
.book-card p { font-size: 14px; }
.book-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  transition: border-color 0.25s;
}
.book-card:hover .book-link { border-bottom-color: var(--gold); }

/* ============ CONTACTO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 20px;
}
.contact-item h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.contact-item p { font-size: 14px; line-height: 1.7; }
.contact-item a { color: var(--text-muted); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

/* ============ BOTONES FLOTANTES: WHATSAPP + TELEGRAM ============ */
.float-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-btn:hover { transform: scale(1.08); }
.float-wa { background: #25D366; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35); }
.float-tg { background: #229ED9; box-shadow: 0 8px 22px rgba(34, 158, 217, 0.35); }
.float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.float-btn:hover .float-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ============ ACCESIBILIDAD: MENOS MOVIMIENTO ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  .scroll-hint span { animation: none; }
  .flip-inner { transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============ RESPONSIVE DE LOS BLOQUES NUEVOS ============ */
@media (min-width: 600px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .book-wrap { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .serv-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; }
  .contact-grid { grid-template-columns: repeat(4, 1fr); }
  .float-group { display: flex; }
  .wa-float { display: none !important; }
  /* El aviso va a la izquierda para no taparse con los botones flotantes */
  .cookie-banner { left: 24px; right: auto; }
}

/* ============ PANEL TIPOGRÁFICO DEL APARATO ============ */
.usp-device { padding: 56px 24px 32px; }
.usp-device-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 6px;
  color: var(--gold);
  line-height: 1;
}
.usp-device-sub {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ BARRA FIJA MÓVIL (3 BOTONES) ============ */
.sticky-cta .sticky-main {
  flex: 1 1 auto;
  min-width: 0;
}
.sticky-icon {
  flex: 0 0 62px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border-strong);
  padding: 16px 0 !important;
  transition: background 0.25s;
}
.sticky-cta .sticky-wa { color: #25D366; }
.sticky-cta .sticky-tg { color: #35a6de; }
.sticky-icon:active { background: rgba(255, 255, 255, 0.06); }
@media (max-width: 359px) {
  .sticky-icon { flex: 0 0 54px !important; }
  .sticky-cta .sticky-main { font-size: 12px; letter-spacing: 1px; }
}

/* ============ AJUSTES MÓVIL ============ */
.logo { white-space: nowrap; }
@media (max-width: 420px) {
  .logo { font-size: 13px; letter-spacing: 2.5px; }
  .logo span { margin-left: 2px; }
  .nav-right { gap: 10px; }
  .lang-btn { padding: 6px 8px; font-size: 11px; }
  .nav-inner { padding: 0 14px; gap: 8px; }
}

/* ============ PÁGINAS LEGALES ============ */
.legal-body { padding-top: var(--nav-h); }
.legal-body .footer { margin-bottom: 0; }
.legal-body .nav-inner { gap: 12px; }
.legal-inner { max-width: 820px; }
.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal p {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal ul {
  list-style: none;
  margin: 0 0 18px;
}
.legal ul li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.legal ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}
.legal ul.legal-data li { color: var(--text); }
.legal ul.legal-data strong { color: var(--text-muted); font-weight: 500; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal .table-wrap { margin: 18px 0 22px; }
.legal .compare { min-width: 520px; }
.legal-updated {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.legal-links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
