/* ============================================================
   HAPPYY.AE — Brand Design System v2
   Colors, logo & type sourced from happyy.ae brand CSS
   primary hsl(160,100%,26%) · secondary hsl(195,85%,18%)
   accent hsl(350,72%,50%) · gold hsl(38,92%,55%)
   Fonts: Jost (body/display) · Rajdhani (kickers/numerals)
   ============================================================ */

:root {
  --primary: hsl(160, 100%, 26%);
  --primary-deep: hsl(160, 100%, 19%);
  --primary-soft: hsl(160, 60%, 95%);
  --secondary: hsl(195, 85%, 18%);
  --hero-bg: hsl(200, 50%, 14%);
  --accent: hsl(350, 72%, 50%);
  --gold: hsl(38, 92%, 55%);
  --gold-soft: hsl(38, 92%, 93%);
  --ink: hsl(210, 30%, 12%);
  --muted: hsl(210, 10%, 45%);
  --surface: hsl(30, 30%, 97%);
  --card: #ffffff;
  --line: hsl(210, 20%, 90%);

  --grad-primary: linear-gradient(135deg, hsl(160,100%,26%), hsl(195,85%,18%));
  --grad-hero: linear-gradient(135deg, hsl(200,50%,14%), hsl(195,85%,18%));
  --grad-gold: linear-gradient(120deg, hsl(38,92%,55%), hsl(45,95%,64%));

  --font-body: 'Jost', system-ui, sans-serif;
  --font-kick: 'Rajdhani', 'Jost', sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 34px hsla(200, 50%, 14%, 0.10);
  --shadow-lift: 0 24px 60px hsla(200, 50%, 14%, 0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1220px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-body); line-height: 1.06; letter-spacing: -0.015em; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.grad-text {
  background: linear-gradient(90deg, hsl(38,92%,55%), hsl(28,92%,58%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-text-green {
  background: linear-gradient(90deg, hsl(160,100%,32%), hsl(170,80%,40%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Nike-style kicker */
.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-kick); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
}
.kicker::before, .eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--gold); flex: none; }
.on-dark .kicker, .on-dark .eyebrow { color: var(--gold); }

.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker, .section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.12rem; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  letter-spacing: 0.02em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 30px hsla(160,100%,26%,0.35); }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-3px); box-shadow: 0 18px 40px hsla(160,100%,26%,0.45); }
.btn-gold { background: var(--grad-gold); color: hsl(200,50%,14%); box-shadow: 0 12px 30px hsla(38,92%,55%,0.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px hsla(38,92%,55%,0.5); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-3px); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: var(--hero-bg); transform: translateY(-3px); box-shadow: 0 14px 30px hsla(195,85%,18%,0.35); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 20px 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.site-header.scrolled {
  background: hsla(200, 50%, 12%, 0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25); padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav-links a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.98rem;
  font-family: var(--font-kick); letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO — full-bleed photography ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding: 150px 0 0;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 30%;
  animation: hero-zoom 18s var(--ease) forwards;
}
@keyframes hero-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }

/* Dynamic hero slideshow */
.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 28%;
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1; transform: scale(1);
  transition: opacity 0.8s ease, transform 4s linear;
}

/* Rotating case-study headline */
.hero-title { font-size: clamp(1.9rem, 4.6vw, 3.9rem); max-width: 19ch; min-height: 3.25em; }
.hero-title span {
  display: inline-block;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-title span.out { opacity: 0; transform: translateY(18px); }
.rotator {
  font-style: normal; color: var(--gold); display: inline-block;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.rotator.out { opacity: 0; transform: translateY(16px); }

/* Live app receipt card — the app in action */
.app-card {
  position: absolute; right: 6%; bottom: 200px; z-index: 3;
  width: 264px; padding: 18px 20px;
  background: hsla(200, 50%, 10%, 0.72);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: rotate(-2.5deg);
  animation: chip-bob-app 6s ease-in-out infinite;
  transition: opacity 0.3s var(--ease);
}
@keyframes chip-bob-app { 0%,100% { transform: rotate(-2.5deg) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(-12px); } }
.app-card.out { opacity: 0; }
.app-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.app-card-top img { height: 20px; width: auto; }
.app-live { font-family: var(--font-kick); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal, #2bd9a9); color: hsl(160, 80%, 55%); }
.app-card-title { font-weight: 600; font-size: 1.02rem; color: #fff; }
.app-card-detail { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.app-card-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px; }
.app-amt { font-family: var(--font-kick); font-weight: 700; font-size: 1.25rem; color: var(--gold); }
.app-status {
  font-family: var(--font-kick); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: hsl(160, 80%, 60%); text-align: right; line-height: 1.35;
}
@media (max-width: 1020px) {
  .app-card {
    position: static; transform: none; animation: none;
    margin: 0 0 30px; width: 100%; max-width: 300px;
  }
}

/* "Who's on screen" chip */
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; padding: 9px 20px; margin-bottom: 26px;
  font-family: var(--font-kick); font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.92);
  transition: opacity 0.3s var(--ease);
}
.hero-chip .chip-flag { width: 24px; height: 16px; border-radius: 3px; object-fit: cover; flex: none; box-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 hsla(38,92%,55%,0.5); } 50% { box-shadow: 0 0 0 7px hsla(38,92%,55%,0); } }
.hero-chip.out { opacity: 0; }

/* ---------- Faces wall ---------- */
.faces-band { background: var(--hero-bg); color: #fff; padding: clamp(64px, 9vw, 110px) 0 clamp(50px, 7vw, 84px); overflow: hidden; }
.faces-band .section-head { margin-inline: auto; text-align: center; }
.faces-band .kicker { justify-content: center; color: var(--gold); }
.faces-band .section-head p { color: rgba(255,255,255,0.65); }
.faces-rows { display: grid; gap: 18px; }
.faces-row { display: flex; gap: 18px; width: max-content; animation: marquee 80s linear infinite; }
.faces-row.rev { animation-direction: reverse; animation-duration: 92s; }
.faces-band:hover .faces-row { animation-play-state: paused; }
.face-card {
  width: 172px; flex: none; margin: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.face-card:hover { transform: translateY(-6px) scale(1.03); border-color: hsla(38,92%,55%,0.6); background: rgba(255,255,255,0.1); }
.face-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.face-card figcaption { padding: 12px 14px 14px; }
.face-card strong { display: block; font-size: 0.92rem; font-weight: 600; }
.face-card span { font-size: 0.72rem; color: rgba(255,255,255,0.62); font-family: var(--font-kick); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; display: block; margin-top: 2px; }

@media (max-width: 760px) {
  .face-card { width: 138px; }
  .face-card img { height: 160px; }
  .hero-chip { font-size: 0.72rem; padding: 8px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .faces-row { animation: none; }
  .faces-rows { overflow-x: auto; }
  .faces-row { width: auto; }
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, hsla(200,50%,10%,0.55) 0%, hsla(200,50%,10%,0.15) 40%, hsla(200,50%,10%,0.82) 100%),
    linear-gradient(100deg, hsla(195,85%,14%,0.75) 0%, hsla(195,85%,14%,0.05) 60%);
}
.hero-inner { padding-bottom: clamp(48px, 7vw, 90px); }
.hero .kicker { color: var(--gold); }
.hero h1 { max-width: 15ch; margin-bottom: 26px; text-wrap: balance; font-weight: 600; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 300;
  color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 38px;
  transition: opacity 0.3s var(--ease);
}
.hero-sub.out { opacity: 0; }
.hero-sub.flag-accent {
  position: relative; padding-left: 22px; font-style: italic;
}
.hero-sub.flag-accent::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 10px;
  border-radius: 3px;
  border-left: 4px solid #EF3340; /* UAE red */
  background: linear-gradient(180deg, #00843D 0% 33.3%, #ffffff 33.3% 66.6%, #000000 66.6% 100%); /* green · white · black */
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: clamp(44px, 6vw, 70px); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: clamp(28px, 5vw, 70px);
  border-top: 1px solid rgba(255,255,255,0.22); padding-top: 30px; width: fit-content;
}
.hero-stats strong {
  font-family: var(--font-kick); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); display: block; line-height: 1;
}
.hero-stats strong .suffix { color: var(--gold); }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-kick); font-weight: 600; }
.scroll-cue {
  position: absolute; bottom: 28px; right: 5%;
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.45); border-radius: 14px;
}
.scroll-cue::after {
  content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 9px;
  background: var(--gold); border-radius: 4px; transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

/* ---------- Live FX ticker ---------- */
.marquee-band { position: relative; background: var(--primary); color: #fff; padding: 18px 0; overflow: hidden; }
.marquee { display: flex; gap: 46px; width: max-content; will-change: transform; }
.marquee span { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-kick); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.marquee .flag { font-size: 1.35rem; }
.marquee .rate {
  font-family: var(--font-kick); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--gold); background: rgba(0,0,0,0.22);
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.live-chip {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; padding: 0 44px 0 26px;
  background: linear-gradient(90deg, hsl(160,100%,20%) 72%, transparent);
  font-family: var(--font-kick); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.marquee .rate-note {
  font-size: 0.72rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.75);
  border: 1px dashed rgba(255,255,255,0.35); border-radius: 999px; padding: 6px 16px;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff5252; animation: live-blink 1.6s ease-in-out infinite; }
@keyframes live-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (max-width: 760px) { .live-chip { display: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Photo service cards ---------- */
.services-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1020px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.pcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.pcard-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, hsla(200,50%,10%,0.55));
}
.pcard-chip {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  font-family: var(--font-kick); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  background: hsla(160,100%,26%,0.9); padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.pcard-chip.chip-gold { background: hsla(38,92%,45%,0.95); color: hsl(200,50%,10%); }
.pcard-chip.chip-red { background: hsla(350,72%,50%,0.92); }
.pcard-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard-body h3 { font-weight: 600; }
.pcard-body p { color: var(--muted); font-size: 0.98rem; font-weight: 300; flex: 1; }
.pcard-link {
  font-family: var(--font-kick); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease);
}
.pcard:hover .pcard-link { gap: 14px; }

/* compact service row */
.mini-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 26px; }
.mini-service {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.mini-service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.mini-service .ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-size: 1.3rem;
}
.mini-service .ico svg, .contact-tile .emoji svg { width: 22px; height: 22px; }
.socials a svg { width: 18px; height: 18px; }
.store-badge .emoji svg { width: 26px; height: 26px; }
.mini-service strong { display: block; font-size: 0.98rem; font-weight: 600; }
.mini-service span { font-size: 0.82rem; color: var(--muted); }
.badge-soon {
  margin-left: auto; flex: none;
  background: var(--gold-soft); color: hsl(38, 80%, 32%);
  font-family: var(--font-kick); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}

/* ---------- Editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.split-img img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4 / 4.6; transition: transform 1s var(--ease); }
.split-img:hover img { transform: scale(1.04); }
.split-img .img-cap {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: hsla(200,50%,10%,0.72); backdrop-filter: blur(8px);
  color: #fff; border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: 0.92rem; font-weight: 300;
}
.split-img .img-cap strong { font-family: var(--font-kick); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 2px; color: var(--gold); }
.split-copy h2 { margin-bottom: 20px; text-wrap: balance; }
.split-copy p { color: var(--muted); font-size: 1.1rem; font-weight: 300; margin-bottom: 18px; }
.check-list { margin: 22px 0 30px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.check-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--primary-soft); color: var(--primary); font-size: 0.8rem;
  display: grid; place-items: center; font-weight: 700;
}

/* ---------- Full-bleed statement (parallax) ---------- */
.statement {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.statement::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, hsla(195,85%,12%,0.85) 25%, hsla(195,85%,12%,0.35) 70%, hsla(195,85%,12%,0.15));
}
.statement h2 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); max-width: 16ch; margin-bottom: 24px; text-wrap: balance; }
.statement p { font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 300; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 36px; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--grad-hero); color: #fff; border-radius: var(--radius);
  padding: clamp(44px, 6vw, 76px) clamp(26px, 5vw, 70px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: hsla(160,100%,30%,0.35); filter: blur(90px); top: -120px; right: -80px;
}
.stat { text-align: center; position: relative; z-index: 1; }
.stat strong { font-family: var(--font-kick); font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 700; display: block; line-height: 1.1; }
.stat strong .suffix { color: var(--gold); }
.stat span { color: rgba(255,255,255,0.7); font-family: var(--font-kick); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.step {
  background: var(--card); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.step::after {
  content: attr(data-num); position: absolute; right: 14px; top: -12px;
  font-family: var(--font-kick); font-weight: 700; font-size: 6.5rem; line-height: 1;
  color: var(--primary-soft); z-index: 0;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.step > * { position: relative; z-index: 1; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-weight: 300; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-kick); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: var(--grad-primary); margin-bottom: 22px; box-shadow: 0 10px 24px hsla(160,100%,26%,0.35);
}

/* ---------- Testimonials ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.quote-card {
  background: var(--card); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.quote-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.quote-mark { font-family: Georgia, serif; font-size: 3.4rem; line-height: 0.6; color: var(--gold); }
.quote-card p { color: var(--ink); font-size: 1.05rem; font-weight: 300; flex: 1; }
.quote-who { display: flex; align-items: center; gap: 14px; }
.quote-who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--gold); }
.quote-who strong { display: block; font-size: 0.98rem; }
.quote-who span { font-size: 0.84rem; color: var(--muted); }
.quote-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; }

/* ---------- White papers ---------- */
.papers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.paper-card {
  border-radius: var(--radius); overflow: hidden; background: var(--card);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.paper-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.paper-cover { position: relative; height: 200px; overflow: hidden; display: flex; align-items: flex-end; }
.paper-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.paper-card:hover .paper-cover img { transform: scale(1.08); }
.paper-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, hsla(200,50%,10%,0.8)); }
.paper-cover span {
  position: relative; z-index: 2; color: #fff; padding: 20px 24px;
  font-weight: 600; font-size: 1.15rem; line-height: 1.25;
}
.paper-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.paper-body p { color: var(--muted); font-size: 0.96rem; font-weight: 300; flex: 1; }
.paper-tag { font-family: var(--font-kick); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.paper-link {
  font-family: var(--font-kick); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease);
}
.paper-link:hover { gap: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--card); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 26px; font-weight: 600; text-align: left; font-size: 1.05rem; color: var(--ink);
}
.faq-q .chev { flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-soft); color: var(--primary); transition: transform 0.35s var(--ease), background 0.3s, color 0.3s; }
.faq-item.active .chev { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-weight: 300; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: var(--radius); overflow: hidden;
  color: #fff; text-align: center; padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background-size: cover; background-position: center;
  isolation: isolate;
}
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, hsla(160,100%,16%,0.92), hsla(195,85%,14%,0.9)); }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.8); font-weight: 300; max-width: 560px; margin: 0 auto 38px; font-size: 1.1rem; }
.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 13px 24px; font-weight: 600;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.store-badge:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.35); }
.store-badge .emoji { font-size: 1.5rem; }
.store-badge small { display: block; font-size: 0.68rem; font-weight: 500; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 70px); }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-tile {
  display: flex; gap: 16px; align-items: center;
  background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 20px 22px; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.contact-tile:hover { transform: translateX(6px); box-shadow: var(--shadow-lift); }
.contact-tile .emoji { font-size: 1.4rem; width: 50px; height: 50px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: none; }
.contact-tile strong { display: block; }
.contact-tile span { color: var(--muted); font-size: 0.9rem; }
.contact-form {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px); display: grid; gap: 18px; grid-template-columns: 1fr 1fr;
}
.contact-form .full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--font-kick); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 7px; color: var(--secondary); }
.field input, .field textarea {
  width: 100%; padding: 14px 17px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; background: var(--surface); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px hsla(160,100%,26%,0.12); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--hero-bg); color: rgba(255,255,255,0.72); margin-top: clamp(72px, 10vw, 130px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 60px); padding: clamp(52px, 7vw, 84px) 0 44px; }
.footer-grid h4 { color: #fff; font-family: var(--font-kick); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 20px; }
.footer-grid a { display: block; padding: 5px 0; font-size: 0.95rem; font-weight: 300; transition: color 0.25s, transform 0.25s; }
.footer-grid a:hover { color: var(--gold); transform: translateX(4px); }
.footer-brand img { height: 42px; width: auto; }
.footer-brand p { font-size: 0.95rem; font-weight: 300; margin: 18px 0 22px; max-width: 300px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); font-size: 1.1rem;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.socials a:hover { background: var(--primary); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.88rem; font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.72); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Families back home (pairs) ---------- */
.pairs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
/* Scrolling wall of pair stories */
.pairs-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.pairs-track { display: flex; gap: 24px; width: max-content; padding: 8px 0 14px; animation: review-scroll 120s linear infinite; }
.pairs-marquee:hover .pairs-track { animation-play-state: paused; }
.pairs-track .pair-card { width: 400px; flex: none; }
@media (max-width: 760px) { .pairs-track .pair-card { width: 320px; } }
.pair-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.pair-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.pair-imgs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.pair-imgs img { width: 100%; height: 190px; object-fit: cover; }
.pair-link-node {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.4rem; background: var(--grad-gold); color: var(--hero-bg);
  border: 4px solid var(--card); box-shadow: 0 8px 22px rgba(0,0,0,0.3); z-index: 2;
}
.pair-link-node::before, .pair-link-node::after {
  content: ''; position: absolute; top: 50%; height: 3px; width: 34px;
  background-image: linear-gradient(90deg, var(--gold) 55%, transparent 45%);
  background-size: 12px 3px; transform: translateY(-50%);
  animation: dash-flow 1.2s linear infinite;
}
.pair-link-node::before { right: 100%; margin-right: 4px; }
.pair-link-node::after { left: 100%; margin-left: 4px; }
@keyframes dash-flow { to { background-position: 12px 0; } }
.pair-cap { padding: 20px 22px 22px; }
.pair-cap strong { display: block; font-size: 1.05rem; font-weight: 600; }
.pair-cap span { font-size: 0.85rem; color: var(--muted); font-family: var(--font-kick); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Marketing corner ---------- */
.campaign-feature {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center; margin-bottom: clamp(40px, 5vw, 60px);
}
.campaign-video-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift); max-width: 400px; justify-self: center;
  border: 1px solid var(--line); background: var(--hero-bg);
}
.campaign-video { display: block; width: 100%; height: auto; }
.campaign-copy h2 { margin-bottom: 16px; }
.campaign-copy p { color: var(--muted); font-size: 1.08rem; font-weight: 300; margin-bottom: 28px; }
.campaign-stats { display: flex; gap: clamp(24px, 4vw, 48px); }
.campaign-stats strong { font-family: var(--font-kick); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--primary); display: block; line-height: 1.1; }
.campaign-stats span { font-size: 0.82rem; color: var(--muted); font-family: var(--font-kick); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 1020px) {
  .campaign-feature { grid-template-columns: 1fr; }
  .campaign-copy { text-align: center; }
  .campaign-copy .kicker { justify-content: center; }
  .campaign-stats { justify-content: center; }
}

.poster-strip {
  display: flex; gap: 22px; overflow-x: auto; padding: 10px 4vw 26px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--primary) transparent;
}
.poster-strip img {
  width: 250px; flex: none; border-radius: 16px; scroll-snap-align: start;
  box-shadow: var(--shadow); cursor: zoom-in;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.poster-strip img:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lift); }
.poster-strip::-webkit-scrollbar { height: 8px; }
.poster-strip::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }
.poster-strip::-webkit-scrollbar-track { background: var(--line); border-radius: 8px; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: hsla(200, 50%, 8%, 0.92); backdrop-filter: blur(8px); padding: 4vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px;
  border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; font-size: 1.2rem;
  transition: background 0.3s;
}
.lightbox-close:hover { background: var(--accent); }

@media (max-width: 760px) {
  .pair-imgs img { height: 150px; }
  .poster-strip img { width: 200px; }
}

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.stagger.visible > * { opacity: 1; transform: none; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 1.2rem;
  display: grid; place-items: center; box-shadow: 0 14px 30px hsla(160,100%,26%,0.4);
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s var(--ease), background 0.3s;
}
.to-top:hover { background: var(--primary-deep); }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Article (white papers) ---------- */
.article-hero {
  position: relative; color: #fff; padding: 170px 0 90px; overflow: hidden; isolation: isolate;
  background-size: cover; background-position: center;
}
.article-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, hsla(200,50%,12%,0.88), hsla(195,85%,16%,0.82)); }
.article-hero .eyebrow, .article-hero .kicker { color: var(--gold); }
.article-hero h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; color: rgba(255,255,255,0.7); font-family: var(--font-kick); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; }
.article-body { max-width: 800px; margin: 0 auto; padding: clamp(52px, 7vw, 88px) 0; }
.article-body h2 { margin: 48px 0 18px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.article-body h3 { margin: 32px 0 12px; }
.article-body p { color: hsl(210, 15%, 30%); margin-bottom: 18px; font-size: 1.06rem; font-weight: 300; }
.article-body .lede { font-size: 1.28rem; color: var(--ink); font-weight: 400; }
.pull-stat { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin: 36px 0; }
.pull-stat div { background: var(--primary-soft); border-radius: var(--radius-sm); padding: 24px 18px; text-align: center; }
.pull-stat strong { font-family: var(--font-kick); font-size: 1.9rem; font-weight: 700; color: var(--primary); display: block; }
.pull-stat span { font-size: 0.82rem; color: var(--muted); }
.callout {
  border-left: 4px solid var(--gold);
  background: var(--gold-soft); padding: 24px 28px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0; font-weight: 400; color: hsl(38, 50%, 22%); font-size: 1.05rem;
}
.article-body .sources { font-size: 0.88rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 26px; margin-top: 52px; font-weight: 300; }
.article-body .sources a { color: var(--primary); word-break: break-all; }
.article-nav { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; }

/* ============================================================
   GLASS SYSTEM — frosted elegance over ambient colour
   ============================================================ */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(640px circle at 10% 18%, hsla(160, 85%, 38%, 0.10), transparent 62%),
    radial-gradient(720px circle at 90% 28%, hsla(38, 92%, 55%, 0.12), transparent 62%),
    radial-gradient(600px circle at 30% 75%, hsla(195, 70%, 42%, 0.09), transparent 62%),
    radial-gradient(540px circle at 78% 88%, hsla(350, 70%, 55%, 0.06), transparent 62%);
}

.pcard, .mini-service, .step, .quote-card, .faq-item,
.contact-tile, .contact-form, .paper-card, .pair-card {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.mini-service, .faq-item, .contact-tile { border: 1px solid rgba(255, 255, 255, 0.75); }
.pcard-body, .paper-body { background: transparent; }
.field input, .field textarea {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-color: rgba(20, 40, 50, 0.12);
}
.step::after { color: hsla(160, 60%, 40%, 0.14); }
.faq-q .chev { background: hsla(160, 70%, 45%, 0.14); }
.mini-service .ico, .contact-tile .emoji { background: hsla(160, 70%, 45%, 0.14); }
.check-list .tick { background: hsla(160, 70%, 45%, 0.16); }
.pull-stat div { background: rgba(255, 255, 255, 0.6); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.8); }
.poster-strip img { border: 1px solid rgba(255,255,255,0.8); }

/* glass on dark bands */
.face-card, .app-card {
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
}
.stats-band .stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 20px 12px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .pcard, .mini-service, .step, .quote-card, .faq-item,
  .contact-tile, .contact-form, .paper-card, .pair-card { background: rgba(255,255,255,0.92); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .split { grid-template-columns: 1fr; }
  .split-img img { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .statement { background-attachment: scroll; }
  .hero-stats { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 0; background: hsla(200, 50%, 10%, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column; justify-content: center; gap: 32px;
    transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .contact-form { grid-template-columns: 1fr; }
  .hero { align-items: flex-end; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .footer-bottom { justify-content: center; text-align: center; }
  .statement { min-height: 64vh; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; flex: 1; min-width: 150px; }
  .store-badge { width: 100%; justify-content: center; }
  .hero-stats { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .stagger > * { opacity: 1; transform: none; }
  .hero-bg { animation: none; transform: none; }
}

/* ---------- Rotating split panel ---------- */
.img-rotator { aspect-ratio: 4 / 4.6; }
.img-rotator img {
  position: absolute; inset: 0; width: 100%; height: 100% !important;
  object-fit: cover; aspect-ratio: auto !important;
  opacity: 0; transition: opacity 0.9s ease;
}
.img-rotator img.active { opacity: 1; }
@media (max-width: 1020px) { .img-rotator { aspect-ratio: 16 / 10; } }

/* ---------- Two homes: you (UAE) over them (back home) ---------- */
.twohomes {
  position: relative; display: grid; grid-template-rows: 1fr 1fr;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 4.9;
}
.twohomes .th-half { position: relative; aspect-ratio: auto; min-height: 0; }
.twohomes .th-half img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
.twohomes .th-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 3;
  font-family: var(--font-kick); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  background: hsla(200,50%,10%,0.6); padding: 7px 14px; border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.twohomes .th-label-home { left: auto; right: 16px; bottom: 16px; }
.twohomes .th-half:first-child .th-label { bottom: auto; top: 14px; }
.th-seam {
  position: absolute; left: 0; right: 0; top: 50%; height: 0; z-index: 4;
  display: grid; place-items: center;
}
.th-line {
  position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  opacity: 0.85;
}
.th-node {
  position: relative; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold); color: var(--hero-bg);
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
  animation: pulse 2.2s ease-in-out infinite;
}
.th-toast {
  position: absolute; right: 14px; top: -48px;
  font-family: var(--font-kick); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: hsla(160, 100%, 22%, 0.88);
  padding: 8px 14px; border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  animation: th-toast-pop 3.2s ease-in-out infinite;
}
.th-toast b { color: var(--gold); margin-right: 2px; }
@keyframes th-toast-pop {
  0%, 12% { opacity: 0; transform: translateY(6px); }
  22%, 88% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(-4px); }
}
@media (max-width: 1020px) { .twohomes { aspect-ratio: 4 / 4.4; } }

/* ---------- Scrolling review marquee ---------- */
.review-marquee {
  margin-top: 46px; overflow: hidden; display: grid; gap: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.review-track {
  display: flex; gap: 18px; width: max-content; padding: 4px 0;
  animation: review-scroll 90s linear infinite;
}
.review-track.rev { animation-direction: reverse; animation-duration: 104s; }
.review-marquee:hover .review-track { animation-play-state: paused; }
@keyframes review-scroll { to { transform: translateX(-50%); } }
.review-pill {
  flex: none; width: 350px; display: grid; gap: 8px; align-content: start;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: 18px;
  padding: 18px 20px; box-shadow: 0 6px 22px rgba(10,46,34,0.07);
}
.review-pill .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.review-pill p { font-size: 0.92rem; font-weight: 300; line-height: 1.5; color: var(--ink); }
.review-pill .who { font-size: 0.78rem; color: var(--muted); }
.review-pill .who strong { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) { .review-pill { width: 290px; } }

/* ---------- Split-screen statement: you | them ---------- */
.statement-split { background: var(--hero-bg); }
.statement-halves { position: absolute; inset: 0; z-index: -1; display: grid; grid-template-columns: 1fr 1fr; }
.statement-halves > div { background-size: cover; background-position: center 30%; }
.statement-halves .st-rot { position: relative; overflow: hidden; aspect-ratio: auto; height: 100%; }
.statement-halves .st-rot img { object-position: center 30%; }
.statement-split::before {
  background:
    linear-gradient(90deg, hsla(195,85%,12%,0.5), hsla(195,85%,12%,0.8) 50%, hsla(195,85%,12%,0.5)),
    linear-gradient(180deg, hsla(195,85%,12%,0.3), hsla(195,85%,12%,0.55));
}
.statement-content {
  position: relative; text-align: center;
  width: min(780px, 90%); padding: clamp(40px, 5vw, 60px) clamp(26px, 4vw, 56px) clamp(36px, 4vw, 50px);
  background: hsla(200, 50%, 10%, 0.55);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 26px;
}
.statement-content h2, .statement-content p { margin-inline: auto; }
.statement-content .kicker { justify-content: center; }
.statement-node {
  position: absolute; left: 50%; top: -31px; transform: translateX(-50%); z-index: 2;
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-gold); color: var(--hero-bg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: pulse 2.2s ease-in-out infinite;
}
.half-label {
  position: absolute; bottom: 26px; z-index: 2;
  font-family: var(--font-kick); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  background: hsla(200,50%,10%,0.55); padding: 8px 16px; border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.half-label.left { left: 5%; }
.half-label.right { right: 5%; }

/* ---------- Brand logo rows in service cards ---------- */
.logo-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 4px 0 12px; }
.logo-row img {
  height: 18px; width: auto; max-width: 74px; object-fit: contain;
  filter: grayscale(1); opacity: 0.7; transition: filter 0.3s, opacity 0.3s;
}
.pcard:hover .logo-row img { filter: none; opacity: 1; }
.logo-chip {
  font-family: var(--font-kick); font-weight: 700; font-size: 0.64rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 6px;
  background: hsla(200, 40%, 20%, 0.07); color: var(--muted);
}

/* ============ LEGAL DISCLAIMER MODAL ============ */
.legal-modal { position: fixed; inset: 0; z-index: 9999; display: flex; padding: 24px; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.legal-modal[hidden] { display: none; }
.legal-modal__backdrop { position: fixed; inset: 0; background: hsla(200, 50%, 14%, 0.6); backdrop-filter: blur(4px); animation: legalFade 0.3s var(--ease); }
.legal-modal__panel {
  position: relative; z-index: 1; width: min(560px, 100%); margin: auto;
  background: var(--card); border-radius: var(--radius); padding: 40px clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow-lift); animation: legalPop 0.35s var(--ease);
}
.legal-modal__panel .kicker { color: var(--gold); }
.legal-modal__panel h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 10px 0 18px; color: var(--ink); }
.legal-modal__panel p { color: var(--muted); font-size: 0.98rem; line-height: 1.7; margin-bottom: 16px; }
.legal-modal__ack { margin-top: 8px; }
@keyframes legalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes legalPop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
