/* =========================================
   REACH LANGUAGES — STYLESHEET
   Paleta: Azul marino + Dorado + Blanco roto
   ========================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1E3D;
  --navy-dark:  #071426;
  --navy-mid:   #112550;
  --gold:       #D4AF37;
  --gold-light: #E8CC6A;
  --gold-pale:  rgba(212,175,55,0.12);
  --white:      #FFFFFF;
  --off-white:  #F8F6F0;
  --gray-100:   #F1EFE9;
  --gray-200:   #E2DDD2;
  --gray-400:   #776F64;
  --gray-600:   #6B6457;
  --gray-800:   #3A3530;
  --text:       #1A1714;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(11,30,61,0.08);
  --shadow-md:  0 8px 32px rgba(11,30,61,0.14);
  --shadow-lg:  0 20px 60px rgba(11,30,61,0.18);
  --transition: 0.25s ease;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-head:  'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(11,30,61,0.07);
  border-radius: 40px;
  border: 1px solid rgba(11,30,61,0.18);
}

.section-label--light { color: var(--gold-light); background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.2); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 28px;
}

.section-title--light { color: var(--white); }

p { margin-bottom: 16px; color: var(--gray-600); line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { color: inherit; font-weight: 600; }
.about strong, .problem strong, .includes strong, .compare strong, .faq strong { color: var(--text); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }

.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--xl { padding: 20px 44px; font-size: 18px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,30,61,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: all var(--transition);
}

.navbar--scrolled { box-shadow: var(--shadow-lg); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.navbar__logo {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-reach { color: var(--gold); }
.logo-lang { color: var(--white); margin-left: 4px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--gold); }

.navbar__cta { margin-left: auto; flex-shrink: 0; background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-weight: 700; padding: 10px 20px; font-size: 14px; }
.navbar__cta:hover { background: var(--gold-light); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.navbar__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #162D55 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero__bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.hero__actions .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.hero__note {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 0;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__mountain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.hero__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.hero__card:hover { background: rgba(255,255,255,0.11); border-color: rgba(212,175,55,0.3); }

.hero__card--1 { margin-right: 32px; }
.hero__card--3 { margin-right: 32px; }

.hero__card-icon { font-size: 28px; }

.hero__card-label { font-size: 12px; color: rgba(255,255,255,0.78); font-weight: 500; letter-spacing: 0.05em; }
.hero__card-value { font-size: 15px; color: var(--white); font-weight: 600; }

/* ===== CREDIBILIDAD ===== */
.credibility {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.credibility__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.credibility__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 40px;
  gap: 4px;
}

.credibility__number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.credibility__text {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  max-width: 140px;
  line-height: 1.4;
}

.credibility__divider {
  width: 1px;
  height: 48px;
  background: rgba(212,175,55,0.2);
}

/* ===== PROBLEM ===== */
.problem { background: var(--off-white); }

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem__content h2 { margin-bottom: 20px; }
.problem__content p { margin-bottom: 20px; }

.problem__highlight {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 8px;
}

.problem__highlight svg { flex-shrink: 0; margin-top: 3px; }
.problem__highlight p { margin-bottom: 0; }

.problem__visual { display: flex; flex-direction: column; gap: 20px; }

.problem__block {
  border-radius: var(--radius-md);
  padding: 28px;
}

.problem__block--bad {
  background: #FFF5F5;
  border: 1px solid #FFD4D4;
}
.problem__block--bad .problem__block-title { color: #CC4444; }

.problem__block--good {
  background: #F0F9F4;
  border: 1px solid #B8E0C8;
}
.problem__block--good .problem__block-title { color: #2C7A4E; }

.problem__block-title { font-weight: 700; font-size: 15px; margin-bottom: 12px; }

.problem__block ul { display: flex; flex-direction: column; gap: 8px; }
.problem__block li { font-size: 14px; color: var(--gray-600); display: flex; align-items: center; gap: 10px; }
.problem__block li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.problem__block--bad li::before { background: #CC4444; }
.problem__block--good li::before { background: #2C7A4E; }

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__text h2 { margin-bottom: 20px; }

.about__countries {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.about__countries-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.about__country-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.about__country {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__country:last-child { border-bottom: none; }

.about__timezone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

/* ===== VIOLETTA ===== */
.violetta {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--off-white) 100%);
  overflow: hidden;
}

.violetta__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.violetta__photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  text-align: center;
  border: 2px dashed rgba(212,175,55,0.5);
}

.violetta__credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.violetta__credential {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}
.violetta__credential svg { flex-shrink: 0; margin-top: 2px; }

.violetta__content h2 { margin-bottom: 20px; }

.violetta__differentiator {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 24px 0;
}

.violetta__diff-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.violetta__differentiator p { color: rgba(255,255,255,0.90); margin-bottom: 0; }
.violetta__differentiator strong { color: var(--gold); }

/* ===== VTEST ===== */
.vtest {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #162D55 100%);
  position: relative;
  overflow: hidden;
}

.vtest__intro {
  font-size: 18px;
  color: rgba(255,255,255,0.90);
  max-width: 760px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.vtest__intro strong { color: var(--gold); }

.vtest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.vtest__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
.vtest__card:hover { background: rgba(255,255,255,0.11); border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }

.vtest__card-icon { font-size: 32px; margin-bottom: 16px; }
.vtest__card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.vtest__card p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 0; }
.vtest__card strong { color: var(--gold-light); }

.vtest__process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.vtest__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 120px;
}

.vtest__step-num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.vtest__step-text { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; line-height: 1.35; }

.vtest__step-arrow { font-size: 20px; color: rgba(212,175,55,0.8); margin: 0 4px; }

.vtest__cta { text-align: center; }

.vtest__price {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

/* ===== EXAMS ===== */
.exams { background: var(--off-white); }

.exams__intro {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 700px;
  margin-bottom: 40px;
}

.exams__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--gray-200);
  border-radius: 12px;
  padding: 6px;
  width: fit-content;
}

.exams__tab {
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray-600);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.exams__tab:hover { color: var(--navy); }

.exams__tab--active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.exams__tab-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}

.exam__panel { display: none; }
.exam__panel--active { display: block; }

.exam__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.exam__level-badge {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.exam__level-badge--b1 { background: #E8F4FD; color: #1A6FAA; border: 2px solid #A8D4F0; }
.exam__level-badge--b2 { background: #F0E8FD; color: #6A1AAA; border: 2px solid #D0A8F0; }
.exam__level-badge--c1 { background: #FDF4E8; color: #AA6A1A; border: 2px solid #F0D0A8; }

.exam__name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.exam__meta { font-size: 14px; color: var(--gray-400); }
.exam__meta strong { color: var(--gray-600); }

.exam__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.exam__description h4,
.exam__skills h4 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 12px;
  margin-top: 24px;
}
.exam__description h4:first-child,
.exam__skills h4:first-child { margin-top: 0; }

.exam__score-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}

.exam__score-label { font-size: 12px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.exam__score-value { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.exam__score-value span { font-size: 16px; font-family: var(--font-body); color: rgba(255,255,255,0.78); font-weight: 400; }
.exam__score-note { font-size: 13px; color: rgba(255,255,255,0.78); }

.skill__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.skill__item:last-child { border-bottom: none; }

.skill__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.skill__item p { font-size: 14px; margin-bottom: 0; }

/* ===== INCLUDES ===== */
.includes { background: var(--white); }

.includes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.includes__item {
  background: var(--white);
  padding: 32px 28px;
  transition: all var(--transition);
}
.includes__item:hover { background: var(--off-white); }

.includes__num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.includes__item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.includes__item p { font-size: 14px; margin-bottom: 0; }

/* ===== PROCESS ===== */
.process {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.process__intro {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: 56px;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.process__step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
.process__step:hover { background: rgba(255,255,255,0.09); border-color: rgba(212,175,55,0.3); }

.process__step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.process__step-num {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.process__step h3 { font-size: 18px; font-weight: 700; color: var(--white); }

.process__step p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 0; padding-left: 16px; }

.process__connector {
  width: 2px;
  height: 24px;
  background: rgba(212,175,55,0.25);
  margin-left: 51px;
}

.process__alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.process__alert svg { flex-shrink: 0; margin-top: 2px; }
.process__alert p { margin-bottom: 0; color: rgba(255,255,255,0.90); font-size: 15px; }
.process__alert strong { color: var(--gold); }

.process__cta { text-align: center; }

/* ===== COMPARE ===== */
.compare { background: var(--off-white); }

.compare__intro {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 15px;
}

.compare__table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--gray-200);
}

.compare__table th:first-child { color: var(--gray-400); }

.compare__col-other { color: var(--gray-600); background: #FAFAFA; }
.compare__col-reach { color: var(--navy-dark); background: #F5F2E8; }

.compare__table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.compare__table tr:last-child td { border-bottom: none; }

.compare__table td:first-child { color: var(--gray-600); font-weight: 500; }
.compare__table td.compare__col-other { color: var(--gray-400); font-size: 14px; }
.compare__table td.compare__col-reach { color: var(--navy); }
.compare__table td.compare__col-reach strong { color: var(--navy-dark); }

.compare__table tr:hover td { background: rgba(212,175,55,0.03); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial__card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial__card--placeholder {
  opacity: 0.6;
  border-style: dashed;
}

.testimonial__photo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-200);
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial__name { font-size: 15px; font-weight: 700; color: var(--navy-dark); }
.testimonial__detail { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ===== FAQ ===== */
.faq { background: var(--gray-100); }

.faq__inner { max-width: 800px; margin: 0 auto; }
.faq__inner .section-label,
.faq__inner .section-title { text-align: center; display: block; }
.faq__inner .section-label { display: inline-block; margin: 0 auto 16px; }

.faq__list { display: flex; flex-direction: column; gap: 8px; margin-top: 48px; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item:hover { box-shadow: var(--shadow-sm); }
.faq__item.open { border-color: rgba(212,175,55,0.4); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  text-align: left;
  transition: all var(--transition);
}
.faq__question:hover { color: var(--navy); }
.faq__item.open .faq__question { color: var(--navy); }

.faq__icon { flex-shrink: 0; transition: transform var(--transition); color: var(--gray-400); }
.faq__item.open .faq__icon { transform: rotate(180deg); color: var(--gold); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p { padding: 0 24px 22px; font-size: 15px; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #162D55 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-final__bg-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final__mountain {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  opacity: 0.4;
  pointer-events: none;
}

.cta-final__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-final__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-final__text { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 20px; }

.cta-final__footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 16px;
  letter-spacing: 0.03em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.65); font-style: italic; }

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links li a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color var(--transition); }
.footer__links li a:hover { color: var(--gold); }

/* ===== FOOTER BRANDING — DIGIN PERÚ ===== */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
  margin: 0 24px;
}

.footer-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.footer-developer {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.developer-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.developer-heart {
  animation: heartbeat 1.5s ease-in-out infinite;
  display: block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.25); }
  50% { transform: scale(1); }
}

.digin-brand {
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.digin-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(255,255,255,0.05));
  border-radius: 50px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.digin-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s ease;
}

.digin-brand:hover .digin-logo {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(212,175,55,0.2);
}

.digin-brand:hover .digin-logo::before {
  left: 100%;
}

.digin-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), #b8952e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.digin-brand:hover .digin-icon {
  transform: rotate(360deg);
}

.digin-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.digin-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1;
}

.digin-tagline {
  font-size: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 768px) {
  .footer-branding {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: 24px;
  }
  .footer-developer { justify-content: center; }
}

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  max-width: 220px;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  max-width: 220px;
}
.whatsapp-float__label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float__label {
  max-width: 160px;
  opacity: 1;
}
@media (max-width: 500px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 13px;
    border-radius: 50%;
  }
  .whatsapp-float__label { display: none; }
}
@media (max-width: 1024px) {
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 40px; }
  .violetta__inner { grid-template-columns: 300px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; gap: 12px; }
  .hero__card--1, .hero__card--3 { margin-right: 0; }
  .hero__mountain { display: none; }

  .problem__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__countries { position: static; }

  .violetta__inner { grid-template-columns: 1fr; }
  .violetta__photo-placeholder { aspect-ratio: 4/3; max-width: 360px; }

  .vtest__grid { grid-template-columns: 1fr; gap: 16px; }

  .exam__grid { grid-template-columns: 1fr; gap: 32px; }
  .exams__tabs { flex-direction: column; width: 100%; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .credibility__grid { gap: 0; flex-wrap: wrap; }
  .credibility__item { padding: 16px 24px; }
  .credibility__divider { display: none; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-dark); padding: 20px 24px 24px; border-top: 1px solid rgba(255,255,255,0.08); gap: 16px; }
  .navbar__links.open { display: flex; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  .section { padding: 56px 0; }
  .container { padding: 0 18px; }

  .hero { padding: 88px 0 52px; min-height: auto; }
  .hero__actions { flex-direction: column; }
  .btn--lg, .btn--xl { width: 100%; justify-content: center; }

  .hero__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__card--1, .hero__card--2, .hero__card--3 { margin-right: 0; }
  .hero__card--2 { grid-column: span 2; }

  .includes__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .compare__table { min-width: 560px; }
  .compare__table th, .compare__table td { padding: 12px 14px; font-size: 13px; }

  .vtest__process { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .vtest__step { flex-direction: row; align-items: center; gap: 14px; max-width: 100%; text-align: left; }
  .vtest__step-text { font-size: 14px; }
  .vtest__step-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 10px; }

  .process__step-header { gap: 12px; }
  .process__connector { margin-left: 35px; }

  .exam__level-badge { width: 56px; height: 56px; font-size: 18px; }
  .exam__name { font-size: 20px; }

  .cta-final { padding: 72px 0; }

  .credibility__item { padding: 14px 16px; min-width: 45%; }
  .credibility__number { font-size: 22px; }
}

@media (max-width: 500px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  .exams__tabs { gap: 4px; padding: 4px; }
  .exams__tab { padding: 10px 14px; font-size: 14px; }

  .hero__card { padding: 14px; }
  .hero__card-icon { font-size: 20px; }
  .hero__card-value { font-size: 14px; }
  .hero__visual { grid-template-columns: 1fr; }
  .hero__card--2 { grid-column: span 1; }

  .hero__badge { font-size: 11px; }

  .problem__block { padding: 20px; }

  .includes__item { padding: 24px 20px; }
  .includes__num { font-size: 28px; }

  .process__step { padding: 22px 20px; }
  .process__step p { padding-left: 0; margin-top: 8px; }

  .violetta__credentials { gap: 8px; }
  .violetta__credential { font-size: 12px; }

  .vtest__card { padding: 22px; }

  .exam__header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .faq__question { font-size: 14px; padding: 18px 16px; }
  .faq__answer p { padding: 0 16px 18px; font-size: 14px; }

  .about__country { font-size: 14px; }
  .navbar__logo { font-size: 16px; }
}
