/* ==========================================================================
   ed-Nova — Landing comercial pública (estática)
   Aislada del SaaS. Sin Supabase. Identidad propia + lenguaje visual SaaS comercial.
   ========================================================================== */

:root {
  --color-primary: #007BDF;
  --color-primary-dark: #006DC6;
  --color-secondary: #00CBFF;
  --color-secondary-dark: #00BFF0;
  --color-danger: #FF3C32;
  --color-danger-dark: #FF2419;
  --color-accent: #FBA905;
  --color-accent-dark: #F1A000;
  --color-dark: #282D31;
  --color-dark-deep: #141618;
  --color-text: #53575A;
  --color-border: #DFE0E0;
  --color-background: #FAFDFF;
  --color-white: #FFFFFF;

  --font-heading: "Open Sans", sans-serif;
  --font-body: "Lato", sans-serif;

  --shadow-sm: 0 4px 15px rgba(20, 22, 24, 0.05);
  --shadow-md: 0 12px 35px rgba(20, 22, 24, 0.08);
  --shadow-lg: 0 22px 60px rgba(20, 22, 24, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --container: 1200px;
  --nav-h: 72px;

  /* Precios oficiales anuales (referencia; valores reales en HTML) */
  --price-esencial-pen: "250";
  --price-esencial-usd: "75";
  --price-profesional-pen: "300";
  --price-profesional-usd: "90";
  --price-integral-360-pen: "350";
  --price-integral-360-usd: "105";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

@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 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container-ed {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.section {
  padding-block: clamp(56px, 8vw, 112px);
}

.section--tight {
  padding-block: clamp(48px, 6vw, 80px);
}

.section--muted {
  background: var(--color-background);
}

.section--dark {
  background: linear-gradient(160deg, #0f3d66 0%, var(--color-dark-deep) 55%, #0a1a28 100%);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h2,
.section--dark h3,
.section--dark .section-kicker {
  color: var(--color-white);
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.section-title--wide {
  max-width: 28ch;
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--color-text);
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-title,
.section-head--center .section-lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-ed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ed:focus-visible {
  outline: 3px solid rgba(0, 123, 223, 0.35);
  outline-offset: 2px;
}

.btn-ed--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-ed--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-ed--secondary {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-ed--secondary:hover {
  background: rgba(0, 123, 223, 0.06);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-ed--accent {
  background: var(--color-accent);
  color: var(--color-dark-deep);
}

.btn-ed--accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-dark-deep);
}

.btn-ed--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

.btn-ed--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ed--block {
  width: 100%;
}

.btn-ed--lg {
  min-height: 54px;
  padding-inline: 26px;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.ed-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223, 224, 224, 0.85);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.ed-nav.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}

.ed-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.ed-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.ed-brand:hover {
  color: var(--color-dark);
}

.ed-brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.ed-brand__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.ed-brand__text span {
  color: var(--color-primary);
}

.ed-nav__links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.ed-nav__links a {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.9375rem;
}

.ed-nav__links a:hover {
  color: var(--color-primary);
  background: rgba(0, 123, 223, 0.06);
}

.ed-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ed-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-dark);
}

.ed-nav__toggle:focus-visible {
  outline: 3px solid rgba(0, 123, 223, 0.35);
  outline-offset: 2px;
}

.ed-nav__mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 0.75rem 0 1rem;
}

.ed-nav__mobile.is-open {
  display: block;
}

.ed-nav__mobile a {
  display: block;
  padding: 0.85rem clamp(18px, 4vw, 32px);
  color: var(--color-dark);
  font-weight: 700;
  border-bottom: 1px solid rgba(223, 224, 224, 0.6);
}

.ed-nav__mobile .btn-ed {
  margin: 0.85rem clamp(18px, 4vw, 32px) 0;
  width: calc(100% - 2 * clamp(18px, 4vw, 32px));
}

@media (min-width: 992px) {
  .ed-nav__links {
    display: flex;
  }
  .ed-nav__toggle {
    display: none;
  }
  .ed-nav__mobile {
    display: none !important;
  }
  .ed-nav__cta-secondary {
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .ed-nav__cta-secondary {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(0, 203, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(0, 123, 223, 0.1), transparent 55%),
    linear-gradient(135deg, rgba(0, 123, 223, 0.08), rgba(0, 203, 255, 0.03) 55%, #fff);
  padding-block: clamp(48px, 7vw, 96px) clamp(64px, 9vw, 112px);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 123, 223, 0.08);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 38ch;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}

.hero__support {
  font-size: 1rem;
  max-width: 40ch;
  margin-bottom: 1.75rem;
  color: #6a6f73;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__micro {
  font-size: 0.875rem;
  color: #7a7f83;
  margin: 0;
}

.hero__visual {
  position: relative;
}

.hero__glow {
  position: absolute;
  inset: 12% 8% auto;
  height: 55%;
  background: radial-gradient(circle, rgba(0, 123, 223, 0.22), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

/* Browser frame for screenshots */
.browser-frame {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: #f4f6f8;
  border-bottom: 1px solid var(--color-border);
}

.browser-frame__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5d8db;
}

.browser-frame__dot:nth-child(1) { background: #ff5f57; }
.browser-frame__dot:nth-child(2) { background: #febc2e; }
.browser-frame__dot:nth-child(3) { background: #28c840; }

.browser-frame__url {
  margin-left: 0.5rem;
  flex: 1;
  height: 22px;
  border-radius: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.7rem;
  color: #8a9096;
  display: flex;
  align-items: center;
  padding-inline: 0.6rem;
  overflow: hidden;
  white-space: nowrap;
}

.browser-frame__body {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #eef6fc, #f8fbfd 45%, #e8f4fb);
  display: grid;
  place-items: center;
  position: relative;
  min-height: 220px;
}

.browser-frame__body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ph-shot {
  text-align: center;
  padding: 1.5rem;
  color: #7a8794;
  max-width: 28ch;
}

.ph-shot__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 14px;
  background: rgba(0, 123, 223, 0.1);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.ph-shot strong {
  display: block;
  color: var(--color-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.ph-shot span {
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Connected strip
   -------------------------------------------------------------------------- */
.connected {
  color: rgba(255, 255, 255, 0.88);
}

.connected .section-title {
  max-width: 16ch;
}

.connected-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .connected-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.connected-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem;
}

.connected-card h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.connected-card p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
}

.connected-highlight {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 203, 255, 0.12);
  border: 1px solid rgba(0, 203, 255, 0.25);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.connected-close {
  margin-top: 1.25rem;
  max-width: 62ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

/* --------------------------------------------------------------------------
   Benefit rows (imágenes publicitarias)
   -------------------------------------------------------------------------- */
.benefits {
  padding-block: clamp(56px, 7vw, 96px);
  overflow-x: clip;
}

.benefit-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.7rem;
}

.benefit-row {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 88px);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

.benefit-row--muted {
  margin-inline: calc(-1 * clamp(18px, 4vw, 32px));
  padding-inline: clamp(18px, 4vw, 32px);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--color-background);
  border-radius: 0;
}

@media (min-width: 992px) {
  .benefit-row--muted {
    margin-inline: 0;
    padding-inline: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-xl);
  }
}

.benefit-row__copy {
  max-width: 34rem;
}

.benefit-row__copy h3 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.benefit-row__copy > p:not(.benefit-eyebrow):not(.benefit-row__soft) {
  margin: 0;
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.55;
}

.benefit-row__soft {
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
  color: #6a6f73;
  max-width: 34rem;
}

.benefit-row__media {
  min-width: 0;
  width: 100%;
}

.benefit-visual {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #eef4f8;
  box-shadow: 0 20px 55px rgba(20, 22, 24, 0.1);
  border: 1px solid rgba(223, 224, 224, 0.7);
}

.benefit-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.benefit-visual--wide {
  max-width: 980px;
  margin-inline: auto;
}

/* Featured connected block */
.benefit-featured {
  margin-bottom: clamp(56px, 8vw, 88px);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 203, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #f4faff 0%, #fafdff 100%);
  border: 1px solid rgba(223, 224, 224, 0.75);
  text-align: center;
}

.benefit-featured__copy {
  max-width: 40rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
}

.benefit-featured__copy h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.benefit-featured__copy > p:not(.benefit-eyebrow):not(.benefit-featured__highlight) {
  margin: 0 auto;
  font-size: 1.05rem;
  max-width: 36rem;
}

.benefit-featured__highlight {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(0, 123, 223, 0.1);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Desktop 2-col from lg; tablet stays single column for readability */
@media (min-width: 992px) {
  .benefit-row {
    grid-template-columns: 1fr 1.08fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .benefit-row--reverse .benefit-row__copy {
    order: 2;
  }

  .benefit-row--reverse .benefit-row__media {
    order: 1;
  }
}

@media (max-width: 991.98px) {
  .benefit-row,
  .benefit-row--reverse {
    grid-template-columns: 1fr;
  }

  .benefit-row__copy,
  .benefit-row__copy h3,
  .benefit-row__copy > p {
    max-width: none;
  }

  .benefit-row__copy {
    order: 1;
  }

  .benefit-row__media {
    order: 2;
  }
}

.shot-wrap {
  max-width: 560px;
}

.shot-wrap--center {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Coach portal spotlight
   -------------------------------------------------------------------------- */
.portal-spotlight {
  background: var(--color-background);
}

.portal-spotlight__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 992px) {
  .portal-spotlight__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.portal-spotlight__copy p {
  max-width: 44ch;
}

/* --------------------------------------------------------------------------
   Feature cards
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 123, 223, 0.28);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 123, 223, 0.08);
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: #6a6f73;
}

/* --------------------------------------------------------------------------
   Marketing band
   -------------------------------------------------------------------------- */
.marketing-band {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 203, 255, 0.15), transparent 50%),
    linear-gradient(135deg, #f4faff, #fff);
  border-block: 1px solid rgba(223, 224, 224, 0.7);
}

.marketing-band__inner {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

.marketing-band__inner p {
  max-width: 54ch;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing {
  background: var(--color-background);
}

.pricing-period {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.pricing-period-micro {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #7a7f83;
}

.pricing-grid {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
  max-width: 1220px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;
  }
}

.plan-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1.85rem 1.7rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(20, 22, 24, 0.1);
}

.plan-card--featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .plan-card--featured {
    transform: translateY(-8px);
  }
  .plan-card--featured:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 991.98px) {
  .plan-card--featured {
    order: -1;
  }
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card__name {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.plan-card__concept {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin: 0 0 0.55rem;
}

.plan-card__desc {
  font-size: 0.95rem;
  color: #6a6f73;
  margin-bottom: 1.1rem;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  margin-bottom: 0.15rem;
}

.plan-card__currency {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-dark);
}

.plan-card__amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--color-dark);
  line-height: 1;
}

.plan-card__period-inline {
  font-size: 0.95rem;
  color: #7a7f83;
  font-weight: 700;
}

.plan-card__period {
  font-size: 0.9375rem;
  color: #7a7f83;
  margin: 0 0 0.35rem;
}

.plan-card__usd {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.85rem;
}

.plan-card__pitch {
  font-size: 0.92rem;
  color: var(--color-text);
  margin: 0 0 0.55rem;
  line-height: 1.45;
}

.plan-card__pitch--soft {
  color: #6a6f73;
  margin-bottom: 0.75rem;
}

.plan-card__capacity {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 123, 223, 0.08);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.plan-card__note {
  font-size: 0.8125rem;
  color: #8a9096;
  margin-bottom: 1.25rem;
}

.plan-card__divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.85rem 0 1.05rem;
}

.plan-card__list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  flex: 1;
}

.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.plan-card__list .bi-check-circle-fill {
  color: var(--color-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.plan-card__list .bi-x-circle {
  color: #b0b5b9;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.plan-card__list li.is-muted {
  color: #8a9096;
}

.plan-card__micro {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #8a9096;
  text-align: center;
  margin-bottom: 0;
}

/* Comparison table */
.plan-compare {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  max-width: 980px;
  margin-inline: auto;
}

.plan-compare__title {
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: 1.25rem;
}

.plan-compare__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.plan-compare__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.plan-compare__table th,
.plan-compare__table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  vertical-align: middle;
}

.plan-compare__table thead th {
  background: #f4f8fb;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.85rem;
  white-space: nowrap;
}

.plan-compare__table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-white);
  white-space: nowrap;
}

.plan-compare__table tbody tr:last-child th,
.plan-compare__table tbody tr:last-child td {
  border-bottom: 0;
}

.cmp-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 123, 223, 0.1);
  color: var(--color-primary);
  font-size: 1rem;
}

.cmp-no {
  color: #a0a6ab;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan-compare__footnote {
  margin: 0.9rem 0 0;
  font-size: 0.8125rem;
  color: #8a9096;
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--color-white);
}

.faq .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-dark);
  background: var(--color-white);
  box-shadow: none !important;
  padding: 1.1rem 1.25rem;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: rgba(0, 123, 223, 0.04);
}

.faq .accordion-button::after {
  background-size: 1rem;
}

.faq .accordion-body {
  padding: 0 1.25rem 1.2rem;
  color: var(--color-text);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
}

.final-cta .section-title {
  max-width: 20ch;
  margin-inline: auto;
}

.final-cta .section-lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ed-footer {
  background: var(--color-dark-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 3.5rem 2rem;
}

.ed-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.ed-footer a:hover {
  color: var(--color-white);
}

.ed-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .ed-footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.ed-footer__brand .ed-brand {
  color: var(--color-white);
  margin-bottom: 0.85rem;
}

.ed-footer__brand .ed-brand__text span {
  color: var(--color-secondary);
}

.ed-footer__tagline {
  max-width: 28ch;
  font-size: 0.95rem;
  margin: 0;
}

.ed-footer h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.ed-footer__col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.95rem;
}

.ed-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   WhatsApp float (hidden while number pending)
   -------------------------------------------------------------------------- */
.wa-float {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.wa-float.is-enabled {
  display: inline-flex;
}

.wa-float:hover {
  color: #fff;
  filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   Reveal (optional, respects reduced motion)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
