/* ============================================================
   PANGEA SOLUCIONES GLOBALES — Landing Page Styles
   Paleta: Azul marino profundo + Oro + Blanco
   Fuentes: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  /* Colors */
  --navy:        #0A1628;
  --navy-mid:    #0F2042;
  --navy-light:  #162D58;
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-pale:   #F5ECD7;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --text-dark:   #1A1A2E;
  --text-body:   #3A4055;
  --text-muted:  #6B7280;
  --border:      rgba(201,168,76,0.2);
  --border-light: rgba(255,255,255,0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --container:   1200px;
  --section-pad: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:   0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:   0 20px 60px rgba(10,22,40,0.22);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.35);

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   LAYOUT HELPERS
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section--dark  { background: var(--navy); color: var(--white); }
.section--alt   { background: var(--off-white); }

/* ===========================
   TYPOGRAPHY SYSTEM
=========================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 4px;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #A8872A 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn--primary:active { transform: translateY(0); }

.btn--gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

.btn--hero {
  font-size: 1rem;
  padding: 18px 40px;
  font-weight: 700;
}

.btn--xl {
  font-size: 1.1rem;
  padding: 20px 44px;
}

/* ===========================
   STICKY CTA BUTTON
=========================== */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease-spring);
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}

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

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-cta__main {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.sticky-cta__sub {
  font-size: 0.72rem;
  opacity: 0.85;
}

.sticky-cta__pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #FF4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.72) 40%,
    rgba(10,22,40,0.82) 100%
  );
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__logo {
  margin-bottom: 40px;
}

.hero__logo .logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  animation: fade-up 0.7s var(--ease) both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 780px;
  animation: fade-up 0.8s 0.1s var(--ease) both;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fade-up 0.9s 0.2s var(--ease) both;
}

.hero__pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fade-up 1s 0.3s var(--ease) both;
}

.price-old {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.price-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-top: 20px;
  animation: fade-up 1.1s 0.5s var(--ease) both;
}

.hero__trust svg { color: var(--gold); }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-indicator 1.8s ease-in-out infinite;
}

@keyframes scroll-indicator {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%       { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ===========================
   FADE-UP ANIMATION
=========================== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   OFFER SECTION
=========================== */
.offer {
  background: var(--white);
}

.offer__header {
  text-align: center;
  margin-bottom: 56px;
}

.offer__header .section-sub { margin: 0 auto 0; }

.offer__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.offer__card--main {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.offer__card--main::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.offer__price-block { margin-bottom: 32px; }

.offer__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.offer__prices {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
}

.offer__old {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.offer__current {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.offer__current small {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.7;
}

.offer__seats {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.offer__seats svg { color: var(--gold); }

/* Benefits list */
.offer__benefits { padding: 8px 0; }

.offer__benefits-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.benefits-list { display: flex; flex-direction: column; gap: 20px; }

.benefits-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefits-list__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.benefits-list__item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   AUTHORITY / STATS
=========================== */
.authority__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px 48px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 130px;
  padding: 16px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  vertical-align: super;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.authority__header { margin-bottom: 48px; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.testimonial-card__video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  overflow: hidden;
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,22,40,0.4);
  pointer-events: none;
}

.testimonial-play svg {
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.testimonial-card__body { padding: 24px; }

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ===========================
   FOR YOU — PROFILES
=========================== */
.for-you { background: var(--white); }

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.profile-card {
  background: var(--white);
  border: 1px solid #E8E4D8;
  border-radius: 12px;
  padding: 28px 22px;
  transition: all 0.3s var(--ease);
  cursor: default;
}

.profile-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.profile-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.profile-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===========================
   DIFFERENTIALS
=========================== */
.differentials__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.differentials__left .section-title { margin-bottom: 20px; }

.differentials__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.differentials__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #EDE8DF;
  transition: all 0.28s var(--ease);
}

.diff-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.diff-item__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.diff-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.diff-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===========================
   VISA TYPES
=========================== */
.visa-types { background: var(--white); }
.visa-types .section-title,
.visa-types .section-sub { text-align: center; }
.visa-types .section-label { display: block; text-align: center; }

.visa-cards {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}

.visa-card {
  flex: 1;
  padding: 48px 48px;
}

.visa-card--b1 { border-right: 1px solid rgba(255,255,255,0.08); }

.visa-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.visa-label {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.visa-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.visa-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.visa-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}

.visa-card__list li svg { color: var(--gold); flex-shrink: 0; }

.visa-card__divider {
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visa-card__divider span {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  opacity: 0.5;
}

.visa-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 20px 24px;
}

.visa-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.visa-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   CTA BAND
=========================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 56px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band__text h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-band__text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* ===========================
   FAQ ACCORDION
=========================== */
.faq { background: var(--off-white); }
.faq .section-title, .faq .section-label { text-align: center; display: block; }

.faq-list {
  max-width: 780px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #E8E4D8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

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

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #F0EBE0;
  padding-top: 16px;
}

/* ===========================
   STORY SECTION
=========================== */
.story { background: var(--navy); }

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.story__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
}

.story__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__image-wrap.no-img {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}

.story__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 60%);
}

.story__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10,22,40,0.85);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.story__image-badge span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.story__image-badge strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.story__text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.story__text p strong {
  color: var(--gold-light);
  font-weight: 600;
}

.story__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.value-pill {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta { background: var(--white); }

.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__label {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 24px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.final-cta__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.final-cta__note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
}

.footer__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}

.footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4ADE80;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  transition: all 0.25s var(--ease);
}

.footer__wa-btn:hover {
  background: rgba(37,211,102,0.2);
  transform: translateY(-2px);
}

.footer__info h4,
.footer__services h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__info ul,
.footer__services ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__info li,
.footer__services li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__disclaimer {
  max-width: 620px;
  font-size: 0.72rem !important;
  opacity: 0.6;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .offer__grid           { grid-template-columns: 1fr; }
  .offer__card--main     { max-width: 480px; }

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

  .differentials__inner  { grid-template-columns: 1fr; gap: 48px; }

  .visa-cards            { flex-direction: column; }
  .visa-card             { padding: 40px 36px; }
  .visa-card--b1         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .visa-card__divider    { display: none; }

  .story__inner          { grid-template-columns: 1fr; gap: 48px; }
  .story__image          { max-width: 480px; }

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

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .hero__content { padding-top: 60px; }

  .br-desktop { display: none; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .authority__stats {
    gap: 0;
    padding: 28px 16px;
  }

  .stat-divider { display: none; }

  .stat-item { min-width: 100px; padding: 12px 8px; }

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

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__text h3 { font-size: 1.3rem; }

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

  .sticky-cta__text { display: none; }
  .sticky-cta { padding: 15px; border-radius: 50%; }
  .sticky-cta__icon { margin: 0; }
  .sticky-cta__pulse { top: -2px; right: -2px; }

  .visa-card { padding: 32px 24px; }

  .offer__card--main { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__badge { font-size: 0.72rem; }
  .hero__pricing { gap: 10px; }
  .price-current { font-size: 1.6rem; }

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

  .section-title { font-size: 1.8rem; }

  .btn--hero { padding: 16px 28px; font-size: 0.92rem; }

  .authority__stats { flex-wrap: wrap; }
  .stat-item { width: 50%; }

  .br-mobile { display: none; }
}

/* ===========================
   ACCESSIBILITY
=========================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
