/* ============================================
   MOONBEAM VIDEO — Brand Stylesheet
   Colors: #000000, #FFFFFF, #0F172A, #3B82F6
   Gold: #D4AF37 → #F5C542 → #C9A227
   Fonts: Montserrat (headings), Inter Tight (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter+Tight:wght@300;400;500;600&display=swap');


/* ── Lens Flare ── */
#lens-flare {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
  mix-blend-mode: screen;
}

.flare-logo {
  position: absolute;
  width: 180px; height: 180px;
  object-fit: contain;
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  filter: brightness(10) blur(0.5px);
  -webkit-filter: brightness(10) blur(0.5px);
  opacity: 0.665;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
}

.flare-source {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,255,255,1)    0%,
    rgba(255,248,220,0.9) 15%,
    rgba(245,197,66,0.4)  45%,
    transparent           70%);
  transform: translate(-50%, -50%);
  filter: blur(8px) brightness(1.3);
}

.flare-haze {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(220,235,255,0.15) 0%,
    rgba(200,220,255,0.06) 40%,
    transparent            70%);
  transform: translate(-50%, -50%);
  filter: blur(16px) brightness(1.3);
}

#flare-hotspot {
  position: absolute;
  width: 45px; height: 45px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  z-index: 101;
}

.flare-streak {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    transparent,
    rgba(180,210,255,0.05) 10%,
    rgba(220,235,255,0.28) 35%,
    rgba(255,255,255,0.50) 50%,
    rgba(220,235,255,0.28) 65%,
    rgba(180,210,255,0.05) 90%,
    transparent);
  transform: translateY(-50%);
  filter: blur(1px) brightness(1.3);
}

.flare-artifact {
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  filter: brightness(2.6);
  -webkit-filter: brightness(2.6);
  will-change: left, top, opacity;
}

/* Each artifact: rainbow color layer (background) + white layer (::before) */
#fa1 { width: 80px;  height: 80px;  background: radial-gradient(circle, rgba(255,100,80,0.22)  0%, transparent 70%); }
#fa2 { width: 40px;  height: 40px;  background: radial-gradient(circle, rgba(80,220,120,0.28)  0%, rgba(80,220,120,0.08) 50%, transparent 70%); }
#fa3 { width: 120px; height: 120px; background: radial-gradient(circle, rgba(100,140,255,0.20) 0%, transparent 65%); }
#fa4 { width: 24px;  height: 24px;  background: radial-gradient(circle, rgba(255,200,60,0.45)  0%, transparent 70%); }
#fa5 { width: 60px;  height: 60px;  background: radial-gradient(circle, rgba(200,80,255,0.22)  0%, transparent 70%); }

#fa1::before { content:''; position:absolute; inset:0; border-radius:50%; background: radial-gradient(circle, rgba(180,210,255,0.24) 0%, transparent 70%); transform: translate(38px, -28px); }
#fa2::before { content:''; position:absolute; inset:0; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.30) 0%, rgba(200,220,255,0.10) 50%, transparent 70%); transform: translate(-24px, 22px); }
#fa3::before { content:''; position:absolute; inset:0; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 65%); transform: translate(45px, 20px); }
#fa4::before { content:''; position:absolute; inset:0; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.42) 0%, transparent 70%); transform: translate(-18px, -16px); }
#fa5::before { content:''; position:absolute; inset:0; border-radius:50%; background: radial-gradient(circle, rgba(180,200,255,0.22) 0%, transparent 70%); transform: translate(20px, 30px); }

/* Second set of rainbow orbs — offset perpendicular to flare axis */
.flare-artifact-b { filter: brightness(2.6); -webkit-filter: brightness(2.6); }
#fa6  { width: 70px;  height: 70px;  background: radial-gradient(circle, rgba(255,180,40,0.28)  0%, transparent 70%); }
#fa7  { width: 35px;  height: 35px;  background: radial-gradient(circle, rgba(40,200,255,0.32)  0%, rgba(40,200,255,0.08) 50%, transparent 70%); }
#fa8  { width: 100px; height: 100px; background: radial-gradient(circle, rgba(255,60,160,0.22)  0%, transparent 65%); }
#fa9  { width: 20px;  height: 20px;  background: radial-gradient(circle, rgba(80,255,180,0.50)  0%, transparent 70%); }
#fa10 { width: 55px;  height: 55px;  background: radial-gradient(circle, rgba(160,60,255,0.26)  0%, transparent 70%); }

/* ── Fairy Lights ── */
#fairy-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  overflow: hidden;
}

.fairy {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

/* ── Logo Bubbles ── */
#bubble-layer { display: none; }

.logo-bubble {
  position: absolute;
  object-fit: contain;
  will-change: transform;
  filter: brightness(10);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #000000;
  --white:      #ffffff;
  --dark-blue:  #0F172A;
  --blue:       #3B82F6;
  --gold:       #F5C542;
  --gold-dark:  #D4AF37;
  --gold-deep:  #C9A227;
  --gold-grad:  linear-gradient(135deg, #D4AF37, #F5C542, #C9A227);
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter Tight', sans-serif;
  --nav-h:      72px;
  --radius:     8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }


body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.75;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  overflow: visible;
  border: none;
}


.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
}
.btn-gold:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,66,0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Stars Background ── */
.stars-bg {
  position: relative;
  overflow: hidden;
}
.stars-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 8%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 22%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 10%, rgba(245,197,66,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(245,197,66,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 64px;
  width: auto;
  border-radius: 4px;
}

.about-tagline {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-top: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  padding: 32px 24px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(15,23,42,0.9) 0%, #000 70%);
  padding-top: var(--nav-h);
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,66,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(245,197,66,0); }
}

.hero-eyebrow span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
}

/* Moonbeam visual element */
.hero-glow {
  position: absolute;
  top: 10%; right: -5%;
  width: 55vw; max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, rgba(15,23,42,0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ── Section Padding ── */
section { padding: 100px 0; }

/* ── Services ── */
#services { background: var(--dark-blue); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(245,197,66,0.2);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-head);
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ── About / Mission ── */
#about {
  background: var(--black);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.about-logo-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.moonbeam-quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  border-left: 3px solid var(--blue);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}

/* ── Portfolio ── */
#portfolio { background: var(--dark-blue); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,197,66,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.portfolio-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #0a0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-thumb .play-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
  z-index: 2;
}
.portfolio-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(59,130,246,0.5);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(0,0,0,0.4));
}

.portfolio-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold-grad);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.portfolio-info {
  padding: 20px 24px;
}
.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.portfolio-info p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

/* Client logo in thumb */
.thumb-logo {
  position: absolute;
  max-width: 55%;
  max-height: 45%;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  opacity: 0.2;
  z-index: 1;
  transition: opacity var(--transition);
}
.portfolio-card:hover .thumb-logo { opacity: 0.35; }

/* YouTube thumbnail background */
.thumb-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .thumb-bg { opacity: 0.45; }

/* Max Luxe association badge */
.maxluxe-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 6px 12px;
  z-index: 3;
}
.maxluxe-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.maxluxe-badge span {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* Video Modal */
#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#video-modal.open { display: flex; }
#video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  cursor: default;
}
#video-modal-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
#video-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
#video-modal-close:hover { color: #fff; }

/* Stars in thumb */
.thumb-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(245,197,66,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.5) 0%, transparent 100%);
}

/* ── Clients ── */
#clients {
  background: var(--white);
  padding: 80px 0;
}

.clients-title {
  text-align: center;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 48px;
}

.clients-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

.clients-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scrollLogos 56s linear infinite;
  align-items: center;
}
.clients-track:hover { animation-play-state: paused; }
@media (hover: none) {
  .clients-track:hover { animation-play-state: running; }
}

@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  min-width: 160px;
  flex-shrink: 0;
}
.client-logo-tci {
  height: 200px;
  min-width: 200px;
}
.client-logo-tci img {
  height: auto !important;
  max-width: none !important;
  object-fit: unset !important;
}

.client-logo-item img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--transition);
}
.client-logo-item img:hover {
  filter: grayscale(0) opacity(1);
}

/* Dark logos show as-is on white — no invert needed */
.client-logo-item.invert img {
  filter: grayscale(1) opacity(0.6);
}
.client-logo-item.invert img:hover {
  filter: grayscale(0) opacity(1);
}

/* ── Testimonials ── */
/* ── FAQ ── */
#faq { background: var(--black); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px 32px;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(245,197,66,0.25);
}

.faq-q {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .faq-grid { grid-template-columns: 1fr; }
}

#testimonials { background: var(--dark-blue); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
  margin-top: 56px;
}

/* ── Flip Cards ── */
.flip-card {
  perspective: 1000px;
  height: 420px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip-card:hover .flip-inner,
.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

@media (hover: none) {
  /* Hide lens flare on touch devices */
  #lens-flare { display: none; }
  .flip-hint { display: none; }

  /* Flip cards — tap handled by JS */
  .flip-card:hover .flip-inner {
    transform: none;
  }

  /* Process emojis — always visible */
  .process-emoji {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Portfolio — play button always visible */
  .portfolio-card .play-btn {
    opacity: 1;
  }
  .portfolio-overlay {
    background: linear-gradient(135deg, rgba(15,23,42,0.5), rgba(0,0,0,0.2));
  }
}

@media (max-width: 600px) {
  /* Testimonials — single column */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .flip-card {
    height: 380px;
  }

  /* About BTS — shorter rows on small screens */
  .bts-grid {
    grid-template-rows: 120px 120px;
  }

  /* Contact BTS — stack to single column */
  .contact-bts {
    grid-template-columns: 1fr;
  }
  .contact-bts-img {
    height: 200px;
  }

  /* Contact section — hide logo on mobile, save space */
  .contact-grid > div:first-child img {
    width: 240px;
  }

  /* Map wrap — tighter margins */
  .map-wrap {
    margin: 0 12px 28px;
  }
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.flip-front {
  background: rgba(255,255,255,0.04);
  gap: 12px;
  text-align: center;
}

.flip-back {
  background: rgba(15,23,42,0.98);
  border-color: rgba(245,197,66,0.2);
  transform: rotateY(180deg);
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
}

.flip-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,197,66,0.4);
  flex-shrink: 0;
}

.flip-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.flip-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.flip-co {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.flip-hint {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}

.stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--gold);
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  font-style: italic;
}

.quote-mark { display: none; }
.review-author { display: none; }
.author-name, .author-co, .author-avatar { display: none; }

/* ── Contact ── */
#contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.contact-info .section-sub { margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--white);
}
.contact-detail-text a:hover { color: var(--blue); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.social-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(59,130,246,0.08);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5C542' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,197,66,0.5);
  background: rgba(245,197,66,0.04);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Footer ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Footer logo link — only interactive on mobile */
.footer-logo-link {
  pointer-events: none;
  display: inline-block;
}

@media (hover: none) {
  .footer-logo-link {
    pointer-events: auto;
  }
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom .gold-text {
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .contact-grid > div:first-child { justify-content: center !important; }
  .contact-grid > div:first-child img { width: 260px; max-width: 80vw; }
  .contact-info { text-align: center; }
  .contact-detail { justify-content: center; }
  .social-row { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr !important; overflow: visible !important; border-radius: 12px; }
  .process-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .process-card:first-child { border-radius: 12px 12px 0 0; }
  .process-card:last-child { border-bottom: none; border-radius: 0 0 12px 12px; }
  #process .fade-up,
  #process .fade-up.visible { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .contact-form { padding: 28px 20px; }
}

/* ── Founder ── */
#founder { background: var(--dark-blue); }

.founder-intro {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto 0;
}

.founder-headshot {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.3);
}

.founder-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 600px) {
  .founder-intro {
    flex-direction: column;
    text-align: center;
  }
}

/* ── About BTS Grid ── */
.bts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}

.bts-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bts-tall {
  grid-row: span 2;
}


/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
#lightbox-close:hover { color: var(--white); }

[data-lightbox] {
  cursor: zoom-in;
}

/* ── Contact BTS Strip ── */
.contact-bts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 860px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-bts-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.video-embed {
  position: relative;
  z-index: 200;
  width: 100%;
  max-width: 900px;
  margin: 48px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.founder-thumb-wrap {
  cursor: pointer;
}
.founder-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.founder-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(59,130,246,0.6);
  transition: transform 0.2s, box-shadow 0.2s;
  padding-left: 4px;
}
.founder-thumb-wrap:hover .founder-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 32px rgba(59,130,246,0.8);
}
.founder-reel-title {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── Anti-Agency ── */
#anti-agency { background: var(--black); }

.anti-agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.anti-agency-difference {
  margin-top: 2.5rem;
  padding: 24px 28px;
  border-left: 3px solid var(--blue);
  background: rgba(59,130,246,0.04);
  border-radius: 0 8px 8px 0;
}

.anti-agency-difference p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.anti-agency-difference strong { color: var(--white); }

/* Trap Graphic */
.trap-graphic { position: relative; z-index: 200; }

.trap-card {
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.trap-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1b2a, #0a0f1a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.trap-ceo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Thought bubble */
.thought-bubble {
  position: absolute;
  top: -22%;
  left: 50%;
  z-index: 4;
  pointer-events: none;
}
.thought-text {
  background: #fff;
  color: #111;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  padding: 16px 36px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  white-space: nowrap;
  position: relative;
}
.thought-dot {
  display: block;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.td1 { width: 20px; height: 20px; bottom: -30px; left: 30%; }
.td2 { width: 14px; height: 14px; bottom: -50px; left: 24%; }
.td3 { width: 10px; height: 10px; bottom: -66px; left: 18%; }

.trap-thumb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%),
    linear-gradient(135deg, rgba(15,23,42,0.35) 0%, transparent 60%);
}

.trap-play {
  width: 52px; height: 52px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--black);
  z-index: 2;
  opacity: 0.9;
}

.trap-quality {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}

/* ── Anamorphic Streak ── */
#anamorphic-streak {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 2px;
  pointer-events: none;
  z-index: 9995;
  mix-blend-mode: screen;
  opacity: 0;
  background: linear-gradient(to right,
    transparent                    0%,
    rgba(140, 200, 255, 0.0)      10%,
    rgba(160, 215, 255, 0.55)     30%,
    rgba(200, 230, 255, 0.92)     44%,
    rgba(255, 255, 255, 1.00)     50%,
    rgba(200, 230, 255, 0.92)     56%,
    rgba(160, 215, 255, 0.55)     70%,
    rgba(140, 200, 255, 0.0)      90%,
    transparent                   100%);
  filter: blur(0.6px);
  box-shadow: 0 0 6px 1px rgba(160, 215, 255, 0.5);
}

/* ── Burst Particle Layer (above navbar) ── */
#burst-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1001;
}

/* ── Light Leak ── */
#light-leak {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  mix-blend-mode: screen;
  opacity: 0;
}

.trap-meta {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trap-filename {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.trap-uploaded {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.trap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trap-stat {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.trap-stat:last-child { border-right: none; }

.trap-stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 4px;
}

.trap-stat-label {
  font-size: 0.65rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trap-footer {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

.trap-status-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,80,80,0.6);
  flex-shrink: 0;
  animation: pulse-red 2.5s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,80,80,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(255,80,80,0); }
}

@media (max-width: 900px) {
  .anti-agency-grid { grid-template-columns: 1fr; gap: 48px; }
  .trap-graphic { display: none; }
}

/* ── Process ── */
#process { background: var(--dark-blue); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.process-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.process-card:last-child { border-right: none; }

.process-emoji {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px) scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.process-card:hover .process-emoji {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  margin-bottom: 20px;
  line-height: 1;
}

.process-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.process-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ── Final CTA ── */
#cta { background: var(--black); text-align: center; padding-top: 40px; }

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-logo {
  width: 420px;
  max-width: 90vw;
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
}

/* ── Divider ── */
.section-divider {
  width: 60px; height: 3px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin-bottom: 2rem;
}
