/* ============================================================
   YOUNGHAIR v10 — FINAL POLISH OVERRIDES
   Applied after main.css. All 47 fixes from Asaf's review.
   ============================================================ */

:root {
  /* === Override primary blue to deep navy === */
  --navy-deep: #0A1733;
  --navy-700: #1A2C5F;
  --navy-600: #243B7A;
  --navy-500: #2E4A95;
  
  /* New gradients with deep navy instead of bright blue */
  --gradient-brand: linear-gradient(135deg, #1A2C5F 0%, #243B7A 50%, #2E4A95 100%);
  --gradient-brand-soft: linear-gradient(135deg, #243B7A 0%, #2E4A95 50%, #3D5CAD 100%);
  --gradient-section-1: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  --gradient-section-2: linear-gradient(180deg, #FAFBFC 0%, #F4F7FB 100%);
  --gradient-to-footer: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 60%, #1A2C5F 100%);
  
  /* Gold — refined, elegant */
  --gold: #B8956A;
  --gold-light: #C9A579;
  --gold-soft: #D4B98A;
  --gradient-gold: linear-gradient(135deg, #D4B98A 0%, #C9A579 40%, #B8956A 100%);
}

/* ============================================================
   GLOBAL — Elegant gold accent for "em" emphasis
   ============================================================ */
.display em,
.pullquote em,
h1 em, h2 em, h3 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A579 0%, #B8956A 50%, #A88555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

/* Subtle elegant underline beneath gold words */
.display em::after,
h1 em::after, h2 em::after, h3 em::after {
  content: '';
  position: absolute;
  bottom: -0.12em;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 149, 106, 0.5) 30%, rgba(184, 149, 106, 0.5) 70%, transparent 100%);
  border-radius: 1px;
}

/* ============================================================
   NAVIGATION — Bigger menu text
   ============================================================ */
.nav__link {
  font-size: 15.5px !important;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.nav__logo {
  height: 56px !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width: 1023px) {
  .nav__logo { height: 48px !important; }
}

/* ============================================================
   HERO — Big image, no frame, no signature card
   ============================================================ */
.section--hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 1023px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero .display--hero {
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero .lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
}

/* Hero visual — big, floating, no frame */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 600px;
}

.hero__image-wrap--action,
.hero__image-wrap {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  aspect-ratio: auto !important;
}

/* Subtle organic radial behind the image — no frame */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 50%;
  width: min(640px, 95%);
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(36, 59, 122, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 25% 75%, rgba(201, 165, 121, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 60%, rgba(184, 153, 104, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.hero__visual::after { content: none; }

.hero__image,
.hero__image--action {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 40px rgba(10, 23, 51, 0.2));
  position: relative;
  z-index: 1;
}

/* HIDE the action badge / signature card completely */
.hero__action-badge,
.hero__signature-card,
.hero__caption {
  display: none !important;
}

/* === Hero CTAs — single CTA === */
.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero__ctas .btn--solid {
  background: var(--gradient-brand);
  box-shadow: 
    0 12px 28px rgba(26, 44, 95, 0.32),
    0 4px 8px rgba(26, 44, 95, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  padding: 18px 36px;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__ctas .btn--solid:hover {
  box-shadow: 
    0 16px 36px rgba(26, 44, 95, 0.42),
    0 6px 12px rgba(26, 44, 95, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* ============================================================
   HERO STATS — Bigger, elegant gold integration
   ============================================================ */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.stat.glass-chip {
  text-align: center;
  padding: 24px 16px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(184, 149, 106, 0.18) !important;
  border-radius: 16px !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 
    0 4px 16px rgba(10, 23, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat.glass-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.6;
}

.stat.glass-chip:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 28px rgba(10, 23, 51, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(184, 149, 106, 0.32) !important;
}

.stat__num {
  font-size: clamp(26px, 2.8vw, 36px) !important;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #1A2C5F 0%, #243B7A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  display: block;
}

.stat__label {
  font-size: clamp(12.5px, 1vw, 13.5px) !important;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.005em;
}

/* ============================================================
   WHY CARDS — Bigger text, bigger numbers, no clipping
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-auto-flow: row;
}

@media (max-width: 767px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  padding: 40px 36px !important;
  position: relative;
  overflow: visible !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 24px !important;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 24px 48px rgba(10, 23, 51, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-card__num {
  font-size: clamp(48px, 5vw, 68px) !important;
  font-weight: 800;
  line-height: 1 !important;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, #243B7A 0%, #B8956A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: block;
  padding-top: 4px;
}

.why-card__title {
  font-size: clamp(20px, 2.2vw, 26px) !important;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.why-card__body {
  font-size: clamp(15px, 1.2vw, 17px) !important;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ============================================================
   LOCATIONS — No dots, check only, bigger text, tight spacing
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .locations-grid { grid-template-columns: 1fr; }
}

.location-card {
  padding: 36px !important;
  display: flex;
  flex-direction: column;
  gap: 14px !important;
}

.location-card__flag {
  font-size: 52px;
  line-height: 1;
}

.location-card__title {
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.2;
}

.location-card__body {
  font-size: clamp(15px, 1.15vw, 16.5px) !important;
  line-height: 1.65;
  color: var(--gray-700);
}

.location-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  list-style: none;
  padding: 0;
}

.location-card__list li {
  font-size: clamp(14.5px, 1.1vw, 16px) !important;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-inline-start: 30px !important;
  position: relative;
  font-weight: 500;
}

/* Remove the blue circle dot — keep only check mark */
.location-card__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  width: 18px;
  height: 12px;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.location-card__list li::after {
  content: '';
  position: absolute;
  inset-inline-start: 2px;
  top: 6px;
  width: 12px;
  height: 6px;
  border-inline-start: 2.5px solid var(--gold) !important;
  border-bottom: 2.5px solid var(--gold) !important;
  border-top: none;
  border-inline-end: none;
  transform: rotate(-45deg);
}

.locations-note {
  text-align: center;
  font-size: 15.5px;
  color: var(--gray-700);
  margin-top: 8px;
}

.locations-note a {
  color: var(--navy-600);
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
}

/* ============================================================
   FLAGS / RED FLAGS section — uniform with site
   ============================================================ */
.flags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 767px) { .flags-grid { grid-template-columns: 1fr; } }

.flag-card {
  padding: 36px !important;
  border-inline-start: 3px solid #B8956A !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-radius: 24px !important;
}

.flag-card__icon {
  font-size: 28px;
  color: #B8956A !important;
  font-weight: 800;
  margin-bottom: 14px;
}

.flag-card__title {
  font-size: clamp(19px, 2vw, 24px) !important;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.flag-card__body {
  font-size: clamp(15px, 1.15vw, 16.5px) !important;
  line-height: 1.65;
  color: var(--gray-700);
}

/* ============================================================
   PROCESS — Bigger cards, symmetric (4-3 layout)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-step {
  padding: 32px 26px !important;
  text-align: center;
  background: rgba(255, 255, 255, 0.7) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 23, 51, 0.08);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 22px !important;
  font-weight: 800;
  margin-bottom: 18px;
  -webkit-text-fill-color: white !important;
  background-clip: initial !important;
  box-shadow: 
    0 8px 22px rgba(26, 44, 95, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.process-step__title {
  font-size: clamp(17px, 1.5vw, 19px) !important;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.process-step__body {
  font-size: clamp(14px, 1.1vw, 15.5px) !important;
  line-height: 1.6;
  color: var(--gray-700);
}

/* ============================================================
   GALLERY — Symmetric, premium, equal-size images
   ============================================================ */
.section--results { padding-top: var(--section-y); padding-bottom: var(--section-y); }

.gallery,
.gallery--asymmetric {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: none !important;
  gap: 18px !important;
  margin-bottom: 28px;
}

.gallery__item,
.gallery--asymmetric .gallery__item {
  aspect-ratio: 1 / 1 !important;
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  height: auto !important;
  width: 100% !important;
  border-radius: 20px !important;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
  box-shadow: 0 6px 18px rgba(10, 23, 51, 0.08);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  isolation: isolate;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 23, 51, 0.14);
}

.gallery__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .gallery, .gallery--asymmetric { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .gallery, .gallery--asymmetric {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

.gallery__more {
  text-align: center;
  margin-top: 28px;
}

/* ============================================================
   LIGHTBOX — Clear close button, no zoom
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 23, 51, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  animation: lightbox-in 0.3s ease;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.lightbox__inner {
  position: relative;
  max-width: min(900px, 90vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.lightbox__close {
  position: absolute;
  top: -16px;
  inset-inline-end: -16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--navy-deep);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(10, 23, 51, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox__close:hover {
  transform: scale(1.1);
  background: var(--gold-light);
  color: var(--white);
}

.lightbox__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox__content img,
.lightbox__content video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  width: auto !important;
  height: auto !important;
  /* PREVENT ZOOM */
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   MEDIA / PRESS — connect to real videos
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) { .media-grid { grid-template-columns: 1fr; } }

.media-card {
  padding: 0 !important;
  text-align: center;
  cursor: pointer;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-radius: 20px !important;
  transition: all 0.5s;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 23, 51, 0.10);
}

.media-card__preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  position: relative;
  overflow: hidden;
}

.media-card__preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(201, 165, 121, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.media-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.media-card:hover .media-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.media-card__play svg {
  width: 24px;
  height: 24px;
  fill: var(--navy-deep);
  margin-inline-start: 2px;
}

.media-card__content {
  padding: 26px 24px;
}

.media-card__logo {
  font-size: clamp(18px, 1.8vw, 22px) !important;
  font-weight: 800;
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, #243B7A 0%, #B8956A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.media-card__title {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.media-card__body {
  font-size: 14px !important;
  line-height: 1.6;
  color: var(--gray-700);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  transition: all 0.4s;
}

.faq-item[open] {
  box-shadow: 0 12px 32px rgba(10, 23, 51, 0.10);
  background: rgba(255, 255, 255, 0.92) !important;
}

.faq-item__q {
  padding: 22px 28px !important;
  font-size: clamp(16px, 1.4vw, 18px) !important;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.005em;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.4s;
}

.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  padding: 0 28px 24px !important;
  font-size: 15.5px !important;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ============================================================
   TESTIMONIALS section — independent, premium
   ============================================================ */
.section--testimonials {
  background: var(--gradient-section-2);
  padding: var(--section-y) 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 767px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  padding: 32px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(184, 149, 106, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial__quote { flex: 1; }
.testimonial__author {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 149, 106, 0.18);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 18px;
  inset-inline-start: 28px;
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial__quote {
  font-size: 15.5px !important;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px !important;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-size: 14.5px !important;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial__author::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================
   CONTACT — Simple form: Name + Phone only
   ============================================================ */
.section--contact {
  background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 50%, #F4F7FB 100%);
  padding: var(--section-y) 0;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; gap: 28px; }
}

.contact__form-wrap {
  padding: 42px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-radius: 28px !important;
  box-shadow: 
    0 24px 48px rgba(10, 23, 51, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
  .contact__form-wrap { padding: 28px !important; }
}

.contact__form-wrap .display--sm {
  font-size: clamp(24px, 2.6vw, 32px) !important;
  margin-bottom: 8px !important;
}

.form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }

.field__label {
  font-size: 13.5px !important;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.01em;
}

.field__input {
  width: 100%;
  padding: 15px 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(10, 23, 51, 0.10) !important;
  background: var(--white) !important;
  font-size: 16px !important;
  color: var(--ink);
  transition: all 0.3s;
}

.field__input:focus {
  outline: none;
  border-color: var(--navy-600) !important;
  box-shadow: 0 0 0 4px rgba(36, 59, 122, 0.10);
}

.form .btn--solid {
  background: var(--gradient-brand);
  padding: 18px 32px;
  font-size: 16.5px;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 
    0 12px 28px rgba(26, 44, 95, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

/* Hide email field, checkbox, legal — simpler form */
.form .field--email,
.form .checkbox,
.form__legal {
  display: none !important;
}

/* Contact info — clean */
.contact__info { display: flex; flex-direction: column; gap: 14px; }

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(10, 23, 51, 0.05);
  transition: all 0.3s;
}

.info-row:hover {
  transform: translateX(-3px);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(10, 23, 51, 0.06);
}

[dir="ltr"] .info-row:hover { transform: translateX(3px); }

.info-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 44, 95, 0.20);
}

.info-row__icon--green {
  background: linear-gradient(135deg, #25D366 0%, #1FB855 100%);
}

.info-row__label {
  font-size: 11.5px;
  color: var(--gray-500);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-row__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   FOOTER — Beautiful navy with smooth transition
   ============================================================ */
body {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
}

.footer {
  background: linear-gradient(180deg, 
    #1A2C5F 0%, 
    #0F1F3F 50%, 
    #0A1733 100%) !important;
  padding-top: 80px !important;
  position: relative;
  margin-top: 0;
}

/* Smooth transition from white to footer */
.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, #1A2C5F 100%);
  pointer-events: none;
}

.footer__logo {
  height: 80px !important;
  width: auto !important;
  margin-bottom: 18px;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1;
}

.footer__tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer__title {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

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

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

/* ============================================================
   FLOATING BUTTONS — Small, round, with WhatsApp icon
   ============================================================ */
.floating-contact {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* In LTR (English), float to the right; in RTL (Hebrew), to the left */
[dir="ltr"] .floating-contact {
  inset-inline-end: 24px;
  inset-inline-start: auto;
  align-items: flex-end;
}

.floating-btn--whatsapp {
  width: 56px !important;
  height: 56px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: white !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 28px rgba(37, 211, 102, 0.40),
    0 4px 8px rgba(37, 211, 102, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  text-decoration: none;
}

.floating-btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 16px 36px rgba(37, 211, 102, 0.50),
    0 6px 12px rgba(37, 211, 102, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.floating-btn--whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-btn--whatsapp .floating-btn__label {
  display: none !important;
}

/* Pulse ring for WhatsApp — RETIRED: waPing now lives on ::after (V13),
   ::before is the hover name-tag (V14) */
.floating-btn--whatsapp::before { content: none; }

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-btn--phone { display: none !important; }

/* ============================================================
   ACCESSIBILITY FLOATING BUTTON
   ============================================================ */
.a11y-btn {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 24px rgba(26, 44, 95, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.a11y-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 32px rgba(26, 44, 95, 0.40);
}

.a11y-btn svg { width: 26px; height: 26px; }

/* Accessibility panel */
.a11y-panel {
  position: fixed;
  bottom: 92px;
  inset-inline-start: 24px;
  width: 290px;
  background: white;
  border-radius: 20px;
  box-shadow: 
    0 20px 50px rgba(10, 23, 51, 0.20),
    0 0 0 1px rgba(10, 23, 51, 0.05);
  padding: 18px;
  z-index: 79;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

[dir="ltr"] .a11y-panel {
  inset-inline-start: auto;
  inset-inline-end: 24px;
}

.a11y-panel[aria-hidden="false"] {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.a11y-panel__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10, 23, 51, 0.08);
}

.a11y-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.a11y-option {
  padding: 12px 10px;
  border: 1px solid rgba(10, 23, 51, 0.08);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: inherit;
}

.a11y-option:hover {
  background: var(--gradient-brand);
  color: white;
  border-color: transparent;
}

.a11y-option.is-active {
  background: var(--navy-600);
  color: white;
  border-color: var(--navy-600);
}

.a11y-reset {
  margin-top: 10px;
  width: 100%;
  padding: 11px;
  background: rgba(255, 200, 200, 0.4);
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.2);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.a11y-reset:hover {
  background: #b91c1c;
  color: white;
}

/* Accessibility mode classes */
body.a11y-large-text { font-size: 18px !important; }
body.a11y-large-text .display { font-size: 1.15em !important; }
body.a11y-larger-text { font-size: 21px !important; }
body.a11y-larger-text .display { font-size: 1.25em !important; }

body.a11y-high-contrast { 
  background: white !important; 
}
body.a11y-high-contrast,
body.a11y-high-contrast * {
  color: black !important;
}
body.a11y-high-contrast .glass-card,
body.a11y-high-contrast .stat,
body.a11y-high-contrast .why-card,
body.a11y-high-contrast .location-card,
body.a11y-high-contrast .testimonial,
body.a11y-high-contrast .faq-item {
  background: white !important;
  border: 2px solid black !important;
}
body.a11y-high-contrast .display em,
body.a11y-high-contrast .display em::after { 
  color: black !important; 
  -webkit-text-fill-color: black !important;
  background: none !important;
}

body.a11y-inverted {
  filter: invert(1) hue-rotate(180deg);
}
body.a11y-inverted img,
body.a11y-inverted video {
  filter: invert(1) hue-rotate(180deg);
}

body.a11y-readable * {
  font-family: 'Arial', 'Helvetica', sans-serif !important;
  letter-spacing: 0.03em !important;
  line-height: 1.7 !important;
}

body.a11y-highlight-links a {
  background: yellow !important;
  color: black !important;
  text-decoration: underline !important;
  font-weight: bold !important;
}

body.a11y-grayscale { filter: grayscale(100%); }

/* ============================================================
   SECTION HEADER GRADIENTS — uniform deep navy throughout
   ============================================================ */
.section--story {
  background: linear-gradient(180deg, #FAFBFC 0%, #F4F7FB 100%);
}

.section--why {
  background: linear-gradient(180deg, #F4F7FB 0%, #FAFBFC 100%);
}

.section--locations,
.section--flags,
.section--process,
.section--results,
.section--videos,
.section--media,
.section--faq,
.section--testimonials {
  background: linear-gradient(180deg, #FAFBFC 0%, #F4F7FB 100%);
}

.section--locations + .section--flags,
.section--flags + .section--process {
  border-top: 1px solid rgba(10, 23, 51, 0.04);
}

/* ============================================================
   GLOBAL — Scroll padding for sticky nav
   ============================================================ */
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

section[id] { scroll-margin-top: 100px; }

/* ============================================================
   STORY — Premium with link to media video
   ============================================================ */
.story__media-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 22px;
  background: rgba(184, 149, 106, 0.1);
  border: 1px solid rgba(184, 149, 106, 0.32);
  border-radius: 999px;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.story__media-link:hover {
  background: var(--gold-light);
  color: white;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 149, 106, 0.32);
}

.story__media-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   NAV — Better consultation button (links to WhatsApp)
   ============================================================ */
.nav__cta {
  background: var(--gradient-brand) !important;
  color: white !important;
  padding: 11px 22px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  box-shadow: 
    0 6px 16px rgba(26, 44, 95, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transition: all 0.3s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 10px 22px rgba(26, 44, 95, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ============================================================
   LANG TOGGLE — match new colors
   ============================================================ */
.lang-toggle {
  background: rgba(10, 23, 51, 0.05);
  border: 1px solid rgba(10, 23, 51, 0.08);
  padding: 5px;
  border-radius: 999px;
}

.lang-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}

.lang-btn--active {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(10, 23, 51, 0.08);
}
.lang-btn:not(.lang-btn--active):hover {
  color: var(--ink);
}

/* ============================================================
   SECTION HEADERS — clean alignment
   ============================================================ */
.section-head {
  margin-bottom: clamp(40px, 5vw, 56px);
  max-width: 760px;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head .display--md {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}

.section-sub {
  font-size: clamp(15.5px, 1.2vw, 17.5px) !important;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 620px;
}

.section-head--center .section-sub {
  margin-inline: auto;
}

/* ============================================================
   PULL QUOTE — Elegant gold accent
   ============================================================ */
.pullquote {
  position: relative;
  font-size: clamp(18px, 1.8vw, 22px) !important;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  padding: 28px 32px !important;
  margin: 28px 0 !important;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(244, 247, 251, 0.4) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 149, 106, 0.25);
  border-inline-start: 4px solid var(--gold) !important;
  box-shadow: 
    0 8px 24px rgba(10, 23, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pullquote::before {
  content: '"';
  position: absolute;
  top: 4px;
  inset-inline-end: 18px;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  font-family: Georgia, serif;
  font-weight: 700;
}

/* ============================================================
   MOBILE FINE-TUNING
   ============================================================ */
@media (max-width: 600px) {
  .hero__visual { min-height: 460px; }
  .hero .display--hero { font-size: 36px; }
  .hero .lede { font-size: 16px; }
  
  .section { padding-block: 60px !important; }
  
  .hero__stats { gap: 10px; }
  .stat.glass-chip { padding: 18px 12px !important; }
  .stat__num { font-size: 22px !important; }
  .stat__label { font-size: 11.5px !important; }
}

/* ============================================================
   Hide section--videos from being a main nav target  
   keep it visible in content
   ============================================================ */

/* ============================================================
   NOWRAP — all nav text on single line, never split words
   ============================================================ */
.nav__link,
.nav__cta,
.drawer__link,
.drawer a,
.mobile-menu a,
.footer__list a,
.footer__bottom-link,
.lang-btn {
  white-space: nowrap !important;
}

/* Give nav inner more room on smaller-but-not-mobile widths so nothing crowds */
@media (min-width: 640px) and (max-width: 1100px) {
  .nav__links { gap: 14px !important; }
  .nav__link { padding-left: 8px !important; padding-right: 8px !important; font-size: 14.5px !important; }
}

/* ============================================================
   V11 — FINAL POLISH (ships to client today)
   ============================================================ */

/* === V11.1 — Bigger nav, bigger logo, bigger link text === */
:root { --nav-h: 88px; }
body { padding-top: 88px !important; }

.nav__inner {
  height: 88px !important;
  gap: 28px !important;
}
.nav__logo {
  height: 64px !important;
  width: auto !important;
  flex-shrink: 0 !important;
}
.nav__link {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 10px 12px !important;
  letter-spacing: 0.005em;
  white-space: nowrap !important;
}
.nav__cta {
  padding: 13px 22px !important;
  font-size: 15px !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.lang-toggle { flex-shrink: 0; }
.lang-btn { font-size: 14.5px !important; padding: 9px 16px !important; }

/* Smaller-but-not-mobile screens: keep nav compact so nothing wraps */
@media (min-width: 640px) and (max-width: 1199px) {
  :root { --nav-h: 80px; }
  body { padding-top: 80px !important; }
  .nav__inner { height: 80px !important; gap: 14px !important; padding-inline: 18px !important; }
  .nav__logo { height: 56px !important; }
  .nav__link { font-size: 14.5px !important; padding: 8px 8px !important; }
  .nav__cta { padding: 11px 16px !important; font-size: 14px !important; }
  .nav__links { gap: 4px !important; }
}

/* === V11.2 — Hero image proper integration (not floating PNG) === */
.section--hero {
  position: relative;
  overflow: hidden;
}
.section--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 25% 60%, rgba(36, 59, 122, 0.10) 0%, transparent 65%),
    radial-gradient(50% 40% at 75% 25%, rgba(201, 165, 121, 0.10) 0%, transparent 65%),
    radial-gradient(70% 55% at 50% 110%, rgba(219, 234, 254, 0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--hero > * { position: relative; z-index: 1; }

.hero__visual {
  position: relative;
}
/* Soft elliptical "stage" behind Antonio that feels like a deliberate composition */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 8% -2% 4% -2%;
  background:
    radial-gradient(ellipse 55% 65% at 50% 55%, rgba(36, 59, 122, 0.13) 0%, rgba(36, 59, 122, 0.06) 38%, transparent 70%),
    radial-gradient(ellipse 35% 30% at 40% 80%, rgba(201, 165, 121, 0.14) 0%, transparent 65%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
/* Subtle floor reflection */
.hero__visual::after {
  content: '';
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 32px;
  background: radial-gradient(ellipse, rgba(10, 23, 51, 0.18) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}
.hero__image,
.hero__image--action {
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 18px 32px rgba(10, 23, 51, 0.18))
    drop-shadow(0 4px 8px rgba(10, 23, 51, 0.10));
}

/* === V11.5 — Process section symmetric (flex + center) === */
.section--process .process-grid,
.section--process .why-grid,
.process-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.process-grid > * {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: 280px;
  min-width: 220px;
}
@media (max-width: 1023px) {
  .process-grid > * { flex: 0 0 calc((100% - 24px) / 2); max-width: none; }
}
@media (max-width: 639px) {
  .process-grid > * { flex: 0 0 100%; }
}

/* === V11.6 — Gallery: clean gaps + section divider === */
.section--results .gallery,
.gallery {
  gap: 22px !important;
}
.section--results {
  padding-bottom: clamp(80px, 10vw, 140px) !important;
  position: relative;
}
.section--results::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 78%);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 153, 104, 0.4) 30%, rgba(184, 153, 104, 0.65) 50%, rgba(184, 153, 104, 0.4) 70%, transparent 100%);
  pointer-events: none;
}
.gallery__item { border-radius: 18px !important; }

/* === V11.7 — Media card: video as poster, lightbox triggered === */
.media-card { cursor: pointer; }
.media-card__preview {
  position: relative !important;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1F3F 0%, #243B7A 100%) !important;
  border-radius: 18px 18px 0 0;
}
.media-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.media-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 51, 0.10) 0%, rgba(10, 23, 51, 0.55) 100%);
  z-index: 2;
  pointer-events: none;
}
.media-card__play {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.media-card__play svg {
  width: 28px; height: 28px;
  color: var(--navy-deep);
  margin-inline-start: 3px;
}
.media-card__play {
  background: none !important;
}
.media-card__play::before {
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 12px 32px rgba(15, 23, 42, 0.28);
  z-index: -1;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.media-card:hover .media-card__play::before { transform: scale(1.10); }

/* === V11.8 — Testimonials breathing room === */
.testimonial {
  padding: 38px 36px 28px !important;
  min-height: 240px;
}
.testimonial::before {
  top: 22px !important;
  inset-inline-start: 32px !important;
  font-size: 56px !important;
  line-height: 1;
  opacity: 0.35 !important;
}
.testimonial__quote {
  margin-top: 12px;
  margin-bottom: 24px !important;
  padding-inline-end: 30px;
}
.testimonial__author {
  margin-top: auto !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(184, 149, 106, 0.25);
}

/* === V11.9 — Contact section header breathing === */
.section--contact .section-head,
#contact .section-head {
  margin-bottom: clamp(50px, 6vw, 72px) !important;
}
.section--contact .display,
#contact .display {
  margin-bottom: 18px !important;
  padding-bottom: 6px;
}
.section--contact .section-sub,
#contact .section-sub {
  margin-top: 8px;
}

/* === V11.10 — Footer logo: full color, no filter, proper size === */
.footer__logo {
  height: 90px !important;
  width: auto !important;
  filter: none !important;
  opacity: 1 !important;
  margin-bottom: 22px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* === V11.11 — Legal pages premium styling === */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 60px;
}
.legal h1.display,
.legal h1 {
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.022em;
}
.legal__meta {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 44px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.legal h2 {
  font-size: clamp(19px, 1.7vw, 23px) !important;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 14px !important;
  letter-spacing: -0.01em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184, 153, 104, 0.25);
}
.legal p, .legal ul {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 18px;
}
.legal ul { padding-inline-start: 26px; }
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--navy-600);
  font-weight: 600;
  border-bottom: 1px solid rgba(36, 59, 122, 0.25);
  transition: color .25s ease, border-color .25s ease;
}
.legal a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.legal__back {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  text-align: start;
}
/* Legal page nav: keep simple — bigger logo only */
.legal-page .nav__inner { gap: 0; }

/* === V11.12 — Gold hover on ALL buttons (universal) === */
.btn,
.btn--solid,
.btn--ghost,
.nav__cta,
.story__media-link,
.form .btn--solid,
button.btn,
.floating-btn,
.lang-btn {
  transition:
    background .35s cubic-bezier(0.22, 1, 0.36, 1),
    color .35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .35s cubic-bezier(0.22, 1, 0.36, 1),
    transform .35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Primary solid button: navy → gold on hover */
.btn--solid:hover,
.nav__cta:hover,
.form .btn--solid:hover {
  background: linear-gradient(135deg, #D4B98A 0%, #B89968 50%, #A38555 100%) !important;
  color: white !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px rgba(184, 153, 104, 0.42),
    0 6px 14px rgba(184, 153, 104, 0.24) !important;
  transform: translateY(-2px) !important;
}

/* Ghost / outline buttons: get gold border + gold text */
.btn--ghost:hover {
  background: linear-gradient(135deg, #D4B98A 0%, #B89968 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(184, 153, 104, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Story media link button */
.story__media-link:hover {
  background: linear-gradient(135deg, #D4B98A 0%, #B89968 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(184, 153, 104, 0.35) !important;
  transform: translateY(-2px) !important;
  text-decoration: none;
}

/* Floating WhatsApp — gold on hover */
.floating-btn--whatsapp:hover {
  background: linear-gradient(135deg, #D4B98A 0%, #B89968 100%) !important;
  box-shadow:
    0 16px 36px rgba(184, 153, 104, 0.45),
    0 6px 12px rgba(184, 153, 104, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-3px) scale(1.05) !important;
}

/* Accessibility button — gold on hover */
.a11y-btn:hover {
  background: linear-gradient(135deg, #D4B98A 0%, #B89968 100%) !important;
  color: white !important;
  border-color: transparent !important;
}

/* Lang toggle inactive — gold on hover */
.lang-btn:not(.lang-btn--active):hover {
  background: rgba(201, 165, 121, 0.15) !important;
  color: var(--gold) !important;
}

/* Nav link hover — gold (already gold underline; add color shift) */
.nav__link:hover { color: var(--gold) !important; }

/* === V11 — Make sure no horizontal overflow & headlines breathe === */
body, html { overflow-x: hidden; }


/* ============================================================
   V12 — FINAL FINISHES (client today)
   ============================================================ */

/* === V12.1 — Hero image: framed "studio stage", never cropped raw === */
.hero__visual {
  position: relative;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  min-height: auto !important;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #EAF1FB 0%, transparent 60%),
    linear-gradient(165deg, #EEF3FB 0%, #F5F4EF 55%, #FBF4E8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 30px 70px rgba(10, 23, 51, 0.10),
    0 10px 24px rgba(36, 59, 122, 0.06);
  padding: 28px 24px 0 !important;
}
/* kill old decorative pseudo layers that fought the frame */
.hero__visual::before {
  content: '' !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  top: auto !important;
  left: 0 !important;
  width: 100% !important;
  height: 38% !important;
  transform: none !important;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(36,59,122,0.12) 0%, transparent 70%) !important;
  filter: none !important;
  z-index: 0 !important;
}
.hero__visual::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 72% !important;
  height: 26px !important;
  background: radial-gradient(ellipse, rgba(10,23,51,0.22) 0%, transparent 72%) !important;
  filter: blur(10px) !important;
  z-index: 1 !important;
}
.hero__image,
.hero__image--action {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(10, 23, 51, 0.20));
}
@media (max-width: 1023px) {
  .hero__visual { max-width: 520px; margin: 0 auto; padding: 22px 18px 0 !important; border-radius: 26px; }
}
@media (max-width: 480px) {
  .hero__visual { border-radius: 22px; padding: 16px 14px 0 !important; }
  .hero__image, .hero__image--action { max-width: 100%; }
}

/* === V12.2 — Smooth color transitions between ALL sections === */
/* Remove hard color edges: each section fades top & bottom into neighbours */
.section--story,
.section--why,
.section--locations,
.section--flags,
.section--process,
.section--results,
.section--videos,
.section--media,
.section--faq,
.section--testimonials,
.section--contact {
  background: transparent !important;
  position: relative;
}
/* One continuous body gradient underneath everything = no abrupt jumps */
body {
  background:
    linear-gradient(180deg,
      #FFFFFF 0%,
      #FBFCFE 12%,
      #F5F8FD 26%,
      #F4F7FB 40%,
      #F7F4EF 56%,
      #F4F7FB 72%,
      #FAFBFD 86%,
      #FFFFFF 100%) !important;
  background-attachment: fixed !important;
}
/* Soft tonal "wash" per section so there's gentle rhythm without hard seams */
.section--why::after,
.section--flags::after,
.section--faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244,247,251,0) 0%, rgba(234,241,251,0.5) 50%, rgba(244,247,251,0) 100%);
  z-index: -1;
  pointer-events: none;
}
.section--story::after,
.section--process::after,
.section--testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,244,232,0) 0%, rgba(251,244,232,0.42) 50%, rgba(251,244,232,0) 100%);
  z-index: -1;
  pointer-events: none;
}

/* === V12.3 — Section headings: clear of the gold divider line === */
.section { padding-top: clamp(96px, 11vw, 150px) !important; }
.section + .section::before {
  /* the gold divider sits at very top; push heading down so it never touches */
}
.section-head { padding-top: 14px; }
.section--testimonials .section-head,
.section--contact .section-head,
#testimonials .section-head,
#contact .section-head {
  margin-bottom: clamp(54px, 6vw, 78px) !important;
  padding-top: 20px;
}
/* Gold dot/underline after headline gets its own breathing space */
.display { padding-bottom: 4px; }

/* === V12.5 — EN nav: force logo to full size, identical to HE === */
html[lang="en"] .nav__logo { height: 64px !important; width: auto !important; flex-shrink: 0 !important; }
html[lang="en"] .nav__inner { height: 88px !important; gap: 24px; }
html[lang="en"] .nav__link { font-size: 16px !important; font-weight: 600 !important; white-space: nowrap !important; }
html[lang="en"] .nav__cta { white-space: nowrap !important; flex-shrink: 0; }
@media (min-width: 640px) and (max-width: 1199px) {
  html[lang="en"] .nav__logo { height: 56px !important; }
  html[lang="en"] .nav__inner { height: 80px !important; gap: 12px; }
  html[lang="en"] .nav__link { font-size: 14px !important; }
}

/* === V12.6 — WhatsApp float: bigger proper icon, never hides text === */
.floating-btn--whatsapp {
  width: 62px !important;
  height: 62px !important;
}
.floating-btn--whatsapp svg {
  width: 34px !important;
  height: 34px !important;
}
.a11y-btn {
  width: 54px !important;
  height: 54px !important;
}
.a11y-btn svg { width: 28px !important; height: 28px !important; }
/* push floats a touch further from edge so they don't sit over text */
.floating-contact { bottom: 26px !important; inset-inline-start: 26px !important; }
[dir="ltr"] .floating-contact { inset-inline-end: 26px !important; inset-inline-start: auto !important; }
@media (max-width: 639px) {
  .floating-contact { bottom: 18px !important; inset-inline-start: 18px !important; gap: 16px !important; }
  [dir="ltr"] .floating-contact { inset-inline-end: 18px !important; inset-inline-start: auto !important; }
  .floating-btn--whatsapp { width: 56px !important; height: 56px !important; }
  .a11y-btn { width: 50px !important; height: 50px !important; }
}


/* ============================================================
   V13 — Video wall restructured to match Media cards
   ============================================================ */
/* Video grid now holds media-style cards: 4 cols desktop, 3 tablet, 2 mobile */
#video-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
@media (max-width: 1023px) { #video-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 767px)  { #video-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; } }
@media (max-width: 419px)  { #video-grid { grid-template-columns: 1fr !important; } }

/* Video card == media card look */
.video-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(184, 149, 106, 0.16);
  box-shadow: 0 6px 20px rgba(10, 23, 51, 0.06);
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s cubic-bezier(0.22,1,0.36,1);
  text-align: start;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(10, 23, 51, 0.14);
}

/* Shared preview for BOTH media + video cards — smart orientation (cover, no stretch) */
.media-card__preview {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1F3F 0%, #243B7A 100%);
}
.media-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* portrait & landscape both fill nicely, no distortion */
  object-position: center;
  z-index: 1;
  pointer-events: none;
}
.media-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,23,51,0.05) 0%, rgba(10,23,51,0.45) 100%);
  z-index: 2;
  pointer-events: none;
}
.media-card__content {
  padding: 22px 24px 26px;
}
.media-card__logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.media-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 8px;
}
.media-card__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
}

/* Hide the old "load more" gallery-style nothing; keep the button styled */
#video-more { margin-top: 8px; }

/* ============================================================
   V14 — HERO IMAGE: natural cutout, no frame (per client reference)
   Overrides the V12 studio-frame. Figure bleeds off the bottom,
   sits like a real person standing — integrated, not boxed.
   ============================================================ */
.section--hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;           /* image meets the section's bottom edge */
}
.hero {
  align-items: end !important;            /* anchor visual to the baseline */
}

.hero__visual {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  /* kill the frame entirely */
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
  align-self: end;
}

/* Soft contextual glow behind the figure — gives depth, no box edges */
.hero__visual::before {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  top: auto !important;
  width: min(680px, 105%) !important;
  height: 88% !important;
  transform: translateX(-50%) !important;
  background:
    radial-gradient(ellipse 58% 70% at 50% 62%, rgba(36, 59, 122, 0.16) 0%, rgba(36, 59, 122, 0.05) 42%, transparent 72%),
    radial-gradient(ellipse 40% 32% at 30% 84%, rgba(201, 165, 121, 0.16) 0%, transparent 66%) !important;
  filter: blur(46px) !important;
  border-radius: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
/* Grounding shadow at the figure's base so it doesn't "float" */
.hero__visual::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 6px !important;
  transform: translateX(-50%) !important;
  width: 64% !important;
  height: 30px !important;
  background: radial-gradient(ellipse, rgba(10, 23, 51, 0.22) 0%, transparent 72%) !important;
  filter: blur(14px) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero__image,
.hero__image--action {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;        /* never distort/crop the figure itself */
  object-position: center bottom !important;
  /* clean cutout — soft natural shadow, no frame */
  filter:
    drop-shadow(0 16px 24px rgba(10, 23, 51, 0.22))
    drop-shadow(0 3px 6px rgba(10, 23, 51, 0.12)) !important;
}

/* Desktop: let the figure be tall and meet the fold */
@media (min-width: 1024px) {
  .hero__visual { min-height: 540px !important; }
  .hero__image, .hero__image--action { max-width: 620px !important; }
}

/* Tablet / mobile: stacked, image centered above text, still no frame */
@media (max-width: 1023px) {
  .section--hero { padding-bottom: 0 !important; }
  .hero__visual { max-width: 560px; margin: 0 auto !important; }
  .hero__image, .hero__image--action { max-width: 460px !important; }
}
@media (max-width: 480px) {
  .hero__image, .hero__image--action { max-width: 100% !important; }
}

/* ============================================================
   V15 — Final finishes: gallery squares, spacing, Apple glass
   ============================================================ */

/* --- V15.1 Gallery: uniform SQUARE cards like videos, with zoom --- */
.section--results .gallery,
.gallery,
#gallery-hidden.gallery {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-auto-rows: auto !important;
  gap: 20px !important;
}
@media (max-width: 1023px) { .gallery, #gallery-hidden.gallery { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 700px)  { .gallery, #gallery-hidden.gallery { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; } }

/* reset the old asymmetric spans — every tile equal square */
.gallery__item,
.gallery__item:nth-child(1),
.gallery__item:nth-child(2),
.gallery__item:nth-child(3),
.gallery__item:nth-child(4),
.gallery__item:nth-child(5),
.gallery__item:nth-child(6) {
  grid-column: auto !important;
  grid-row: auto !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  position: relative;
  cursor: zoom-in;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.5),
    0 6px 20px rgba(10, 23, 51, 0.07);
  transition: transform .5s cubic-bezier(0.22,1,0.36,1), box-shadow .5s cubic-bezier(0.22,1,0.36,1);
}
.gallery__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top;
  transition: transform .7s cubic-bezier(0.22,1,0.36,1);
}
.gallery__item:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 18px 40px rgba(10,23,51,0.14); }
.gallery__item:hover img { transform: scale(1.06); }
/* zoom hint icon */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,23,51,0.42) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item-caption {
  position: absolute; bottom: 14px; inset-inline-start: 16px; inset-inline-end: 16px;
  color: #fff; font-size: 13px; font-weight: 600; z-index: 2;
  opacity: 0; transform: translateY(6px); transition: all .4s ease;
}
.gallery__item:hover .gallery__item-caption { opacity: 1; transform: none; }

/* Kill the gold ::after divider that was overlapping the gallery images */
.section--results::after { display: none !important; }

/* --- V15.2 Spacing: stats off the section seam, cards off next section --- */
.hero__copy { padding-bottom: clamp(48px, 6vw, 90px) !important; }
.section--videos, .section--media, .section--results {
  padding-bottom: clamp(96px, 11vw, 150px) !important;
}
/* clean divider between results and videos (single, not overlapping) */
.section--videos { position: relative; }
.section--videos::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(680px, 78%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,153,104,0.5), transparent);
}

/* --- V15.3 Contact form not glued to footer --- */
.section--contact { padding-bottom: clamp(90px, 10vw, 140px) !important; }
.footer { margin-top: 0 !important; }
/* smooth fade into footer */
.section--contact::after {
  content: '';
  display: block;
  height: 80px;
  margin-bottom: -80px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 31, 63, 0.04) 100%);
  pointer-events: none;
}

/* --- V15.4 Apple glass: rounder, glassier cards + lightbox --- */
.glass-card, .why-card, .testimonial, .stat.glass-chip,
.media-card, .video-card, .contact__form-wrap, .faq-item, .info-row {
  border-radius: 24px !important;
}
.media-card, .video-card { border-radius: 22px !important; }
/* lightbox — Apple glass frame */
.lightbox__inner {
  border-radius: 24px;
  overflow: visible;
}
.lightbox__content video,
.lightbox__content img {
  border-radius: 20px !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__backdrop {
  background: rgba(10, 23, 51, 0.78) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}
.lightbox__close {
  width: 48px; height: 48px;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.92) !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  font-size: 28px; line-height: 1;
  color: var(--ink); border: none;
}

/* --- V15.5 WhatsApp float: bigger, real glyph, never covers text --- */
.floating-btn--whatsapp { width: 64px !important; height: 64px !important; }
.floating-btn--whatsapp svg { width: 36px !important; height: 36px !important; }

/* ============================================================
   V16 — LIGHTBOX VISIBILITY FIX (definitive)
   Two CSS systems conflicted (opacity:0 base vs display:flex).
   This makes the lightbox ALWAYS visible whenever it's not [hidden],
   independent of data-open. Players now actually appear.
   ============================================================ */
.lightbox[hidden] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.lightbox:not([hidden]) {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
}
.lightbox:not([hidden]) .lightbox__content video,
.lightbox:not([hidden]) .lightbox__content img {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: 84vh;
  width: auto;
  height: auto;
}

/* ============================================================
   V18 — HERO image flush on the section's bottom line
   Figure's bottom cut sits exactly on the next section's top edge,
   stats float neatly above it. (only the hero image position)
   ============================================================ */
.section--hero {
  padding-bottom: 0 !important;
}
.hero {
  align-items: stretch !important;   /* columns fill the full row height */
}
.hero__copy {
  align-self: center !important;     /* text + stats stay vertically centered */
  padding-bottom: clamp(40px, 6vw, 80px) !important;
}
.hero__visual {
  align-self: stretch !important;    /* visual column fills full height */
  display: flex !important;
  align-items: flex-end !important;  /* push image to the very bottom */
  justify-content: center !important;
  min-height: 0 !important;
}
.hero__image,
.hero__image--action {
  display: block !important;
  width: 100% !important;
  max-width: 660px !important;
  height: auto !important;
  margin: 0 auto !important;
  margin-bottom: 0 !important;
  vertical-align: bottom !important;
  object-position: center bottom !important;
}
/* ground shadow exactly on the bottom line */
.hero__visual::after {
  bottom: 0 !important;
}
@media (max-width: 1023px) {
  /* stacked: keep image flush at its block bottom, no forced section glue */
  .hero { align-items: center !important; }
  .hero__visual { align-self: auto !important; }
  .hero__image, .hero__image--action { max-width: 480px !important; }
  .section--hero { padding-bottom: clamp(20px,5vw,40px) !important; }
}

/* V18.1 — text starts at top (not centered), image stays bottom-flush */
.hero__copy { align-self: start !important; padding-top: clamp(20px, 4vw, 56px) !important; }

/* ============================================================
   V20 — FIX: floating buttons container blocked footer links
   The fixed .floating-contact box overlapped the footer bottom
   links and ate their clicks. Make the empty container area
   click-through; only the actual buttons stay clickable.
   ============================================================ */
.floating-contact {
  pointer-events: none !important;
}
.floating-contact > * ,
.floating-btn,
.a11y-btn {
  pointer-events: auto !important;
}
/* Legal links: make sure they sit above & are clearly clickable */
.footer__bottom { position: relative; z-index: 5; }
.footer__list a,
.footer__bottom-link {
  pointer-events: auto !important;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

/* ============================================================
   v11 — Client revision additions (2026-05-28)
   ============================================================ */

/* Hero stat icons */
.stat__icon { display: flex; justify-content: center; margin-bottom: 10px; }
.stat__icon svg { width: 26px; height: 26px; color: var(--gold); }
@media (max-width: 640px) {
  .stat__icon svg { width: 22px; height: 22px; }
  .stat__icon { margin-bottom: 7px; }
}

/* Trust bar — slim reassurance strip under the hero */
.trust-bar {
  background: var(--cream-soft);
  border-top: 1px solid rgba(201, 165, 121, 0.20);
  border-bottom: 1px solid rgba(201, 165, 121, 0.20);
  padding: 16px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 22px;
  font-size: clamp(12.5px, 1vw, 14px);
  font-weight: 600;
  color: var(--ink-soft);
  border-inline-start: 1px solid rgba(201, 165, 121, 0.22);
  white-space: nowrap;
}
.trust-bar__item:first-child { border-inline-start: none; }
.trust-bar__item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.trust-bar__item strong { color: var(--ink); font-weight: 800; }
@media (max-width: 860px) {
  .trust-bar__item {
    flex: 0 0 50%;
    justify-content: center;
    border-inline-start: none;
    padding: 8px 10px;
    white-space: normal;
    text-align: center;
  }
}

/* Consent checkbox — newsletter opt-in */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: -2px 0 2px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.consent__box {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  flex: none;
  border: 1.5px solid rgba(10, 23, 51, 0.28);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.consent__box:hover { border-color: var(--gold); }
.consent__box:checked { background: var(--gold); border-color: var(--gold); }
.consent__box:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4.5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent__box:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.consent__text { font-size: 13.5px; line-height: 1.5; color: var(--gray-700); }

/* ============================================================
   V19 — Results gallery: organized horizontal side-scroll filmstrip
   (2026-05-28). Replaces the misaligned masonry grid. Uniform height,
   natural width (no cropping of the before/after composites),
   swipe / drag / scroll sideways.
   ============================================================ */
.section--results .gallery,
.section--results .gallery--strip {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 4px;
  padding: 6px 4px 20px !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,153,104,0.55) rgba(10,23,51,0.06);
}
/* each card: uniform height, natural width (no crop), snap */
.section--results .gallery__item,
.section--results .gallery__item:nth-child(1),
.section--results .gallery__item:nth-child(2),
.section--results .gallery__item:nth-child(3),
.section--results .gallery__item:nth-child(4),
.section--results .gallery__item:nth-child(5),
.section--results .gallery__item:nth-child(6) {
  grid-column: auto !important;
  grid-row: auto !important;
  aspect-ratio: 1 / 1 !important;
  flex: 0 0 auto !important;
  height: clamp(260px, 30vw, 360px) !important;
  width: auto !important;
  max-width: none !important;
  scroll-snap-align: start;
  border-radius: 20px !important;
}
.section--results .gallery__item img {
  height: 100% !important;
  width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
}
/* keep the gold reveal overlay subtle (don't darken the whole card) */
.section--results .gallery__item::after { background: linear-gradient(180deg, transparent 62%, rgba(10,23,51,0.30) 100%) !important; }
/* custom scrollbar (WebKit) */
.section--results .gallery::-webkit-scrollbar,
.section--results .gallery--strip::-webkit-scrollbar { height: 8px; }
.section--results .gallery::-webkit-scrollbar-track,
.section--results .gallery--strip::-webkit-scrollbar-track { background: rgba(10,23,51,0.06); border-radius: 99px; }
.section--results .gallery::-webkit-scrollbar-thumb,
.section--results .gallery--strip::-webkit-scrollbar-thumb { background: rgba(184,153,104,0.55); border-radius: 99px; }
.section--results .gallery::-webkit-scrollbar-thumb:hover,
.section--results .gallery--strip::-webkit-scrollbar-thumb:hover { background: rgba(184,153,104,0.85); }
/* any cached "load more" button is no longer needed */
.section--results .gallery__more { display: none !important; }

/* ============================================================
   V20 — Lightbox close button: big, fixed, high-contrast, easy to tap
   (was small & awkwardly placed over the video).
   ============================================================ */
.lightbox__close {
  position: fixed !important;
  top: 18px !important;
  inset-inline-end: 18px !important;
  inset-inline-start: auto !important;
  transform: none !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.96) !important;
  color: #0A1733 !important;
  font-size: 30px !important;
  line-height: 1 !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45) !important;
  cursor: pointer !important;
  z-index: 10001 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 0 3px 0 !important;
  transition: transform .2s ease, background .2s ease !important;
}
.lightbox__close:hover { background: #fff !important; transform: scale(1.07) !important; }
.lightbox__close:active { transform: scale(0.96) !important; }
.lightbox__close:focus-visible { outline: 3px solid var(--gold) !important; outline-offset: 3px !important; }

/* ============================================================
   V21 — Results gallery: CLICKABLE ARROWS (not free-scroll).
   Works on all screens + both languages (RTL & LTR). Scrollbar
   hidden — the arrows move the strip via JS (scrollBy).
   ============================================================ */
.gallery-carousel { position: relative; }
/* hide scrollbar — arrows are the control */
.section--results .gallery,
.section--results .gallery--strip {
  scrollbar-width: none !important;
  scroll-snap-type: x mandatory;
}
.section--results .gallery::-webkit-scrollbar,
.section--results .gallery--strip::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(10,23,51,0.08);
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(10,23,51,0.18);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.gallery-arrow svg { width: 24px; height: 24px; display: block; }
.gallery-arrow--prev { inset-inline-start: 4px; }
.gallery-arrow--next { inset-inline-end: 4px; }
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-arrow:active { transform: translateY(-50%) scale(0.95); }
.gallery-arrow:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.gallery-arrow[disabled] { opacity: 0; pointer-events: none; }
/* chevrons point toward inline-start (prev) / inline-end (next) in BOTH directions */
[dir="rtl"] .gallery-arrow svg { transform: scaleX(-1); }
@media (max-width: 640px) {
  .gallery-arrow { width: 44px; height: 44px; }
  .gallery-arrow svg { width: 20px; height: 20px; }
}

/* ============================================================
   CONTENT V11 — Final content spec additions (2026-06-10)
   ============================================================ */

/* Hero chips with text instead of numbers */
.stat__num--text {
  font-size: clamp(17px, 1.6vw, 21px) !important;
  letter-spacing: -0.01em;
  padding-top: 4px;
}
@media (max-width: 600px) {
  .stat__num--text { font-size: 16px !important; }
}

/* Story trust stats — 2x2 grid under the signature */
.story__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.story-stat {
  text-align: center;
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(184, 149, 106, 0.18);
  box-shadow:
    0 4px 16px rgba(10, 23, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.story-stat__num {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #1A2C5F 0%, #243B7A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.story-stat__label {
  font-size: 12.5px;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.4;
}

/* Key statement — big centered brand sentence after card grids */
.key-statement {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
}
.key-statement p {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.key-statement em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, #9A7B52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px) {
  .key-statement { margin-top: 40px; }
}

/* Verified patient badge on testimonials */
.testimonial__verified {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1E7A4C;
  background: rgba(34, 154, 96, 0.10);
  border: 1px solid rgba(34, 154, 96, 0.22);
}
.testimonial__verified svg { flex: none; }

/* Contact form additions */
.field__textarea {
  resize: vertical;
  min-height: 88px;
  font-family: inherit;
}
.contact-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin: 18px 0 4px;
  padding: 0;
}
.contact-points li {
  position: relative;
  padding-inline-start: 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.45;
}
.contact-points li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(34, 154, 96, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%231E7A4C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 9px no-repeat;
}
@media (max-width: 480px) {
  .contact-points { grid-template-columns: 1fr; }
}

/* Contact closing — Antonio's final word */
.contact-closing {
  max-width: 680px;
  margin: 64px auto 0;
  text-align: center;
}
.contact-closing__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(10, 23, 51, 0.12);
}
.contact-closing__text {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--ink);
}
.contact-closing__text em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, #9A7B52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   CONTENT V11b — check blocks, gallery statement, video lead
   ============================================================ */

.key-statement--tight { margin-top: 40px; }
.key-statement--tight p { font-size: clamp(17px, 1.8vw, 22px); font-weight: 500; }

.videos-lead {
  margin-top: 14px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--gray-700);
}

/* "Not sure?" / "Still deciding?" check block */
.check-block {
  max-width: 640px;
  margin: 48px auto 0;
  padding: 36px 40px !important;
  text-align: center;
}
.check-block__title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.check-block__sub {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 18px;
}
.check-block__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 380px;
  text-align: start;
  display: grid;
  gap: 10px;
}
.check-block__list li {
  position: relative;
  padding-inline-start: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.check-block__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(34, 154, 96, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%231E7A4C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.check-block__btn { min-width: 240px; }
@media (max-width: 600px) {
  .check-block { padding: 28px 22px !important; }
}

/* ============================================================
   CONTENT V12 — Motion & design polish (2026-06-10)
   ============================================================ */

/* --- Hero entrance: children rise in sequence once the copy block reveals --- */
.hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .9s cubic-bezier(0.22, 1, 0.36, 1),
    transform .9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__copy.is-in > * { opacity: 1; transform: none; }
.hero__copy.is-in > *:nth-child(1) { transition-delay: .05s; }
.hero__copy.is-in > *:nth-child(2) { transition-delay: .22s; }
.hero__copy.is-in > *:nth-child(3) { transition-delay: .38s; }
.hero__copy.is-in > *:nth-child(4) { transition-delay: .55s; }

/* --- Hero visual: soft perpetual float (drop-shadow sells the lift) --- */
@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.hero__visual.is-in .hero__image--action {
  animation: heroFloat 6.5s ease-in-out infinite alternate;
}

/* --- Gold hairline ornament above every key statement --- */
.key-statement::before {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 0 auto 22px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.key-statement--tight::before { margin-bottom: 18px; }

/* --- Check blocks: gold top accent, like the hero chips --- */
.check-block { position: relative; overflow: hidden; }
.check-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.65;
}

/* --- Story stat tiles: same lift language as the hero chips --- */
.story-stat {
  transition:
    transform .4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-stat:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(10, 23, 51, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(184, 149, 106, 0.32);
}

/* --- FAQ: answer eases in when a question opens --- */
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq-item[open] .faq-item__a {
  animation: faqIn .45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* --- WhatsApp float: gentle ping ring every few seconds --- */
@keyframes waPing {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.40); }
  60%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.floating-btn--whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: waPing 3.8s ease-out infinite;
  pointer-events: none;
}
.floating-btn--whatsapp { position: relative; }

/* --- Contact closing: gold ring around Antonio's portrait --- */
.contact-closing__photo {
  box-shadow:
    0 8px 24px rgba(10, 23, 51, 0.12),
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 0 5px rgba(184, 149, 106, 0.35);
  border: none;
}

/* --- Testimonials: quotes lift slightly on hover --- */
.testimonial {
  transition:
    transform .45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 23, 51, 0.09);
}

/* --- Reduced motion: kill the perpetual loops, keep content visible --- */
@media (prefers-reduced-motion: reduce) {
  .hero__copy > * { opacity: 1; transform: none; transition: none; }
  .hero__visual.is-in .hero__image--action { animation: none; }
  .floating-btn--whatsapp::after { animation: none; }
}

/* ============================================================
   CONTENT V13 — Hero video, scroll cue, luxury micro-touches
   ============================================================ */

/* --- Hero video: framed portrait reel with layered gold ring --- */
.hero-video {
  position: relative;
  width: min(350px, 76vw);
  margin-inline: auto;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 0 5px rgba(184, 149, 106, 0.28),
    0 14px 30px rgba(10, 23, 51, 0.16),
    0 34px 70px rgba(10, 23, 51, 0.22);
}
.hero__visual.is-in .hero-video {
  animation: heroFloat 6.5s ease-in-out infinite alternate;
}
.hero-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: inherit;
  background: #0B1733;
}

/* Sound toggle — glass circle, gold on hover */
.hero-video__sound {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1A2C5F;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 149, 106, 0.35);
  box-shadow: 0 6px 18px rgba(10, 23, 51, 0.22);
  transition:
    transform .35s cubic-bezier(0.22, 1, 0.36, 1),
    background .35s,
    color .35s,
    border-color .35s;
}
.hero-video__sound:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(184, 149, 106, 0.6);
}
.hero-video__sound svg { width: 22px; height: 22px; }
.hero-video__icon--on { display: none; }
.hero-video__sound.is-on .hero-video__icon--on { display: block; }
.hero-video__sound.is-on .hero-video__icon--off { display: none; }
.hero-video__sound.is-on {
  color: var(--gold);
  border-color: rgba(184, 149, 106, 0.65);
}

@media (max-width: 600px) {
  .hero-video { width: min(290px, 80vw); border-radius: 24px; }
  .hero-video__sound { width: 42px; height: 42px; }
}

/* --- Scroll cue: slim gold capsule with a travelling dot --- */
.section--hero { position: relative; }
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(184, 149, 106, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  opacity: 0.9;
  transition: opacity .3s, border-color .3s;
}
.scroll-cue:hover { opacity: 1; border-color: var(--gold); }
.scroll-cue__dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 8px;
  animation: cueDrop 2.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* --- Contact closing: portrait circle truly centered over the text --- */
.contact-closing__photo {
  display: block;
  margin: 0 auto 20px;
}

/* --- Luxury micro-touches --- */
::selection { background: rgba(184, 149, 106, 0.28); color: var(--ink); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #F2F5FA; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2A4480, #1A2C5F);
  border-radius: 8px;
  border: 2.5px solid #F2F5FA;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.nav--scrolled { border-bottom: 1px solid rgba(184, 149, 106, 0.22); }

.lightbox__backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero__visual.is-in .hero-video { animation: none; }
  .scroll-cue__dot { animation: none; }
}

/* ============================================================
   CONTENT V14 — Editorial touches: progress bar, kickers,
   hero video composition, to-top, WhatsApp tip
   ============================================================ */

/* --- Scroll progress: hairline gold bar above everything --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2000;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  background: linear-gradient(90deg, #C9A579, #B8956A 60%, #A88555);
  box-shadow: 0 0 8px rgba(184, 149, 106, 0.55);
}
html[dir="rtl"] .scroll-progress__fill { transform-origin: right center; }
html[dir="ltr"] .scroll-progress__fill { transform-origin: left center; }

/* --- Kickers: small gold editorial label above every heading --- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--gold);
  opacity: 0.65;
}
.section-head--center .kicker::after {
  content: '';
  width: 28px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--gold);
  opacity: 0.65;
}

/* --- Hero video: composed into the layout --- */
.hero-video {
  rotate: -2.4deg;
  transition: rotate .7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-video:hover { rotate: 0deg; }

/* soft gold aura behind the card */
.hero-video::before {
  content: '';
  position: absolute;
  inset: -14%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(184, 149, 106, 0.16), transparent 72%);
}
/* thin offset gold ring peeking from behind the top corner */
.hero-video::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  top: -42px;
  inset-inline-start: -46px;
  z-index: -1;
  border: 1.5px solid rgba(184, 149, 106, 0.45);
  border-radius: 50%;
}

/* glass chips overlapping the frame — anchor the card to the page */
.hero-video__chip {
  position: absolute;
  z-index: 3;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(184, 149, 106, 0.35);
  box-shadow:
    0 10px 26px rgba(10, 23, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.hero-video__chip em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, #9A7B52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-video__chip--top {
  top: 18px;
  inset-inline-start: -26px;
}
.hero-video__chip--top::before {
  content: '✦';
  margin-inline-end: 7px;
  color: var(--gold);
  font-size: 11px;
}
.hero-video__chip--bottom {
  bottom: 74px;
  inset-inline-end: -30px;
}
@media (max-width: 600px) {
  .hero-video { rotate: -1.6deg; }
  .hero-video__chip { font-size: 12px; padding: 8px 13px; }
  .hero-video__chip--top { inset-inline-start: -12px; }
  .hero-video__chip--bottom { inset-inline-end: -12px; }
  .hero-video::after { width: 96px; height: 96px; top: -30px; inset-inline-start: -30px; }
}

/* --- Back to top: quiet gold circle, opposite the WhatsApp button --- */
.to-top {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 149, 106, 0.4);
  box-shadow: 0 8px 22px rgba(10, 23, 51, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity .4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility .4s,
    transform .4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color .3s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover { transform: translateY(-3px); border-color: var(--gold); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
  .to-top { bottom: 20px; inset-inline-start: 16px; width: 42px; height: 42px; }
}

/* --- WhatsApp float: name tag slides out on hover (desktop) --- */
@media (hover: hover) {
  .floating-btn--whatsapp::before {
    content: attr(data-tip);
    position: absolute;
    inset: auto;
    animation: none;
    width: max-content;
    inset-inline-end: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(0);
    white-space: nowrap;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(184, 149, 106, 0.4);
    box-shadow: 0 8px 22px rgba(10, 23, 51, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .floating-btn--whatsapp:hover::before { opacity: 1; }
}

/* --- Footer: gold hairline crown --- */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 8%, rgba(184, 149, 106, 0.55) 50%, transparent 92%);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-video { rotate: 0deg; }
  .to-top { transition: none; }
}

/* ============================================================
   CONTENT V15 — to-top fix, paper-grain texture, hero balance
   ============================================================ */

/* --- Back-to-top: physical LEFT on every screen & language
       (the WhatsApp/a11y cluster effectively renders bottom-RIGHT
       in both dirs — keep them apart for good) --- */
.to-top {
  left: 26px !important;
  right: auto !important;
  inset-inline-start: auto;
  inset-inline-end: auto;
}
@media (max-width: 600px) {
  .to-top { left: 16px !important; bottom: 20px; }
}

/* --- Whisper-quiet paper grain: two dot grids over the page,
       under the nav / floating chrome --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(26, 44, 95, 0.045) 1px, transparent 1.1px),
    radial-gradient(rgba(184, 149, 106, 0.05) 1px, transparent 1.2px);
  background-size: 26px 26px, 94px 94px;
  background-position: 0 0, 31px 47px;
}

/* --- Hero video: sit a touch higher on desktop --- */
@media (min-width: 1024px) {
  .hero-video { translate: 0 -30px; }
}

/* --- Mobile: copy first, video right after it --- */
@media (max-width: 1023px) {
  .hero__copy { order: 1; }
  .hero__visual {
    order: 2 !important;
    margin-top: 6px;
  }
  .scroll-cue { display: none; }
}

/* ============================================================
   CONTENT V16 — Advisor round: bigger results, Antonio strip,
   hero gold sheen (2026-06-10)
   ============================================================ */

/* --- Results: bigger cards, story captions always visible --- */
.section--results .gallery__item,
.section--results .gallery__item:nth-child(1),
.section--results .gallery__item:nth-child(2),
.section--results .gallery__item:nth-child(3),
.section--results .gallery__item:nth-child(4),
.section--results .gallery__item:nth-child(5),
.section--results .gallery__item:nth-child(6) {
  height: clamp(320px, 36vw, 470px) !important;
}
.section--results .gallery__item::after { opacity: 1 !important; }
.section--results .gallery__item-caption {
  opacity: 1 !important;
  transform: none !important;
  font-size: 13.5px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(10, 23, 51, 0.55);
}

/* --- Hero headline: slow gold sheen sweeping the em --- */
@keyframes goldSheen {
  0%, 58% { background-position: 130% 0; }
  100%    { background-position: -30% 0; }
}
.display--hero em {
  background-image: linear-gradient(110deg,
    #C9A579 0%, #B8956A 38%, #EFDCC0 50%, #B8956A 62%, #A88555 100%);
  background-size: 220% 100%;
  background-position: 130% 0;
  animation: goldSheen 6s ease-in-out infinite;
}

/* --- Testimonials: Antonio's personal note strip --- */
.testimonials-antonio {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 44px auto 0;
  padding: 22px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(244, 247, 251, 0.5) 100%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(184, 149, 106, 0.25);
  border-inline-start: 4px solid var(--gold);
  box-shadow:
    0 8px 24px rgba(10, 23, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.testimonials-antonio__photo {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 0 4px rgba(184, 149, 106, 0.35),
    0 6px 16px rgba(10, 23, 51, 0.14);
}
.testimonials-antonio__text {
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink);
}
.testimonials-antonio__name {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}
@media (max-width: 600px) {
  .testimonials-antonio {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 22px 20px;
  }
}

/* READY55 — client revision pass */
.display,
.display--md,
.display--sm,
.nav__link,
.btn,
.kicker,
.stat__num,
.stat__label,
.story-stat__num,
.story-stat__label,
.pricing-card__title,
.testimonial__author {
  letter-spacing: 0 !important;
}

.hero__ctas,
.pricing-cta,
.check-block--button-only {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.hero__ctas {
  width: 100%;
  margin-inline: auto;
}

.hero__ctas .btn--solid {
  min-width: min(100%, 260px);
}

.check-block--button-only {
  max-width: 100%;
  margin: clamp(28px, 4vw, 48px) auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.check-block--button-only::before,
.check-block--button-only::after {
  display: none !important;
}

.check-block--button-only .check-block__btn {
  min-width: min(100%, 280px);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.nav__logo {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 14px rgba(10, 23, 51, 0.16));
}

.footer__logo {
  height: 86px !important;
  width: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.testimonial {
  display: flex !important;
  flex-direction: column;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial__avatar {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.95),
    0 0 0 5px rgba(184,149,106,0.28),
    0 10px 24px rgba(10,23,51,0.14);
}

.testimonial__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.testimonial__person .testimonial__author {
  display: block;
  margin: 0 !important;
}

.testimonial__person .testimonial__author::before {
  display: none !important;
}

.testimonial__person .testimonial__verified {
  margin-top: 0;
}

.consent {
  align-items: flex-start;
  border: 1px solid rgba(10, 23, 51, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.74);
}

.consent__text a {
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .nav__logo { height: 56px !important; }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch !important;
  }
  .hero__ctas .btn { width: 100%; }
  .decision-video {
    border-radius: 22px !important;
    padding-inline: 20px !important;
  }
  .testimonial__person {
    align-items: flex-start;
  }
}

/* READY55 absolute final logo contrast override - keep this block at EOF */
.nav .nav__logo,
.nav__logo {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
}

.footer .footer__logo,
.footer__logo {
  height: 92px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

@media (max-width: 767px) {
  .nav .nav__logo,
  .nav__logo {
    height: 56px !important;
  }

  .footer .footer__logo,
  .footer__logo {
    height: 82px !important;
  }
}

/* READY55 final logo contrast override - must stay last */
.nav .nav__logo,
.nav__logo {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
}

.footer .footer__logo,
.footer__logo {
  height: 92px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

@media (max-width: 767px) {
  .nav .nav__logo,
  .nav__logo {
    height: 56px !important;
  }

  .footer .footer__logo,
  .footer__logo {
    height: 82px !important;
  }
}

/* READY55 logo contrast final lock */
.nav .nav__logo {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
}

.footer .footer__logo {
  height: 92px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

@media (max-width: 767px) {
  .nav .nav__logo { height: 56px !important; }
  .footer .footer__logo { height: 82px !important; }
}

/* READY55 viewport safety */
.drawer[aria-hidden="true"] {
  display: none !important;
}

.drawer[aria-hidden="false"] {
  display: block !important;
}

.gallery-carousel {
  overflow: hidden;
  max-width: 100%;
}

.section--results .gallery,
.section--results .gallery--strip {
  max-width: 100%;
  contain: paint;
  direction: ltr;
}

html[dir="rtl"] .section--results .gallery__item,
html[dir="rtl"] .section--results .gallery__item-caption {
  direction: rtl;
  text-align: start;
}

html,
body {
  max-width: 100%;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .display--hero em { animation: none; }
}

/* V16.1 — readable caption backing on bright photos */
.section--results .gallery__item::after {
  background: linear-gradient(180deg, transparent 54%, rgba(10, 23, 51, 0.62) 100%) !important;
}

/* ============================================================
   CONTENT V17 — Pricing section: tracks, not grafts (2026-06-10)
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin-inline: auto;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card { padding: 34px 36px !important; }
.pricing-card__title {
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}
.pricing-card__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.pricing-card__body strong { color: var(--ink); }
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.pricing-card__list li {
  position: relative;
  padding-inline-start: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(34, 154, 96, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%231E7A4C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.pricing-card__note {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 4px;
}

/* Highlight card — same language as the pullquote */
.pricing-card--highlight {
  border-inline-start: 4px solid var(--gold) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(247, 243, 236, 0.55) 100%) !important;
}

/* Closing question + CTA */
.pricing-cta {
  max-width: 680px;
  margin: 44px auto 0;
  text-align: center;
}
.pricing-cta__question {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 24px;
}

/* READY55 final overrides must stay last */
.display,
.display--md,
.display--sm,
.nav__link,
.btn,
.kicker,
.stat__num,
.stat__label,
.story-stat__num,
.story-stat__label,
.pricing-card__title,
.testimonial__author {
  letter-spacing: 0 !important;
}

.hero__ctas,
.pricing-cta,
.check-block--button-only {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.hero__ctas {
  width: 100%;
  margin-inline: auto;
}

.hero__ctas .btn--solid {
  min-width: min(100%, 260px);
}

.check-block--button-only {
  max-width: 100%;
  margin: clamp(28px, 4vw, 48px) auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.check-block--button-only::before,
.check-block--button-only::after {
  display: none !important;
}

.check-block--button-only .check-block__btn {
  min-width: min(100%, 280px);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.nav__logo {
  height: 72px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 14px rgba(10, 23, 51, 0.16));
}

.footer__logo {
  height: 76px !important;
  width: 76px !important;
  object-fit: contain !important;
  border-radius: 20px !important;
  padding: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 23, 51, 0.12);
}

.testimonial {
  display: flex !important;
  flex-direction: column;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial__avatar {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.95),
    0 0 0 5px rgba(184,149,106,0.28),
    0 10px 24px rgba(10,23,51,0.14);
}

.testimonial__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.testimonial__person .testimonial__author {
  display: block;
  margin: 0 !important;
}

.testimonial__person .testimonial__author::before {
  display: none !important;
}

.testimonial__person .testimonial__verified {
  margin-top: 0;
}

.consent {
  align-items: flex-start;
  border: 1px solid rgba(10, 23, 51, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.74);
}

.consent__text a {
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .nav__logo { height: 56px !important; }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch !important;
  }
  .hero__ctas .btn { width: 100%; }
  .decision-video {
    border-radius: 22px !important;
    padding-inline: 20px !important;
  }
  .testimonial__person {
    align-items: flex-start;
  }
}
