/* ════════════════════════════════════════════════
   NOMAD X VAULT — Premium Landing Page
   Design System: Apple Minimalist · Bodoni Moda + Jost
   Palette: White · Navy #01072D · Gold #D1BB90
   ════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  /* Brand Colors — Black & Gray system */
  --navy:       #0D0D0D;
  --navy-2:     #1F1F1F;
  --gold:       #9E9E9E;
  --gold-light: #BEBEBE;
  --gold-dim:   rgba(158,158,158,0.12);
  --gold-border:rgba(158,158,158,0.30);
  --cream:      #F2F1EF;
  --olive:      #6B6B6B;

  /* Backgrounds */
  --bg:         #FFFFFF;
  --bg-2:       #F9F9F9;
  --bg-3:       #F2F2F2;
  --bg-cream:   #F4F4F4;

  /* Text */
  --text:       #0D0D0D;
  --text-2:     #1F1F1F;
  --text-3:     #4A4A4A;
  --text-muted: #8A8A8A;

  /* Borders */
  --border:     rgba(0,0,0,0.07);
  --border-md:  rgba(0,0,0,0.11);
  --border-dark:rgba(0,0,0,0.16);

  /* Typography — SuisseIntl Cond (commercial) → fallback: Barlow Condensed */
  /* To activate SuisseIntl Cond: add Adobe Fonts <link> in <head> or @font-face below */
  --font-display: 'SuisseIntl Cond', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing (8pt grid) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-16: 128px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration: 600ms;
}

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

/* GHL wrapper override — elimina espacios superiores */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  top: 0 !important;
}

body > div:not([class]),
body > div[class*="page"],
body > div[class*="container"],
body > div[class*="wrapper"],
body > div[class*="section"],
body > div[class*="funnelish"],
body > div[class*="highlevel"],
body > div[id*="page"] {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── SELECTION ───────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--navy);
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ── CURSOR ──────────────────────────────────── */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}

.cursor.is-hovering { width: 12px; height: 12px; background: var(--gold); }
.cursor-follower.is-hovering { width: 56px; height: 56px; opacity: 0.12; border-color: var(--gold); }

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ── LOADER ──────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.loader-logo {
  width: 160px;
  opacity: 0;
  animation: loaderFade 0.8s var(--ease-out) 0.2s forwards;
}

@keyframes loaderFade { to { opacity: 1; } }

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--border-md);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: width 0.05s linear;
}

.loader-text {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ── UTILITY ─────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--sp-3); }
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: background 0.3s, transform 0.2s var(--ease-out), box-shadow 0.3s;
}

.btn-gold:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.btn-gold:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--border-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost i, .btn-gold i {
  transition: transform 0.3s var(--ease-out);
}
.btn-ghost:hover i, .btn-gold:hover i { transform: translateX(4px); }

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--border-dark);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s;
}

.btn-ghost-sm:hover {
  background: var(--bg-2);
  border-color: var(--navy);
}

/* ── SECTION HEADERS ─────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-3);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}

.section-header .section-subtitle { margin: 0 auto; }

/* ── REVEAL ANIMATIONS ───────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-up   { transform: translateY(32px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right{ transform: translateX(32px); }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0 !important; left: 0; right: 0;
  z-index: 99999;
  padding: 24px 0;
  background: transparent;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0); /* always black */
  transition: filter 0.4s;
}

.navbar.scrolled .nav-logo-img {
  filter: brightness(0); /* pure black on white bg */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-left: auto;
}

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.8);
  position: relative;
  transition: color 0.4s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: #000; }
.nav-link:hover::after { width: 100%; }

/* Scrolled state — dark links on white bg */
.navbar.scrolled .nav-link { color: var(--text-3); }
.navbar.scrolled .nav-link::after { background: var(--navy); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }

.nav-cta {
  margin-left: var(--sp-3);
  padding: 10px 24px;
  font-size: 11px;
  background: rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.35);
  color: #000 !important;
  backdrop-filter: blur(8px);
  transition: background 0.4s, border-color 0.4s, color 0.4s, box-shadow 0.3s;
}

.nav-cta:hover {
  background: rgba(0,0,0,0.14) !important;
  border-color: rgba(0,0,0,0.7) !important;
  transform: translateY(-1px);
}

/* Navy filled when scrolled */
.navbar.scrolled .nav-cta {
  background: var(--navy) !important;
  border-color: transparent !important;
  color: #fff !important;
  backdrop-filter: none;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--navy-2) !important;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  margin-left: var(--sp-3);
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.5);
}

.lang-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.85);
  text-transform: uppercase;
  transition: color 0.4s;
}

.navbar.scrolled .lang-toggle {
  border-color: rgba(0,0,0,0.15);
  background: rgba(1,7,45,0.05);
}

.navbar.scrolled .lang-toggle:hover {
  background: rgba(0,0,0,0.08);
  border-color: var(--navy);
}

.navbar.scrolled .lang-label { color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.navbar.scrolled .nav-hamburger span { background: var(--navy); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-3);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--navy); }

.mobile-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 12px 32px;
  border-radius: var(--r-full);
  margin-top: var(--sp-4);
}

.mobile-close {
  position: absolute;
  top: var(--sp-4); right: var(--sp-6);
  color: var(--text-3);
  transition: color 0.3s;
  padding: 8px;
}
.mobile-close:hover { color: var(--navy); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Inner container: centers content, matches grid */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--sp-6) var(--sp-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-8);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ── VIDEO BACKGROUND ────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(255,255,255,0.55) 0%,
      rgba(255,255,255,0.35) 45%,
      rgba(255,255,255,0.10) 100%
    );
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-10px,20px) scale(0.95); }
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-4);
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow .sep { color: rgba(0,0,0,0.4); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
  overflow: hidden;
  color: #000;
}

.hero-line { display: block; overflow: hidden; }
.hero-line-italic { font-style: italic; color: #000; }

.char {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(0,0,0,0.65);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(20px);
}

.hero-proof-item { display: flex; flex-direction: column; gap: 4px; }

.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: #000;
  line-height: 1;
}

.proof-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.hero-proof-divider {
  width: 1px; height: 36px;
  background: rgba(0,0,0,0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(40px);
}

.vault-visual { perspective: 1000px; }

.vault-card {
  width: 360px; height: 440px;
  border-radius: var(--r-xl);
  background: var(--bg);
  border: 1px solid var(--border-md);
  position: relative;
  overflow: hidden;
  animation: vaultTilt 8s ease-in-out infinite;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.08),
    0 32px 80px rgba(1,7,45,0.1);
}

@keyframes vaultTilt {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg); }
  50% { transform: rotateY(4deg) rotateX(-2deg); }
}

.vault-card-inner {
  padding: var(--sp-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vault-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(158,158,158,0.07) 50%,
    transparent 70%
  );
  animation: shimmerMove 5s ease-in-out infinite;
}

@keyframes shimmerMove {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(100%) translateY(100%); }
}

.vault-label {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-3);
}

.vault-label-text {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.vault-label-sub {
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.vault-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.vault-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-2);
  transition: border-color 0.3s, background 0.3s;
  animation: vaultItemFloat calc(3s + var(--i) * 0.7s) ease-in-out infinite;
}

@keyframes vaultItemFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.vault-item:hover { border-color: var(--gold); background: var(--bg-3); }

.vault-item i {
  width: 24px; height: 24px;
  color: var(--navy);
  stroke-width: 1.5;
}

.vault-item span {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-5); left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 3s forwards;
}

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

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}

/* Ghost button — hero only */
.hero .btn-ghost {
  border-color: rgba(0,0,0,0.35);
  color: #000;
}

.hero .btn-ghost:hover {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.7);
}

/* ── MARQUEE ─────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: var(--sp-4) 0;
  background: var(--bg-2);
}

.marquee-track { display: flex; overflow: hidden; }

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  flex-shrink: 0;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-3);
  letter-spacing: 0.03em;
}

.marquee-dot { color: var(--gold) !important; font-style: normal !important; }

.marquee-section:hover .marquee-content { animation-play-state: paused; }

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

/* ── PRODUCT SECTION ─────────────────────────── */
.product-section {
  padding: var(--sp-16) 0;
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--sp-4);
  align-items: center;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.4s, transform 0.4s var(--ease-out),
              box-shadow 0.4s;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.product-card-bg {
  height: 220px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.product-visual {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-orb {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158,158,158,0.20), transparent);
  filter: blur(40px);
  animation: orbFloat 6s ease-in-out infinite;
}

.product-icon-stack {
  display: flex;
  gap: var(--sp-2);
  z-index: 2;
}

.picon {
  width: 56px; height: 56px;
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.picon i {
  width: 22px; height: 22px;
  color: var(--navy);
  stroke-width: 1.5;
}

.picon-2 { transform: translateY(-12px); }

.product-card-content { padding: var(--sp-4); }

.product-card-content h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin-bottom: var(--sp-2);
  color: var(--navy);
}

.product-card-content p {
  font-size: 14px; font-weight: 300;
  color: var(--text-3);
  line-height: 1.7;
}

/* Price Card */
.product-center { display: flex; justify-content: center; }

.product-price-card {
  background: var(--navy); /* #0D0D0D — near black */
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  width: 100%; max-width: 340px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.12),
    0 24px 64px rgba(0,0,0,0.15);
}

.product-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-badge {
  display: inline-block;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(158,158,158,0.25);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--sp-3);
}

.price-usd {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 500;
  line-height: 1;
  color: #fff;
}

.price-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
}

.price-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-4);
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.price-features li i {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.price-cta {
  width: 100%;
  justify-content: center;
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.price-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 8px 24px rgba(158,158,158,0.25) !important;
}

/* ── STATS ───────────────────────────────────── */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: var(--sp-8) 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
}

@media (max-width: 768px) {
  .stats-inner { flex-wrap: wrap; gap: var(--sp-5); }
  .stat-divider { display: none; }
}

.stat-item {
  text-align: center;
  transition-delay: calc(var(--d) * 0.1s);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  color: var(--gold);
  margin-left: 4px;
}

.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.stat-divider {
  width: 1px; height: 60px;
  background: var(--border-md);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────── */
.how-section { padding: var(--sp-16) 0; background: var(--bg); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}

@media (max-width: 768px) {
  .steps-container { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.step {
  position: relative;
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  transition-delay: calc(var(--d) * 0.15s);
}

.step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 500;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  position: absolute;
  top: var(--sp-3); right: var(--sp-4);
  pointer-events: none;
}

.step-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  margin-bottom: var(--sp-3);
}

.step-icon i {
  width: 22px; height: 22px;
  color: var(--navy);
  stroke-width: 1.5;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px; font-weight: 300;
  color: var(--text-3);
  line-height: 1.8;
}

.step-connector {
  position: absolute;
  right: -24px; top: 40px;
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 2;
}

@media (max-width: 768px) { .step-connector { display: none; } }

/* ── CONTENTS ────────────────────────────────── */
.contents-section {
  padding: var(--sp-16) 0;
  background: var(--bg-2);
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

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

.content-group {
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  transition-delay: calc(var(--d) * 0.1s);
}

.content-group:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.content-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.content-group-header i {
  width: 20px; height: 20px;
  color: var(--navy);
  stroke-width: 1.5;
}

.content-group-header h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--navy);
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px; font-weight: 300;
  color: var(--text-3);
  line-height: 1.5;
}

.item-count {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--gold);
  min-width: 24px;
  flex-shrink: 0;
}

.item-note {
  font-size: 12px !important;
  font-style: italic;
  color: var(--text-muted) !important;
  padding-top: 4px;
}

/* Profile CTA */
.profile-cta {
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.profile-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.profile-cta-inner {
  padding: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.profile-cta-inner > i {
  width: 32px; height: 32px;
  color: var(--navy);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.profile-cta-inner h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.profile-cta-inner p {
  font-size: 13px; font-weight: 300;
  color: var(--text-3);
  flex: 1;
}

@media (max-width: 768px) {
  .profile-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ── DESTINATIONS ────────────────────────────── */
/* ─── GALLERY SLIDER ──────────────────────────────── */
.gallery-section {
  padding: var(--sp-16) 0 var(--sp-12);
  background: var(--bg);
  overflow: hidden;
}

.gallery-eyebrow {
  text-align: center;
  margin-bottom: var(--sp-8);
  padding: 0 var(--sp-6);
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  margin-top: var(--sp-2);
  letter-spacing: -0.02em;
}

.gallery-track-wrapper {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.gallery-track-wrapper:active { cursor: grabbing; }

.gallery-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 72%;
  max-width: 72%;
  margin: 0 1.5%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.gallery-slide:first-child { margin-left: 14%; }
.gallery-slide:last-child  { margin-right: 14%; }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-slide:hover img { transform: scale(1.03); }

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(1,7,45,0.15);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.gallery-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.gallery-arrow-prev { left: 2%; }
.gallery-arrow-next { right: 2%; }

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-6);
}

.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.gallery-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .gallery-slide { flex: 0 0 85%; max-width: 85%; }
  .gallery-slide:first-child { margin-left: 7.5%; }
  .gallery-slide:last-child  { margin-right: 7.5%; }
  .gallery-arrow { display: none; }
}

/* ─── DESTINATIONS ──────────────────────────────── */
.destinations-section { padding: var(--sp-16) 0; background: var(--bg); }

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

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

.dest-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 400px;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
}

.dest-card:hover { transform: scale(1.02); }

.dest-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}

.dest-card:hover .dest-card-bg { transform: scale(1.05); }

.dest-punta-cana {
  background-color: var(--navy);
}

.dest-card-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}

.dest-card:hover .dest-card-video { transform: scale(1.05); }

.dest-riviera {
  background-color: var(--navy);
}

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1,7,45,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.dest-content {
  position: absolute;
  bottom: 0; left: 0;
  padding: var(--sp-5);
  z-index: 2;
}

.dest-flag {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(158,158,158,0.35);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}

.dest-content h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.dest-content p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

.dest-note {
  text-align: center;
  font-size: 13px; font-weight: 300;
  color: var(--text-muted);
}

.dest-note a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section {
  padding: var(--sp-16) 0;
  background: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.testimonial-card {
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  transition-delay: calc(var(--d) * 0.12s);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.testimonial-card-featured {
  border-color: var(--gold);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonial-stars { display: flex; gap: 4px; }

.testimonial-stars i {
  width: 14px; height: 14px;
  color: var(--gold);
  fill: var(--gold);
  stroke-width: 0;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 400;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--navy);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 14px; font-weight: 400;
  color: var(--navy);
  margin-bottom: 2px;
}

.author-trip {
  display: block;
  font-size: 11px; font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── RESERVE / GHL ───────────────────────────── */
.reserve-section {
  padding: var(--sp-16) 0;
  background: var(--navy); /* #0D0D0D — near black */
  position: relative;
  overflow: hidden;
}

.reserve-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.reserve-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 30% 50%, rgba(158,158,158,0.06) 0%, transparent 70%);
}

.reserve-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158,158,158,0.08), transparent);
  filter: blur(80px);
  top: -200px; right: -200px;
  animation: orbFloat 10s ease-in-out infinite;
}

.reserve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
  z-index: 2;
}

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

/* Reserve left — light text on navy bg */
.reserve-section .section-eyebrow { color: var(--gold); }

.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-4);
}

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

.reserve-subtitle {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  max-width: 440px;
}

.reserve-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reserve-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.reserve-checklist li i {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 1.5;
}

/* Reserve CTA Card */
.reserve-cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(209,187,144,0.2);
  border-radius: 20px;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.reserve-cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(209,187,144,0.1);
  border: 1px solid rgba(209,187,144,0.2);
  padding: 5px 14px;
  border-radius: 20px;
}

.reserve-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.reserve-cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.reserve-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  background: var(--gold);
  color: var(--dark-navy);
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.reserve-cta-btn:hover { background: #e2ceaa; transform: translateY(-1px); }

.reserve-cta-signin {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.reserve-cta-signin a {
  color: var(--gold);
  margin-left: 5px;
  border-bottom: 1px solid rgba(209,187,144,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.reserve-cta-signin a:hover { border-color: var(--gold); }

/* GHL Form */
.ghl-form-wrapper {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.12),
    0 24px 64px rgba(0,0,0,0.15);
}

.ghl-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.nomadx-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

.form-group input,
.form-group select {
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2301072D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  color: var(--text-muted);
}

.form-group select:valid { color: var(--text); }

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 13px;
  margin-top: var(--sp-1);
}

.form-note {
  font-size: 11px; font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--sp-10) 0 var(--sp-6);
}

.footer-top {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) { .footer-top { flex-direction: column; gap: var(--sp-6); } }

/* ── Testimonials Carousel ───────────────────────────── */
.tcarousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.tcarousel__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tcarousel__slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0 4px;
  box-sizing: border-box;
}
.tcarousel__slide .testimonial-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.tcarousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.tcarousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.tcarousel__dot.active {
  background: #000000;
  transform: scale(1.3);
}

/* ── Emergency Protocol ──────────────────────────────── */
@media (max-width: 768px) {
  .emergency-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* ── About Section ───────────────────────────────────── */
@media (max-width: 900px) {
  .about-pillars { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .about-pillars { grid-template-columns: 1fr 1fr !important; }
}

.footer-logo {
  height: 40px; width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-3);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--text-3);
}

.footer-links { display: flex; gap: var(--sp-8); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px; font-weight: 300;
  color: var(--text-3);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.footer-bottom p {
  font-size: 12px; font-weight: 300;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: var(--sp-4); }

.footer-legal a {
  font-size: 12px; font-weight: 300;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--navy); }

.footer-credit {
  font-size: 11px; font-weight: 300;
  color: var(--text-muted);
  opacity: 0.7; white-space: nowrap;
}
.footer-credit a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s, opacity 0.2s;
}
.footer-credit a:hover { color: var(--navy); opacity: 1; }

/* ── MEDIA QUERIES ───────────────────────────── */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: var(--sp-8);
    padding-left: var(--sp-3);
    padding-right: var(--sp-3);
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero-visual { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-eyebrow, .hero-sub { margin-left: auto; margin-right: auto; }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
  }

  .hero-btn,
  .hero-btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-proof { justify-content: center; flex-wrap: wrap; gap: var(--sp-3); }
  .hero-proof-divider { display: none; }
}

@media (max-width: 600px) {
  .footer-links { flex-direction: column; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .lang-toggle { display: none; }
}

/* ── PREFERS REDUCED MOTION ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Social Widget ─────────────────────────────────────────── */
.social-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  box-shadow: -3px 0 16px rgba(0,0,0,0.18);
}
.social-widget__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  text-decoration: none;
  transition: width 0.2s ease, filter 0.2s ease;
}
.social-widget__item:hover {
  width: 54px;
  filter: brightness(1.1);
}
.social-widget__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.social-widget__item--fb  { background: #1877F2; }
.social-widget__item--ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-widget__item--tt  { background: #010101; }
