/* =====================================================
   HOME.CSS — Ascend Life Partners
   Rediseño radical · Confianza Cálida
   navy #1B3A5B · crema #F7F3EC · dorado #C9962E
   Fraunces (headings) + Inter (body)
   ===================================================== */

:root {
  --navy:   #1B3A5B;
  --navy2:  #0F2244;
  --cream:  #F7F3EC;
  --cream2: #EDE8DE;
  --gold:   #C9962E;
  --gold2:  #E8B84B;
  --muted:  #56708A;
  --line:   rgba(201,150,46,0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: 'Fraunces', Georgia, serif; margin: 0; }
p { margin: 0; }

/* Scroll progress */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 9999;
  transition: width .08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* Container */
.h-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.h-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 700; font-family: 'Inter', sans-serif;
  text-decoration: none; cursor: pointer; border: none;
  white-space: nowrap; transition: all .22s ease;
}
.h-btn--lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }

.h-btn--gold {
  background: linear-gradient(135deg, var(--gold), #A87520);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,150,46,.35);
}
.h-btn--gold:hover { box-shadow: 0 8px 32px rgba(201,150,46,.50); transform: translateY(-2px); }

.h-btn--navy {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(27,58,91,.28);
}
.h-btn--navy:hover { box-shadow: 0 8px 32px rgba(27,58,91,.40); transform: translateY(-2px); }

.h-btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(27,58,91,.28);
}
.h-btn--ghost:hover { background: rgba(27,58,91,.05); border-color: rgba(27,58,91,.50); }

.h-btn--ghost-light {
  background: rgba(255,255,255,.10); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.h-btn--ghost-light:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.60);
  transform: translateY(-2px);
}

/* =====================================================
   NAV
   ===================================================== */
.h-nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(247,243,236,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.h-nav-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.h-nav-logo img { height: 68px; width: auto; display: block; }
.h-nav-links { display: flex; gap: 4px; margin-left: auto; }
.h-nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: background .2s, color .2s;
}
.h-nav-link:hover { background: rgba(201,150,46,.08); color: var(--gold); }
.h-nav-link--subtle { color: var(--muted); font-size: 13px; }
.h-nav-actions { display: flex; gap: 10px; align-items: center; margin-left: 12px; }

/* Hamburger */
.h-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid var(--line);
  border-radius: 8px; cursor: pointer; padding: 9px 11px; margin-left: auto;
}
.h-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.h-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.h-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.h-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.h-mobile-menu {
  display: none; flex-direction: column; gap: 6px;
  padding: 12px 16px 16px; background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(27,58,91,.12);
}
.h-mobile-menu.open { display: flex; }
.h-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid rgba(27,58,91,.10); background: var(--cream);
  color: var(--navy); font-size: 14px; font-weight: 600;
  transition: all .18s;
}
.h-mobile-link::after { content: '›'; font-size: 18px; color: rgba(27,58,91,.35); font-weight: 400; }
.h-mobile-link:hover { background: rgba(201,150,46,.06); border-color: rgba(201,150,46,.40); color: var(--gold); }
.h-mobile-link--cta {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff !important; border-color: transparent !important; margin-top: 4px;
}
.h-mobile-link--cta::after { color: rgba(255,255,255,.55); }
.h-mobile-link--cta:hover { box-shadow: 0 4px 16px rgba(27,58,91,.30); }

/* =====================================================
   HERO — full bleed navy
   ===================================================== */
.h-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2848 55%, var(--navy2) 100%);
  padding: 100px 24px 88px; overflow: hidden; text-align: center;
}
.h-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(201,150,46,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201,150,46,.12) 0%, transparent 45%);
  pointer-events: none;
}
.h-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

.h-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(201,150,46,.16); border: 1px solid rgba(201,150,46,.40);
  color: var(--gold2); font-size: 13px; font-weight: 700; letter-spacing: .3px;
  margin-bottom: 24px;
}
.h-hero-title {
  font-size: clamp(40px, 6.5vw, 76px); font-weight: 900;
  color: #fff; line-height: 1.04; margin-bottom: 20px; letter-spacing: -2px;
}
.h-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-hero-sub {
  font-size: 19px; color: rgba(255,255,255,.78);
  line-height: 1.65; max-width: 540px; margin: 0 auto 36px;
}
.h-hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }

.h-hero-trust { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.h-trust-pill {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
}

/* =====================================================
   CARRIERS STRIP
   ===================================================== */
.h-carriers {
  background: #fff;
  border-bottom: 1px solid rgba(201,150,46,.12);
  padding: 28px 24px;
}
.h-carriers-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.h-carriers-label {
  font-size: 11px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 20px;
}
.h-carriers-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 36px;
}
.h-carriers-logos img {
  height: 48px; width: auto; max-width: 130px; object-fit: contain;
  opacity: .80; transition: opacity .25s, transform .25s;
}
.h-carriers-logos img:hover { opacity: 1; transform: scale(1.06); }

/* =====================================================
   PROBLEM STATEMENT
   ===================================================== */
.h-problem {
  background: var(--cream);
  padding: 96px 24px; text-align: center; position: relative;
}
.h-problem::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
}
.h-problem-inner { max-width: 760px; margin: 0 auto; }
.h-problem-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin: 0 0 20px; display: block;
}
.h-problem-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 4.5vw, 48px); font-weight: 700; font-style: italic;
  color: var(--navy); line-height: 1.28; margin: 0 0 28px;
  border: none; padding: 0;
}
.h-problem-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 580px; margin: 0 auto 36px;
}

/* =====================================================
   SECTIONS — shared
   ===================================================== */
.h-section          { padding: 96px 24px; background: var(--cream); }
.h-section--dark    { background: linear-gradient(135deg, var(--navy) 0%, #0d2848 100%); }
.h-section--alt     { background: var(--cream2); }

.h-section-header   { text-align: center; margin-bottom: 56px; }

.h-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(201,150,46,.08); border: 1px solid rgba(201,150,46,.28);
  color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .3px;
  margin-bottom: 14px;
}
.h-eyebrow--light {
  background: rgba(201,150,46,.15); border-color: rgba(201,150,46,.40); color: var(--gold2);
}

.h-section-title {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 900;
  color: var(--navy); line-height: 1.12; margin-bottom: 14px; letter-spacing: -.8px;
}
.h-section-title em  { font-style: normal; color: var(--gold); }
.h-section-title--light { color: #fff; }
.h-section-title--light em { color: var(--gold2); }

.h-section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.h-section-sub--light { color: rgba(255,255,255,.68); }

/* =====================================================
   PRODUCTS
   ===================================================== */
.h-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.h-product-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(201,150,46,.13);
  box-shadow: 0 4px 20px rgba(27,58,91,.06);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.h-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(27,58,91,.14); }
.h-product-header {
  position: relative; padding: 32px 24px 28px; min-height: 115px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.h-product-icon { font-size: 46px; line-height: 1; }
.h-product-badge {
  padding: 5px 12px; background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.30); border-radius: 999px;
  color: #fff; font-size: 12px; font-weight: 700;
}
.h-product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.h-product-body h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.h-product-body p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.h-product-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 8px;
  background: rgba(201,150,46,.08); border: 1px solid rgba(201,150,46,.24);
  color: var(--navy); font-size: 13px; font-weight: 700; transition: all .2s;
}
.h-product-link:hover { background: var(--navy); color: #fff; border-color: transparent; }

/* CTA card */
.h-product-card--cta {
  background: linear-gradient(135deg, rgba(201,150,46,.05), rgba(201,150,46,.10));
  border: 2px dashed rgba(201,150,46,.35);
  align-items: center; justify-content: center;
}
.h-product-cta-inner { text-align: center; padding: 36px 24px; }
.h-product-cta-headline {
  font-size: 20px; font-weight: 700; color: var(--gold); margin: 12px 0 8px;
}
.h-product-cta-sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }

/* =====================================================
   PROCESS (dark section)
   ===================================================== */
.h-steps {
  display: flex; align-items: flex-start;
  gap: 0; margin-bottom: 48px;
}
.h-step { flex: 1; text-align: center; padding: 0 16px; }
.h-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #A87520);
  color: #fff; font-family: 'Fraunces', Georgia, serif;
  font-size: 22px; font-weight: 900; margin-bottom: 18px;
  box-shadow: 0 6px 22px rgba(201,150,46,.42);
}
.h-step-content h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.h-step-content p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.6; }
.h-step-connector {
  flex: 0 0 40px; height: 2px;
  background: linear-gradient(90deg, rgba(201,150,46,.6), rgba(201,150,46,.2));
  margin-top: 29px;
}
.h-step-cta { text-align: center; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.h-testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.h-testimonial {
  background: #fff; border-radius: 18px; padding: 28px;
  border: 1px solid rgba(201,150,46,.13);
  box-shadow: 0 4px 20px rgba(27,58,91,.06);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 16px;
}
.h-testimonial:hover { transform: translateY(-6px); box-shadow: 0 16px 42px rgba(27,58,91,.12); }
.h-testimonial-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.h-testimonial-text { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; flex: 1; }
.h-testimonial-author { display: flex; align-items: center; gap: 12px; }
.h-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #244d76);
  color: #fff; font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.h-testimonial-author strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.h-testimonial-author span { font-size: 12px; color: var(--muted); }

/* =====================================================
   FAQ
   ===================================================== */
.h-faq-grid { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }

.h-faq-item {
  background: #fff; border: 1.5px solid rgba(201,150,46,.15); border-radius: 14px;
  overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.h-faq-item[open] {
  border-color: rgba(201,150,46,.42);
  box-shadow: 0 4px 20px rgba(27,58,91,.08);
}
.h-faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-size: 15px; font-weight: 700;
  color: var(--navy); list-style: none; user-select: none;
}
.h-faq-item summary::-webkit-details-marker { display: none; }
.h-faq-item summary::after {
  content: '+'; font-size: 24px; font-weight: 300; color: var(--gold);
  transition: transform .25s; flex-shrink: 0; margin-left: 12px;
}
.h-faq-item[open] summary::after { content: '–'; }

.h-faq-body { padding: 0 22px 18px; border-top: 1px solid rgba(201,150,46,.13); }
.h-faq-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 14px; }

/* =====================================================
   CTA FINAL
   ===================================================== */
.h-cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.h-cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,150,46,.20), transparent 60%);
  pointer-events: none;
}
.h-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.h-cta-title {
  font-size: clamp(32px, 5.5vw, 58px); font-weight: 900; color: #fff;
  margin-bottom: 16px; letter-spacing: -1.2px; line-height: 1.1;
}
.h-cta-sub { font-size: 18px; color: rgba(255,255,255,.76); max-width: 480px; margin: 0 auto 40px; line-height: 1.65; }
.h-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.h-cta-note { font-size: 13px; color: rgba(255,255,255,.42); }

/* =====================================================
   FOOTER
   ===================================================== */
.h-footer { background: #0b1d31; color: rgba(255,255,255,.68); padding: 60px 24px 32px; }
.h-footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; padding-bottom: 48px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.h-footer-brand img { height: 60px; width: auto; opacity: .85; display: block; }
.h-footer-brand p { font-size: 14px; color: rgba(255,255,255,.44); margin-top: 12px; line-height: 1.6; }
.h-footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.h-footer-col { display: flex; flex-direction: column; gap: 10px; }
.h-footer-col strong {
  color: var(--gold2); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.h-footer-col a, .h-footer-col span { font-size: 13px; color: rgba(255,255,255,.48); transition: color .2s; line-height: 1.5; }
.h-footer-col a:hover { color: var(--gold2); }
.h-footer-bottom { max-width: 1140px; margin: 0 auto; text-align: center; }
.h-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.32); margin-bottom: 4px; }

/* =====================================================
   FAB WHATSAPP
   ===================================================== */
.h-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: #25d366; color: #fff; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  transition: all .3s; animation: fabFloat 2.8s ease-in-out infinite;
}
.h-fab:hover { box-shadow: 0 10px 32px rgba(37,211,102,.58); }
.h-fab-icon { font-size: 22px; line-height: 1; }
.h-fab small { display: block; font-size: 11px; opacity: .88; line-height: 1; }
.h-fab span { display: block; font-size: 14px; line-height: 1.2; }
@keyframes fabFloat {
  0%,100% { transform: translateY(0); box-shadow: 0 6px 24px rgba(37,211,102,.42); }
  50%      { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(37,211,102,.58); }
}

/* =====================================================
   REVEAL
   ===================================================== */
.h-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.h-reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   MOBILE — 768px
   ===================================================== */
@media (max-width: 768px) {
  /* Evitar que cualquier botón se desborde horizontalmente en móvil */
  .h-btn { max-width: 100%; box-sizing: border-box; white-space: normal; text-align: center; }

  .h-nav-links, .h-nav-actions { display: none; }
  .h-hamburger { display: flex; }

  .h-hero { padding: 72px 20px 60px; }
  .h-hero-title { letter-spacing: -.8px; }
  .h-hero-ctas { flex-direction: column; align-items: stretch; }
  .h-hero-ctas .h-btn { width: 100%; justify-content: center; }

  .h-section, .h-section--dark, .h-section--alt, .h-problem { padding: 64px 20px; }
  .h-cta-final { padding: 72px 20px; }
  .h-section-header { margin-bottom: 36px; }

  .h-products-grid { grid-template-columns: 1fr; }

  .h-steps { flex-direction: column; align-items: center; gap: 24px; }
  .h-step-connector { width: 2px; height: 28px; flex: 0 0 28px; margin: 0; }

  .h-testimonials-grid { grid-template-columns: 1fr; }

  .h-cta-buttons { flex-direction: column; align-items: stretch; }
  .h-cta-buttons .h-btn { width: 100%; justify-content: center; }

  .h-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .h-footer-links { grid-template-columns: 1fr 1fr; }

  .h-carriers-logos { gap: 20px; }
  .h-carriers-logos img { height: 36px; }

  .h-fab-text { display: none; }
  .h-fab { padding: 14px; }
}

@media (max-width: 1000px) {
  .h-products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 375px) {
  .h-footer-links { grid-template-columns: 1fr; }
  .h-hero-trust { flex-direction: column; align-items: center; }
}

/* =====================================================
   QUIÉNES SOMOS (index)
   ===================================================== */
.h-about-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.h-about-card {
  background: #fff; border-radius: 18px; padding: 28px 22px;
  border: 1.5px solid rgba(201,150,46,.13);
  box-shadow: 0 4px 18px rgba(27,58,91,.06);
  text-align: center; transition: transform .28s, box-shadow .28s;
}
.h-about-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,58,91,.12); }
.h-about-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.h-about-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.h-about-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px)  { .h-about-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .h-about-grid { grid-template-columns: 1fr; } }

/* =====================================================
   SALES — Hero extras
   ===================================================== */
.s-urgency-bar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 999px;
  background: rgba(201,150,46,.16); border: 1px solid rgba(201,150,46,.38);
  color: var(--gold2); font-size: 13px; font-weight: 700;
  margin-bottom: 24px;
  animation: sPulse 2.2s ease-in-out infinite;
}
.s-blink { animation: sBlink 1s step-end infinite; }
@keyframes sBlink { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes sPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,150,46,.28); }
  50%      { box-shadow: 0 0 0 10px rgba(201,150,46,0); }
}

.s-hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-top: 44px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
}
.s-stat { text-align: center; }
.s-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px; font-weight: 900; color: #fff; line-height: 1;
}
.s-stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 600; }
.s-stat-divider { width: 1px; height: 42px; background: rgba(255,255,255,.15); }

/* SALES — Problem card */
.s-problem-card {
  display: flex; align-items: flex-start; gap: 28px;
  max-width: 860px; margin: 0 auto;
  background: #fff; border-radius: 20px; padding: 36px 40px;
  border: 1.5px solid rgba(201,150,46,.16);
  box-shadow: 0 8px 36px rgba(27,58,91,.07);
}
.s-problem-icon { font-size: 56px; line-height: 1; flex-shrink: 0; }
.s-problem-body h2 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.s-problem-body p  { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* SALES — Products simple */
.s-products-simple {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.s-product-simple {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border-radius: 16px; padding: 22px 24px;
  border: 1.5px solid rgba(201,150,46,.12);
  box-shadow: 0 4px 16px rgba(27,58,91,.05);
  transition: transform .25s, box-shadow .25s;
}
.s-product-simple:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(27,58,91,.12); }
.s-product-icon {
  width: 58px; height: 58px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.s-product-simple h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.s-product-simple p  { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.s-product-tag {
  display: inline-flex; padding: 4px 10px; border-radius: 999px;
  background: rgba(201,150,46,.10); border: 1px solid rgba(201,150,46,.25);
  color: var(--gold); font-size: 11px; font-weight: 700;
}

/* CTA tag in sales */
.s-cta-tag {
  display: inline-flex; padding: 8px 18px; border-radius: 999px;
  background: rgba(201,150,46,.18); border: 1px solid rgba(201,150,46,.38);
  color: var(--gold2); font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
}

/* =====================================================
   RECRUIT — Hero (2-col dark)
   ===================================================== */
.r-hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2848 55%, var(--navy2) 100%);
  padding: 80px 24px 72px; overflow: hidden;
}
.r-hero-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201,150,46,.18), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(201,150,46,.10), transparent 45%);
  pointer-events: none;
}
.r-hero-grid {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.r-hero-kicker {
  display: inline-flex; padding: 6px 14px; border-radius: 999px;
  background: rgba(201,150,46,.16); border: 1px solid rgba(201,150,46,.35);
  color: var(--gold2); font-size: 12px; font-weight: 700;
  margin-bottom: 18px;
}
.r-hero-thought { font-style: italic; color: rgba(255,255,255,.70); font-size: 17px; margin-bottom: 14px; }
.r-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.8vw, 50px); font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -1px; margin-bottom: 18px;
}
.r-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.r-hero-sub { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 10px; }
.r-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.r-benefit-pill {
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
}
.r-benefit-pill--highlight {
  background: rgba(201,150,46,.14); border-color: rgba(201,150,46,.35); color: var(--gold2);
}
.r-hero-ctas { margin-bottom: 28px; }
.r-trust-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.r-trust-pill {
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.80); font-size: 12px; font-weight: 600;
}
.r-income-block {
  margin-top: 24px; padding: 20px 22px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
}
.r-income-block h3 { font-size: 16px; color: var(--gold2); margin-bottom: 8px; }
.r-income-block p  { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.6; }

/* Recruit — Right column cards */
.r-hero-right { display: flex; flex-direction: column; gap: 20px; }
.r-video-card, .r-ownership-card {
  background: rgba(255,255,255,.06); border-radius: 20px; padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
}
.r-video-card h3, .r-ownership-card h3 {
  font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.r-card-sub { font-size: 14px; color: rgba(255,255,255,.56); margin-bottom: 16px; }
.r-video-container video { width: 100%; border-radius: 10px; display: block; }
.r-video-post { font-size: 14px; color: rgba(255,255,255,.68); font-style: italic; margin-top: 14px; line-height: 1.55; }
.r-own-list { display: flex; flex-direction: column; gap: 0; }
.r-own-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.r-own-item:last-child { border-bottom: none; }
.r-own-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.r-own-item strong { display: block; font-size: 14px; color: #fff; font-weight: 700; margin-bottom: 3px; }
.r-own-item span   { font-size: 13px; color: rgba(255,255,255,.54); }

/* Recruit — Legacy strip */
.r-legacy {
  background: linear-gradient(135deg, #7a4a00 0%, var(--gold) 50%, #8a5e0a 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.r-legacy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.12), transparent 55%);
  pointer-events: none;
}
.r-legacy h2 {
  font-size: clamp(24px, 3.5vw, 42px); color: #fff; margin-bottom: 20px;
  line-height: 1.15; position: relative;
}
.r-legacy h2 em { font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); }
.r-legacy p { font-size: 18px; color: rgba(255,255,255,.88); max-width: 780px; margin: 0 auto; line-height: 1.65; position: relative; }

/* Recruit — Comparison table */
.r-comp-table-wrap { overflow-x: auto; border-radius: 16px; border: 1.5px solid rgba(201,150,46,.15); }
.r-comp-table { width: 100%; border-collapse: collapse; background: #fff; }
.r-comp-table th {
  padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 800;
  letter-spacing: .3px; text-transform: uppercase;
  background: rgba(201,150,46,.06); color: var(--navy);
  border-bottom: 2px solid rgba(201,150,46,.18);
}
.r-col-ascend { background: rgba(27,58,91,.05) !important; color: var(--navy) !important; }
.r-comp-table td {
  padding: 14px 20px; font-size: 14px; color: var(--muted);
  border-bottom: 1px solid rgba(201,150,46,.09);
}
.r-comp-table td:first-child { font-weight: 600; color: var(--navy); }
.r-comp-table tbody tr:last-child td { border-bottom: none; }
.r-comp-table tbody tr:hover td { background: rgba(201,150,46,.03); }

/* Recruit — Benefits split */
.r-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.r-split-card {
  background: #fff; border-radius: 20px; padding: 32px;
  border: 1.5px solid rgba(201,150,46,.13);
  box-shadow: 0 4px 20px rgba(27,58,91,.06);
}
.r-split-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 20px; }
.r-li-list { display: flex; flex-direction: column; }
.r-li-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(201,150,46,.09);
}
.r-li-item:last-child { border-bottom: none; }
.r-li-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.r-badge {
  margin-top: 16px; padding: 13px 16px; border-radius: 10px;
  background: rgba(201,150,46,.08); border: 1px solid rgba(201,150,46,.24);
  color: var(--navy); font-size: 14px; font-weight: 600; line-height: 1.55;
}

/* Recruit — Process list */
.r-steps-list { display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
.r-step-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px; border-radius: 12px;
  background: rgba(201,150,46,.06); border: 1px solid rgba(201,150,46,.15);
  font-size: 15px; font-weight: 600; color: var(--navy);
  transition: background .2s, border-color .2s;
}
.r-step-item:hover { background: rgba(201,150,46,.10); border-color: rgba(201,150,46,.28); }

/* =====================================================
   MOBILE extras — recruit & sales
   ===================================================== */
@media (max-width: 768px) {
  .r-hero-section { padding: 56px 20px 48px; }
  .r-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .r-benefits-grid { grid-template-columns: 1fr; }
  .r-split { grid-template-columns: 1fr; }
  .s-products-simple { grid-template-columns: 1fr; }
  .s-problem-card { flex-direction: column; padding: 28px 24px; }
  .s-hero-stats { gap: 16px; }
  .s-stat-num { font-size: 28px; }
  .s-stat-divider { display: none; }
  .r-steps-list { max-width: 100%; }
}
