/* ============================================================
   PANGEA SOLUCIONES GLOBALES — VISA CANADIENSE
   Premium Landing Page Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96D;
  --gold-dark:  #A07830;
  --black:      #0A0A0A;
  --dark:       #111217;
  --dark-card:  #16181F;
  --mid:        #1E2028;
  --white:      #FFFFFF;
  --off-white:  #F5F3EE;
  --muted:      #9A9A9A;
  --border:     rgba(201,168,76,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.22);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--black);
  padding: 16px 36px;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn--lg { padding: 18px 44px; font-size: 1.1rem; }
.btn--xl { padding: 22px 56px; font-size: 1.2rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---- Section Labels / Titles ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.6;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }

/* ============================================================
   TOP BANNER
============================================================ */
.top-banner {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-banner__text {
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 500;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.countdown__label {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.countdown__sep {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  align-self: flex-start;
  padding-top: 2px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.9) 100%
  );
}
/* Decorative gold line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.9s ease both;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeSlideDown 1s ease 0.15s both;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeSlideDown 1s ease 0.3s both;
}
.br-desk { display: block; }
.hero__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeSlideDown 1s ease 0.4s both;
}
.hero__price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
}
.hero__price-now {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero__price-tag {
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.hero__disclaimer {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  animation: fadeSlideDown 1s ease 0.6s both;
}
.hero__scroll-line {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ============================================================
   STATS
============================================================ */
.stats {
  background: var(--dark);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.stat__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   OFFER
============================================================ */
.offer {
  background: var(--off-white);
  padding: 100px 0;
}
.offer__layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}
.offer__card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.offer__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.offer__badge-top {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.offer__pricing {
  margin-bottom: 8px;
}
.offer__old {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 4px;
}
.offer__now {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.offer__currency {
  font-size: 1.2rem;
  color: var(--muted);
  margin-left: 4px;
}
.offer__slots {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin: 16px 0 28px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer__features-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--black);
}
.checklist { display: flex; flex-direction: column; gap: 20px; }
.checklist__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.checklist__icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist__item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}
.checklist__item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.offer__warning {
  margin-top: 48px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.offer__warning-icon { font-size: 1.4rem; flex-shrink: 0; }
.offer__warning p {
  font-style: italic;
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ============================================================
   FOR WHO
============================================================ */
.for-who {
  background: var(--white);
  padding: 100px 0;
}
.profiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.profile-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border);
  background: var(--white);
}
.profile-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}
.profile-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   STORY
============================================================ */
.story {
  background: var(--off-white);
  padding: 100px 0;
}
.story__layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.story__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.story__img-wrap--placeholder {
  background: linear-gradient(135deg, var(--mid) 0%, var(--dark-card) 100%);
  min-height: 480px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.story__img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.story__img-badge span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.story__img-badge span:last-child {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.story__text { padding-left: 20px; }
.story__text .section-label { text-align: left; }
.story__text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0 36px;
  line-height: 1.6;
}

/* ============================================================
   DIFFS
============================================================ */
.diffs {
  background: var(--dark);
  padding: 100px 0;
}
.diffs .section-label { color: var(--gold); }
.diffs .section-title { color: var(--white); }
.diffs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diff-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.diff-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.diff-item:hover::before { transform: scaleX(1); }
.diff-item:hover { background: rgba(201,168,76,0.05); }
.diff-item:nth-child(3n) { border-right: none; }
.diff-item:nth-child(4), .diff-item:nth-child(5), .diff-item:nth-child(6) { border-bottom: none; }
.diff-item__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.diff-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.diff-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   VISA INFO
============================================================ */
.visa-info {
  background: var(--white);
  padding: 100px 0;
}
.visa-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.visa-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.visa-block:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.visa-block__icon { font-size: 2.4rem; margin-bottom: 20px; }
.visa-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}
.visa-block ul { display: flex; flex-direction: column; gap: 10px; }
.visa-block li {
  font-size: 0.92rem;
  color: #555;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.visa-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.visa-block p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--dark);
  padding: 100px 0;
}
.testimonials .section-label { color: var(--gold); }
.testimonials .section-title { color: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-card__video {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--mid);
  overflow: hidden;
}
.testi-card__vid-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-card__video--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mid), var(--dark-card));
}
.testi-card__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: var(--transition);
  pointer-events: none;
}
.testi-card__vid-player:not([paused]) ~ .testi-card__play-overlay { opacity: 0; }
.play-btn {
  width: 54px;
  height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: var(--shadow-gold);
}
.testi-card__body { padding: 24px; }
.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-card__body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.testi-card__body strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}
.testi-tag {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 6px;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  background: var(--off-white);
  padding: 100px 0;
}
.faq__list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border); }
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-item__q:hover { color: var(--gold-dark); }
.faq-item.open .faq-item__q { color: var(--gold-dark); }
.faq-item__arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-item__arrow { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  text-align: center;
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.cta-final__badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-final__title em {
  font-style: italic;
  color: var(--gold);
}
.cta-final__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-final__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.cta-final__price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}
.cta-final__price-now {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.cta-final__guarantee {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #060608;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer__tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  font-style: italic;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.footer__col strong { color: rgba(255,255,255,0.75); }
.footer__link {
  color: var(--muted);
  transition: var(--transition);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 10px;
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  border-radius: 100px;
  padding: 14px 22px 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  animation-play-state: paused;
}
.wa-float__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .offer__layout { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .profiles__grid { grid-template-columns: repeat(2, 1fr); }
  .story__layout { grid-template-columns: 1fr; }
  .story__img-wrap { max-width: 480px; }
  .story__text { padding-left: 0; }
  .diffs__grid { grid-template-columns: repeat(2, 1fr); }
  .diff-item:nth-child(2n) { border-right: none; }
  .diff-item:nth-child(3) { border-right: 1px solid var(--border); }
  .diff-item:nth-child(4), .diff-item:nth-child(5) { border-bottom: 1px solid var(--border); }
  .diff-item:nth-child(6) { border-bottom: none; border-right: none; }
  .visa-info__grid { grid-template-columns: 1fr; max-width: 560px; margin: 60px auto 0; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 60px auto 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .top-banner__inner { flex-direction: column; gap: 10px; }
  .top-banner__text { text-align: center; font-size: 0.78rem; }
  .hero__content { padding: 80px 24px 60px; }
  .br-desk { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .profiles__grid { grid-template-columns: 1fr 1fr; }
  .diffs__grid { grid-template-columns: 1fr; }
  .diff-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .diff-item:last-child { border-bottom: none !important; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .wa-float__label { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
  .story__img { height: 320px; }
  .story__img-badge { bottom: -16px; right: -8px; }
}

@media (max-width: 480px) {
  .profiles__grid { grid-template-columns: 1fr; }
  .hero__price-row { flex-wrap: wrap; gap: 10px; }
  .btn--xl { padding: 18px 28px; font-size: 1rem; }
  .countdown__num { font-size: 1.1rem; }
}
