/**
 * Plus Performance — landing balanceada
 * Navy dominante / blanco de contraste / fucsia acento #EC0A7D
 */

:root {
  --pp-bg: #0b1648;
  --pp-bg-soft: #eef3fa;
  --pp-surface: #ffffff;
  --pp-navy: #0b1648;
  --pp-navy-deep: #081033;
  --pp-navy-mid: #12235f;
  --pp-blue: #3b82f6;
  --pp-blue-soft: #e8f1ff;
  --pp-primary: #ec0a7d;
  --pp-primary-hover: #d00970;
  --pp-primary-soft: #fff0f7;
  --pp-primary-border: #f6d3e6;
  --pp-text: #0b1648;
  --pp-text-muted: #44506b;
  --pp-text-soft: #3f4b66;
  --pp-border: #dde5f2;
  --pp-border-strong: #c9d4e8;
  --pp-on-dark: #f8fafc;
  --pp-on-dark-muted: #d5deef;
  --pp-radius-sm: 12px;
  --pp-radius-md: 18px;
  --pp-radius-lg: 24px;
  --pp-radius-xl: 28px;
  --pp-radius-pill: 999px;
  --pp-shadow: 0 16px 40px rgba(8, 16, 51, 0.18);
  --pp-shadow-lg: 0 24px 60px rgba(8, 16, 51, 0.28);
  --pp-shadow-cta: 0 10px 28px rgba(236, 10, 125, 0.32);
  --pp-container: 1140px;
  --pp-header-h: 74px;
  --pp-section-y: clamp(4.25rem, 7vw, 6rem);
  --pp-font-display: "Barlow", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --pp-font-body: "Source Sans 3", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--pp-font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--pp-on-dark);
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(236, 10, 125, 0.16), transparent 55%),
    radial-gradient(800px 420px at -5% 8%, rgba(59, 130, 246, 0.14), transparent 50%),
    linear-gradient(165deg, #081033 0%, #0b1648 42%, #12235f 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 2px solid var(--pp-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--pp-primary);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: var(--pp-radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--pp-container));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 16, 51, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 16, 51, 0.97);
}

.header-inner {
  min-height: var(--pp-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  padding-block: 0.35rem;
}

.brand-logo {
  display: block;
  width: clamp(9.5rem, 14vw, 12.5rem);
  height: auto;
  max-width: 220px;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-footer .brand-logo {
  width: clamp(8.5rem, 12vw, 11.25rem);
  max-width: 180px;
}

.brand-word {
  font-family: var(--pp-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--pp-on-dark-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.3rem;
  border-radius: var(--pp-radius-pill);
  border: 1px solid transparent;
  font-family: var(--pp-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--pp-primary);
  color: #fff;
  box-shadow: var(--pp-shadow-cta);
}
.btn-primary:hover {
  background: var(--pp-primary-hover);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--pp-navy);
  border-color: var(--pp-border-strong);
}
.btn-secondary:hover {
  border-color: var(--pp-blue);
  color: var(--pp-navy);
}

.btn-ghost {
  background: transparent;
  color: var(--pp-navy);
  border-color: var(--pp-border-strong);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--pp-navy);
}

.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-lg {
  min-height: 54px;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

/* Hero */

.hero {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(680px 340px at 85% 15%, rgba(236, 10, 125, 0.22), transparent 58%),
    radial-gradient(620px 300px at 10% 80%, rgba(59, 130, 246, 0.16), transparent 55%),
    linear-gradient(160deg, #081033 0%, #0b1648 48%, #152a6b 100%);
  color: var(--pp-on-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: #ff9fd0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-on-dark { color: #ff9fd0; }

.hero h1 {
  margin: 0.85rem 0 0;
  font-family: var(--pp-font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-lead {
  margin: 1.15rem 0 0;
  max-width: 36rem;
  color: var(--pp-on-dark-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: var(--pp-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.chip-run { border-color: rgba(236, 10, 125, 0.55); background: rgba(236, 10, 125, 0.16); color: #ffb3da; }
.chip-bike { border-color: rgba(59, 130, 246, 0.55); background: rgba(59, 130, 246, 0.16); color: #bfdbfe; }
.chip-tri { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.1); color: #fff; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.hero-note {
  margin: 1.15rem 0 0;
  color: #c9d4ea;
  font-size: 0.95rem;
}

.hero-visual { position: relative; }

.hero-frame {
  position: relative;
  border-radius: var(--pp-radius-xl);
  overflow: hidden;
  box-shadow: var(--pp-shadow-lg);
  background: linear-gradient(145deg, #1a2f6e, #0b1648);
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.95) contrast(1.02);
}

.hero-metric-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.15rem;
  min-width: 148px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(11, 22, 72, 0.12);
}

.hero-metric-card span {
  font-size: 0.72rem;
  color: var(--pp-text-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-metric-card strong {
  font-family: var(--pp-font-display);
  font-size: 1.05rem;
  color: var(--pp-navy);
  font-weight: 600;
}

.hero-metric-card-accent {
  left: auto;
  right: 1rem;
  bottom: 5.2rem;
  border-top: 2px solid var(--pp-primary);
}

/* Sections */

.section {
  padding: var(--pp-section-y) 0;
}

.section-soft {
  background: var(--pp-bg-soft);
  color: var(--pp-text);
}

.section-soft .eyebrow {
  color: var(--pp-primary);
}

.section-soft h2,
.section-soft .section-lead {
  color: var(--pp-text);
}

.section-soft .section-lead {
  color: var(--pp-text-muted);
}

.section-navy,
.section-cta {
  background:
    radial-gradient(700px 360px at 90% 0%, rgba(236, 10, 125, 0.18), transparent 55%),
    linear-gradient(145deg, #0b1648 0%, #12235f 55%, #0b1648 100%);
  color: var(--pp-on-dark);
}

.section-navy .eyebrow,
.section-cta .eyebrow {
  color: #ff9fd0;
}

.section-navy h2,
.section-cta h2 {
  color: #fff;
}

.section-navy .section-lead,
.section-cta .section-lead,
.section-navy > .container > p,
.section-cta p {
  color: var(--pp-on-dark-muted);
}

.section-navy .coaches-note {
  color: var(--pp-on-dark-muted);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(1.85rem, 4vw, 2.6rem);
}

.section h2 {
  margin: 0.55rem 0 0;
  font-family: var(--pp-font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #fff;
  text-wrap: balance;
}

.section-lead {
  margin: 0.9rem 0 0;
  max-width: 38rem;
  color: var(--pp-on-dark-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Contraste forzado en bandas claras (debe ir después de .section h2) */
.section.section-soft,
.section.section-soft h2 {
  color: var(--pp-text);
}

.section.section-soft .eyebrow {
  color: var(--pp-primary);
}

.section.section-soft .section-lead {
  color: var(--pp-text-muted);
}

/* Disciplines */

.discipline-grid,
.value-grid,
.plans-grid,
.coaches-grid {
  display: grid;
  gap: 1.15rem;
}

.discipline-grid,
.plans-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid { grid-template-columns: repeat(3, 1fr); }
.coaches-grid { grid-template-columns: repeat(2, 1fr); }

.discipline-card,
.value-card,
.plan-card,
.coach-card,
.process-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius-xl);
  box-shadow: var(--pp-shadow);
}

.discipline-card,
.value-card,
.process-card {
  padding: 1.55rem 1.4rem 1.6rem;
}

.discipline-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--pp-blue-soft);
  color: var(--pp-blue);
}

.discipline-card:nth-child(1) .discipline-icon {
  background: var(--pp-primary-soft);
  color: var(--pp-primary);
}

.discipline-card:nth-child(3) .discipline-icon {
  background: #eef2ff;
  color: #4338ca;
}

.discipline-card h3,
.value-card h3,
.process-card h3,
.coach-card h3,
.plan-card h3 {
  margin: 0;
  font-family: var(--pp-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pp-navy);
}

.discipline-card h3 { font-size: 1.3rem; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.discipline-card > p,
.value-card p,
.process-card p,
.coach-card > p:last-child {
  margin: 0.65rem 0 0;
  color: var(--pp-text-muted);
  line-height: 1.65;
}

.discipline-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.discipline-card li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--pp-text);
  font-size: 0.95rem;
}

.discipline-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--pp-primary);
}

/* Plans */

.plan-card {
  padding: 1.85rem 1.55rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.plan-kicker {
  margin: 0;
  color: var(--pp-text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 0.45rem;
  font-size: 1.28rem;
}

.plan-price {
  margin: 1rem 0 0;
  font-family: var(--pp-font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--pp-navy);
  line-height: 1;
}

.plan-price span {
  font-family: var(--pp-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pp-text-soft);
}

.plan-note,
.plan-help {
  margin: 0.45rem 0 0;
  color: var(--pp-text-soft);
  font-size: 0.9rem;
}

.plan-card ul {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.plan-card li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--pp-text);
  font-size: 0.95rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--pp-primary);
}

.plan-card .btn {
  width: 100%;
  margin-top: 1.4rem;
}

/* Process */

.process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--pp-primary);
  color: #fff;
  font-family: var(--pp-font-display);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.process-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

/* Tech */

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.split p {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--pp-on-dark-muted);
  line-height: 1.7;
}

.tech-list {
  margin: 1.35rem 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.tech-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--pp-on-dark);
}

.tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--pp-primary);
}

.signal-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pp-radius-xl);
  padding: 1.5rem;
}

.signal-panel h3 {
  margin: 0 0 0.85rem;
  font-family: var(--pp-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.signal-panel p {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--pp-on-dark-muted);
}

.signal-panel p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Coaches */

.coach-card {
  padding: 1.75rem 1.55rem;
}

.coach-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--pp-primary-soft), #fff);
  border: 1px solid var(--pp-primary-border);
  color: var(--pp-primary);
  font-family: var(--pp-font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.coach-avatar-alt {
  background: linear-gradient(145deg, var(--pp-blue-soft), #fff);
  border-color: #cfe0ff;
  color: #1d4ed8;
}

.coach-card h3 { font-size: 1.4rem; }

.coach-role {
  margin: 0.35rem 0 0;
  color: var(--pp-primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coaches-note {
  margin: 1.35rem 0 0;
  max-width: 46rem;
  color: var(--pp-text-soft);
  font-size: 0.98rem;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.35rem;
  max-width: 720px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 16px;
  padding: 0 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  font-family: var(--pp-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pp-navy);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pp-primary);
  font-size: 1.2rem;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0 0 1.05rem;
  max-width: 58ch;
  color: var(--pp-text-muted);
}

/* CTA */

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  color: #fff;
  margin: 0.4rem 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Footer */

.site-footer {
  background: var(--pp-navy-deep);
  color: var(--pp-on-dark-muted);
  padding: 2.5rem 0 2.1rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand .brand-word {
  color: #fff;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  line-height: 1.55;
  color: var(--pp-on-dark-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-nav a {
  color: var(--pp-on-dark-muted);
  text-decoration: none;
  font-size: 0.94rem;
}

.footer-nav a:hover { color: #fff; }

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  text-align: right;
}

/* Legal */

.legal-page {
  padding: 3.5rem 0 5rem;
  background: var(--pp-bg-soft);
  color: var(--pp-text);
}
.legal-page h1 {
  margin: 0 0 1rem;
  font-family: var(--pp-font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--pp-navy);
}
.legal-page p {
  max-width: 62ch;
  color: var(--pp-text-muted);
  line-height: 1.7;
}
.legal-page a { color: var(--pp-navy); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .footer-inner { grid-template-columns: 1fr; }
  .discipline-grid,
  .value-grid,
  .plans-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-copy { text-align: left; }
  .hero h1 { max-width: none; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: var(--pp-header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1.5rem;
    background: rgba(8, 16, 51, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 0.15rem; }
  .nav-list a {
    display: block;
    padding: 0.85rem 0.35rem;
    color: #fff;
    font-size: 1.05rem;
  }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-actions .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 1.75rem, var(--pp-container)); }
  .brand-logo {
    width: clamp(8.4rem, 42vw, 10rem);
    max-width: 160px;
  }
  .discipline-grid,
  .value-grid,
  .plans-grid,
  .process-grid,
  .coaches-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .hero-metric-card-accent { display: none; }
}
