@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');



/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --midnight:   #0D1B2A;
  --deep:       #1A3550;
  --green:      #00C9A7;
  --green-dim:  rgba(0,201,167,.12);
  --parchment:  #F0EDE6;
  --slate:      #7A9BAF;
  --orange:     #FF6B35;
  --blue:       #378ADD;
  --pink:       #D4537E;
  --border:     rgba(122,155,175,.18);
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #0D1B2A !important;
  color: #F0EDE6 !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif !important; font-weight: 800 !important; line-height: 1.05 !important; letter-spacing: -.03em !important; color: #F0EDE6 !important; }
h1 { font-size: clamp(2rem, 5vw, 5rem) !important; color: #F0EDE6 !important; word-break: normal !important; overflow-wrap: normal !important; hyphens: none !important; }
.hero-title { font-size: clamp(2rem, 5vw, 5rem) !important; word-break: normal !important; overflow-wrap: normal !important; hyphens: none !important; white-space: normal !important; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem) !important; color: #F0EDE6 !important; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem) !important; color: #F0EDE6 !important; }

p { color: #7A9BAF !important; line-height: 1.75 !important; }
a { color: inherit !important; text-decoration: none !important; }

.green { color: #00C9A7; }
.parchment { color: #F0EDE6; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; position: relative; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  background: rgba(13,27,42,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(122,155,175,.18);
  transition: all .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-weight: 800 !important; font-size: 1.6rem !important;
  letter-spacing: -.04em !important; color: #F0EDE6 !important;
}
.nav-logo-circle {
  width: 22px; height: 22px; border-radius: 50%; background: #00C9A7;
  margin-left: 1px; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,201,167,.4);
}
.nav-media {
  font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .22em;
  text-transform: uppercase; color: #7A9BAF; margin-top: .15rem;
  display: block; line-height: 1;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: .875rem; color: #7A9BAF; transition: color .2s; font-weight: 500; }
.nav-links a:hover { color: #F0EDE6; }
.nav-cta {
  background: #00C9A7; color: #0D1B2A;
  padding: .6rem 1.4rem; border-radius: 6px;
  font-weight: 700; font-size: .875rem;
  transition: all .2s;
}
.nav-cta:hover { background: #00e0bc; color: #0D1B2A; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,201,167,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,53,80,.4) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(122,155,175,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,155,175,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: #00C9A7; font-weight: 600; margin-bottom: 1.5rem;
  padding: .4rem .9rem; border: 1px solid rgba(0,201,167,.25);
  border-radius: 100px; background: rgba(0,201,167,.06);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #00C9A7; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}
.hero-title { margin-bottom: 1.5rem !important; color: #F0EDE6 !important; }
.hero-title em {
  font-style: normal; color: #00C9A7;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: #00C9A7; opacity: .3; border-radius: 2px;
}
.hero-sub {
  font-size: 1.15rem !important; color: #7A9BAF !important; margin-bottom: 2.5rem !important;
  max-width: 480px !important; line-height: 1.7 !important;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: #00C9A7; color: #0D1B2A;
  padding: .9rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .25s; box-shadow: 0 0 30px rgba(0,201,167,.25);
}
.btn-primary:hover { background: #00e0bc; transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,201,167,.4); }
.btn-secondary {
  color: #7A9BAF; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .2s; font-weight: 500;
}
.btn-secondary:hover { color: #F0EDE6; }
.btn-arrow { transition: transform .2s; }
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(122,155,175,.18);
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 2rem !important; font-weight: 800 !important;
  color: #F0EDE6 !important; letter-spacing: -.03em !important;
}
.hero-stat-label { font-size: .8rem; color: #7A9BAF; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; height: 480px; }
.hero-card {
  position: absolute; border-radius: 16px;
  background: #1A3550; border: 1px solid rgba(122,155,175,.18);
  padding: 1.75rem;
  transition: transform .4s ease;
}
.hero-card:hover { transform: translateY(-6px) !important; }
.hero-card-main {
  width: 100%; top: 0; left: 0;
  background: linear-gradient(135deg, #1A3550 0%, #0D1B2A 100%);
  z-index: 3;
}
.hero-card-2 {
  width: 85%; top: 24px; left: 7%;
  z-index: 2; opacity: .7;
  transform: translateY(8px) scale(.97);
}
.hero-card-3 {
  width: 70%; top: 44px; left: 15%;
  z-index: 1; opacity: .4;
  transform: translateY(16px) scale(.94);
}
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.card-logo-mini { display: flex; align-items: center; gap: 0; }
.card-logo-mini span {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: -.04em; color: #F0EDE6;
}
.card-logo-dot { width: 10px; height: 10px; border-radius: 50%; background: #00C9A7; margin-left: 1px; }
.card-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
  background: rgba(0,201,167,.12); color: #00C9A7; border: 1px solid rgba(0,201,167,.2);
}
.card-title-big {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 1.2rem !important; font-weight: 800 !important;
  color: #F0EDE6 !important; letter-spacing: -.02em !important; margin-bottom: .75rem !important; line-height: 1.2 !important;
}
.card-desc { font-size: .8rem; color: #7A9BAF; line-height: 1.6; margin-bottom: 1.25rem; }
.card-divider { height: 1px; background: rgba(122,155,175,.18); margin-bottom: 1.25rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; }
.card-price {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: #00C9A7;
}
.card-cta {
  background: #00C9A7; color: #0D1B2A;
  padding: .55rem 1.1rem; border-radius: 6px;
  font-size: .78rem; font-weight: 700;
}
.card-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.card-feature { display: flex; align-items: center; gap: .6rem; font-size: .8rem; color: #7A9BAF; }
.card-feature-dot { width: 5px; height: 5px; border-radius: 50%; background: #00C9A7; flex-shrink: 0; }

/* floating badges */
.hero-float {
  position: absolute; z-index: 5;
  background: #1A3550; border: 1px solid rgba(122,155,175,.18);
  border-radius: 12px; padding: .75rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  backdrop-filter: blur(10px);
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-1 { bottom: 60px; left: -30px; animation-delay: 0s; }
.hero-float-2 { top: 20px; right: -20px; animation-delay: 1.5s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 1.4rem; }
.float-label { font-size: .7rem; color: #7A9BAF; }
.float-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 700; color: #F0EDE6; }

/* ── LOGOS STRIP ── */
.logos-strip {
  padding: 3rem 0; border-top: 1px solid rgba(122,155,175,.18); border-bottom: 1px solid rgba(122,155,175,.18);
}
.logos-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #7A9BAF; text-align: center; margin-bottom: 1.75rem; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.logo-pill {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; font-weight: 700;
  color: rgba(122,155,175,.4); letter-spacing: -.01em;
  transition: color .3s;
}
.logo-pill:hover { color: #7A9BAF; }

/* ── LINES SECTION ── */
.lines-section { padding: 7rem 0; }
.section-label {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: #00C9A7; font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: #00C9A7; border-radius: 1px;
}
.section-title { margin-bottom: 1.25rem !important; color: #F0EDE6 !important; }
.section-sub { font-size: 1.1rem; color: #7A9BAF; max-width: 540px; margin-bottom: 4rem; }

.lines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.line-card {
  border: 1px solid rgba(122,155,175,.18); border-radius: 16px;
  padding: 2rem 1.75rem;
  background: rgba(26,53,80,.2);
  position: relative; overflow: hidden;
  transition: all .35s ease;
  cursor: pointer;
}
.line-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, transparent 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.line-card:hover { border-color: currentColor; transform: translateY(-6px); background: rgba(26,53,80,.4); }
.line-card:hover::before { opacity: 1; }

.line-card-ia    { --card-color: #00C9A7; --card-glow: rgba(0,201,167,.15); }
.line-card-fin   { --card-color: #378ADD; --card-glow: rgba(55,138,221,.15); }
.line-card-pro   { --card-color: #FF6B35; --card-glow: rgba(255,107,53,.15); }
.line-card-vida  { --card-color: #D4537E; --card-glow: rgba(212,83,126,.15); }

.line-dot {
  width: 16px; height: 16px; border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px currentColor;
}
.line-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(122,155,175,.18);
}
.line-name {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 1.15rem !important; font-weight: 800 !important;
  color: #F0EDE6 !important; letter-spacing: -.02em !important; margin-bottom: .5rem !important;
}
.line-name span { color: currentColor; }
.line-desc { font-size: .85rem; color: #7A9BAF; line-height: 1.65; margin-bottom: 1.5rem; }
.line-tag {
  display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .75rem; border-radius: 100px;
  border: 1px solid currentColor; color: currentColor;
  background: rgba(255,255,255,.03);
}

/* ── HOW IT WORKS ── */
.how-section { padding: 7rem 0; background: rgba(26,53,80,.12); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid rgba(122,155,175,.18); position: relative;
}
.how-step:last-child { border-bottom: none; }
.step-num-wrap { position: relative; flex-shrink: 0; }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: #1A3550; border: 1px solid rgba(122,155,175,.18);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .8rem; font-weight: 800; color: #7A9BAF;
  position: relative; z-index: 1; transition: all .3s;
}
.how-step:hover .step-num {
  background: #00C9A7; color: #0D1B2A; border-color: #00C9A7;
}
.step-line {
  position: absolute; top: 44px; left: 50%; transform: translateX(-50%);
  width: 1px; height: calc(100% + 1px); background: rgba(122,155,175,.18);
}
.how-step:last-child .step-line { display: none; }
.step-body { padding-top: .25rem; }
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 1rem !important; font-weight: 700 !important;
  color: #F0EDE6 !important; margin-bottom: .4rem !important; letter-spacing: -.01em !important;
}
.step-desc { font-size: .875rem; color: #7A9BAF; line-height: 1.65; }

.how-visual {
  border: 1px solid rgba(122,155,175,.18); border-radius: 20px;
  background: #1A3550; overflow: hidden;
  position: relative;
}
.how-visual-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(122,155,175,.18);
  display: flex; align-items: center; gap: .75rem;
}
.how-visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.how-visual-title { font-size: .8rem; color: #7A9BAF; font-weight: 500; margin-left: .5rem; }
.how-funnel { padding: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.funnel-row {
  border-radius: 10px; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(122,155,175,.18); background: rgba(13,27,42,.4);
  transition: all .3s;
}
.funnel-row:hover { border-color: rgba(0,201,167,.3); background: rgba(0,201,167,.04); }
.funnel-left { display: flex; align-items: center; gap: .75rem; }
.funnel-icon { font-size: 1.1rem; }
.funnel-label { font-size: .85rem; font-weight: 600; color: #F0EDE6; }
.funnel-sub { font-size: .7rem; color: #7A9BAF; }
.funnel-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; font-weight: 800; }
.funnel-arrow { color: #7A9BAF; font-size: .75rem; opacity: .5; }
.funnel-connector {
  display: flex; align-items: center; gap: .5rem; padding: 0 .5rem;
  font-size: .65rem; color: #7A9BAF; letter-spacing: .06em;
}
.funnel-connector-line { flex: 1; height: 1px; border-left: none; border-top: 1px dashed rgba(122,155,175,.18); }

/* ── PRODUCTS ── */
.products-section { padding: 7rem 0; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
  border: 1px solid rgba(122,155,175,.18); border-radius: 16px;
  background: rgba(26,53,80,.15); overflow: hidden;
  transition: all .3s; cursor: pointer;
}
.product-card:hover { border-color: rgba(0,201,167,.2); transform: translateY(-4px); background: rgba(26,53,80,.3); }
.product-card-top {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(122,155,175,.18);
}
.product-vertical-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-vertical-dot { width: 6px; height: 6px; border-radius: 50%; }
.product-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 1.05rem !important; font-weight: 800 !important;
  color: #F0EDE6 !important; letter-spacing: -.02em !important; line-height: 1.25 !important; margin-bottom: .6rem !important;
}
.product-desc { font-size: .8rem; color: #7A9BAF; line-height: 1.6; }
.product-card-bottom {
  padding: 1.25rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 800;
}
.product-btn {
  font-size: .75rem; font-weight: 700; padding: .5rem 1rem; border-radius: 6px;
  background: rgba(0,201,167,.1); color: #00C9A7;
  border: 1px solid rgba(0,201,167,.2); transition: all .2s;
}
.product-btn:hover { background: #00C9A7; color: #0D1B2A; }

/* ── GUARANTEE STRIP ── */
.guarantee-strip {
  padding: 4rem 0; border-top: 1px solid rgba(122,155,175,.18); border-bottom: 1px solid rgba(122,155,175,.18);
  background: rgba(0,201,167,.03);
}
.guarantee-inner { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.guarantee-main { text-align: center; }
.guarantee-icon { font-size: 3rem; margin-bottom: 1rem; }
.guarantee-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 1.6rem !important; font-weight: 800 !important;
  color: #00C9A7 !important; letter-spacing: -.03em !important; margin-bottom: .5rem !important;
}
.guarantee-text { font-size: .875rem; color: #7A9BAF; max-width: 360px; }
.guarantee-badges { display: flex; flex-direction: column; gap: 1rem; }
.guarantee-badge {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.25rem; border-radius: 10px;
  border: 1px solid rgba(122,155,175,.18); background: rgba(26,53,80,.3);
}
.gbadge-icon { font-size: 1.1rem; }
.gbadge-text { font-size: .8rem; color: #7A9BAF; }
.gbadge-text strong { color: #F0EDE6; font-weight: 600; display: block; font-size: .85rem; }

/* ── AFFILIATES ── */
.affiliates-section { padding: 7rem 0; }
.affiliates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.affiliates-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.aff-stat {
  border: 1px solid rgba(122,155,175,.18); border-radius: 14px;
  padding: 1.5rem; background: rgba(26,53,80,.2);
  transition: all .3s;
}
.aff-stat:hover { border-color: rgba(0,201,167,.2); background: rgba(26,53,80,.4); transform: translateY(-3px); }
.aff-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 2.2rem !important; font-weight: 800 !important;
  color: #00C9A7 !important; letter-spacing: -.04em !important; line-height: 1 !important;
  margin-bottom: .4rem !important;
}
.aff-stat-label { font-size: .8rem; color: #7A9BAF; line-height: 1.4; }
.aff-stat.accent { border-color: rgba(0,201,167,.25); background: rgba(0,201,167,.06); }
.aff-stat.accent .aff-stat-num { color: #F0EDE6; }

.affiliates-content { }
.affiliates-perks { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0 2.5rem; }
.aff-perk {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: 12px;
  border: 1px solid rgba(122,155,175,.18); background: rgba(26,53,80,.15);
  transition: all .3s;
}
.aff-perk:hover { border-color: rgba(0,201,167,.2); background: rgba(26,53,80,.35); }
.aff-perk-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,201,167,.12); border: 1px solid rgba(0,201,167,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.aff-perk-title { font-size: .9rem; font-weight: 600; color: #F0EDE6; margin-bottom: .2rem; }
.aff-perk-desc { font-size: .8rem; color: #7A9BAF; line-height: 1.55; }

/* ── CTA SECTION ── */
.cta-section { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,201,167,.07) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { max-width: 700px; margin: 0 auto 1.5rem; }
.cta-sub { font-size: 1.1rem; color: #7A9BAF; max-width: 480px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(122,155,175,.18);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(122,155,175,.18);
}
.footer-brand-desc { font-size: .875rem; color: #7A9BAF; line-height: 1.7; margin-top: 1rem; max-width: 260px; }
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .8rem; font-weight: 700;
  color: #F0EDE6; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: #7A9BAF; transition: color .2s; }
.footer-links a:hover { color: #F0EDE6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .8rem; color: #7A9BAF; }
.footer-verticals { display: flex; gap: .75rem; }
.footer-vertical-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .lines-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .affiliates-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lines-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}


/* ── OVERRIDE NUCLEAR KADENCE ── */
.hero-title, .hero-title *, 
.section-title, .section-title *,
.card-title-big,
.line-name,
.step-title,
.product-title,
.guarantee-title,
.aff-stat-num,
.hero-stat-num,
.card-price,
.funnel-label,
.aff-perk-title,
.float-value,
.footer-col-title,
.nav-logo-text {
  color: #F0EDE6 !important;
}

.green, em { color: #00C9A7 !important; }
.guarantee-title { color: #00C9A7 !important; }
.aff-stat-num { color: #00C9A7 !important; }
.aff-stat.accent .aff-stat-num { color: #F0EDE6 !important; }

.hero-sub, .section-sub, .card-desc, .line-desc,
.step-desc, .product-desc, .guarantee-text,
.aff-perk-desc, .footer-brand-desc,
.card-feature, .float-label, .footer-copy,
p { color: #7A9BAF !important; }

.nav-links a { color: #7A9BAF !important; }
.nav-links a:hover { color: #F0EDE6 !important; }
.nav-media { color: #7A9BAF !important; }

.hero-stat-label { color: #7A9BAF !important; }
.logos-label { color: #7A9BAF !important; }
.logo-pill { color: rgba(122,155,175,.4) !important; }
.section-label { color: #00C9A7 !important; }
.gbadge-text { color: #7A9BAF !important; }
.gbadge-text strong { color: #F0EDE6 !important; }
.funnel-sub { color: #7A9BAF !important; }
.how-visual-title { color: #7A9BAF !important; }
.footer-links a { color: #7A9BAF !important; }
.footer-links a:hover { color: #F0EDE6 !important; }
.aff-stat-label { color: #7A9BAF !important; }
.card-desc { color: #7A9BAF !important; }

/* ── HERO TITLE SIN CORTE ── */
.hero-title {
  font-size: clamp(2rem, 5vw, 5rem) !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  white-space: normal !important;
  line-height: 1.08 !important;
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  h1 { font-size: 2rem !important; }
}