/* ===================================================
   TRUFFLEJENNY — DUBAI GUIDE LANDING PAGE
   =================================================== */

:root {
  --gold:       #C9A84C;
  --gold-light: #E0BC68;
  --gold-dark:  #A8882E;
  --gold-muted: rgba(201,168,76,0.12);
  --black:      #0C0C0C;
  --dark:       #111111;
  --dark-2:     #181818;
  --white:      #FFFFFF;
  --cream:      #FAF7F0;
  --cream-2:    #F2EDE3;
  --text:       #1A1A1A;
  --text-mid:   #555555;
  --text-muted: #999999;
  --border:     rgba(0,0,0,0.08);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     14px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img.emoji { height: 1em; width: 1em; margin: 0 .05em 0 .1em; vertical-align: -0.1em; display: inline-block; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(12,12,12,0.96);
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-logo { justify-self: start; }
.nav-center { justify-self: center; display: flex; align-items: center; gap: 12px; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 18px; }
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-social-link {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.nav-social-link:hover { color: var(--gold); }
.nav-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.22s;
}
.nav-link:hover { color: var(--gold); }

/* Header CTA buttons (Dubai Relocate / US LLC) */
.nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 17px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; line-height: 1;
  text-decoration: none; white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}
.nav-btn--primary { background: var(--gold); color: #0C0C0C; }
.nav-btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-btn--ghost { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.45); }
.nav-btn--ghost:hover { background: rgba(201,168,76,0.22); }
.nav-flag { display: inline-flex; align-items: center; }
/* Mobile hamburger menu */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0; margin: 0; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; margin: 0 auto; transition: transform 0.25s, opacity 0.2s; }
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(12,12,12,0.98); border-top: 1px solid rgba(201,168,76,0.18); padding: 6px 22px 18px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.32s ease, opacity 0.25s ease, padding 0.32s ease; box-shadow: 0 18px 40px rgba(0,0,0,0.45); }
.nav.is-open .nav-mobile { max-height: 460px; opacity: 1; }
.nav-mobile-link { display: flex; align-items: center; gap: 9px; padding: 14px 2px; color: rgba(255,255,255,0.88); text-decoration: none; font-size: 1.02rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-socials { display: flex; gap: 26px; padding: 16px 2px 2px; }
.nav-mobile-socials a { color: var(--gold); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
@media (max-width: 600px) {
  .nav-inner { display: flex; justify-content: space-between; gap: 8px; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .nav { padding-left: 16px; padding-right: 10px; }
  .nav-logo { font-size: 1.05rem; }
}
.nav-cta {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 65%;
  height: 120%;
  background: radial-gradient(ellipse at 65% 40%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-flag { font-size: 1em; letter-spacing: 0; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
  transition: all 0.28s var(--ease);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.32);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.hero-usp {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 520px;
}
.hero-usp-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.lang-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
}
.hero-usp-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.hero-usp-text strong { color: var(--gold); font-weight: 600; }

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}
.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 200px 200px 140px 140px;
  border: 1px solid rgba(201,168,76,0.18);
}
.hero-img-ring {
  position: absolute;
  inset: -8px;
  border-radius: 210px 210px 150px 150px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%);
  filter: blur(48px);
  z-index: 1;
  pointer-events: none;
}
.hero-float-card {
  position: absolute;
  bottom: 48px;
  left: -20px;
  z-index: 3;
  background: rgba(20,16,10,0.92);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.float-icon {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.float-text { display: flex; flex-direction: column; gap: 2px; }
.float-text strong { color: var(--white); font-size: 0.8rem; }
.float-text span { color: rgba(255,255,255,0.4); font-size: 0.72rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
}

/* ========== SECTION SHARED ========== */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ========== INSIDE ========== */
.inside {
  background: var(--cream);
  padding: 100px 0 110px;
  text-align: center;
}
.inside .section-title { color: var(--text); }
.inside .section-sub { margin: 0 auto 56px; }
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.phase-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.phase-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}
.phase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.phase-card:hover::after { opacity: 1; }
.phase-card--gold {
  background: linear-gradient(135deg, #0C0C0C 0%, #1A1508 100%);
  border-color: rgba(201,168,76,0.25);
}
.phase-card--gold .phase-tag { color: var(--gold); }
.phase-card--gold h3 { color: var(--white); }
.phase-card--gold p { color: rgba(255,255,255,0.55); }
.phase-card--gold:hover { border-color: rgba(201,168,76,0.5); }
.phase-icon { font-size: 2rem; margin-bottom: 14px; }
.phase-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.phase-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.phase-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ========== ABOUT ========== */
.about {
  background: var(--dark);
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  border-radius: 160px 160px 120px 120px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  aspect-ratio: 3/4;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-social-pills {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.25s;
}
.social-pill:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
.about-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.about-text {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
}
.about-quote {
  margin: 28px 0 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
  border-radius: 0 10px 10px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.btn-outline {
  display: inline-block;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 28px rgba(201,168,76,0.28);
}

/* ========== FORM SECTION ========== */
.form-section {
  background: var(--cream);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.form-bg-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.form-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
}
.form-bg-circle--1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.form-bg-circle--2 { width: 400px; height: 400px; bottom: -150px; left: -80px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.form-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 18px;
}
.form-heading em { font-style: italic; color: var(--gold-dark); }
.form-intro {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 0.975rem;
  margin-bottom: 28px;
}
.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.form-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.benefit-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}
.form-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.trust-img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.trust-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* form card */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}
.form-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.form-card-icon { font-size: 2.2rem; }
.form-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.form-card-sub { font-size: 0.8rem; color: var(--text-muted); }

.fg { margin-bottom: 18px; }
.fg label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 7px;
}
.label-opt {
  font-weight: 400;
  text-transform: none;
  color: var(--text-muted);
  letter-spacing: 0;
  font-size: 0.7rem;
}
.fg input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #E2DDD6;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: all 0.22s var(--ease);
}
.fg input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.fg input::placeholder { color: #C5BFB5; }
.fg input.is-invalid { border-color: #E05050; }
.field-err {
  display: block;
  font-size: 0.73rem;
  color: #D04040;
  margin-top: 5px;
  min-height: 14px;
}
.btn-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 20px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  position: relative;
}
.btn-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.35);
}
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-loading { display: none; }
.privacy-note {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  padding: 52px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { text-align: center; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.22s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin-bottom: 8px; }
.footer-disclaimer {
  color: rgba(255,255,255,0.18);
  font-size: 0.73rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; padding: 60px 28px 80px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-visual { order: -1; max-width: 300px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-usp { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-usp-row { justify-content: center; }
  .hero-float-card { bottom: 16px; left: -8px; }
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 280px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { flex-direction: column; gap: 16px; }
}
@media (max-width: 640px) {
  .nav-cta { display: none; }
  .phases-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .hero-stats { gap: 18px; }
  .hero-float-card { display: none; }
}
