/* =========================================================
   ARC FITNESS — Landing Page Styles
   Layout matches the Relentless Coaching reference structure
   Branding: deep navy + bright cyan from the ARC quote PDF
   ========================================================= */

:root {
  --bg:          #0a1228;
  --bg-2:        #0d1632;
  --panel:       #0f1a3a;
  --panel-2:     #131f44;
  --panel-3:     #182b5c;
  --border:      rgba(94, 198, 255, 0.18);
  --border-soft: rgba(255, 255, 255, 0.06);
  --accent:      #1ea7f5;
  --accent-2:    #5ec6ff;
  --accent-glow: rgba(30, 167, 245, 0.45);
  --text:        #f5f8ff;
  --muted:       #8a9cc4;
  --muted-2:     #6a7ba0;
  --green:       #22c55e;
  --container:   1200px;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow-glow: 0 0 0 1px rgba(94, 198, 255, 0.18), 0 18px 60px rgba(30, 167, 245, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtle film grain over the whole page (matches Relentless feel) */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
}

/* Ambient color glow */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(30,167,245,0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 20%, rgba(30,167,245,0.06), transparent 60%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* =========================================================
   PLACEHOLDER STYLE (used until you drop in real images)
   ========================================================= */
.placeholder-img {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(94,198,255,0.05) 0 18px,
      rgba(94,198,255,0.02) 18px 36px),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.placeholder-img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  text-align: center;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(10,18,40,0.65);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
}
.placeholder-img:not([data-label])::after { content: none; }
.placeholder-silhouette {
  width: 55%;
  aspect-ratio: 1/1.4;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(94,198,255,0.42), transparent 55%),
    radial-gradient(ellipse at 50% 60%, rgba(30,167,245,0.18), transparent 60%);
  border-radius: 40%;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 18, 40, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-brand {
  display: inline-flex; align-items: center;
  transition: opacity .2s ease;
}
.nav-brand:hover { opacity: 0.85; }
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.95;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #02101f;
  box-shadow: 0 12px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px var(--accent-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-nav { padding: 11px 22px; font-size: 13px; }

/* =========================================================
   SECTIONS / TYPOGRAPHY
   ========================================================= */
.section { padding: 110px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--accent);
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
.section-title {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 18px;
}
.section-title .accent { color: var(--accent); }
.section-sub {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.split-title {
  font-size: clamp(48px, 6vw, 84px);
  margin-bottom: 18px;
}

/* =========================================================
   HERO  (mirrors Relentless: dark left panel + right photo)
   ========================================================= */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.hero-bg-panel {
  position: absolute;
  inset: 0 38% 0 0;
  background:
    linear-gradient(120deg, var(--bg) 60%, rgba(10,18,40,0)),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  z-index: 0;
}
.hero-img-wrap {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 0;
  overflow: hidden;
}
.hero-img-wrap::before {
  /* fade left edge into the panel for a seamless blend */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10,18,40,0.6) 18%, transparent 45%);
  z-index: 2;
  pointer-events: none;
}
.hero-img-wrap::after {
  /* subtle vignette at top-right to help the logo overlay pop */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(10,18,40,0.55), transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.hero-img-wrap .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* x: 65% pushes the visible window to the right
     y: 38% shows more of the legs while keeping head in frame */
  object-position: 65% 38%;
}
.hero-logo-overlay {
  position: absolute;
  top: 6%;
  right: 8%;
  width: 38%;
  max-width: 280px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 10px 30px rgba(30, 167, 245, 0.45))
          drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  pointer-events: none;
  user-select: none;
}
.hero-img-wrap .placeholder-img { height: 100%; border: none; }
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
}
.hero-text { max-width: 640px; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.br-desk { display: inline; }
@media (max-width: 720px) { .br-desk { display: none; } }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 44px 0;
  position: relative; z-index: 4;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 16px; text-align: center; }
.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.stat-div {
  width: 1px; height: 44px;
  background: var(--border-soft);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-image .placeholder-img { border: none; }
.about-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}
.about-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-size: 16px;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 10px var(--accent-glow);
}
.about-body { color: var(--muted); font-size: 17px; line-height: 1.7; }

/* =========================================================
   WHAT YOU GET (3 numbered cards w/ images)
   ========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 96px;
}
.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 0 32px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-glow);
}
.card-featured {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border-color: var(--border);
}
.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--panel-2);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.card-img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-img.card-img { border: none; }

/* Nutrition card collage — 7 meal photos, one large feature + six small tiles, no text overlay */
.card-img-collage {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--bg);
}
.card-img-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* First image is the feature — spans 2 columns of the top row */
.card-img-collage img:first-child {
  grid-column: span 2;
  grid-row: span 1;
}
.card-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0 28px 8px;
}
.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  padding: 0 28px 12px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  padding: 0 28px;
}

/* =========================================================
   CALENDLY
   ========================================================= */
#schedule { padding-top: 24px; }
.calendly-wrap {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-glow);
}
.calendly-inline-widget {
  width: 100%;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.booked-message {
  display: none;
  text-align: center;
  margin-top: 22px;
  padding: 18px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 700;
}
.booked-message.show { display: block; animation: fadeIn .4s ease; }

/* =========================================================
   POST-BOOKING / VIDEO
   ========================================================= */
.post-booking {
  display: none;
  background:
    radial-gradient(900px 400px at 50% 30%, rgba(30,167,245,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  text-align: center;
}
.post-booking.show { display: block; animation: fadeIn .6s ease; }
.post-booking .eyebrow,
.post-booking .section-title,
.post-booking .section-sub { display: block; margin-left: auto; margin-right: auto; }

.video-wrap {
  margin: 0 auto;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  position: relative;
}
.yt-facade {
  position: absolute; inset: 0;
  cursor: pointer;
}
.video-thumb { width: 100%; height: 100%; border: none; }
.yt-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.yt-btn {
  width: 80px; height: 56px;
  background: var(--accent);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px var(--accent-glow);
  transition: transform .2s ease, background .2s ease;
}
.yt-facade:hover .yt-btn { transform: scale(1.06); background: var(--accent-2); }

/* =========================================================
   CAROUSEL (Instagram-style frame, simple horizontal scroll)
   ========================================================= */
.carousel-root {
  position: relative;
  padding: 0 24px;
}
.carousel-stage {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 0 28px;
  scrollbar-width: none;
}
.carousel-stage::-webkit-scrollbar { display: none; }
.ig-frame {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 9/16;
  scroll-snap-align: center;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.ig-frame:hover { transform: translateY(-3px); border-color: var(--accent); }
.ig-placeholder { border: none; height: 100%; }
.ig-frame video,
.ig-frame .testimonial-video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: black;
  display: block;
}
.ig-label {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  color: var(--accent-2);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: rgba(10, 18, 40, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  background: rgba(10,18,40,0.85);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease;
  z-index: 2;
}
.carousel-btn:hover { background: var(--accent); color: #02101f; }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 8px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  transition: background .2s ease, transform .2s ease;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* =========================================================
   WINS WALL — infinite marquee
   ========================================================= */
.wins-wall {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}
.wins-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  opacity: 0.16;
  filter: blur(3px) saturate(0.6);
  pointer-events: none;
  z-index: 0;
}
.wins-bg .wbg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}
.wins-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 30%, rgba(30,167,245,0.25), transparent 60%),
    linear-gradient(180deg, rgba(10,18,40,0.6), rgba(10,18,40,0.95));
  pointer-events: none;
  z-index: 1;
}
.wins-header { position: relative; z-index: 2; text-align: center; }
.wins-header .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

.marquee-gallery {
  position: relative; z-index: 2;
  margin-top: 56px;
}
.marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; gap: 22px;
  width: max-content;
  will-change: transform;
}
.marquee-left { animation: marqueeLeft 140s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-card {
  flex: 0 0 auto;
  width: 230px; aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--panel-2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  position: relative;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.mq-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(30,167,245,0.25);
}
.mq-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.mq-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mq-card::after {
  /* gradient veil so the label sits cleanly over the photo */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(10,18,40,0.92));
  pointer-events: none;
}
.mq-label {
  position: absolute;
  left: 12px; right: 12px; bottom: 14px;
  z-index: 1;
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 8px 10px;
  background: rgba(10,18,40,0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mq-card .placeholder-img { border: none; height: 100%; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(30,167,245,0.12);
  border: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 11px; height: 2px;
  background: var(--accent-2);
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 1200px; padding: 0 26px 22px; }
.faq-a p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-a p + p { margin-top: 10px; }
.faq-a ul { margin: 12px 0; padding-left: 18px; color: var(--muted); }
.faq-a ul li { margin-bottom: 8px; line-height: 1.6; }
.faq-a strong { color: var(--text); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 36px 0;
  background: var(--bg-2);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { color: var(--muted-2); font-size: 13px; }

/* =========================================================
   LIGHTBOX OVERLAY (click-to-expand transformations)
   ========================================================= */
.mq-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(2, 8, 20, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mq-overlay.show {
  display: flex;
  animation: overlayIn .25s ease;
}
.mq-overlay-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: min(640px, 90vw);
  max-height: 90vh;
  animation: overlayContentIn .35s cubic-bezier(.2,.8,.2,1);
}
.mq-overlay-img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(94, 198, 255, 0.12);
  background: var(--bg);
}
.mq-overlay-label {
  display: inline-block;
  color: var(--accent-2);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: rgba(10, 18, 40, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mq-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 18, 40, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.mq-overlay-close:hover {
  background: var(--accent);
  color: #02101f;
  transform: scale(1.06);
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes overlayContentIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 540px) {
  .mq-overlay { padding: 16px; }
  .mq-overlay-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .mq-overlay-img { max-height: 72vh; }
}

/* =========================================================
   FEATURED CLIENT SUCCESS STORIES (YouTube embeds)
   ========================================================= */
.featured-stories { text-align: center; }
.featured-stories .eyebrow { margin-left: auto; margin-right: auto; }
.featured-stories .section-title,
.featured-stories .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.featured-stories .section-sub { max-width: 640px; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 40px;
  justify-content: center;
  align-items: start;
  margin-top: 8px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.featured-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.featured-frame:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 28px 80px var(--accent-glow);
}

.featured-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  border-radius: inherit;
}

.featured-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 18, 40, 0.6);
}

@media (max-width: 760px) {
  .featured-grid {
    grid-template-columns: minmax(0, 320px);
    gap: 36px;
  }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-img-wrap { width: 50%; }
}
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .wins-wall { padding: 80px 0; }

  .hero { min-height: auto; padding: 56px 0 32px; }
  .hero-bg-panel { inset: 0; }
  .hero-img-wrap {
    position: relative;
    width: 100%; height: 460px;
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .hero-img-wrap::before {
    background: linear-gradient(180deg, transparent 70%, var(--bg));
  }
  .hero-img-wrap::after {
    background: radial-gradient(ellipse at 50% 0%, rgba(10,18,40,0.5), transparent 60%);
  }
  .hero-logo-overlay {
    top: 18px;
    right: 50%;
    transform: translateX(50%);
    width: 60%;
    max-width: 240px;
  }
  .hero-text { max-width: 100%; }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .stats-inner .stat-div { display: none; }

  .about-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .about-image { max-width: 460px; margin: 0 auto; }

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

  .nav-inner { height: 64px; }
  .nav-logo-img { height: 36px; }
  .footer-logo-img { height: 32px; }

  .ig-frame { width: 240px; }
}
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .calendly-wrap { padding: 12px; }
  .calendly-inline-widget { height: 800px !important; }
  .ig-frame { width: 220px; }
  .mq-card { width: 180px; }
}
