/* =============================================
   aI-Max — Mobile-First Premium Stylesheet
   ============================================= */

:root {
  color-scheme: light;

  --bg-primary:   #fcfaf6;
  --bg-secondary: #ffffff;
  --text-primary: #181512;
  --text-muted:   #625c56;
  --line-color:   rgba(24,21,18,.08);
  --line-light:   rgba(24,21,18,.04);

  --accent-gold:     #c29d53;
  --accent-gold-rgb: 194,157,83;
  --accent-coral:    #e35a43;
  --accent-teal:     #108082;
  --accent-teal-rgb: 16,128,130;

  --glass-bg:     rgba(255,255,255,.75);
  --glass-border: rgba(255,255,255,.6);
  --shadow-sm:    0 4px 16px rgba(24,21,18,.05);
  --shadow-md:    0 16px 48px rgba(24,21,18,.07);
  --shadow-hover: 0 24px 64px rgba(194,157,83,.15);
  --shadow-dark:  0 32px 80px rgba(24,21,18,.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --max-w: 1240px;

  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  scroll-behavior: smooth;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ── Ambient glows ──────────────────────────── */
.ambient-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: .35;
  pointer-events: none; z-index: -10;
  width: min(55vw, 680px); height: min(55vw, 680px);
}
.glow-1 { top:10%; left:-8%;  background: radial-gradient(circle, rgba(16,128,130,.22) 0%, transparent 70%); }
.glow-2 { top:55%; right:-8%; background: radial-gradient(circle, rgba(194,157,83,.25) 0%, transparent 70%); }

/* ── Scroll meter ───────────────────────────── */
.scroll-meter {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 1100;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-coral), var(--accent-teal));
  transform-origin: left; transform: scaleX(0);
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800; line-height: 1.08; letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 10vw, 7rem); }
h2 { font-size: clamp(1.9rem, 5.5vw, 3.8rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-muted); }

.hindi-highlight {
  background: linear-gradient(120deg, var(--accent-teal), #0a5254);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800;
}
.hindi-highlight-large {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900;
}
.gold-gradient {
  background: linear-gradient(90deg, #b88d3d, #cfa860);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── Site Header ────────────────────────────── */
.site-header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 24px), var(--max-w));
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 0 18px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 800;
}

.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--text-primary); color: var(--bg-primary);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: .9rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.28rem; letter-spacing: -.03em; color: var(--text-primary);
}

.main-nav {
  display: flex; gap: 4px;
  /* hidden on mobile */
}
.main-nav a {
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  transition: all .25s ease;
}
.main-nav a:hover { color: var(--text-primary); background: rgba(var(--accent-teal-rgb),.06); }

.header-right { display: flex; align-items: center; gap: 10px; }

/* ── Buttons ────────────────────────────────── */
.button, .icon-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  border: 1px solid transparent; border-radius: var(--radius-md);
  cursor: pointer; text-decoration: none;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  white-space: nowrap;
}
.button { padding: 11px 22px; font-size: .9rem; }
.icon-button {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--text-primary); color: var(--bg-primary); border: none;
}
.icon-button:hover { background: var(--accent-gold); transform: translateY(-2px); }
.button.primary { background: var(--text-primary); color: var(--bg-primary); }
.button.primary:hover { background: var(--accent-gold); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(var(--accent-gold-rgb),.35); }
.button.ghost { background: transparent; border-color: var(--line-color); color: var(--text-primary); }
.button.ghost:hover { background: rgba(24,21,18,.03); transform: translateY(-2px); }
.button.full { width: 100%; justify-content: center; }
.button svg, .icon-button svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Hamburger ──────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-primary);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ──────────────────────────── */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 88vw); height: 100dvh;
  background: var(--bg-secondary); border-left: 1px solid var(--line-color);
  box-shadow: var(--shadow-dark);
  display: flex; flex-direction: column; gap: 4px;
  padding: 88px 20px 40px;
  z-index: 900; transition: right .4s cubic-bezier(.25,.8,.25,1);
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--text-primary);
  transition: background .2s ease;
}
.drawer-link:hover { background: rgba(var(--accent-teal-rgb),.06); }
.drawer-link svg { width: 18px; height: 18px; color: var(--accent-gold); }
.drawer-cta { margin-top: 20px; border-radius: var(--radius-md); }

.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(12,9,7,.5); backdrop-filter: blur(4px);
  z-index: 850;
}
.drawer-overlay.open { display: block; }

/* ── Section Foundation ─────────────────────── */
.section-panel {
  padding: 80px max(20px, calc((100vw - var(--max-w)) / 2));
  position: relative;
}
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading.wide { max-width: 880px; }
.eyebrow {
  font-family: var(--font-display); font-size: .78rem; font-weight: 900;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 10px;
}
.section-heading h2 { margin-bottom: 14px; }
.section-subtext { font-size: 1.05rem; line-height: 1.65; color: var(--text-muted); }

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
  background: #0c0907;
}
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(12,9,7,.97) 0%, rgba(12,9,7,.45) 55%, rgba(12,9,7,.1) 100%);
}
.hero-content {
  position: relative; z-index: 10; color: #fff;
  max-width: 780px; margin-bottom: 36px;
}
.badge-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 5px 13px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 20px; color: #fff;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-gold);
  animation: pulse 1.8s infinite alternate;
}
@keyframes pulse { 0%{transform:scale(.9);opacity:.5} 100%{transform:scale(1.3);opacity:1} }

.hero h1 { color: #fff; margin-bottom: 18px; line-height: .9; }
.hero-copy {
  font-size: clamp(1.1rem, 3.5vw, 2rem);
  font-weight: 500; line-height: 1.3;
  color: rgba(255,255,255,.88); margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button.ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.hero-actions .button.ghost:hover { background: rgba(255,255,255,.1); }

.hero-stats-wrapper {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.stat-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  padding: 14px 16px; border-radius: var(--radius-md);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.stat-card strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.6rem); color: var(--accent-gold); margin-bottom: 3px;
}
.stat-card span { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ── Brand Promise ──────────────────────────── */
.intro-band { background: linear-gradient(to bottom, #faf8f3, var(--bg-primary)); }
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.promise {
  background: var(--bg-secondary); border: 1px solid var(--line-color);
  padding: 28px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.25,.8,.25,1);
}
.promise:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-gold-rgb),.4); box-shadow: var(--shadow-hover);
}
.promise-icon-container {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(var(--accent-gold-rgb),.08); color: var(--accent-gold);
}
.promise:nth-child(2) .promise-icon-container { background: rgba(var(--accent-teal-rgb),.08); color: var(--accent-teal); }
.promise:nth-child(3) .promise-icon-container { background: rgba(227,90,67,.08); color: var(--accent-coral); }
.promise-icon-container svg { width: 22px; height: 22px; stroke-width: 2; }
.promise h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.promise p  { font-size: .9rem; line-height: 1.6; }

/* ── Portfolio Console ──────────────────────── */
.showcase { background: var(--bg-primary); }
.video-console {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.video-tile {
  position: relative; background: #110e0c; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer; aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(24,21,18,.06);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.25,.8,.25,1), box-shadow .45s ease, border-color .45s ease;
}
.video-tile.landscape { grid-column: span 4; }
.video-tile.featured  { grid-column: span 8; }
.video-tile.portrait  { grid-column: span 3; grid-row: span 2; aspect-ratio: 9/16; }

.video-tile video {
  width: 100%; height: 100%; object-fit: cover; opacity: .85;
  transition: opacity .5s ease, transform .5s ease;
}
.video-tile::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(17,14,12,.95) 0%, rgba(17,14,12,.4) 40%, transparent 80%);
  transition: background .4s ease;
}

/* Play button overlay */
.video-overlay-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.75);
  z-index: 10; opacity: 0;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 50%; width: 58px; height: 58px;
  display: grid; place-items: center; color: #fff;
  transition: all .4s cubic-bezier(.25,.8,.25,1); pointer-events: none;
}
.video-overlay-play svg { width: 22px; height: 22px; fill: #fff; stroke: none; transform: translateX(2px); }

/* Badge */
.video-badge {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: rgba(20,17,15,.6); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 999px;
  color: #fff; font-family: var(--font-display); font-size: .68rem; font-weight: 700;
  pointer-events: none;
}

/* Progress bar */
.video-progress-track {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.2); z-index: 8; opacity: 0;
  transition: opacity .3s ease;
}
.video-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-coral));
}

/* Tile text */
.tile-copy {
  position: absolute; left: 16px; bottom: 16px; right: 16px; z-index: 5;
  color: #fff; transform: translateY(12px);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.tile-copy span {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 3px 9px; border-radius: 999px;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 6px;
}
.tile-copy h3 { font-size: clamp(.95rem, 2.5vw, 1.25rem); font-weight: 700; color: #fff; margin-bottom: 4px; }
.tile-copy p  {
  color: rgba(255,255,255,.8); font-size: .8rem; line-height: 1.35;
  opacity: 0; height: 0; overflow: hidden;
  transition: opacity .3s ease;
}

/* Hover / active states */
.video-tile:hover, .video-tile.is-active {
  z-index: 20; transform: scale(1.05);
  box-shadow: var(--shadow-dark);
  border-color: rgba(var(--accent-gold-rgb),.55);
}
.video-tile:hover video, .video-tile.is-active video { opacity: 1; transform: scale(1.03); }
.video-tile:hover .tile-copy, .video-tile.is-active .tile-copy { transform: translateY(0); }
.video-tile:hover .tile-copy p, .video-tile.is-active .tile-copy p { opacity: 1; height: auto; margin-top: 2px; }
.video-tile:hover .video-overlay-play, .video-tile.is-active .video-overlay-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.video-tile:hover .video-progress-track, .video-tile.is-active .video-progress-track { opacity: 1; }

/* ── Snake Timeline Pipeline ────────────────── */
.pipeline {
  background: #faf8f3;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 1060px;
  margin: 56px auto 0;
}

/* ── DESKTOP HORIZONTAL S-CURVE ── */
.horizontal-track {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.horizontal-track .timeline-svg { width: 100%; height: 100%; }

.vertical-track { display: none; }

/* Path styles */
.timeline-path-bg   { stroke: #dedad3; stroke-width: 3.5px; fill: none; stroke-linecap: round; }
.timeline-path-fill {
  stroke: var(--accent-gold); stroke-width: 4px; fill: none; stroke-linecap: round;
  stroke-dasharray: 2800; stroke-dashoffset: 2800;
  filter: drop-shadow(0 2px 8px rgba(var(--accent-gold-rgb),.45));
  transition: stroke-dashoffset .12s ease-out;
}

/* Grid */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  position: relative; z-index: 5;
}

.timeline-step {
  display: flex; flex-direction: column; align-items: center;
  position: relative; padding-bottom: 0;
}

/* Row 1 — dots sit at ~25% height; Row 2 — dots at ~75% */
/* We achieve this by giving the container a fixed height and using padding */
.timeline-step .timeline-dot {
  position: relative; /* stays in flow but we offset via padding */
  width: 24px; height: 24px;
  background: var(--bg-secondary);
  border: 3px solid #dedad3; border-radius: 50%;
  display: grid; place-items: center;
  z-index: 10; flex-shrink: 0;
  transition: all .4s ease;
  margin-top: 20px; /* vertical alignment with the SVG curve at 25% */
}

/* Row 2: steps 4-6 need their dots near the 75% position of the container */
.timeline-step:nth-child(n+4) .timeline-dot {
  margin-top: 0;
  margin-bottom: 20px;
  order: -1; /* dot appears before content visually */
}
/* Revert: actually control via padding-top of content */
.timeline-step:nth-child(n+4) { flex-direction: column-reverse; }
.timeline-step:nth-child(n+4) .timeline-dot {
  order: 0; margin-top: 20px; margin-bottom: 0;
}

.dot-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: #dedad3; transition: all .4s ease;
}

.timeline-content {
  background: var(--bg-secondary); border: 1px solid var(--line-color);
  padding: 20px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  text-align: center; width: 90%; margin-top: 16px;
  transition: all .4s cubic-bezier(.25,.8,.25,1);
}
.timeline-step:nth-child(n+4) .timeline-content {
  margin-top: 0; margin-bottom: 16px;
}
.timeline-step:hover .timeline-content {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-gold-rgb),.4); box-shadow: var(--shadow-hover);
}

/* Active dot state */
.timeline-step.is-active .timeline-dot {
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(var(--accent-gold-rgb),.5);
  transform: scale(1.2);
}
.timeline-step.is-active .dot-inner { background: var(--accent-gold); }
.timeline-step.is-active:nth-child(even) .timeline-dot { border-color: var(--accent-teal); box-shadow: 0 0 16px rgba(var(--accent-teal-rgb),.5); }
.timeline-step.is-active:nth-child(even) .dot-inner { background: var(--accent-teal); }
.timeline-step.is-active .timeline-content { border-color: rgba(var(--accent-gold-rgb),.3); }

.step-num {
  display: block; font-family: var(--font-display); font-size: .9rem; font-weight: 900;
  color: var(--accent-gold); margin-bottom: 6px;
}
.timeline-step:nth-child(even) .step-num { color: var(--accent-teal); }
.timeline-content h3 { font-size: 1.05rem; font-weight: 750; color: var(--text-primary); margin-bottom: 6px; }
.timeline-content p  { font-size: .84rem; color: var(--text-muted); line-height: 1.45; }

/* ── Categories ─────────────────────────────── */
.categories { background: var(--bg-primary); }
.category-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.category {
  background: var(--bg-secondary); border: 1px solid var(--line-color);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: all .4s cubic-bezier(.25,.8,.25,1);
}
.category:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(var(--accent-gold-rgb),.35); }
.category-img-container { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.category-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.category:hover img { transform: scale(1.05); }
.category-body { padding: 20px 18px 22px; }
.category-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.category-body p  { font-size: .88rem; line-height: 1.5; color: var(--text-muted); }

.category.wide-card { grid-column: span 2; flex-direction: row; }
.category.wide-card .category-img-container { width: 45%; height: 100%; aspect-ratio: auto; }
.category.wide-card .wide-card-body { width: 55%; display: flex; flex-direction: column; justify-content: center; }

/* ── Trust ──────────────────────────────────── */
.trust { background: var(--bg-primary); }
.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.trust-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-color); aspect-ratio: 4/3;
}
.trust-image img { width: 100%; height: 100%; object-fit: cover; }
.trust-list { display: flex; flex-direction: column; gap: 14px; }
.trust-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-secondary); border: 1px solid var(--line-color);
  padding: 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.trust-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(var(--accent-teal-rgb),.08); color: var(--accent-teal);
  display: grid; place-items: center;
}
.trust-icon svg { width: 18px; height: 18px; stroke-width: 2.5; }
.trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.trust-item p  { font-size: .88rem; line-height: 1.45; }

/* ── Industries Marquee ─────────────────────── */
.industries {
  background: #110e0c; color: #fff;
  padding-top: 70px; padding-bottom: 70px; overflow: hidden;
}
.industries h2 { color: #fff; }
.industries .section-heading { padding: 0 max(20px, calc((100vw - var(--max-w)) / 2)); }

.industry-marquee {
  display: flex; gap: 14px; width: max-content;
  animation: marquee 32s linear infinite; padding: 18px 0;
}
.industry-marquee div { display: flex; gap: 14px; }
.industry-marquee span {
  display: inline-flex; align-items: center;
  padding: 11px 24px; white-space: nowrap;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; color: rgba(255,255,255,.9);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Booking Console ────────────────────────── */
.booking { background: #faf8f3; }
.booking-console {
  display: grid; grid-template-columns: 1fr 420px; gap: 22px; align-items: start;
}

.location-switcher {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  background: var(--bg-secondary); border: 1px solid var(--line-color);
  padding: 14px 18px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.switcher-label { font-family: var(--font-display); font-weight: 700; font-size: .92rem; }
.switcher-buttons { display: flex; gap: 8px; }
.switcher-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--line-color);
  color: var(--text-muted); padding: 7px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: .84rem; cursor: pointer;
  transition: all .25s ease;
}
.switcher-btn.active { background: var(--text-primary); color: var(--bg-primary); border-color: var(--text-primary); }
.switcher-btn svg { width: 13px; height: 13px; }

.packages { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.package {
  background: var(--bg-secondary); border: 1px solid var(--line-color);
  border-radius: var(--radius-md); padding: 20px 18px; text-align: left; cursor: pointer;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.package:hover { transform: translateY(-3px); border-color: rgba(var(--accent-gold-rgb),.45); box-shadow: var(--shadow-hover); }
.package.active {
  border-color: var(--accent-gold); background: #fffdf9;
  box-shadow: 0 12px 36px rgba(var(--accent-gold-rgb),.12); outline: 2px solid var(--accent-gold);
}
.package-cat {
  font-family: var(--font-display); font-size: .68rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-teal);
  margin-bottom: 10px; display: block;
}
.package strong {
  font-family: var(--font-display); font-weight: 800; font-size: 1.08rem;
  color: var(--text-primary); line-height: 1.2; margin-bottom: 18px; display: block;
}
.price-display {
  font-family: var(--font-display); font-weight: 900; font-size: 1.28rem;
  color: var(--text-primary); margin-top: auto; display: block;
}

/* Checkout form */
.checkout {
  background: #181512; color: #fff;
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-dark); border: 1px solid rgba(255,255,255,.05);
}
.checkout-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.28rem; margin-bottom: 22px; color: #fff;
}
.checkout-title svg { color: var(--accent-gold); width: 18px; height: 18px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: .84rem;
  color: rgba(255,255,255,.7); margin-bottom: 7px;
}
.form-group input, .form-group select {
  width: 100%; height: 46px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 0 14px;
  color: #fff; font-family: var(--font-body); font-size: .92rem;
  transition: all .25s ease; appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus {
  outline: none; background: rgba(255,255,255,.1);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(var(--accent-gold-rgb),.2);
}
.form-group select option { color: var(--text-primary); background: #fff; }

.payment-method-selector { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-method-card {
  flex: 1 1 80px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 10px 12px; border-radius: var(--radius-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: all .25s ease; position: relative;
}
.pay-method-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.pay-method-card span { font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: rgba(255,255,255,.7); }
.pay-method-card:hover { background: rgba(255,255,255,.08); }
.pay-method-card.active { border-color: var(--accent-gold); background: rgba(var(--accent-gold-rgb),.1); }
.pay-method-card.active span { color: #fff; }

.checkout-summary {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 16px;
  margin: 18px 0; display: flex; flex-direction: column; gap: 10px;
}
.summary-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 2px;
}
.checkout-summary strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: #fff; }
.summary-price-box {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 10px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.summary-price-box strong { font-size: 1.38rem; font-weight: 900; color: var(--accent-gold); }
.payment-note { margin-top: 12px; font-size: .82rem; color: #a4ddc7; font-weight: 600; text-align: center; min-height: 18px; }

/* ── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--line-color);
  padding: 52px max(20px, calc((100vw - var(--max-w)) / 2));
  display: flex; flex-direction: column; gap: 28px;
}
.footer-top { display: flex; flex-direction: column; gap: 14px; }
.footer-tagline { font-size: .92rem; line-height: 1.6; max-width: 480px; color: var(--text-muted); }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.footer-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--line-color);
  transition: all .2s ease;
}
.footer-links a:hover { color: var(--text-primary); background: rgba(24,21,18,.04); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 14px;
  border-top: 1px solid var(--line-light); padding-top: 22px;
}
.footer-copy { font-size: .82rem; color: var(--text-muted); }

/* ── Scroll reveal ──────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.215,.61,.355,1), transform .75s cubic-bezier(.215,.61,.355,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ─────────────────────────────────────────────
   ≤1100px  → tablet landscape
   ≤900px   → tablet portrait
   ≤640px   → large phone
   ≤480px   → small phone
   ═══════════════════════════════════════════════ */

/* ── ≤1100px ─────────────────────────────────── */
@media (max-width: 1100px) {
  .promise-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .category.wide-card { grid-column: span 2; }

  .video-tile.landscape  { grid-column: span 6; }
  .video-tile.featured   { grid-column: span 12; }
  .video-tile.portrait   { grid-column: span 4; }

  .booking-console { grid-template-columns: 1fr; }

  .trust-layout { grid-template-columns: 1fr 1fr; }
}

/* ── ≤900px ──────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .section-panel { padding-top: 64px; padding-bottom: 64px; }

  .promise-grid { grid-template-columns: 1fr; }

  .trust-layout { grid-template-columns: 1fr; }
  .trust-image { max-height: 300px; }

  /* Timeline: switch to VERTICAL */
  .timeline-container { margin-top: 40px; }
  .horizontal-track { display: none !important; }
  .vertical-track {
    display: block !important;
    position: absolute; left: 18px; top: 0; bottom: 0; width: 60px;
    z-index: 1;
  }
  .vertical-track .timeline-svg { width: 100%; height: 100%; }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 56px;
  }
  .timeline-step {
    flex-direction: row; align-items: flex-start; gap: 0;
  }
  /* Reset row-2 flip */
  .timeline-step:nth-child(n+4) { flex-direction: row; }
  .timeline-step:nth-child(n+4) .timeline-content { margin-bottom: 0; margin-top: 0; }
  .timeline-step:nth-child(n+4) .timeline-dot { margin-top: 2px; margin-bottom: 0; }

  .timeline-step .timeline-dot {
    position: absolute; left: -38px; top: 2px;
    margin-top: 0; flex-shrink: 0;
  }
  .timeline-content { width: 100%; margin-top: 0; text-align: left; }
}

/* ── ≤640px ──────────────────────────────────── */
@media (max-width: 640px) {
  .site-header { top: 10px; height: 56px; padding: 0 14px; }

  .hero { padding-bottom: 30px; }
  .hero h1 { line-height: .88; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .stat-card { padding: 10px 10px; }
  .stat-card strong { font-size: 1.1rem; }
  .stat-card span { font-size: .7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: center; }

  /* Portfolio: single column */
  .video-tile.landscape,
  .video-tile.featured,
  .video-tile.portrait {
    grid-column: span 12;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
  .video-tile.portrait { aspect-ratio: 9/16; max-width: 300px; margin: 0 auto; }
  .video-tile:hover, .video-tile.is-active { transform: scale(1.02); }

  /* Categories: 1 col */
  .category-grid { grid-template-columns: 1fr; }
  .category.wide-card { grid-column: span 1; flex-direction: column; }
  .category.wide-card .category-img-container { width: 100%; height: auto; aspect-ratio: 4/3; }
  .category.wide-card .wide-card-body { width: 100%; }

  /* Booking */
  .packages { grid-template-columns: 1fr; }
  .location-switcher { flex-direction: column; align-items: flex-start; }
  .checkout { padding: 22px 18px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── ≤480px ──────────────────────────────────── */
@media (max-width: 480px) {
  :root { --radius-md: 10px; }

  .section-panel { padding-top: 52px; padding-bottom: 52px; }
  .section-heading { margin-bottom: 32px; }

  h2 { letter-spacing: -.015em; }

  .brand-name { font-size: 1.15rem; }

  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }

  .promise { padding: 22px 18px; }
  .promise-icon-container { width: 42px; height: 42px; }

  .video-console { gap: 12px; }

  .timeline-grid { gap: 20px; }

  .industry-marquee span { padding: 9px 18px; font-size: .88rem; }

  .switcher-buttons { width: 100%; }
  .switcher-btn { flex: 1; justify-content: center; }

  .packages { gap: 10px; }
  .package { padding: 16px 14px; }

  .footer-links a { padding: 7px 11px; font-size: .82rem; }

  .site-footer { padding-top: 40px; padding-bottom: 40px; }
}

/* ── Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 1ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0s !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .industry-marquee { animation: none !important; }
}

/* ── Utility helpers ─────────────────────────── */
.desktop-only { }
@media (max-width: 900px) { .desktop-only { display: none !important; } }
