
/* ══════════════════════════════════════
   PILLAR NAV — sticky tabs
══════════════════════════════════════ */
.pillar-nav {
  position: sticky;
  top: 62px;
  z-index: 400;
  background: rgba(8,8,16,.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}

.pillar-tab {
  padding: 18px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: .2px;
}
.pillar-tab:hover { color: var(--text-primary); }
.pillar-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--signal);
}

.tab-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--void-3);
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pillar-tab.active .tab-num { background: var(--signal); color: #fff; }

/* ══════════════════════════════════════
   PILLAR SECTION base
══════════════════════════════════════ */
.pillar {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.pillar--1 { background: var(--void); }
.pillar--2 { background: var(--void-2); }
.pillar--3 { background: var(--void-3); }

/* ─── PILLAR HEADER ─── */
/*
  Layout: columna izquierda 60% con todo el contenido
  eyebrow → título → subtítulo → stats en fila
  Sin columna de stats separada — integrado en el flujo
*/
.pillar__header {
  padding: 80px 80px 72px;
  border-bottom: 1px solid var(--bd);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pillar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--signal);
}

.pillar__eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: -4px;
  line-height: 0.97;
  margin-bottom: 24px;
  color: #fff;
  max-width: 900px;
}
.pillar__title em { font-style: italic; color: var(--signal); }

.pillar__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
  text-align: center;
}

/* Stats — fila horizontal de datos */
.pillar__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--bd);
  width: fit-content;
  margin: 0 auto;
}

.p-stat {
  padding: 28px 52px 0 52px;
  border-right: 1px solid var(--bd);
  min-width: 140px;
  text-align: center;
}
.p-stat:last-child { border-right: none; }


.p-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  letter-spacing: -4px;
  line-height: 1;
  color: var(--signal);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.p-stat__unit {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.p-stat__label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
  text-align: center;
}

/* ══════════════════════════════════════
   SUB-FEATURE rows
══════════════════════════════════════ */
.sub-feats { display: flex; flex-direction: column; }

.sf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--bd);
}

.sf__copy {
  padding: 64px 60px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pillar--1 .sf__copy { background: var(--void); }
.pillar--2 .sf__copy { background: var(--void-2); }
.pillar--3 .sf__copy { background: var(--void-3); }

/* Número fantasma de fondo */
.sf__copy::before {
  content: attr(data-n);
  position: absolute;
  bottom: -24px; right: -8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 160px;
  letter-spacing: -12px;
  line-height: 1;
  color: rgba(255,255,255,0.028);
  pointer-events: none;
  user-select: none;
}

.sf__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

/* Línea naranja antes del h3 */
.sf__copy h3::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--signal);
  border-radius: 2px;
  margin-bottom: 14px;
}

.sf__copy p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 380px;
}

.sf__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 48px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--bd);
}
.pillar--1 .sf__visual { background: var(--void-2); }
.pillar--2 .sf__visual { background: var(--void-3); }
.pillar--3 .sf__visual { background: var(--void-2); }

/* Glow sutil detrás del mockup */
.sf__visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Alternate: visual izq, copy der */
.sf--alt .sf__copy {
  order: 2;
  padding-left: 64px;
  padding-right: 80px;
  border-left: 1px solid var(--bd);
}
.sf--alt .sf__visual { order: 1; border-left: none; }

/* ══════════════════════════════════════
   UI CARDS (inside sf__visual)
══════════════════════════════════════ */
.ui-card {
  background: var(--void-3);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 56px rgba(0,0,0,.55);
}

.ui-card--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 24px;
}

.uic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.uic-title {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* conversation inside card */
.conv { display: flex; flex-direction: column; gap: 7px; }

.conv-u, .conv-a {
  padding: 9px 12px;
  font-size: 11.5px;
  line-height: 1.5;
}
.conv-u {
  background: rgba(255,77,0,.1);
  border: 1px solid rgba(255,77,0,.18);
  border-radius: 3px 12px 12px 3px;
  color: rgba(255,255,255,.8);
  align-self: flex-end;
  max-width: 88%;
}
.conv-a {
  background: rgba(0,229,160,.07);
  border: 1px solid rgba(0,229,160,.18);
  border-radius: 12px 3px 3px 12px;
  color: rgba(255,255,255,.75);
  align-self: flex-start;
  max-width: 88%;
}
.conv-lbl {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.conv-u .conv-lbl { color: var(--signal-l); }
.conv-a .conv-lbl { color: var(--pulse); }

/* CRM fields card */
.crm-fields { display: flex; flex-direction: column; }
.crm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 12px;
}
.crm-row:last-child { border-bottom: none; }
.crm-key { color: var(--text-secondary); }
.crm-val { font-weight: 500; }

/* Pipeline mini card */
.mini-pipeline { display: flex; gap: 6px; width: 100%; }
.mini-col { flex: 1; }
.mini-col-head {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 3px;
  text-align: center;
  letter-spacing: .3px;
  margin-bottom: 5px;
}
.mch-new  { background: rgba(255,77,0,.15);  color: var(--signal-l); }
.mch-prop { background: rgba(0,212,255,.12);  color: var(--sky); }
.mch-neg  { background: rgba(139,92,246,.12); color: #A78BFA; }
.mch-won  { background: rgba(0,229,160,.1);   color: var(--pulse); }

.mini-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--bd);
  border-radius: 4px;
  padding: 6px 7px;
  font-size: 9px;
}
.mc-name { font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 1px; }
.mc-val  { color: var(--text-secondary); }
.mc-bar  { height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; margin-top: 4px; }
.mc-fill { height: 100%; border-radius: 1px; }

/* Insights card */
.insight-rows { display: flex; flex-direction: column; }
.ins-bar-row { padding: 9px 0; border-bottom: 1px solid var(--bd); }
.ins-bar-row:last-child { border-bottom: none; }
.ins-bar-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-secondary);
  margin-bottom: 5px;
}
.ins-bar-track { height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; }
.ins-bar-fill  { height: 100%; border-radius: 2px; }

.ins-alert {
  margin-top: 12px;
  padding: 8px 10px;
  background: rgba(255,77,0,.07);
  border: 1px solid rgba(255,77,0,.14);
  border-radius: 6px;
  font-size: 11px;
  color: var(--signal-l);
}

/* Coaching leaderboard */
.rep-list { display: flex; flex-direction: column; }
.rep-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--bd);
}
.rep-row:last-child { border-bottom: none; }
.rep-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.rep-info { flex: 1; }
.rep-name { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,.8); }
.rep-bar-wrap { height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; margin-top: 3px; width: 100%; }
.rep-bar-fill { height: 100%; border-radius: 1px; }
.rep-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -1px;
}

/* ══════════════════════════════════════
   CUSTOMERS BAND
══════════════════════════════════════ */
.customers {
  background: var(--void-2);
  padding: 72px 80px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.customers__label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 44px;
}
.customers__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cust-chip {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bd);
  border-radius: 6px;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.22);
  letter-spacing: -.3px;
  transition: all var(--transition);
}
.cust-chip:hover {
  color: rgba(255,255,255,.55);
  border-color: var(--bd-2);
  background: rgba(255,255,255,.06);
}

/* ══════════════════════════════════════
   TESTIMONIALS CAROUSEL
══════════════════════════════════════ */
.testi-section {
  background: var(--void);
  padding: 120px 0 120px;
  overflow: hidden;
}
.testi-section__head {
  padding: 0 80px;
  margin-bottom: 64px;
  text-align: center;
}

.testi-track-outer { overflow: hidden; }

.testi-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-testi 45s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }

@keyframes scroll-testi {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--void-2);
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: var(--bd-2); }

.testi-card::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--signal);
  border-radius: 2px;
  margin-bottom: 16px;
}

.testi-card__stars { color: var(--signal); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card__q {
  font-size: 13.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}
.testi-card__author { display: flex; align-items: center; gap: 10px; }
.testi-card__av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.testi-card__name { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.testi-card__role { font-size: 11px; color: var(--text-secondary); }

/* ══════════════════════════════════════
   GLOBAL METRICS
══════════════════════════════════════ */
.global-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 0;
  overflow: hidden;
}

.gm {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 52px 48px;
  position: relative;
  transition: background var(--transition);
}
.gm:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--bd);
}
.gm:hover { background: rgba(255,77,0,0.03); }

.gm__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 5.5vw, 76px);
  letter-spacing: -5px;
  line-height: 1;
  flex-shrink: 0;
}
.gm__num--orange { color: var(--signal); }
.gm__num--green  { color: var(--signal); }
.gm__num--blue   { color: var(--signal); }
.gm__num--white  { color: rgba(255,255,255,0.9); }

.gm__label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 120px;
}

/* ══════════════════════════════════════
   INTEGRATIONS
══════════════════════════════════════ */
.integrations {
  background: var(--void-3);
  padding: 120px 80px;
  text-align: center;
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  margin-top: 64px;
}
.int-card {
  background: var(--void-2);
  border: 1px solid var(--bd);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all var(--transition);
}
.int-card:hover {
  border-color: var(--bd-2);
  background: rgba(255,255,255,.03);
  transform: translateY(-2px);
}
.int-card__ico  { font-size: 26px; margin-bottom: 9px; }
.int-card__name { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: rgba(255,255,255,.55); }
.int-card__type { font-size: 10px; color: var(--text-secondary); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

/* ══════════════════════════════════════
   RESPONSIVE — full cascade
══════════════════════════════════════ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .pillar__header { padding-left: 56px; padding-right: 56px; }
  .sf__copy     { padding-left: 56px; }
  .sf--alt .sf__copy { padding-right: 56px; padding-left: 48px; }
  .home-pricing { padding: 100px 56px; }
  .integrations { padding: 100px 56px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .pillar-nav { padding: 0 32px; overflow-x: auto; white-space: nowrap; }

  /* Pillar header */
  .pillar__header { padding: 48px 32px 40px; max-width: 100%; }
  .pillar__sub { max-width: 100%; margin-bottom: 36px; }
  .pillar__stats { width: 100%; }
  .p-stat { flex: 1; padding: 24px 32px 0 0; margin-right: 32px; padding-right: 32px; }
  .p-stat:last-child { margin-right: 0; border-right: none; }

  /* Sub-feature rows */
  .sf { grid-template-columns: 1fr; }
  .sf__copy { padding: 44px 32px; }
  .sf__copy::before { font-size: 110px; }
  .sf--alt .sf__copy { order: 0; border-left: none; padding: 44px 32px; }
  .sf--alt .sf__visual { order: 1; }
  .sf__visual { border-left: none; border-top: 1px solid var(--bd); min-height: 260px; padding: 36px; }

  /* Global metrics */
  .global-metrics { flex-wrap: wrap; }
  .gm { flex: 1 1 50%; min-width: 50%; }
  .gm:nth-child(2)::after { display: none; }

  /* Testimonials */
  .testi-section__head { padding: 0 32px; }
  /* Integrations */
  .integrations { padding: 80px 32px; }
  .int-grid { grid-template-columns: repeat(3,1fr); }
  /* Pricing */
  .home-pricing { padding: 80px 32px; }
  .hp-plans { grid-template-columns: 1fr; overflow: hidden; }
  .hp-plan {
    border-right: none;
    border-bottom: 1px solid var(--bd);
    border-radius: 0 !important;
  }
  .hp-plan:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; }
  .hp-plan:last-child  { border-bottom: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important; }
  .hp-plan--hot { border-left: none; border-right: none; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .pillar__header { padding: 36px 24px 32px; }
  .pillar__title { letter-spacing: -2px; }
  .p-stat { padding: 20px 24px 20px 0; margin-right: 24px; padding-right: 24px; min-width: 110px; }
  .p-stat__num { font-size: 36px; letter-spacing: -2px; }
  .p-stat__unit { font-size: 18px; }
  .sf__copy { padding: 36px 20px; }
  .sf--alt .sf__copy { padding: 36px 20px; }
  .sf__copy h3 { font-size: 19px; }
  .sf__copy::before { display: none; }

  .global-metrics { flex-wrap: wrap; }
  .gm { flex: 1 1 50%; padding: 36px 28px; }
  .gm__num { font-size: 52px; letter-spacing: -4px; }

  .hero { min-height: auto; padding: 80px 24px 48px; }
  .hero__right { display: none; }
  .hero__title { font-size: clamp(42px, 10vw, 64px); }

  .home-pricing { padding: 64px 24px; }
  .integrations { padding: 64px 24px; }
  .int-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .pillar-tab  { padding: 12px; font-size: 11px; }
  .pillar__copy { padding: 32px 20px; }
  .p-stat { padding: 20px 20px; }
  .p-stat__num { font-size: 44px; letter-spacing: -3px; }

  .global-metrics { flex-direction: column; }
  .gm { flex: none; width: 100%; padding: 28px 20px; }
  .gm:not(:last-child)::after { display: none; }
  .gm:not(:last-child) { border-bottom: 1px solid var(--bd); }
  .gm__num { font-size: 52px; }

  .int-grid { grid-template-columns: repeat(2,1fr); }
  .int-card  { padding: 20px 12px; }
  .testi-card { width: 260px; padding: 24px 20px; }

  .hp-plan { padding: 28px 20px; }
  .hp-plan__amount { font-size: 42px; }

  .band__item { font-size: 11px; padding: 0 18px; }
}

/* ══════════════════════════════════════
   HOME PRICING — 3 planes
══════════════════════════════════════ */
.home-pricing {
  background: var(--void);
  padding: 130px 80px;
  position: relative;
  overflow: hidden;
}

.hp-bg-glow {
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hp-inner { position: relative; z-index: 1; }

.hp-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.hp-head .section-sub { margin-bottom: 0; }

.hp-toggle {
  display: flex;
  gap: 4px;
  background: var(--void-2);
  border: 1px solid var(--bd);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 56px;
}

.hp-toggle-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-toggle-btn--active {
  background: var(--signal);
  color: #fff;
}

.hp-save-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(0,229,160,0.15);
  color: var(--pulse);
  border: 1px solid rgba(0,229,160,0.25);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}

.hp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--bd);
  border-radius: var(--radius-lg);
  overflow: visible;        /* allow badge to overflow top */
  margin-top: 24px;         /* space for the badge */
}

.hp-plan {
  background: var(--void-2);
  border: none;
  border-right: 1px solid var(--bd);
  border-radius: 0;
  padding: 44px 36px 40px;
  position: relative;
  transition: background var(--transition);
}
.hp-plan:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.hp-plan:last-child  { border-right: none; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.hp-plan:hover { background: var(--void-3); }

.hp-plan--hot {
  background: var(--void-3);
  border-right: 1px solid rgba(255,77,0,0.3);
  border-left: 1px solid rgba(255,77,0,0.3);
}
.hp-plan--hot::before {
  content: '';
  position: absolute;
  top: 0; left: -1px; right: -1px;
  height: 2px;
  background: var(--signal);
  border-radius: 2px 2px 0 0;
}

.hp-plan--hot:hover { background: rgba(255,77,0,0.04); }

.hp-plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--signal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 1;
}

.hp-plan__name {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.hp-plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
  line-height: 1;
}

.hp-plan__currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

.hp-plan__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -3.5px;
  color: #fff;
  line-height: 1;
}

.hp-plan__amount--text {
  font-size: 32px;
  letter-spacing: -2px;
}

.hp-plan__period {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hp-plan__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  min-height: 56px;
}

.hp-plan__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  margin-bottom: 28px;
  border: none;
}

.hp-plan__btn--primary {
  background: var(--signal);
  color: #fff;
}
.hp-plan__btn--primary:hover {
  background: var(--signal-l);
  box-shadow: 0 8px 28px rgba(255,77,0,0.4);
  transform: translateY(-1px);
}

.hp-plan__btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid var(--bd-2);
}
.hp-plan__btn--outline:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: var(--bd-3);
}

.hp-plan__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--bd);
  padding-top: 20px;
}

.hp-plan__feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.hp-chk {
  color: var(--pulse);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hp-chk--off { color: rgba(255,255,255,0.2); }
.hp-plan__feats li:has(.hp-chk--off) { opacity: 0.45; }

.hp-note {
  text-align: center;
  margin-top: 44px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hp-note a {
  color: var(--signal-l);
  text-decoration: none;
}
.hp-note a:hover { text-decoration: underline; }

@media (max-width: 1200px) {
  .hp-plans { grid-template-columns: repeat(2, 1fr); }
  .hp-plan--hot { transform: none; }
  .hp-plan--hot:hover { transform: translateY(-3px); }
}

@media (max-width: 1024px) {
  .home-pricing { padding: 80px 32px; }
}

@media (max-width: 680px) {
  .hp-plans { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   HOW-IT-WORKS — homepage override
══════════════════════════════════════ */
.how__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.how__head .section-sub {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   FAQ — homepage
══════════════════════════════════════ */
.faq-home {
  background: var(--void-2);
  padding: 120px 80px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}

.faq-home__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-home__head {
  position: sticky;
  top: 100px;
}

.faq-home__head .section-title { margin-bottom: 4px; }

.faq-home__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--bd);
}
.faq-item:first-child { border-top: 1px solid var(--bd); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--signal); }
.faq-q[aria-expanded="true"] { color: var(--signal); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--signal);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-home { padding: 80px 32px; }
  .faq-home__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-home__head { position: static; }
}
@media (max-width: 768px) {
  .faq-home { padding: 64px 24px; }
  .how { padding: 64px 24px; }
  .how__head { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .faq-home { padding: 48px 20px; }
  .faq-q { font-size: 14px; padding: 18px 0; }
}
