/* ==========================================================================
   IDRIS.DUBAI v2 — Obsidian Luxury Design System
   Structure: 1.Tokens 2.Base 3.Nav 4.Buttons 5.Hero 6.Tickers 7.Sections
              8.Reels 9.Logos 10.DOD 11.Bento 12.Gallery 13.Services
              14.About 15.Testimonials 16.FAQ 17.Form 18.CTA 19.Footer
              20.Inner pages 21.Responsive
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */
:root {
  --black: #000000;
  --obsidian: #09090b;
  --obsidian-2: #101012;
  --white: #ffffff;
  --silver: #a1a1aa;
  --silver-dim: #6f6f76;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --bronze: #cd7f32;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --glass-bg: linear-gradient(to bottom right, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  --glass-border: linear-gradient(to bottom right, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  --card-blur: blur(16px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-body: 'Outfit', sans-serif;
  --container: 1280px;
  --radius: 22px;
}

/* 2. Base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
::selection { background: var(--gold); color: var(--black); }

/* Serif-italic accent used inside display headlines (Arshman-style) */
em, .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button { cursor: none; }
.cursor {
  position: fixed; top: 0; left: 0; width: 24px; height: 24px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
  mix-blend-mode: difference; will-change: transform;
}
.cursor.is-hover { width: 56px; height: 56px; background: rgba(212,175,55,0.12); }
.cursor.is-down { width: 18px; height: 18px; }
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); will-change: transform;
}

/* 3. Nav
   ========================================================================== */
.nav-wrap {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: center; padding: 0 20px;
}
.nav-pill {
  display: flex; align-items: center; gap: 8px;
  width: 100%; max-width: 1120px;
  padding: 10px 12px 10px 22px;
  border-radius: 100px;
  background: rgba(9, 9, 11, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0.02em; white-space: nowrap; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-links > li { position: relative; }
.nav-links a.nav-link, .nav-links > li > button.nav-link {
  display: block; padding: 10px 16px; font-size: 14px; color: var(--silver);
  border-radius: 100px; transition: color .2s, background .2s;
}
.nav-links a.nav-link:hover, .nav-links > li > button.nav-link:hover,
.nav-links a.nav-link.active, .nav-links > li > button.nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px; padding: 10px; border-radius: 18px;
  background: rgba(9, 9, 11, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: var(--card-blur);
  opacity: 0; visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav-links > li:hover .nav-dropdown, .nav-links > li:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a { display: block; padding: 10px 14px; font-size: 13.5px; border-radius: 10px; color: var(--silver); }
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile hamburger + overlay */
.nav-burger {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; flex-shrink: 0;
}
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--white); transition: transform .3s var(--ease), opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 480;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 36px 48px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-size: clamp(1.7rem, 7vw, 2.4rem);
  font-weight: 700; padding: 10px 0; display: block;
  transform: translateY(16px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.mobile-menu.open a.mm-link { transform: translateY(0); opacity: 1; }
.mobile-menu a.mm-sub { font-size: 15px; color: var(--silver); padding: 7px 0; display: block; }
.mobile-menu .mm-group { margin: 6px 0; border-bottom: 1px solid var(--line-soft); padding-bottom: 10px; }
.mobile-menu .mm-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 18px 0 4px; }
.mobile-menu .mm-cta { margin-top: 28px; }

/* 4. Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #0a0a0a; }
.btn-gold:hover { box-shadow: 0 8px 30px rgba(212,175,55,0.35); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line); color: var(--white); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 470;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c4a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; color: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* 5. Hero — scroll-scrubbed cinematic video
   ========================================================================== */
.region-hero { position: relative; height: 230vh; }
.bg-video, .bg-video-fallback {
  position: sticky; top: 0; left: 0; width: 100%; height: 100vh;
  object-fit: cover; z-index: 0;
}
.bg-video-fallback { background: radial-gradient(circle at 50% 30%, #1a1a1d 0%, #000 70%); }
.hero-vignette {
  position: sticky; top: 0; width: 100%; height: 100vh; margin-top: -100vh; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.68) 75%, rgba(0,0,0,0.94) 100%),
    linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.12) 30%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0.72) 100%);
}
.hero {
  position: sticky; top: 0; height: 100vh; margin-top: -100vh; z-index: 2;
  display: flex; align-items: center;
}
.hero-pin {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center;
}
.hero-states-wrap { position: relative; min-height: 280px; }
.hero-state {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.hero-state[data-active="true"] { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.015em;
}
.hero-headline em { font-size: 1.04em; }
.hero-sub { margin-top: 22px; font-size: 18px; color: var(--silver); max-width: 480px; line-height: 1.6; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { position: relative; min-height: 280px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.glass-card {
  background: var(--glass-bg);
  border: 1px solid transparent; border-radius: 20px;
  backdrop-filter: var(--card-blur); -webkit-backdrop-filter: var(--card-blur);
  position: relative; padding: 22px;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--glass-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.stat-card .stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold); }
.stat-card .stat-label { margin-top: 6px; font-size: 13px; color: var(--silver); }
.cta-card { padding: 32px; }
.cta-card h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.cta-card p { color: var(--silver); font-size: 14.5px; margin-bottom: 20px; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-dim);
}
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 6. Ticker banners (marquee)
   ========================================================================== */
.ticker {
  position: relative; z-index: 2; background: var(--black);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 22px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; align-items: center; gap: 0; animation: marquee 38s linear infinite; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 14px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver);
}
.ticker-item em { font-size: 17px; letter-spacing: 0.06em; text-transform: none; }
.ticker-item::after { content: '◆'; color: var(--gold); font-size: 9px; margin-left: 28px; }
.ticker.gold { background: linear-gradient(135deg, var(--gold), var(--bronze)); border: none; }
.ticker.gold .ticker-item { color: #0a0a0a; }
.ticker.gold .ticker-item em { color: #0a0a0a; }
.ticker.gold .ticker-item::after { color: rgba(0,0,0,0.55); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 7. Sections
   ========================================================================== */
section { position: relative; z-index: 2; background: var(--black); }
.section { padding: 120px 0; }
.section-tight { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.01em;
}
.section-sub { margin-top: 16px; color: var(--silver); font-size: 16px; line-height: 1.7; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Stats strip */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
}
.stats-strip .stat { background: var(--obsidian); padding: 42px 28px; text-align: center; }
.stats-strip .stat .num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); }
.stats-strip .stat .label { margin-top: 8px; font-size: 13.5px; color: var(--silver); }

/* 8. Reels grid
   ========================================================================== */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reel-card {
  position: relative; aspect-ratio: 9/14; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #17171a, #050505);
  transition: transform .5s var(--ease), border-color .3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.reel-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.reel-card .reel-bg {
  position: absolute; inset: 0; opacity: 0.9;
  background:
    radial-gradient(circle at var(--gx, 30%) var(--gy, 20%), rgba(212,175,55,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #1c1c20 0%, #060607 80%);
  transition: opacity .4s;
}
.reel-card:hover .reel-bg { opacity: 1; }
.reel-card .reel-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform .8s var(--ease);
}
.reel-card:hover .reel-thumb { transform: scale(1.05); }
.reel-card .reel-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.35) 100%);
}
.reel-card .reel-platform {
  position: absolute; top: 22px; left: 24px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.reel-card .reel-views {
  position: absolute; top: 18px; right: 18px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; color: var(--white);
}
.reel-card .reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.45);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease), background .3s;
}
.reel-card .reel-play svg { width: 20px; height: 20px; color: var(--gold); margin-left: 3px; }
.reel-card:hover .reel-play { transform: translate(-50%, -50%) scale(1.12); background: rgba(212,175,55,0.28); }
.reel-card h3 { position: relative; font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.25; }
.reel-card .reel-handle { position: relative; margin-top: 10px; font-size: 12.5px; color: var(--silver); letter-spacing: 0.06em; }
.reels-footnote { margin-top: 40px; text-align: center; color: var(--silver); font-size: 14.5px; }
.reels-footnote strong { color: var(--gold); font-weight: 700; }
.reels-actions { margin-top: 26px; display: flex; justify-content: center; }

/* 8a. Top banner (above hero)
   ========================================================================== */
.top-banner { padding: 118px 0 0; background: var(--black); position: relative; z-index: 2; }
.top-banner-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; }
.tb-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); min-height: 240px;
}
.tb-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .8s var(--ease); }
.tb-item:hover img { transform: scale(1.03); }
.tb-item .cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
}
.tb-wide { aspect-ratio: 16/8.2; }

/* 8b. Featured video
   ========================================================================== */
.video-feature {
  position: relative;
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  background: var(--obsidian);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
}
.video-feature iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-feature-meta { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.video-feature-meta .t { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.video-feature-meta .s { margin-top: 4px; font-size: 13.5px; color: var(--silver); }

/* 8c. E-book cards
   ========================================================================== */
.ebook-card {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; align-items: center;
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  background: linear-gradient(140deg, rgba(212,175,55,0.08), rgba(0,0,0,0) 60%), var(--obsidian);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.ebook-media { position: relative; min-height: 320px; height: 100%; }
.ebook-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ebook-body { padding: 48px; }
.ebook-points { margin-top: 20px; }
.ebook-points li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: 15px; color: var(--silver); line-height: 1.6;
}
.ebook-points li::before { content: '◆'; position: absolute; left: 0; top: 11px; font-size: 9px; color: var(--gold); }

/* 9. Developer logo ticker
   ========================================================================== */
.logo-ticker-wrap { position: relative; z-index: 2; background: var(--black); padding: 20px 0 8px; overflow: hidden; }
.logo-ticker { overflow: hidden; white-space: nowrap; position: relative; padding: 26px 0; }
.logo-ticker::before, .logo-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 3; pointer-events: none;
}
.logo-ticker::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.logo-ticker::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.logo-track { display: inline-flex; align-items: center; animation: marquee 44s linear infinite; will-change: transform; }
.logo-ticker:hover .logo-track { animation-play-state: paused; }
.dev-logo {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 0 44px; opacity: 0.55; transition: opacity .3s;
  min-height: 64px;
}
.dev-logo:hover { opacity: 1; }
/* Official PNG logo (shown when the file exists in assets/img/developers/).
   Rendered white via filter so any logo colour sits on the dark theme. */
.dev-logo img.logo-img {
  height: 44px; width: auto; max-width: 170px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.dev-logo.has-img .mark, .dev-logo.has-img .sub { display: none; }
.dev-logo .mark { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); white-space: nowrap; }
.dev-logo .sub { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver-dim); }

/* 10. Deal of the Day
   ========================================================================== */
.dod-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  background: linear-gradient(140deg, rgba(212,175,55,0.08), rgba(0,0,0,0) 60%), var(--obsidian);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.dod-media { position: relative; min-height: 340px; background: radial-gradient(circle at 30% 20%, #2a2a1e 0%, #0a0a0a 70%); }
.dod-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.dod-badge {
  position: absolute; top: 20px; left: 20px; padding: 8px 16px; border-radius: 100px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.4);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
.dod-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.dod-body .proj { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.dod-body .loc { color: var(--silver); font-size: 14px; margin-top: 4px; }
.dod-price { margin-top: 18px; font-family: var(--font-display); font-size: 30px; color: var(--gold); font-weight: 700; }
.dod-meta { margin-top: 4px; color: var(--silver); font-size: 13.5px; }
.dod-math { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.dod-math-item { display: flex; gap: 12px; align-items: flex-start; }
.dod-math-item .n {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 2px;
}
.dod-math-item p { font-size: 14.5px; color: var(--silver); line-height: 1.6; }
.dod-math-item p strong { color: var(--white); }
.dod-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
table.compare thead th {
  background: rgba(255,255,255,0.03);
  font-family: var(--font-display); font-weight: 600; color: var(--white);
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
table.compare td { color: var(--silver); }
table.compare td.hl, table.compare th.hl { color: var(--gold); font-weight: 600; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:hover td { background: rgba(255,255,255,0.02); color: var(--white); }

/* 11. Bento grid
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 20px; }
.bento-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: 28px; padding-top: 62px; border: 1px solid var(--line);
  background: linear-gradient(160deg, #17171a, #050505);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .5s var(--ease), border-color .3s;
}
.bento-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.35); }
.bento-card.span-2c { grid-column: span 2; }
.bento-card.span-2r { grid-row: span 2; }
.bento-card .tile-tag { position: absolute; top: 22px; left: 28px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.bento-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; line-height: 1.2; }
.bento-card p { font-size: 13.5px; color: var(--silver); line-height: 1.55; }
.bento-card .tile-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s, color .3s;
  font-size: 15px;
}
.bento-card:hover .tile-arrow { background: var(--gold); transform: rotate(45deg); color: #000; }
.bento-card.feature {
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #1a1a14, #050505);
}
/* Bento imagery: optional photo (assets/img/districts/) over gold line-art */
.bento-card .bento-art {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 14px; opacity: 0.5; transition: opacity .4s;
}
.bento-card:hover .bento-art { opacity: 0.85; }
.bento-card .bento-art svg { width: 42%; max-width: 220px; height: auto; }
.bento-card.span-2r .bento-art svg { width: 62%; max-width: 300px; }
.bento-card .bento-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55; filter: saturate(0.9);
  transition: opacity .4s, transform .8s var(--ease);
  pointer-events: none;
}
.bento-card:hover .bento-photo { opacity: 0.7; transform: scale(1.04); }
.bento-card .bento-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 8%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.25) 100%);
}
.bento-card h3, .bento-card p { position: relative; z-index: 2; }
.bento-card .tile-tag, .bento-card .tile-arrow { z-index: 2; }
.bento-card .big-num { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 10px; }

/* 12. Gallery marquee (in the room)
   ========================================================================== */
.gallery-marquee { overflow: hidden; white-space: nowrap; position: relative; }
.gallery-marquee::before, .gallery-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 3; pointer-events: none;
}
.gallery-marquee::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.gallery-marquee::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.gallery-track { display: inline-flex; gap: 20px; animation: marquee 60s linear infinite; will-change: transform; padding: 10px 0; }
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
.gallery-item {
  width: 340px; height: 250px; flex-shrink: 0;
  border-radius: 18px; overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) contrast(1.02);
  transition: filter .5s, transform .8s var(--ease);
}
.gallery-item:hover img { filter: grayscale(0%); transform: scale(1.05); }
.gallery-item .cap {
  position: absolute; left: 14px; bottom: 12px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  border: 1px solid var(--line);
}

/* 13. Services / booking tiers
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 28px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #131316, #060607);
  transition: transform .5s var(--ease), border-color .3s, background .3s;
  min-height: 340px;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.service-card .dur {
  align-self: flex-start; padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(212,175,55,0.35); color: var(--gold);
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 22px;
}
.service-card h3 { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1.1; }
.service-card .aud { margin-top: 4px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-dim); }
.service-card p { margin-top: 14px; font-size: 14px; color: var(--silver); line-height: 1.65; flex-grow: 1; }
.service-card .service-cta {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--gold);
}
.service-card .service-cta::after { content: '→'; transition: transform .3s var(--ease); }
.service-card:hover .service-cta::after { transform: translateX(5px); }
.service-card.featured {
  border-color: rgba(212,175,55,0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,0.14) 0%, transparent 60%),
    linear-gradient(170deg, #16150f, #060607);
}
.service-card.featured::after {
  content: 'Most Booked'; position: absolute; top: -11px; right: 20px;
  padding: 4px 12px; border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: #0a0a0a; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* 14. About / authority
   ========================================================================== */
.authority { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.authority-photo {
  aspect-ratio: 4/5; border-radius: 24px;
  background: linear-gradient(160deg, #1c1c1f, #050505);
  border: 1px solid var(--line); overflow: hidden; position: relative;
}
.authority-photo img { width: 100%; height: 100%; object-fit: cover; }
.authority-photo .cap {
  position: absolute; left: 16px; bottom: 14px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
}
.authority blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.28; font-weight: 600; }
.authority .role { margin-top: 20px; color: var(--silver); font-size: 14.5px; }
.authority .desc { margin-top: 22px; color: var(--silver); font-size: 15px; line-height: 1.8; }
.about-facts { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; }
.about-facts .f .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-dim); }
.about-facts .f .v { margin-top: 4px; font-size: 14.5px; color: var(--white); font-weight: 500; }

/* 15. Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #121215, #060607);
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .5s var(--ease);
}
.testi-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.testi-card .q-mark { font-family: var(--font-serif); font-size: 54px; line-height: 0.6; color: var(--gold); margin-bottom: 20px; }
.testi-card p { font-size: 14.5px; color: var(--silver); line-height: 1.75; flex-grow: 1; }
.testi-card .who { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.testi-card .who .name { font-weight: 600; font-size: 14.5px; color: var(--white); }
.testi-card .who .meta { margin-top: 2px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dim); }

/* 15b. LinkedIn band
   ========================================================================== */
.li-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 34px 40px; border-radius: 28px;
  border: 1px solid var(--line);
  background: radial-gradient(ellipse at 0% 0%, rgba(10,102,194,0.14), transparent 55%), var(--obsidian);
  transition: border-color .3s, transform .5s var(--ease);
}
.li-band:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-3px); }
.li-left { display: flex; align-items: center; gap: 18px; }
.li-avatar {
  width: 104px; height: 104px; border-radius: 18px; object-fit: cover; object-position: center;
  border: 2px solid rgba(212,175,55,0.5);
}
.li-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.li-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 5px;
  background: #0a66c2; color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
}
.li-headline { margin-top: 3px; font-size: 13.5px; color: var(--silver); }
.li-stats { display: flex; gap: 40px; }
.li-stat .v { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold); }
.li-stat .k { margin-top: 2px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-dim); }

/* 16. FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; text-align: left;
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .ico { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 400; transition: transform .35s var(--ease), background .3s, color .3s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--gold); color: #000; border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--silver); font-size: 15px; line-height: 1.75; max-width: 720px; }

/* 17. Forms
   ========================================================================== */
.form-shell {
  max-width: 860px; margin: 0 auto; padding: 48px;
  border-radius: 28px; border: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08), transparent 60%), var(--obsidian);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--silver); }
.field select, .field input, .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 14.5px; outline: none;
  transition: border-color .2s;
}
.field select:focus, .field input:focus, .field textarea:focus { border-color: rgba(212,175,55,0.5); }
.field select option { background: var(--obsidian); }
.field textarea { resize: vertical; min-height: 100px; }
.form-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.form-note { margin-top: 16px; font-size: 12.5px; color: var(--silver-dim); }

/* 18. CTA band
   ========================================================================== */
.cta-band {
  border-radius: 32px; padding: 90px 60px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.16), transparent 60%), var(--obsidian);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 700; line-height: 1.08; }
.cta-band p { margin-top: 18px; color: var(--silver); font-size: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .eyebrow { justify-content: center; }

/* 19. Footer
   ========================================================================== */
footer { padding: 80px 0 40px; border-top: 1px solid var(--line); background: var(--black); position: relative; z-index: 2; overflow: hidden; }
.footer-word {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 11vw, 9rem); line-height: 0.95; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.06);
  user-select: none; white-space: nowrap; margin-bottom: 60px;
}
.footer-word span { color: rgba(212,175,55,0.25); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; margin-bottom: 60px; }
.footer-brand .nav-logo { font-size: 20px; }
.footer-brand p { margin-top: 16px; color: var(--silver); font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 14px; color: var(--silver); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer { max-width: 900px; margin-bottom: 24px; font-size: 12px; color: var(--silver-dim); line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 30px; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--silver-dim);
}
.back-top { display: inline-flex; align-items: center; gap: 8px; color: var(--silver); transition: color .2s; }
.back-top:hover { color: var(--gold); }

/* 20. Inner pages
   ========================================================================== */
.page-hero {
  padding: 210px 0 90px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% -10%, rgba(212,175,55,0.1), transparent 60%);
}
.page-hero.center { text-align: center; }
.page-hero.center .eyebrow { justify-content: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.01em; }
.page-hero p.lead { margin-top: 20px; color: var(--silver); font-size: 17px; max-width: 640px; line-height: 1.7; }
.page-hero.center p.lead { margin-left: auto; margin-right: auto; }

/* Generic content cards for inner pages */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card {
  padding: 30px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(170deg, #121215, #060607);
  transition: border-color .3s, transform .5s var(--ease);
}
.info-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.info-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.info-card h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.info-card p, .info-card li { font-size: 14px; color: var(--silver); line-height: 1.7; }
.info-card ul { margin-top: 10px; }
.info-card li { padding: 5px 0 5px 20px; position: relative; }
.info-card li::before { content: '◆'; position: absolute; left: 0; top: 8px; font-size: 8px; color: var(--gold); }
.info-card .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }

/* Developer rating card */
.dev-card {
  padding: 34px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(170deg, #121215, #060607);
  transition: border-color .3s, transform .5s var(--ease);
}
.dev-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-4px); }
.dev-card .dev-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.dev-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: 0.03em; }
.dev-card .tier {
  flex-shrink: 0; padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.dev-card .dev-tag { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dim); }
.dev-card p { margin-top: 16px; font-size: 14.5px; color: var(--silver); line-height: 1.7; }
.dev-scores { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dev-scores .s .v { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.dev-scores .s .k { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dim); margin-top: 2px; }

/* Steps */
.step-card {
  display: block; padding: 28px; border-radius: 20px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: border-color .3s, background .3s;
}
.step-card:hover { border-color: rgba(212,175,55,0.3); background: rgba(255,255,255,0.04); }
.step-card .step-n { font-family: var(--font-display); font-size: 34px; color: var(--gold); font-weight: 700; }
.step-card h4 { margin-top: 14px; font-size: 17px; font-family: var(--font-display); }
.step-card p { margin-top: 8px; font-size: 13.5px; color: var(--silver); line-height: 1.6; }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-size: 26px; margin: 44px 0 16px; }
.prose h3 { font-family: var(--font-display); font-size: 20px; margin: 32px 0 12px; }
.prose p { color: var(--silver); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.prose strong { color: var(--white); }

/* 21. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .hero-pin { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { display: none; }
  .region-hero { height: 175vh; }
  .authority { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .dod-card { grid-template-columns: 1fr; }
  .dod-media { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-pill { justify-content: space-between; }
}
@media (max-width: 980px) and (min-width: 641px) {
  .top-banner-grid { grid-template-columns: 1fr 1fr; }
  .ebook-card { grid-template-columns: 1fr; }
  .ebook-media { min-height: 380px; }
}
@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .top-banner { padding-top: 96px; }
  .top-banner-grid { grid-template-columns: 1fr; }
  .tb-item { min-height: 200px; }
  .tb-wide { aspect-ratio: 16/9; }
  .ebook-card { grid-template-columns: 1fr; }
  .ebook-media { min-height: 320px; }
  .ebook-body { padding: 30px 24px; }
  .li-band { padding: 26px 22px; }
  .li-stats { gap: 24px; }
  .service-card h3 { font-size: 28px; }
  .section { padding: 84px 0; }
  .section-tight { padding: 60px 0; }
  .reels-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cursor, .cursor-dot { display: none; }
  .cta-band { padding: 56px 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 180px; }
  .bento-card.span-2c { grid-column: span 1; }
  .bento-card.span-2r { grid-row: span 1; }
  .gallery-item { width: 260px; height: 195px; }
  .dod-body { padding: 30px 24px; }
  .form-shell { padding: 30px 22px; }
  .wa-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .logo-track, .gallery-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   v3 — Production overhaul additions
   ========================================================================== */

/* Elegant (lighter) service headings */
.service-card h3 { font-weight: 500; letter-spacing: 0.01em; }

/* Reel video cards: autoplaying video + caption-protecting gradient */
.reel-card video.reel-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel-card .reel-shade {
  background: linear-gradient(to top,
    rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.88) 22%, rgba(0,0,0,0.15) 48%, rgba(0,0,0,0.28) 100%);
}

/* Gallery marquee crop fixes: keep faces in frame */
.gallery-item img.gi-low { object-position: 50% 12%; }
.gallery-item img.gi-top { object-position: top; }

/* LinkedIn avatar: rounded square */


/* Download / ebook CTA chip for page heroes */
.hero-download {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; padding: 13px 26px; border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #0a0a0a;
  font-size: 14px; font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-download:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(212,175,55,0.4); }

/* Community/district photo cards */
.dist-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 300px; border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  transition: transform .5s var(--ease), border-color .3s;
}
.dist-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.dist-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dist-card:hover img.bg { transform: scale(1.05); }
.dist-card .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.25) 100%); }
.dist-card > * { position: relative; z-index: 2; }
.dist-card .shade, .dist-card img.bg { z-index: 0; }
.dist-card .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.dist-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.dist-card p { font-size: 13.5px; color: var(--silver); line-height: 1.55; }

/* Vector stencil icon language */
.stencil { display: block; width: 34px; height: 34px; margin-bottom: 12px; color: var(--gold); opacity: 0.85; flex: none; }
.stencil svg * { stroke-width: 1.1; }
.step-card .stencil, .info-card .stencil { width: 28px; height: 28px; margin-bottom: 10px; }
.tool-card .stencil { width: 46px; height: 46px; }
.stencil svg { width: 100%; height: 100%; display: block; }

/* Tool cards (Calculator / Insights / Dictionary) */
.tool-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 40px 32px; border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #131316, #060607);
  transition: transform .5s var(--ease), border-color .3s;
  aspect-ratio: 1.35;
  justify-content: space-between;
}
.tool-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.45); }
.tool-card .stencil { margin-bottom: 0; }
.tool-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.tool-card p { font-size: 14px; color: var(--silver); line-height: 1.6; }
.tool-card .go { color: var(--gold); font-size: 13.5px; font-weight: 600; }
.tool-card .go::after { content: ' →'; }

/* Interactive tab matrix */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.tab-btn {
  padding: 11px 22px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--silver);
  font-size: 13.5px; font-weight: 600;
  transition: all .25s var(--ease);
}
.tab-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.tab-btn.active { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #0a0a0a; border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabIn .45s var(--ease); }
@keyframes tabIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Comparison bars */
.cmp-row { margin-bottom: 22px; }
.cmp-row .lbl { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 8px; }
.cmp-row .lbl .a { color: var(--white); font-weight: 600; }
.cmp-row .lbl .b { color: var(--silver-dim); }
.cmp-bar { height: 10px; border-radius: 100px; background: rgba(255,255,255,0.06); overflow: hidden; }
.cmp-bar .fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold), var(--bronze)); width: 0; transition: width 1.2s var(--ease); }
.cmp-bar .fill.alt { background: linear-gradient(90deg, #6f8bb5, #3d5a8a); }

/* Calculators */
.calc-shell {
  border-radius: 28px; border: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.07), transparent 60%), var(--obsidian);
  padding: 42px;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.calc-result {
  margin-top: 30px; padding: 26px; border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.calc-result .r .v { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold); }
.calc-result .r .k { margin-top: 4px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); }
.currency-toggle { display: inline-flex; gap: 6px; padding: 6px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.currency-toggle button { padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 700; color: var(--silver); transition: all .2s; }
.currency-toggle button.active { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #0a0a0a; }

/* Insights */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(170deg, #121215, #060607);
  transition: transform .5s var(--ease), border-color .3s;
}
.insight-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.insight-card .ic-media { position: relative; aspect-ratio: 16/9.5; overflow: hidden; background: #101013; }
.insight-card .ic-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insight-card:hover .ic-media img { transform: scale(1.05); }
.insight-card .ic-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.insight-card .ic-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.insight-card .ic-tag { padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(212,175,55,0.3); color: var(--gold); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.insight-card h3 { font-family: var(--font-display); font-size: 19px; line-height: 1.3; }
.insight-card p { font-size: 13.5px; color: var(--silver); line-height: 1.6; flex: 1; }
.insight-card .ic-meta { font-size: 12px; color: var(--silver-dim); }

/* Dictionary */
.dict-search {
  width: 100%; max-width: 520px; margin: 0 auto 40px; display: block;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 100px;
  padding: 16px 26px; color: var(--white); font-family: var(--font-body); font-size: 15px; outline: none;
}
.dict-search:focus { border-color: rgba(212,175,55,0.5); }
.dict-group { margin-bottom: 44px; }
.dict-letter { font-family: var(--font-serif); font-style: italic; font-size: 44px; color: var(--gold); margin-bottom: 18px; }
.dict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dict-item { padding: 24px 26px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.02); transition: border-color .3s; }
.dict-item:hover { border-color: rgba(212,175,55,0.3); }
.dict-item h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.dict-item p { font-size: 13.5px; color: var(--silver); line-height: 1.65; }

/* Hot projects carousel */
.hot-marquee { overflow: hidden; white-space: nowrap; position: relative; }
.hot-track { display: inline-flex; gap: 20px; animation: marquee 42s linear infinite; padding: 10px 0; }
.hot-marquee:hover .hot-track { animation-play-state: paused; }
.hot-item { width: 300px; height: 380px; flex-shrink: 0; border-radius: 20px; overflow: hidden; position: relative; border: 1px solid var(--line); }
.hot-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hot-item:hover img { transform: scale(1.05); }
.hot-item .cap { position: absolute; left: 14px; bottom: 12px; padding: 7px 14px; border-radius: 100px; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); border: 1px solid var(--line); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }

/* Showcase (Sobha City AD) */
.showcase-card {
  position: relative; border-radius: 32px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.45);
  min-height: 520px; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(212,175,55,0.08);
}
.showcase-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase-card .shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.9) 25%, rgba(0,0,0,0.25) 65%), linear-gradient(to top, rgba(0,0,0,0.85), transparent 55%); }
.showcase-card .sc-body { position: relative; z-index: 2; padding: 56px; }
.showcase-card .sc-body h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.showcase-card .sc-body p { margin-top: 16px; color: var(--silver); max-width: 460px; font-size: 15.5px; line-height: 1.7; }
.showcase-form { position: relative; z-index: 2; margin: 40px; padding: 30px; border-radius: 24px; background: rgba(6,6,7,0.82); backdrop-filter: blur(14px); border: 1px solid var(--line); }
.showcase-form h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 16px; }
.showcase-form .field { margin-bottom: 12px; }

/* Video deep-link block */
.ts-block {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 26px 30px; border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.3);
  background: linear-gradient(120deg, rgba(212,175,55,0.08), transparent 60%), var(--obsidian);
}
.ts-block .ts-time { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--gold); }
.ts-block .ts-copy { flex: 1; min-width: 240px; }
.ts-block .ts-copy h4 { font-family: var(--font-display); font-size: 18px; }
.ts-block .ts-copy p { margin-top: 4px; font-size: 13.5px; color: var(--silver); }

/* Map section */
.map-wrap { position: relative; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); background: var(--obsidian); padding: 40px; }
.map-svg { width: 100%; height: auto; display: block; }
.map-legend { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; font-size: 12.5px; color: var(--silver); }
.map-legend .sw { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 7px; vertical-align: -1px; }

/* Universal bottom lead form spacing */
.universal-lead { padding: 90px 0 30px; }

@media (max-width: 1080px) {
  .tool-cards { grid-template-columns: 1fr; }
  .tool-card { aspect-ratio: auto; gap: 14px; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .showcase-card { grid-template-columns: 1fr; min-height: 0; }
  .showcase-form { margin: 0 24px 28px; }
  .dict-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .insight-grid { grid-template-columns: 1fr; }
  .hot-item { width: 240px; height: 310px; }
  .calc-shell { padding: 26px 20px; }
  .showcase-card .sc-body { padding: 32px 24px; }
}

/* Top developers logo cards */
.dev-card .dev-logo-img { height: 34px; width: auto; max-width: 200px; object-fit: contain; filter: brightness(0) invert(1); }


/* Round-5 additions */
.ebook-media.contain img { object-fit: contain; background: #0b0b0d; padding: 18px; }
.logo-img.lg { height: 62px !important; max-width: 210px !important; }
.dev-card .dev-logo-img.lg2 { height: 50px; }
/* Slider fields (frankai-style) */
.slider-field { margin-bottom: 22px; }
.slider-field .sf-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.slider-field .sf-head label { font-size: 13px; color: var(--silver); }
.slider-field .sf-head .sf-val { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gold); }
.slider-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--p, 50%), rgba(255,255,255,0.1) var(--p, 50%));
  outline: none;
}
.slider-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border: 3px solid #0a0a0a; box-shadow: 0 0 0 1px rgba(212,175,55,0.5), 0 4px 14px rgba(0,0,0,0.5);
  cursor: pointer;
}
.slider-field input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border: 3px solid #0a0a0a; cursor: pointer;
}

/* ==========================================================================
   v4 — Light/dark rhythm, glow labels, dictionary accordion
   ========================================================================== */

/* Gold-glow tops on dark sections (Arshman-style gradient accents) */
.sec-glow { background: radial-gradient(ellipse 70% 320px at 50% 0%, rgba(212,175,55,0.12), transparent 70%), var(--black); }

/* Light sections: white canvas, dark type, dark cards pop */
.sec-light { background: linear-gradient(to bottom, #f7f6f2, #efeee8); color: #101013; position: relative; z-index: 2; }
.sec-light .section-title { color: #101013; }
.sec-light .section-sub { color: #4b4b52; }
.sec-light .eyebrow { color: #a07c14; }
.sec-light .eyebrow::before { background: #a07c14; }
.sec-light em, .sec-light .accent { color: #a07c14; }
.sec-light .stats-strip { background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.1); }
.sec-light .stats-strip .stat { background: #ffffff; }
.sec-light .stats-strip .stat .num { color: #a07c14; }
.sec-light .stats-strip .stat .label { color: #55555c; }
.sec-light .form-note, .sec-light .reels-footnote { color: #6a6a72; }
.sec-light .testi-card, .sec-light .service-card, .sec-light .ebook-card, .sec-light .tool-card { box-shadow: 0 24px 60px rgba(20,16,4,0.18); }

/* Readability glow behind gold labels on photos */
.dist-card .k, .dist-card h3, .dist-card p {
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 14px rgba(0,0,0,0.85), 0 0 30px rgba(0,0,0,0.6);
}
.gallery-item .cap, .hot-item .cap, .tb-item .cap { text-shadow: 0 1px 3px rgba(0,0,0,0.9); }

/* Dictionary v2 — accordion + A–Z rail */
.dict-layout { display: grid; grid-template-columns: 1fr 44px; gap: 28px; align-items: start; }
.dict-az {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 4px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
}
.dict-az a { font-size: 11px; font-weight: 700; color: var(--silver-dim); padding: 2px 8px; border-radius: 8px; transition: all .2s; }
.dict-az a:hover, .dict-az a.on { color: #0a0a0a; background: var(--gold); }
.dict-acc { border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,0.02); margin-bottom: 12px; overflow: hidden; transition: border-color .3s; }
.dict-acc:hover { border-color: rgba(212,175,55,0.35); }
.dict-acc .da-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; text-align: left; cursor: pointer;
}
.dict-acc .da-head h4 { font-family: var(--font-display); font-size: 17px; color: var(--white); }
.dict-acc .da-head .da-sub { margin-top: 3px; font-size: 12.5px; color: var(--silver-dim); font-family: var(--font-body); font-weight: 400; }
.dict-acc .da-arrow {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px; transition: transform .35s var(--ease), background .3s, color .3s;
}
.dict-acc.open .da-arrow { transform: rotate(180deg); background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.dict-acc .da-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.dict-acc .da-inner { padding: 0 24px 22px; }
.dict-acc .da-inner p { font-size: 14px; color: var(--silver); line-height: 1.7; }
.dict-acc .da-ex {
  margin-top: 14px; padding: 14px 16px; border-radius: 12px;
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2);
  font-size: 13px; color: var(--silver); line-height: 1.6;
}
.dict-acc .da-ex strong { color: var(--gold); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.dict-anchor { scroll-margin-top: 120px; }
@media (max-width: 760px) {
  .dict-layout { grid-template-columns: 1fr; }
  .dict-az { flex-direction: row; flex-wrap: wrap; position: static; border-radius: 16px; justify-content: center; }
}

/* Emoji stat tables (market pulse) */
.pulse-table-wrap { border-radius: 20px; border: 1px solid var(--line); overflow: hidden; }
table.pulse { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.pulse th, table.pulse td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.pulse thead th { background: rgba(212,175,55,0.08); font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
table.pulse td { color: var(--silver); }
table.pulse td.v { color: var(--white); font-weight: 600; white-space: nowrap; }
table.pulse tbody tr:last-child td { border-bottom: none; }

/* Map image */
.map-img { width: 100%; display: block; border-radius: 20px; border: 1px solid var(--line); }
/* Dark cards inside light sections keep light type */
.sec-light .ebook-card .section-title, .sec-light .service-card h3, .sec-light .testi-card .who .name, .sec-light .tool-card h3 { color: var(--white); }
.sec-light .ebook-card em { color: var(--gold); }
.sec-light .ebook-card .eyebrow { color: var(--gold); }
.sec-light .ebook-card .eyebrow::before { background: var(--gold); }
.sec-light .form-shell .section-title { color: var(--white); }
.dev-card .dev-logo-img.lg3 { height: 62px; }
/* Calculator typography: all caps */
.calc-shell .sf-head label, .calc-shell .calc-result .k, .tabs .tab-btn { text-transform: uppercase; letter-spacing: 0.06em; }
.calc-shell .sf-head label { font-size: 11.5px; }
/* Mortgage principal/interest split bar */
.split-bar-wrap { margin-top: 24px; }
.split-bar-wrap .sb-labels { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); margin-bottom: 10px; }
.split-bar { display: flex; height: 16px; border-radius: 100px; overflow: hidden; border: 1px solid var(--line); }
.split-bar .sb-principal { background: linear-gradient(90deg, var(--gold), var(--bronze)); transition: width .5s var(--ease); }
.split-bar .sb-interest { background: rgba(255,255,255,0.14); flex: 1; }

/* ==========================================================================
   v5 — Mobile polish, reels carousel, services 2x2
   ========================================================================== */

/* Reels: horizontal sliding carousel (Arshman-style) */
.reels-carousel-wrap { position: relative; }
.reels-grid {
  display: flex; gap: 20px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 18px; scrollbar-width: none;
}
.reels-grid::-webkit-scrollbar { display: none; }
.reels-grid .reel-card { flex: 0 0 300px; aspect-ratio: 9/15; }
.reels-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; z-index: 5;
  background: rgba(10,10,12,0.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background .25s, transform .25s;
}
.reels-nav:hover { background: var(--gold); color: #0a0a0a; }
.reels-nav.prev { left: -10px; }
.reels-nav.next { right: -10px; }

/* Work With Me: wide rectangles, 2×2, time chip top-right */
.services-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { min-height: 0; padding: 28px 30px 26px; position: relative; }
.service-card .dur { position: absolute; top: 20px; right: 22px; margin-bottom: 0; }
.service-card h3 { font-size: 28px; padding-right: 110px; }
.service-card p { margin-top: 10px; flex-grow: 0; }
.service-card .service-cta { margin-top: 16px; }

/* Mobile table slide hint */
.slide-hint {
  display: none; align-items: center; justify-content: center; gap: 10px;
  margin: 10px 0 0; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.slide-hint .bar {
  position: relative; width: 90px; height: 4px; border-radius: 100px; background: rgba(212,175,55,0.18); overflow: hidden;
}
.slide-hint .bar::after {
  content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 100%;
  border-radius: 100px; background: var(--gold);
  animation: slideHint 1.6s ease-in-out infinite alternate;
}
@keyframes slideHint { from { transform: translateX(0); } to { transform: translateX(56px); } }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .slide-hint { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card h3 { padding-right: 96px; font-size: 24px; }
  /* Banner photo: keep faces in frame */
  .top-banner-grid .tb-item:nth-child(2) img { object-position: 50% 0%; }
  /* Tighter data tables */
  table.pulse th, table.pulse td { padding: 11px 12px; font-size: 12.5px; }
  table.compare th, table.compare td { padding: 12px 12px; font-size: 12.5px; }
  table.compare { min-width: 520px; }
  .reels-grid .reel-card { flex: 0 0 260px; }
  .reels-nav { display: none; }
}

/* Mobile menu: no overlap, scrollable */
.mobile-menu {
  justify-content: flex-start;
  padding: 132px 36px 60px;
  overflow-y: auto;
}

/* ==========================================================================
   v6 — Marquee stability, mobile DOD, footer gold
   ========================================================================== */

/* Marquees: fixed-content width + no shrink = no mid-loop crop or jump */
.ticker-track, .logo-track, .gallery-track, .hot-track { width: max-content; }
.ticker-item, .dev-logo, .gallery-item, .hot-item { flex-shrink: 0; }
.ticker { overflow: hidden; }
.ticker-track { animation-duration: 46s; }
/* Logos: GPU-stable rendering (kills flicker) */
.logo-track { backface-visibility: hidden; transform: translateZ(0); }
.dev-logo img.logo-img { will-change: auto; }

/* Footer headings in gold */
.footer-col h5 { color: var(--gold); }

/* Work With Me: breathing room under the copy */
.service-card .service-cta { margin-top: 22px; }
@media (max-width: 760px) {
  .service-card { padding-bottom: 34px; }
  .service-card p { margin-top: 14px; line-height: 1.7; }
  .service-card .service-cta { margin-top: 26px; }
  /* Deal of the Day mobile */
  .dod-badge { display: none; }
  .dod-media { min-height: 300px; }
  .dod-media img { object-position: top; }
}
