/* ============================================================
   AVSON GRC — Design System
   Studio-quality CSS, pure vanilla
   ============================================================ */

/* 1. RESET & NORMALIZE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #3D4A5C;
  background-color: #F7F7F5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* 2. CSS VARIABLES
   ============================================================ */
:root {
  --pearl:      #F7F7F5;
  --white:      #FFFFFF;
  --navy:       #1A2744;
  --navy-light: #2D3F6B;
  --gold:       #C9A84C;
  --gold-hover: #A8883A;
  --text-body:  #3D4A5C;
  --text-muted: #7A8499;
  --border:     #E5E5E0;

  --max-width: 1320px;
  --pad-x: 40px;
  --section-pad: 120px;
  --section-pad-sm: 60px;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Inter', sans-serif;

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}

/* 3. TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.1;
}

.display-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.display-title em {
  font-style: italic;
  font-weight: 300;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
}

.section-title--white {
  color: var(--white);
}

.label-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.body-large {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
}

.body-muted {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.text-navy { color: var(--navy); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-pad) 0;
}

.section--white { background: var(--white); }
.section--pearl { background: var(--pearl); }
.section--navy  { background: var(--navy); }

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.gold-line--center { margin-left: auto; margin-right: auto; }

/* Golden ratio columns */
.grid-7-5 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}

.grid-5-7 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.grid-8-4 {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 80px;
  align-items: start;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* 5. BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  text-decoration: none;
  transition: all var(--transition);
  border-radius: 1px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary--white {
  color: var(--white);
  border-color: var(--white);
}
.btn-primary--white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: 14px 28px;
  text-decoration: none;
  transition: all var(--transition);
  border-radius: 1px;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition), color var(--transition);
}

.btn-text:hover {
  border-bottom-color: var(--gold);
  color: var(--gold-hover);
}

.btn-text--white {
  color: rgba(255,255,255,0.8);
}
.btn-text--white:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* 6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-slow);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.nav__logo span.dot {
  color: var(--gold);
  margin: 0 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--navy);
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy) !important;
  text-decoration: none;
  background: var(--gold);
  padding: 11px 24px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
  animation: nav-cta-pulse 2.5s infinite;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav__cta:hover {
  background: #E2B94A;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.6);
}

@keyframes nav-cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(201,168,76,0.45), 0 0 0 0 rgba(201,168,76,0.3); }
  50%       { box-shadow: 0 4px 16px rgba(201,168,76,0.45), 0 0 0 6px rgba(201,168,76,0); }
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--navy);
  transition: all 0.3s;
}

/* 7. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--pearl);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 68px);
  align-items: stretch;
}

.hero__left {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__right {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.hero__right::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
}

.hero__right::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.hero__quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.hero__quote-author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 24px;
  text-transform: uppercase;
}

.hero__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.hero__logo-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__stat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stat::before {
  content: '✓';
  color: var(--gold);
  font-size: 11px;
}

/* 8. MARQUEE STRIP
   ============================================================ */
.marquee {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 56px;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
}

.marquee__item {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 32px;
  opacity: 0.5;
}

.marquee__item--gold {
  color: var(--gold);
  opacity: 1;
}

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

/* 9. DECORATIVE NUMBERS
   ============================================================ */
.deco-number {
  font-family: var(--font-serif);
  font-size: 200px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.deco-section {
  position: relative;
  overflow: hidden;
}

/* 10. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: var(--gold);
}

.card--navy {
  background: var(--navy);
  border-color: var(--navy);
}

.card--pearl {
  background: var(--pearl);
  border-color: var(--border);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.card__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.card__link:hover {
  gap: 10px;
  color: var(--gold-hover);
}

/* 11. PROCESS TIMELINE
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border);
}

.timeline__step {
  padding: 0 24px;
  position: relative;
}

.timeline__step:first-child { padding-left: 0; }
.timeline__step:last-child  { padding-right: 0; }

.timeline__number {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.timeline__week {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* 12. COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-top: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.compare-table th {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--pearl);
}

.compare-table th:nth-child(2) {
  color: var(--navy);
  font-weight: 600;
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--navy);
}

.compare-table td:nth-child(2) {
  font-weight: 500;
  color: var(--navy);
}

.check-yes { color: #2A7D4F; font-weight: 600; }
.check-no  { color: var(--text-muted); }

/* 13. TESTIMONIALS
   ============================================================ */
.testimonial-editorial {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 40px;
}

.testimonial-large {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 44px;
}

.testimonial-small-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-small {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial__quote--small {
  font-size: 16px;
  color: var(--text-body);
}

.testimonial__author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.testimonial__company {
  font-weight: 600;
  color: var(--navy);
}

/* 14. PACK CARDS
   ============================================================ */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pack-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}

.pack-card:hover {
  border-color: var(--gold);
}

.pack-card__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pack-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.pack-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.pack-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 4px 10px;
  background: var(--pearl);
}

.pack-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

/* 15. PRAESYS MOCKUP
   ============================================================ */
.praesys-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mockup-dot:first-child { background: #C9A84C; }

.mockup-title {
  font-size: 11px;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 8px;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.mockup-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sans);
}

.mockup-value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.mockup-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.mockup-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--gold);
}

.mockup-bar-fill--green {
  background: #2A7D4F;
}

/* 16. WEBINAR CARDS
   ============================================================ */
.webinar-card {
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  transition: border-color var(--transition);
}

.webinar-card:hover {
  border-color: var(--gold);
}

.webinar-card__date {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.webinar-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.webinar-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 17. TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.team-member {
  display: flex;
  flex-direction: column;
}

.team-member__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
  
  transition: filter var(--transition);
}

.team-member:hover .team-member__photo {
  
}

.team-member__cert {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.team-member__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-member__role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.team-member__bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* 18. FAQ ACCORDION
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  gap: 24px;
}

.faq-item__question:hover {
  color: var(--gold-hover);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: all var(--transition);
}

.faq-item__icon::before {
  width: 10px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  display: none;
  padding: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 760px;
}

.faq-item.open .faq-item__answer {
  display: block;
}

/* 19. CONTACT FORM
   ============================================================ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* 20. LEGAL/CATEGORY BOXES
   ============================================================ */
.legal-box {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  background: var(--pearl);
}

.legal-box__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.legal-box__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.ens-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ens-cat {
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--white);
  transition: border-color var(--transition);
}

.ens-cat:hover { border-color: var(--gold); }

.ens-cat__level {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ens-cat__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.ens-cat__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 21. ROADMAP (arrow diagram)
   ============================================================ */
.roadmap {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}

.roadmap__node {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.roadmap__box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  text-align: center;
  min-width: 140px;
}

.roadmap__box--active {
  border-color: var(--gold);
  background: var(--gold);
}

.roadmap__box-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.roadmap__box--active .roadmap__box-title { color: var(--navy); }

.roadmap__box-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.roadmap__box--active .roadmap__box-sub { color: rgba(26,39,68,0.7); }

.roadmap__arrow {
  width: 40px;
  height: 1px;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}

.roadmap__arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  border-left: 5px solid var(--border);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* 22. FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer__logo span { color: var(--gold); }

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 240px;
}

.footer__contact {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

.footer__contact a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--gold); }

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__newsletter-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
}

.footer__newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  font-family: var(--font-sans);
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.25); }

.footer__newsletter-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.footer__newsletter-btn:hover { background: var(--gold-hover); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--gold); }

/* 23. FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 450;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 18px 11px;
  text-decoration: none;
  writing-mode: vertical-rl;
  border-radius: 10px 0 0 10px;
  box-shadow: -3px 0 16px rgba(0,0,0,0.20);
  transition: background 0.15s, padding 0.15s;
  border: none;
}
.floating-cta:hover { background: #D9B84D; }

.floating-cta:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
}

/* 24. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: 1px;
}

.cookie-accept:hover { background: var(--gold-hover); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: none;
  padding: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  cursor: pointer;
  transition: color var(--transition);
}

.cookie-decline:hover { color: rgba(255,255,255,0.7); }

/* 25. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.anim-fade.visible {
  opacity: 1;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 26. PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  background: var(--pearl);
  padding: 140px 0 80px;
}

.page-hero--navy {
  background: var(--navy);
}

.page-hero__breadcrumb {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover { color: var(--gold); }

.page-hero__breadcrumb span { color: var(--border); }

.urgency-box {
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  margin: 32px 0;
  max-width: 560px;
}

.urgency-box__text {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 400;
}

/* 27. CHECKLIST
   ============================================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-body);
}

.checklist__item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 28. SECTION DIVIDER
   ============================================================ */
.section-divider {
  height: 1px;
  background: var(--border);
}

/* 29. MINI-POINTS with border
   ============================================================ */
.mini-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.mini-point {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.mini-point__title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.mini-point__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 30. FEATURES GRID (for Praesys)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-item {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.feature-item:hover { border-color: var(--gold); }

.feature-item__number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.feature-item__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-item__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 31. PRICING TIERS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pricing-card {
  border: 1px solid var(--border);
  padding: 48px 36px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: var(--navy);
}

.pricing-card:not(.pricing-card--featured):hover {
  border-color: var(--gold);
}

.pricing-card__tier {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__name {
  color: var(--white);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.55);
}

/* 32. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* 1100px — tablet landscape */
@media (max-width: 1100px) {
  :root {
    --pad-x: 32px;
    --section-pad: 80px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__right {
    min-height: 320px;
  }

  .grid-7-5,
  .grid-5-7,
  .grid-8-4 {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .timeline::before { display: none; }

  .nav__links {
    gap: 20px;
  }
}

/* 768px — tablet portrait */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --section-pad: var(--section-pad-sm);
  }

  .nav__links {
    display: none;
  }

  /* CTA siempre visible en móvil — nunca se esconde */
  .nav__cta {
    font-size: 12px;
    padding: 9px 16px;
    animation: none; /* sin pulso en móvil para no saturar */
  }

  .nav__hamburger { display: flex; }

  .display-title {
    font-size: clamp(40px, 8vw, 60px);
  }

  .section-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pack-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .testimonial-editorial {
    grid-template-columns: 1fr;
  }

  .ens-categories {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-cta {
    font-size: 11px;
    padding: 14px 9px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .hero__left {
    padding: 60px 0 40px;
  }
}

/* 480px — mobile */
@media (max-width: 480px) {
  :root {
    --pad-x: 16px;
  }

  .display-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .mockup-row {
    grid-template-columns: 1fr;
  }

  .roadmap {
    flex-direction: column;
    align-items: stretch;
  }

  .roadmap__arrow {
    width: 1px;
    height: 24px;
    margin: 0 auto;
  }
}

/* Mobile navigation overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 80px var(--pad-x) var(--pad-x);
  flex-direction: column;
  gap: 32px;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.nav-overlay a:last-child {
  color: var(--gold);
  border-bottom: none;
}

/* Misc utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.no-overflow { overflow: hidden; }

/* =========================================
   NAV DROPDOWN
   ========================================= */
.nav__has-dropdown {
  position: relative;
}
.nav__has-dropdown > a {
  cursor: default;
  user-select: none;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 280px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(26,39,68,0.08);
  padding: 8px 0;
}
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown:focus-within .nav__dropdown {
  display: block;
}
/* arrow above dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav__dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 12px 24px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.nav__dropdown-item:last-child {
  border-bottom: none;
}
.nav__dropdown-item:hover {
  background: var(--pearl);
}
.nav__dropdown-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav__dropdown-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav__dropdown-item:hover .nav__dropdown-title {
  color: var(--gold);
}

/* ============================================================
   CONVERSION COMPONENTS v2
   ============================================================ */

/* ANNOUNCE BAR */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px var(--pad-x);
  position: relative;
  z-index: 200;
}
.announce-bar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.2s;
}
.announce-bar a:hover { border-color: var(--gold); }

/* GUARANTEE SEAL */
.guarantee-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  padding: 10px 18px;
  background: transparent;
}
.guarantee-seal__icon {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.guarantee-seal__text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.4;
}
.guarantee-seal--white .guarantee-seal__text { color: rgba(255,255,255,0.9); }
.guarantee-seal--white { border-color: rgba(255,255,255,0.3); }

/* TRUST STRIP */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--pad-x);
}
.trust-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.trust-strip__item-icon {
  color: var(--gold);
  font-size: 16px;
}
.trust-strip__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}
@media(max-width:768px) { .trust-strip__divider { display:none; } }

/* EXIT INTENT MODAL */
.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,39,68,0.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal.visible { display: flex; }
.exit-modal__box {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  padding: 56px 48px;
  position: relative;
}
.exit-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1;
  background: none;
  border: none;
}
.exit-modal__close:hover { color: var(--navy); }
.exit-modal__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.exit-modal__text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.exit-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exit-modal__input {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  background: var(--white);
}
.exit-modal__input:focus { border-color: var(--gold); }
.exit-modal__skip {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* INLINE CTA BOX */
.cta-inline-box {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0;
}
.cta-inline-box__text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  flex: 1;
  min-width: 200px;
}

/* STAT BLOCK LARGE */
.stat-block {
  text-align: center;
  padding: 32px 24px;
}
.stat-block__number {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-block__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}
.stat-block__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 8px;
}

/* OBJECTION STRIP */
.objection-strip {
  background: var(--navy);
  padding: 32px 0;
}
.objection-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.objection-strip__item {
  background: var(--navy);
  padding: 32px 28px;
  text-align: center;
}
.objection-strip__q {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-style: italic;
}
.objection-strip__a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
@media(max-width:768px) { .objection-strip__inner { grid-template-columns: 1fr; } }

/* STICKY BOTTOM CTA BAR (mobile) */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 20px;
  justify-content: center;
  gap: 12px;
  align-items: center;
}
.sticky-cta-bar__text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  flex: 1;
}
@media(max-width:768px) { .sticky-cta-bar { display: flex; } }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.lang-switcher__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-switcher__flag {
  font-size: 14px;
  line-height: 1;
}

.lang-switcher__chevron {
  font-size: 8px;
  opacity: 0.5;
  transition: transform var(--transition);
}

.lang-switcher.open .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 160px;
  z-index: 300;
  box-shadow: 0 4px 24px rgba(26,39,68,0.08);
}

.lang-switcher.open .lang-switcher__dropdown {
  display: block;
}

.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.lang-switcher__item:last-child {
  border-bottom: none;
}

.lang-switcher__item:hover {
  background: var(--pearl);
  color: var(--navy);
}

.lang-switcher__item--active {
  font-weight: 600;
  color: var(--navy);
  background: var(--pearl);
}

.lang-switcher__item-flag {
  font-size: 16px;
  flex-shrink: 0;
}

.lang-switcher__item-label {
  flex: 1;
}

.lang-switcher__item-tag {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* WHATSAPP FLOATING BUTTON */
.wa-float { position:fixed;bottom:88px;right:24px;width:52px;height:52px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,0.4);z-index:300;text-decoration:none;transition:transform 0.2s,box-shadow 0.2s; }
.wa-float:hover { transform:scale(1.08);box-shadow:0 6px 24px rgba(37,211,102,0.5); }
@media(min-width:769px) { .wa-float { bottom:32px; } }

/* ── IMPACT CTA — Máquina de conversión ─────────────────── */
.btn-impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #C9A84C;
  color: #0D1117;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 16px;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all .15s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.4);
  animation: impact-pulse 2.5s infinite;
  position: relative;
  overflow: hidden;
}
.btn-impact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn-impact:hover {
  background: #E2B94A;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(201,168,76,0.55);
  color: #0D1117;
}
.btn-impact:active { transform: translateY(0) scale(0.99); }
@keyframes impact-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.3); }
  50% { box-shadow: 0 4px 20px rgba(201,168,76,0.4), 0 0 0 8px rgba(201,168,76,0); }
}
.btn-impact-lg {
  font-size: 18px;
  padding: 22px 52px;
  border-radius: 12px;
}
.btn-impact-sm {
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
}

/* Sticky CTA bar */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1B3A6B;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-bar__text {
  color: #fff; font-size: 14px; font-weight: 500;
}
.sticky-cta-bar__text strong { color: #C9A84C; }

/* Trustpilot widget area */
.trustpilot-widget-wrap {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #E5E5E0;
  border-radius: 12px; padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.tp-logo { font-size: 20px; font-weight: 800; color: #00b67a; letter-spacing: -0.03em; }
.tp-stars { color: #00b67a; font-size: 20px; letter-spacing: 2px; }
.tp-score { font-size: 24px; font-weight: 700; color: #0D1117; }
.tp-count { font-size: 12px; color: #666; margin-top: 2px; }

/* Guarantee badge */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff; border-radius: 10px;
  padding: 12px 20px; font-size: 14px; font-weight: 600;
}
.guarantee-badge__icon { font-size: 22px; }

/* ISO cert icons strip */
.cert-icons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cert-icon {
  background: #fff; border: 1.5px solid #E5E5E0;
  border-radius: 8px; padding: 8px 14px;
  font-size: 11px; font-weight: 700; color: #1B3A6B;
  letter-spacing: .04em; white-space: nowrap;
}

/* Speed badge */
.speed-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FEF3C7; color: #92400E;
  border: 1px solid #F59E0B; border-radius: 99px;
  padding: 6px 16px; font-size: 13px; font-weight: 600;
}

/* Section CTA strip */
.section-cta-strip {
  background: #1B3A6B; border-radius: 12px;
  padding: 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 32px 0;
}
.section-cta-strip__text { color: #fff; font-size: 18px; font-weight: 700; }
.section-cta-strip__sub { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }

@media(max-width:768px){
  .btn-impact { padding: 16px 28px; font-size: 15px; width: 100%; justify-content: center; }
  .btn-impact-lg { padding: 18px 28px; font-size: 16px; }
  .section-cta-strip { flex-direction: column; text-align: center; }
  .sticky-cta-bar { flex-direction: column; padding: 12px 16px; gap: 10px; }
}

/* ── SCROLL-CTA BAR — Aparece al bajar del hero ──────────── */
#scroll-cta-bar {
  position: fixed;
  top: 60px; /* debajo del nav */
  left: 0; right: 0;
  z-index: 190;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(26,39,68,0.25);
}
#scroll-cta-bar.visible { transform: translateY(0); }
#scroll-cta-bar .scb-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
#scroll-cta-bar .scb-text span { color: var(--gold); }
#scroll-cta-bar .scb-right {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
#scroll-cta-bar .scb-trust {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  white-space: nowrap;
}
#scroll-cta-bar .btn-impact {
  padding: 10px 24px;
  font-size: 13px;
  animation: none; /* no pulso en la barra, ya llama la atención */
}
@media(max-width:768px){
  #scroll-cta-bar { padding: 10px 16px; top: 56px; }
  #scroll-cta-bar .scb-text { font-size: 12px; }
  #scroll-cta-bar .scb-trust { display: none; }
}

/* ── MOBILE BOTTOM FIXED CTA ─────────────────────────────── */
#mobile-cta-fixed {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 290;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(26,39,68,0.2);
}
#mobile-cta-fixed a {
  display: block;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}
@media(max-width:768px){
  #mobile-cta-fixed { display: block; }
  body { padding-bottom: 70px; } /* espacio para el botón fijo */
}

/* ============================================================
   CRO COMPONENTS — Hero Form, Nav Phone, Testimonials v2,
   Scarcity elements (sourced from index.html inline styles)
   ============================================================ */

/* Nav Phone */
.nav__phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-decoration: none; white-space: nowrap;
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.nav__phone:hover { border-color: var(--gold); color: var(--gold); }
@media(max-width:1024px) { .nav__phone { display: none; } }

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26,39,68,0.15), 0 0 0 1px rgba(26,39,68,0.08);
  overflow: hidden;
}
.hero-form-card__header {
  background: var(--navy);
  padding: 20px 24px 16px;
}
.hero-form-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.hero-form-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-sans);
}
.hero-form-sub {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.hero-form {
  padding: 20px 24px;
}
.hero-form__group {
  margin-bottom: 12px;
}
.hero-form__group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
  box-sizing: border-box;
}
.hero-form__group input:focus { border-color: var(--navy); }
.hero-form__rgpd {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero-form__rgpd input { flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); }
.hero-form__rgpd a { color: var(--navy); text-decoration: underline; }
.hero-form__btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-sans);
  letter-spacing: .02em;
}
.hero-form__btn:hover { background: var(--gold-hover); transform: translateY(-1px); }
.hero-form__scarcity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  justify-content: center;
}
.scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  animation: scarcity-pulse 1.5s infinite;
  flex-shrink: 0;
  display: inline-block;
}
@keyframes scarcity-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.hero-form__alt {
  padding: 12px 24px 16px;
  text-align: center;
  border-top: 1px solid #F0F0EC;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-form__alt a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.hero-form__alt a:hover { color: var(--gold); }

/* Testimonials v2 */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.testimonial-card-v2 {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 12px rgba(26,39,68,0.08);
  border: 1px solid var(--border);
}
.tcv2-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tcv2-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.tcv2-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.tcv2-role { font-size: 12px; color: var(--text-muted); }
.tcv2-stars { margin-left: auto; color: #F59E0B; font-size: 14px; white-space: nowrap; }
.tcv2-quote { font-size: 14px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; font-style: italic; }
.tcv2-result {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: #F0F9F4; border-radius: 8px;
  font-size: 12px; color: #0D5C4A; font-weight: 500;
}
.tcv2-result-icon { font-size: 16px; }

/* Scarcity Banner */
.scarcity-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
}

/* ============================================================
   AVSON GRC — v3.0 INDEX COMPONENTS
   Nuevos componentes para index.html rediseñado
   ============================================================ */

/* ── Utilities ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.no-scroll { overflow: hidden; }

/* ── Button system (.btn) ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  padding: 13px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
  animation: btn-gold-pulse 2.8s infinite;
}
.btn--gold:hover {
  background: #D9B84D;
  border-color: #D9B84D;
  box-shadow: 0 6px 20px rgba(201,168,76,0.5);
}

@keyframes btn-gold-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(201,168,76,0.35), 0 0 0 0 rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 4px 14px rgba(201,168,76,0.35), 0 0 0 7px rgba(201,168,76,0); }
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn--sm { font-size: 12px; padding: 9px 18px; }
.btn--lg { font-size: 16px; padding: 17px 36px; }
.btn--full { width: 100%; }

/* ── Announce bar (updated) ────────────────────────────── */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 12px;
  text-align: center;
  padding: 9px var(--pad-x);
  position: relative;
  z-index: 200;
}
.announce-bar__text { display: inline; }
.announce-bar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
}
.announce-bar a:hover { text-decoration: underline; }

/* ── Scroll sticky CTA ──────────────────────────────────── */
.scroll-cta {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 180;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(26,39,68,0.2);
}
.scroll-cta.visible { transform: translateY(0); }
.scroll-cta__text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.scroll-cta__text strong { color: var(--gold); }

/* ── Nav additions ──────────────────────────────────────── */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--navy); }

.nav__link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--navy); }

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.nav-overlay__cta {
  display: block;
  margin-top: 40px;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700 !important;
}

/* ── Label chip ─────────────────────────────────────────── */
.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.label-chip--alert {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.label-tag--light {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

/* ── Hero additions ─────────────────────────────────────── */
.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
  margin: 20px 0 24px;
  max-width: 480px;
}

.hero__proofs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.hero__proofs li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof-icon { font-size: 15px; }

/* ── Lead card (hero form) ──────────────────────────────── */
.lead-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(26,39,68,0.25);
  position: relative;
  z-index: 1;
}

.lead-card__header { margin-bottom: 20px; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.lead-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}

.lead-card__sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.lead-card__alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}
.lead-card__alt a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.lead-card__alt a:hover { color: var(--gold-hover); }

/* ── Qualifier (micro-commitment) ───────────────────────── */
.qualifier { margin-bottom: 18px; }
.qualifier__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.qualifier__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.qual-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 6px;
  border: 1.5px solid var(--border);
  background: var(--pearl);
  color: var(--navy);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.2;
  text-align: center;
}
.qual-btn:hover {
  border-color: var(--navy);
  background: var(--white);
}
.qual-btn--urgent {
  border-color: #FCA5A5;
  background: #FEF2F2;
  color: #991B1B;
}
.qual-btn--urgent:hover { border-color: #dc2626; }
.qual-btn--selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
}

/* ── Lead form ──────────────────────────────────────────── */
.lead-form { display: flex; flex-direction: column; gap: 10px; }

.lead-form__group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  display: block;
}
.lead-form__group input:focus { border-color: var(--navy); }
.lead-form__group input::placeholder { color: #B0B8C4; }

.lead-form__rgpd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 4px 0 6px;
}
.lead-form__rgpd input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--navy);
  cursor: pointer;
}
.lead-form__rgpd a { color: var(--navy); text-decoration: underline; }

.lead-form__submit {
  font-size: 15px;
  padding: 15px;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.lead-form__reassure {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin: 4px 0 0;
}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.trust-bar__num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.trust-bar__label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Cert strip ─────────────────────────────────────────── */
.cert-strip {
  background: var(--pearl);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.cert-strip__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
}
.cert-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cert-logo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── Licitaciones bar ───────────────────────────────────── */
.licit-bar {
  background: var(--navy);
  padding: 0;
}
.licit-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.licit-bar__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.licit-bar__items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
}
.licit-item {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.licit-item strong { color: var(--white); }
.licit-bar__cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.licit-bar__cta:hover { text-decoration: underline; }

/* ── Section utilities ──────────────────────────────────── */
.section-intro {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-intro--light { color: rgba(255,255,255,0.55); }
.section-intro a { color: var(--navy); font-weight: 500; }

.section-note {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.section-note--light { color: rgba(255,255,255,0.45); }
.section-note a { color: var(--gold); font-weight: 600; }

/* ── Pack cards (v3) ────────────────────────────────────── */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pack-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.pack-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.pack-card--featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.pack-card__badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.pack-card__badge--gold { color: var(--gold); }

.pack-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.pack-card__norm {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

.pack-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin: 8px 0;
}
.pack-card__features li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.pack-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── Process steps ──────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 32px 32px 0;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.85;
  flex-shrink: 0;
  opacity: 0.8;
}

.process-step__body { flex: 1; }

.process-step__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.process-step__time {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-step__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.process-step__connector {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
  margin: 32px 0;
}

/* ── Cost section ───────────────────────────────────────── */
.cost-section { }
.cost-section__header { margin-bottom: 48px; }

.cost-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cost-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid #dc2626;
  padding: 32px 28px;
  border-radius: 4px;
}

.cost-card__num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 14px;
}

.cost-card__title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.cost-card__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cost-cta-block {
  background: var(--navy);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 4px;
}

.cost-cta-block__sup {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cost-cta-block__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.25;
}

.cost-cta-block__sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ── Testimonials (v3) ──────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__avatar--navy { background: var(--navy); color: var(--white); }
.testimonial__avatar--green { background: #0D5C4A; color: var(--white); }

.testimonial__meta { flex: 1; min-width: 0; }

.testimonial__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}
.testimonial__quote strong { font-style: normal; color: var(--navy); }

.testimonial__result {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.testimonial__result-icon { flex-shrink: 0; }

/* ── FAQ v3 ─────────────────────────────────────────────── */
.faq-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.faq-wrap__header { position: sticky; top: 100px; }
.faq-wrap__header .section-intro { margin-bottom: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
  line-height: 1.4;
}
.faq-item__q:hover { color: var(--gold-hover); }
.faq-item--open .faq-item__q { color: var(--navy); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
  font-style: normal;
}
.faq-item--open .faq-item__icon {
  border-color: var(--navy);
  color: var(--navy);
}

.faq-item__a {
  padding: 0 24px 20px 0;
}
.faq-item__a p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-item__a strong { color: var(--navy); }

/* ── CTA Final ──────────────────────────────────────────── */
.cta-final { text-align: center; }
.cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-final__sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.cta-final__reassures {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ── Footer additions ───────────────────────────────────── */
.footer__col { }
.footer__col--brand { }
.footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.footer__linkedin:hover { text-decoration: underline; }

.footer__newsletter { display: flex; gap: 0; margin-top: 12px; }
.footer__newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--white);
  outline: none;
  border-radius: 4px 0 0 4px;
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.footer__newsletter button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.15s;
}
.footer__newsletter button:hover { background: var(--gold-hover); }

.footer__newsletter-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 4px;
}

.footer__newsletter-success {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #6EE7B7;
  margin-top: 8px;
}

/* ── WhatsApp float (v3) ────────────────────────────────── */
.wa-wrap {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 290;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.wa-badge {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  animation: wa-pulse 2.2s infinite;
}

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 2px 8px rgba(26,39,68,0.2); }
  50%      { box-shadow: 0 2px 16px rgba(26,39,68,0.35); }
}

.wa-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}

/* ── Mobile bottom CTA ──────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 285;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(26,39,68,0.18);
}
.mobile-cta a {
  display: block;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ── Fade-in on scroll ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — v3 INDEX
   ============================================================ */

@media (max-width: 1200px) {
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-wrap__header { position: static; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cost-cards { grid-template-columns: 1fr 1fr; }
  .process-steps {
    flex-direction: column;
    gap: 0;
  }
  .process-step {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step__connector { display: none; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero__left {
    padding: 48px var(--pad-x) 32px;
  }
  .hero__right {
    padding: 0 var(--pad-x) 40px;
  }
  .hero__right::before,
  .hero__right::after { display: none; }

  /* Lead card adjustments on mobile */
  .lead-card {
    border-radius: 0;
    box-shadow: none;
  }

  /* Trust bar */
  .trust-bar__stat { padding: 16px 24px; }
  .trust-bar__divider { height: 40px; }

  /* Licit bar */
  .licit-bar__inner { flex-direction: column; gap: 12px; }
  .licit-bar__items { flex-direction: column; gap: 8px; }

  /* Packs */
  .pack-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Cost */
  .cost-cards { grid-template-columns: 1fr; }
  .cost-cta-block {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  /* CTA final */
  .cta-final__reassures { gap: 12px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* WhatsApp */
  .wa-wrap { bottom: 76px; }

  /* Mobile CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 68px; }

  /* Scroll CTA */
  .scroll-cta {
    padding: 8px 16px;
    top: 56px;
  }
  .scroll-cta__text { font-size: 12px; }

  /* Section padding */
  .section { padding: var(--section-pad-sm) 0; }

  /* Announce bar */
  .announce-bar { font-size: 11px; }
}

@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .trust-bar__inner {
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .trust-bar__divider { display: none; }
  .trust-bar__stat { border-bottom: 1px solid var(--border); }

  .qualifier__grid { grid-template-columns: 1fr 1fr; }
  .lead-card { padding: 24px 20px; }
}

/* ============================================================
   AVSON GRC — v3 INDEX: MÁQUINA DE CONVERSIÓN
   ============================================================ */

/* ── Announce bar ─────────────────────────────────── */
.v3-announce {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 12px;
  text-align: center;
  padding: 9px 20px;
  position: relative; z-index: 210;
}
.v3-announce a { color: var(--gold); font-weight: 600; text-decoration: none; margin-left: 6px; }
.v3-announce a:hover { text-decoration: underline; }

/* ── Sticky bar ────────────────────────────────────── */
.v3-sticky-bar {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 185;
  background: var(--navy); border-bottom: 2px solid var(--gold);
  padding: 10px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(-120%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(26,39,68,0.2);
}
.v3-sticky-bar.visible { transform: translateY(0); }
.v3-sticky-bar__text { font-family: var(--font-sans); font-size: 14px; color: rgba(255,255,255,0.85); }
.v3-sticky-bar__text strong { color: var(--gold); }

/* ── Button system v3 ──────────────────────────────── */
.v3-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none; border-radius: 8px; cursor: pointer; border: 2px solid transparent;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap; line-height: 1;
}
.v3-btn:hover { transform: translateY(-1px); }
.v3-btn:active { transform: translateY(0); }

/* Dorado por defecto: sólido, limpio y prominente — SIN parpadeo.
   El parpadeo dilucía la jerarquía cuando todos los botones lo tenían. */
.v3-btn--gold {
  background: var(--gold); color: var(--navy) !important; border-color: var(--gold);
  font-size: 14px; padding: 12px 22px;
  box-shadow: 0 3px 10px rgba(201,168,76,0.22);
}
.v3-btn--gold:hover { background: #D9B84D; border-color: #D9B84D; box-shadow: 0 6px 22px rgba(201,168,76,0.45); }

/* --pulse: SOLO para el CTA primario de cada página (hero / cierre).
   Da el ancla visual que faltaba. Usar como mucho 1–2 por página. */
.v3-btn--pulse { animation: v3-gold-pulse 2.6s infinite; box-shadow: 0 4px 20px rgba(201,168,76,0.45); }

@keyframes v3-gold-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(201,168,76,0.45), 0 0 0 0 rgba(201,168,76,0.28); }
  50%      { box-shadow: 0 4px 20px rgba(201,168,76,0.45), 0 0 0 10px rgba(201,168,76,0); }
}

.v3-btn--navy { background: var(--navy); color: var(--white) !important; border-color: var(--navy); font-size: 14px; padding: 12px 22px; }
.v3-btn--navy:hover { background: #243563; border-color: #243563; }

.v3-btn--outline-navy { background: transparent; color: var(--navy) !important; border-color: var(--navy); font-size: 14px; padding: 12px 22px; }
.v3-btn--outline-navy:hover { background: var(--navy); color: var(--white) !important; }

.v3-btn--outline-white { background: rgba(255,255,255,0.1); color: var(--white) !important; border-color: rgba(255,255,255,0.4); font-size: 14px; padding: 12px 22px; }
.v3-btn--outline-white:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }

.v3-btn--outline-sm { background: transparent; color: var(--navy); border-color: var(--border); font-size: 12px; padding: 8px 14px; border-radius: 6px; }

.v3-btn--sm { font-size: 12px; padding: 9px 16px; }
.v3-btn--lg { font-size: 16px; padding: 15px 32px; }
.v3-btn--xl { font-size: 16px; padding: 16px; width: 100%; font-weight: 700; border-radius: 10px; }
.v3-btn--full { width: 100%; }

/* ── Nav v3 ────────────────────────────────────────── */
.v3-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
  backdrop-filter: blur(8px);
}
.v3-nav--scrolled { box-shadow: 0 2px 20px rgba(26,39,68,0.10); }

.v3-nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.v3-nav__logo {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--navy);
  text-decoration: none; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.02em;
}
.v3-nav__logo span { color: var(--gold); margin: 0 2px; }

.v3-nav__links {
  display: flex; align-items: center; gap: 28px; list-style: none; flex: 1;
}
.v3-nav__links a {
  font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-body);
  text-decoration: none; transition: color 0.18s;
}
.v3-nav__links a:hover { color: var(--navy); }

.v3-nav__express {
  color: #dc2626 !important; font-weight: 600 !important;
}

.v3-nav__cta { flex-shrink: 0; }

.v3-nav__burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.v3-nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }

.v3-nav__overlay {
  display: none; position: fixed; inset: 0; z-index: 195;
  background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.v3-nav__overlay.open { display: flex; }
.v3-nav__overlay a { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--white); text-decoration: none; }
.v3-nav__overlay a:hover { color: var(--gold); }

.v3-nav__overlay-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 22px; color: rgba(255,255,255,0.5); cursor: pointer;
}

/* ── Hero v3 ────────────────────────────────────────── */
.v3-hero {
  background: var(--pearl);
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 68px;
}
.v3-hero__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 68px);
  align-items: stretch;
  width: 100%;
}
.v3-hero__left {
  padding: 72px 56px 72px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.v3-hero__right {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 56px 44px;
  position: relative; overflow: hidden;
}
.v3-hero__right::before {
  content:''; position:absolute; top:-50px; right:-50px;
  width:180px; height:180px; border:1px solid rgba(201,168,76,0.12); border-radius:50%;
}

/* FOMO chip */
.v3-fomo-chip {
  display: inline-flex; align-items: center;
  background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 20px; margin-bottom: 22px;
  max-width: fit-content;
}

.v3-hero__h1 {
  font-family: var(--font-serif); font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300; line-height: 1.05; color: var(--navy);
  margin-bottom: 22px;
}
.v3-hero__h1 em { font-style: italic; color: var(--navy); }

.v3-hero__sub {
  font-family: var(--font-sans); font-size: clamp(16px,1.4vw,18px);
  font-weight: 300; line-height: 1.65; color: var(--text-body);
  max-width: 460px; margin-bottom: 20px;
}

.v3-trust-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 0;
  font-family: var(--font-sans); font-size: 13px; color: var(--text-muted);
}
.v3-trust-pills span { display: flex; align-items: center; gap: 5px; }

/* Lead card */
.v3-lead-card {
  background: var(--white); border-radius: 14px; padding: 32px;
  width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(26,39,68,0.3);
  position: relative; z-index: 1;
}
.v3-lead-card__header { margin-bottom: 18px; }
.v3-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #ECFDF5; color: #065F46;
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 20px; margin-bottom: 12px;
}
.v3-lead-card__title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: var(--navy); line-height: 1.15; margin-bottom: 4px;
}
.v3-lead-card__sub { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); line-height: 1.45; }

.v3-lead-card__phone {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-family: var(--font-sans); font-size: 13px; color: var(--text-muted);
}
.v3-lead-card__phone a { font-weight: 700; color: var(--navy); text-decoration: none; }

/* Form */
.v3-form { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.v3-form__qual { margin-bottom: 4px; }
.v3-form__qual-label { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.v3-form__qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.v3-qual-btn {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  padding: 8px 6px; border: 1.5px solid var(--border); background: var(--pearl);
  color: var(--navy); border-radius: 6px; cursor: pointer; transition: all 0.15s; line-height: 1.2;
}
.v3-qual-btn:hover { border-color: var(--navy); }
.v3-qual-btn--urgent { border-color: #FCA5A5; background: #FEF2F2; color: #991B1B; }
.v3-qual-btn--active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.v3-form__input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-sans); font-size: 14px; color: var(--navy); background: var(--white);
  outline: none; transition: border-color 0.15s; display: block;
}
.v3-form__input:focus { border-color: var(--navy); }
.v3-form__input::placeholder { color: #B0B8C4; }

.v3-form__rgpd {
  display: flex; align-items: flex-start; gap: 9px;
  font-family: var(--font-sans); font-size: 11px; color: var(--text-muted); line-height: 1.5;
}
.v3-form__rgpd input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; accent-color: var(--navy); cursor: pointer; }
.v3-form__rgpd a { color: var(--navy); }
.v3-form__lock { font-family: var(--font-sans); font-size: 11px; color: var(--text-muted); text-align: center; }

/* ── Stats strip ────────────────────────────────────── */
.v3-stats {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 26px 40px; display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.v3-stats__item { display: flex; flex-direction: column; align-items: center; padding: 0 44px; text-align: center; }
.v3-stats__item strong { font-family: var(--font-serif); font-size: 34px; font-weight: 600; color: var(--navy); line-height: 1; }
.v3-stats__item span { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.v3-stats__sep { width: 1px; height: 44px; background: var(--border); }

.v3-cert-strip {
  background: var(--pearl); border-bottom: 1px solid var(--border);
  padding: 16px 40px; display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  font-family: var(--font-sans); font-size: 11px; color: var(--text-muted);
}
.v3-cert-logo {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px;
  padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted);
}

/* ── Section helpers ────────────────────────────────── */
.v3-section { padding: 100px 0; }
.v3-section--pearl { background: var(--pearl); }
.v3-section--white { background: var(--white); }
.v3-section--navy { background: var(--navy); }
.v3-container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.v3-label { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.v3-label--gold { color: var(--gold); }
.v3-h2 { font-family: var(--font-serif); font-size: clamp(34px, 3.5vw, 52px); font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 24px; }
.v3-h2--white { color: var(--white); }
.v3-h2 em { font-style: italic; }

/* ── ENS Explain ─────────────────────────────────────── */
.v3-ens-explain {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.v3-ens-explain__text p { font-family: var(--font-sans); font-size: 16px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; }
.v3-ens-explain__text .v3-btn { margin-top: 8px; }

.v3-ens-explain__fear { display: flex; flex-direction: column; gap: 16px; }
.v3-fear-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid #dc2626; padding: 28px 24px; }
.v3-fear-card__num { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: #dc2626; line-height: 1; margin-bottom: 10px; }
.v3-fear-card p { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ── ENS Express hero section ───────────────────────── */
.v3-express-hero { background: var(--navy); padding: 80px 0; }
.v3-express-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.v3-express-sub { font-family: var(--font-sans); font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 20px; }
.v3-express-sub strong { color: var(--gold); }
.v3-express-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.v3-express-chips span { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.7); }
.v3-express-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.v3-express-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 28px; }
.v3-express-card__label { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.v3-express-urgency { display: flex; flex-direction: column; gap: 14px; }
.v3-urgency-item { display: flex; gap: 12px; align-items: flex-start; }
.v3-urgency-item strong { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--white); display: block; margin-bottom: 2px; }
.v3-urgency-item span { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.55); display: block; }
.v3-urgency-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 5px; }
.v3-urgency-dot--amber { background: #F59E0B; }
.v3-urgency-item--red .v3-urgency-dot { background: #dc2626; animation: dot-pulse-red 1.5s infinite; }
@keyframes dot-pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(220,38,38,0); }
}

/* ── Packs v3 ──────────────────────────────────────── */
.v3-packs { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 40px 0 0; }
.v3-pack-card {
  background: var(--pearl); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 22px; display: flex; flex-direction: column; gap: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.v3-pack-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.v3-pack-card--featured { border-color: var(--gold); background: #FFFBF0; }
.v3-pack-card--featured:hover { border-color: var(--gold-hover); }

.v3-pack-card__header { margin-bottom: 18px; }
.v3-pack-badge { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 8px; }
.v3-pack-badge--gold { color: var(--gold); }
.v3-pack-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--navy); margin: 0 0 4px; }
.v3-pack-card p { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); margin: 0; }

.v3-pack-card ul { list-style: none; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.v3-pack-card ul li { font-family: var(--font-sans); font-size: 13px; color: var(--text-body); padding-left: 14px; position: relative; line-height: 1.4; }
.v3-pack-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }

.v3-packs-note { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); text-align: center; margin-top: 32px; }
.v3-packs-note a { color: var(--navy); font-weight: 600; text-decoration: none; }
.v3-packs-note a:hover { color: var(--gold-hover); }

/* ── Guarantee ─────────────────────────────────────── */
.v3-guarantee {
  display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold);
  padding: 44px 48px;
}
.v3-guarantee__icon { font-size: 56px; flex-shrink: 0; }
.v3-guarantee__text { flex: 1; }
.v3-guarantee__text p { font-family: var(--font-sans); font-size: 16px; color: var(--text-body); line-height: 1.65; margin-bottom: 8px; }
.v3-guarantee__unique { font-weight: 700 !important; color: var(--navy) !important; }

/* ── Testimonials v3 ───────────────────────────────── */
.v3-testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.v3-testi { background: var(--pearl); border: 1px solid var(--border); border-radius: 10px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.v3-testi__stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }
.v3-testi blockquote { font-family: var(--font-serif); font-size: 16px; font-weight: 300; color: var(--text-body); line-height: 1.6; font-style: italic; flex: 1; }
.v3-testi blockquote strong { font-style: normal; color: var(--navy); }
.v3-testi footer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.v3-testi__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-sans); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v3-testi__avatar--navy { background: var(--navy); color: var(--white); }
.v3-testi__avatar--green { background: #0D5C4A; color: var(--white); }
.v3-testi footer div strong { display: block; font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--navy); }
.v3-testi footer div span { font-family: var(--font-sans); font-size: 11px; color: var(--text-muted); }
.v3-testi__result { margin-left: auto; font-family: var(--font-sans); font-size: 11px; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ── Trustpilot bar ────────────────────────────────── */
.v3-trustpilot-bar { background: var(--pearl); border-top: 1px solid var(--border); padding: 16px 0; }
.v3-trustpilot-inner { text-align: center; }
.v3-tp-placeholder { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 14px; color: var(--navy); text-decoration: none; }
.v3-tp-placeholder:hover { color: var(--gold-hover); }

/* ── CTA Final ─────────────────────────────────────── */
.v3-cta-final { text-align: center; }
.v3-cta-final .v3-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.v3-cta-final__sub { font-family: var(--font-sans); font-size: 17px; color: rgba(255,255,255,0.55); }
.v3-cta-final__reassures { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── Footer v3 ─────────────────────────────────────── */
.v3-footer { background: var(--navy); padding: 72px 0 0; }
.v3-footer__grid { display: grid; grid-template-columns: 3fr 2fr 2fr 3fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.v3-footer__logo { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--white); display: block; margin-bottom: 12px; }
.v3-footer__logo span { color: var(--gold); }
.v3-footer__brand p { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 20px; }
.v3-footer__contact { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-sans); font-size: 13px; }
.v3-footer__contact a, .v3-footer__contact span { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.v3-footer__contact a:hover { color: var(--gold); }

.v3-footer__col strong { display: block; font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.v3-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.v3-footer__col ul a { font-family: var(--font-sans); font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.18s; }
.v3-footer__col ul a:hover { color: var(--gold); }
.v3-footer__nl-desc { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; margin-bottom: 14px; }
.v3-footer__nl-form { display: flex; }
.v3-footer__nl-form input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-right: none; padding: 11px 14px; font-family: var(--font-sans); font-size: 13px; color: var(--white); outline: none; border-radius: 4px 0 0 4px; }
.v3-footer__nl-form input::placeholder { color: rgba(255,255,255,0.25); }
.v3-footer__nl-form button { background: var(--gold); border: 1px solid var(--gold); color: var(--navy); font-family: var(--font-sans); font-size: 14px; font-weight: 700; padding: 11px 16px; cursor: pointer; border-radius: 0 4px 4px 0; transition: background 0.15s; }
.v3-footer__nl-form button:hover { background: var(--gold-hover); }

.v3-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.v3-footer__bottom span { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.3); }
.v3-footer__bottom ul { list-style: none; display: flex; gap: 20px; }
.v3-footer__bottom ul a { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.18s; }
.v3-footer__bottom ul a:hover { color: var(--gold); }

/* ── WhatsApp ────────────────────────────────────────── */
.v3-wa { position: fixed; bottom: 80px; right: 22px; z-index: 280; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.v3-wa__badge { background: var(--navy); color: var(--white); font-family: var(--font-sans); font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 20px; white-space: nowrap; }
.v3-wa__btn { width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.18s; text-decoration: none; }
.v3-wa__btn:hover { transform: scale(1.08); }

/* ── Mobile CTA ──────────────────────────────────────── */
.v3-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 275; background: var(--navy); border-top: 2px solid var(--gold); padding: 10px 16px; }
.v3-mobile-cta a { display: block; background: var(--gold); color: var(--navy); text-align: center; padding: 14px; border-radius: 8px; font-family: var(--font-sans); font-size: 15px; font-weight: 700; text-decoration: none; }

/* ── Cookie banner ────────────────────────────────────── */
.v3-cookie { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 520px; z-index: 260; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: 0 8px 30px rgba(26,39,68,0.12); transform: translateY(120%); transition: transform 0.35s ease; flex-wrap: wrap; }
.v3-cookie.visible { transform: translateY(0); }
.v3-cookie p { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); flex: 1; }
.v3-cookie a { color: var(--navy); font-weight: 500; }
.v3-cookie div { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Fade animations ─────────────────────────────────── */
.v3-fade { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.v3-fade--in { opacity: 1; transform: translateY(0); }
.no-scroll { overflow: hidden; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE v3
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .v3-packs { grid-template-columns: 1fr 1fr; }
  .v3-express-inner { grid-template-columns: 1fr; }
  .v3-express-card { max-width: 480px; }
}

@media (max-width: 1024px) {
  .v3-ens-explain { grid-template-columns: 1fr; gap: 48px; }
  .v3-testimonials { grid-template-columns: 1fr 1fr; }
  .v3-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .v3-nav__links { display: none; }
  .v3-nav__cta { display: none; }
  .v3-nav__burger { display: flex; }
  .v3-nav__inner { padding: 0 20px; }

  /* Hero */
  .v3-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .v3-hero__left { padding: 48px 20px 32px; }
  .v3-hero__right { padding: 0 20px 40px; }
  .v3-hero__right::before { display: none; }

  /* Stats */
  .v3-stats { padding: 20px; }
  .v3-stats__item { padding: 12px 20px; }
  .v3-stats__sep { height: 36px; }

  /* Packs */
  .v3-packs { grid-template-columns: 1fr; }

  /* Testimonials */
  .v3-testimonials { grid-template-columns: 1fr; }

  /* Guarantee */
  .v3-guarantee { flex-direction: column; padding: 28px 24px; }

  /* CTA Final */
  .v3-cta-final__reassures { gap: 12px; }

  /* Footer */
  .v3-footer__grid { grid-template-columns: 1fr; gap: 36px; }

  /* Section padding */
  .v3-section { padding: 64px 0; }
  .v3-container { padding: 0 20px; }
  .v3-cert-strip { padding: 12px 20px; }

  /* Mobile cta */
  .v3-mobile-cta { display: block; }
  body { padding-bottom: 68px; }
  .v3-wa { bottom: 80px; }

  /* Sticky bar */
  .v3-sticky-bar { padding: 8px 16px; top: 56px; }
  .v3-sticky-bar__text { display: none; }
}

@media (max-width: 480px) {
  .v3-nav__inner { padding: 0 16px; }
  .v3-hero__left { padding: 40px 16px 28px; }
  .v3-hero__right { padding: 0 16px 36px; }
  .v3-stats { flex-wrap: wrap; }
  .v3-stats__sep { display: none; }
  .v3-stats__item { width: 50%; padding: 12px; border-bottom: 1px solid var(--border); }
  .v3-express-btns { flex-direction: column; }
}

/* ── Licit bar ────────────────────────────────────── */
.v3-licit-bar { background: var(--navy); padding: 0; }
.v3-licit-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v3-licit-label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; flex-shrink: 0;
}
.v3-licit-items { display: flex; gap: 20px; flex-wrap: wrap; flex: 1; }
.v3-licit-item {
  font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.6);
}
.v3-licit-item strong { color: var(--white); }
.v3-licit-item--red { }
.v3-licit-item--amber { }

/* ── WhatsApp: hidden until scroll bottom ─────────── */
.v3-wa {
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.v3-wa--visible {
  opacity: 1; pointer-events: all;
}

@media (max-width: 768px) {
  .v3-licit-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .v3-licit-items { flex-direction: column; gap: 6px; }
}

/* ── Trustpilot estático ──────────────────────────── */
.v3-tp-static {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.v3-tp-stars { display: flex; gap: 3px; }
.v3-tp-star {
  font-size: 22px;
  color: #00B67A; /* Trustpilot green */
  line-height: 1;
}
.v3-tp-info { display: flex; align-items: baseline; gap: 6px; }
.v3-tp-score { font-family: var(--font-sans); font-size: 20px; font-weight: 700; color: var(--navy); }
.v3-tp-label { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); }
.v3-tp-logo {
  display: flex; align-items: center; gap: 5px;
  background: #00B67A; padding: 5px 10px; border-radius: 4px;
}
.v3-tp-logo-star { color: white; font-size: 16px; line-height: 1; }
.v3-tp-logo-text { color: white; font-family: var(--font-sans); font-size: 14px; font-weight: 700; }
.v3-tp-count { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); }

/* ── Hero sectors ──────────────────────────────────── */
.v3-hero__sectors {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.v3-hero__sectors span {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-muted);
  background: rgba(26,39,68,0.06); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 20px;
}

/* ── Pack cards v4 — sin feature lists ────────────── */
.v3-pack-card h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 500; color: var(--navy); margin: 8px 0 4px; }
.v3-pack-card > p { font-family: var(--font-sans); font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex: 1; }

/* Override: remove feature list styles from packs (v4) */
.v3-pack-card ul { display: none; }

/* ── Footer: 3 columnas en lugar de 4 ─────────────── */
.v3-footer__grid { grid-template-columns: 3fr 2fr 2fr; }

/* ── CTA final: centrado más limpio ──────────────── */
.v3-cta-final .v3-container { align-items: center; }
.v3-cta-final .v3-h2 { text-align: center; }
.v3-cta-final__sub { text-align: center; max-width: 480px; }

@media (max-width: 768px) {
  .v3-tp-static { padding: 12px 20px; gap: 12px; }
  .v3-footer__grid { grid-template-columns: 1fr; }
  .v3-hero__sectors { display: none; } /* ocultar en mobile para reducir ruido */
}

/* ════════════════════════════════════════════════════
   CRO IMPROVEMENTS — Exit popup, counters, tracking
════════════════════════════════════════════════════ */

/* ── Animated counter ────────────────────────────── */
.v3-counter { transition: opacity 0.1s; }

/* ── Social proof live ───────────────────────────── */
.v3-social-proof-live {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-sans); font-size: 11px;
  color: var(--text-muted); margin-top: 8px;
  transition: opacity 0.3s;
}
.v3-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  animation: live-pulse 1.8s infinite;
}
@keyframes live-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
#liveCount { transition: opacity 0.3s; }

/* ── Exit intent popup ───────────────────────────── */
.v3-exit-popup {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,39,68,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.v3-exit-popup.visible {
  opacity: 1; pointer-events: all;
}
.v3-exit-popup__box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 400px; width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(26,39,68,0.25);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.v3-exit-popup.visible .v3-exit-popup__box { transform: scale(1); }

.v3-exit-popup__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 18px;
  color: var(--text-muted); cursor: pointer; line-height: 1; padding: 4px;
}
.v3-exit-popup__close:hover { color: var(--navy); }

.v3-exit-popup__icon { font-size: 40px; margin-bottom: 14px; }

.v3-exit-popup__title {
  font-family: var(--font-serif); font-size: 26px;
  font-weight: 500; color: var(--navy);
  line-height: 1.2; margin-bottom: 12px;
}

.v3-exit-popup__sub {
  font-family: var(--font-sans); font-size: 14px;
  color: var(--text-muted); line-height: 1.6;
  margin-bottom: 24px;
}

.v3-exit-popup__dismiss {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--text-muted); margin-top: 14px;
  cursor: pointer; text-decoration: underline;
}
.v3-exit-popup__dismiss:hover { color: var(--navy); }

/* ── FAQ section styles ───────────────────────────── */
.v3-faq-wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.v3-faq-header { position: sticky; top: 100px; }

.v3-faq-list { display: flex; flex-direction: column; }

.v3-faq-q { border-bottom: 1px solid var(--border); }
.v3-faq-q button {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 0; background: none; border: none;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  color: var(--navy); cursor: pointer; text-align: left;
  transition: color 0.15s; line-height: 1.4;
}
.v3-faq-q button:hover { color: var(--gold-hover); }
.v3-faq-q button span {
  flex-shrink: 0; width: 26px; height: 26px;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-muted);
  transition: all 0.15s; font-style: normal;
}
.v3-faq-q.open button span { border-color: var(--navy); color: var(--navy); }

.v3-faq-a { padding: 0 0 20px; }
.v3-faq-a p {
  font-family: var(--font-sans); font-size: 14px;
  line-height: 1.7; color: var(--text-muted);
}
.v3-faq-a p strong { color: var(--navy); }

/* ── Hero sectors — top variant ──────────────────── */
.v3-hero__sectors--top {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px; margin-top: 0;
}
.v3-hero__sectors--top span {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--text-muted);
  background: rgba(26,39,68,0.06); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 20px;
}

/* ── font-display optimization ───────────────────── */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-display: swap;
}

@media (max-width: 1024px) {
  .v3-faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .v3-faq-header { position: static; }
}

/* ── Nav v2: ENS Express destacado + página activa en rojo ── */
.v3-nav__links a.nav-express, .nav__links a.nav-express { color: var(--gold); }
.v3-nav__links a.nav-active,
.nav__links a.nav-active { color: #dc2626 !important; font-weight: 600; }

/* ── Selector de idioma ── */
.lang-selector { position: relative; flex-shrink: 0; }
.lang-selector__btn {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1px solid var(--border-light, #E5E5E0);
  border-radius: 6px; padding: 6px 10px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  color: var(--text-body); cursor: pointer; transition: border-color 0.15s;
}
.lang-selector__btn:hover { border-color: var(--navy); }
.lang-selector__dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 4px;
  background: #fff; border: 1px solid var(--border-light, #E5E5E0);
  border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  min-width: 140px; z-index: 300; overflow: hidden;
}
.lang-selector__dropdown.open { display: block; }
.lang-selector__option {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 10px 14px; background: none; border: none;
  font-family: var(--font-sans); font-size: 13px; color: var(--navy);
  cursor: pointer; transition: background 0.12s; text-align: left;
}
.lang-selector__option:hover { background: var(--pearl, #F7F7F5); }
.lang-selector__option.active { font-weight: 600; color: var(--gold); }

/* ── Carrusel de opiniones ── */
.tcar { max-width: 900px; margin: 0 auto; position: relative; }
.tcar__view { overflow: hidden; }
.tcar__track { display: flex; transition: transform .5s ease; }
.tcar__slide { min-width: 100%; padding: 6px; box-sizing: border-box; }
.tcar__card { background:#fff; border:1px solid #E8E4DD; border-left:3px solid #C9A84C; border-radius:14px; padding:32px 34px; box-shadow:0 10px 30px rgba(26,39,68,0.06); }
.tcar__stars { color:#C9A84C; letter-spacing:2px; margin-bottom:12px; font-size:15px; }
.tcar__quote { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; font-style:italic; color:#1A2744; line-height:1.5; margin:0 0 16px; }
.tcar__author { font-family:'Inter',sans-serif; font-size:13px; font-weight:600; color:#3D4A5C; }
.tcar__result { font-family:'Inter',sans-serif; font-size:12px; color:#B68F2E; margin-top:4px; }
.tcar__dots { display:flex; gap:8px; justify-content:center; margin-top:22px; }
.tcar__dot { width:9px; height:9px; border-radius:50%; background:#D8D2C7; border:none; cursor:pointer; padding:0; transition:background .2s, transform .2s; }
.tcar__dot.active { background:#C9A84C; transform:scale(1.3); }
.tcar__arrow { position:absolute; top:42%; transform:translateY(-50%); background:#fff; border:1px solid #E8E4DD; width:42px; height:42px; border-radius:50%; cursor:pointer; font-size:20px; line-height:1; color:#1A2744; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(26,39,68,0.10); z-index:2; }
.tcar__arrow--prev { left:-21px; } .tcar__arrow--next { right:-21px; }
@media (max-width:980px){ .tcar__arrow { display:none; } }

/* Fix: tarjetas de pack legibles en secciones claras (una def. posterior las ponía en blanco) */
.section--pearl .pack-card, .section--white .pack-card { background:#fff !important; }
.section--pearl .pack-card__title, .section--white .pack-card__title { color: var(--navy) !important; }
.section--pearl .pack-card__desc, .section--white .pack-card__desc { color: var(--text-muted) !important; }
.section--pearl .pack-card__label, .section--white .pack-card__label { color: var(--gold) !important; }
