/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-bg-obsidian:    #F7F9FC;
  --color-bg-midnight:    #EEF3F8;
  --color-bg-navy:        #E2ECF5;
  --color-text-primary:   #0F172A;
  --color-text-secondary: #475569;
  --color-text-muted:     #64748B;
  --color-cyan:           #06B6D4;
  --color-cyan-rgb:       6, 182, 212;
  --color-cyan-glow:      #51E5FF;
  --color-cyan-glow-rgb:  81, 229, 255;
  --color-azure:          #2563EB;
  --color-azure-rgb:      37, 99, 235;
  --color-magenta:        #8B5CF6;
  --color-magenta-bright: #E95CFF;
  --color-error:          #F43F5E;
  --glow-cyan:            rgba(6, 182, 212, 0.2);
  --glow-magenta:         rgba(139, 92, 246, 0.15);
  --space-section:        120px;
  --space-inner:          64px;
  --space-content:        32px;
  --radius-sm:            18px;
  --radius-md:            24px;
  --radius-lg:            32px;
  --font-heading:         'Space Grotesk', sans-serif;
  --font-body:            'Inter', sans-serif;
  --max-width:            1280px;
  --header-height:        88px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-obsidian);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v1H0zM0 0h1v40H0z' fill='rgba(15,23,42,0.07)'/%3E%3C/svg%3E");
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-cyan);
  color: var(--color-bg-obsidian);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   SCROLL SENTINEL
   ============================================================ */
#scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 16px;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(81, 229, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.header-logo img {
  height: 56px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--color-cyan); }

.header-cta { margin-left: 16px; }

/* ---- Animated border keyframe ---- */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes btn-border-spin {
  to { --border-angle: 360deg; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;

  /* Spinning gradient border — 2-tone (cyan → azure), fill shows through padding-box */
  --border-angle: 0deg;
  --btn-bg: var(--color-bg-obsidian);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--btn-bg), var(--btn-bg)) padding-box,
    conic-gradient(
      from var(--border-angle),
      var(--color-cyan)  0%,
      var(--color-azure) 50%,
      var(--color-cyan)  100%
    ) border-box;
  animation: btn-border-spin 6s linear infinite;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  --btn-bg: var(--color-cyan);
  color: #0F172A;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.22), 0 2px 8px rgba(6, 182, 212, 0.1);
}


.btn-ghost {
  color: var(--color-text-secondary);
}
.btn-ghost:hover {
  color: var(--color-text-primary);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    animation: none;
    background:
      linear-gradient(var(--btn-bg), var(--btn-bg)) padding-box,
      linear-gradient(135deg, var(--color-cyan), var(--color-azure)) border-box;
  }
  .hero-bg-video { animation-play-state: paused; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav close button */
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 1;
}
.mobile-nav-close:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-cyan);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--color-cyan); }
.mobile-nav-cta { margin-top: 8px; }

/* Responsive: show hamburger */
@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Full-bleed background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-video--mobile { display: none; }

@media (max-width: 768px) {
  .hero-bg-video--desktop { display: none; }
  .hero-bg-video--mobile { display: block; }
}


.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  /* Override .container centering — hug the left edge */
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(24px, 5vw, 60px);
  padding-right: clamp(24px, 5vw, 60px);
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero content */
.hero-content { display: flex; flex-direction: column; gap: 28px; max-width: 580px; }

/* CTA — horizontal row below the text */
.hero-cta-col {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-col .btn {
  padding: 14px 36px;
  font-size: 0.95rem;
}
.hero-cta-col .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  --btn-bg: rgba(4, 7, 13, 0.4);
}
.hero-cta-col .btn-ghost:hover {
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(81, 229, 255, 0.1);
}

.hero-label { color: var(--color-cyan); margin-bottom: 0; }

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.headline-accent {
  color: var(--color-cyan);
  text-shadow: 0 0 40px rgba(81, 229, 255, 0.5);
}

.hero-body {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-row .btn { padding: 14px 32px; font-size: 0.95rem; }

.hero-cta-row .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  --btn-bg: rgba(4, 7, 13, 0.4);
}
.hero-cta-row .btn-ghost:hover {
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(81, 229, 255, 0.1);
}

.hero-trust {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

/* Background accents — sit above overlay, below content */
.hero-bg-cyan, .hero-bg-magenta {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 2;
}
.hero-bg-cyan {
  width: 600px; height: 500px;
  left: -100px; top: 10%;
  background: rgba(81, 229, 255, 0.06);
}
.hero-bg-magenta {
  width: 400px; height: 350px;
  right: 0; top: 0;
  background: rgba(233, 92, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content { max-width: 100%; }
  .hero-body { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-cta-col { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-col .btn { text-align: center; }
  .hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-row .btn { text-align: center; }
  .svc-hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .svc-hero-cta-row .btn { text-align: center; }
}

/* ============================================================
   CAPABILITY STRIP
   ============================================================ */
.capability-strip {
  border-top: 1px solid rgba(81, 229, 255, 0.1);
  border-bottom: 1px solid rgba(81, 229, 255, 0.1);
  background: rgba(7, 17, 31, 0.8);
  padding: 0 40px;
  overflow-x: auto;

}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 80px;
  white-space: nowrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

.strip-item {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(81, 229, 255, 0.4);
  flex-shrink: 0;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-inner);
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-body {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: var(--space-section) 0;
}

/* Video background variant */
.services-section.has-video-bg .container { position: relative; z-index: 2; }
.services-section.has-video-bg .section-label { color: var(--color-cyan); }
.services-section.has-video-bg .section-headline { color: #fff; }
.services-section.has-video-bg .section-body { color: rgba(255,255,255,0.72); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Card shell ---- */
.service-card {
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

/* Top accent bar — service-specific gradients via nth-child */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-azure));
  opacity: 0.45;
  transition: opacity 0.25s ease;
}
.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--color-magenta), var(--color-azure));
}
.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--color-azure), var(--color-cyan));
}
.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--color-magenta), var(--color-cyan));
}

/* Hover lift */
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(81, 229, 255, 0.25);
  box-shadow: 0 16px 56px rgba(81, 229, 255, 0.12);
}
.service-card:hover::before { opacity: 1; }

.service-card:nth-child(2):hover,
.service-card:nth-child(4):hover {
  border-color: rgba(233, 92, 255, 0.22);
  box-shadow: 0 16px 56px rgba(233, 92, 255, 0.1);
}

/* ---- Service image ---- */
.service-img-wrap {
  width: 70%;
  margin: 0 auto 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-img { transform: scale(1.04); }

/* ---- Card title row: title + number ---- */
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

/* Service number badge */
.service-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  opacity: 0.45;
  line-height: 1;
  padding-top: 4px;
}

/* ---- Card content ---- */
.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-body {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-cyan);
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover {
  opacity: 0.85;
  transform: translateX(3px);
}
.service-card:nth-child(2) .service-link,
.service-card:nth-child(4) .service-link {
  color: var(--color-magenta);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SELECTED WORK
   ============================================================ */
.work-section { padding: var(--space-section) 0; }

.work-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 229, 255, 0.08);
  overflow: hidden;
  background: rgba(7, 17, 31, 0.8);
  transition: border-color 0.2s ease;
  cursor: pointer;
}
.work-card:hover { border-color: rgba(81, 229, 255, 0.2); }

.work-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 500px;
}

.work-card--small {
  grid-column: 2 / 3;
  min-height: 238px;
}

/* Real image fill */
.work-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
  display: block;
}

.work-card:hover .work-card-img {
  transform: scale(1.04);
}


.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 28px;
  background: linear-gradient(to top,
    rgba(4,7,13,0.97) 0%,
    rgba(4,7,13,0.85) 35%,
    rgba(4,7,13,0.3) 70%,
    transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.work-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.work-link { margin-top: 4px; }

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .work-card--large { grid-column: 1; grid-row: auto; min-height: 340px; }
  .work-card--small { grid-column: 1; grid-row: auto; min-height: 220px; }
}

/* ============================================================
   WHY FLUXGRID
   ============================================================ */
.why-section { padding: var(--space-section) 0; }

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

.why-left { display: flex; flex-direction: column; gap: 20px; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advantage-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(81, 229, 255, 0.08);
}
.advantage-block:first-child { padding-top: 0; }
.advantage-block:last-child { border-bottom: none; padding-bottom: 0; }

.advantage-marker {
  display: block;
  width: 4px;
  height: 24px;
  background: var(--color-cyan);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
  box-shadow: 0 0 10px var(--glow-cyan);
}

.advantage-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.advantage-body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: var(--space-section) 0; }

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-line {
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(81,229,255,0.2) 20%, rgba(81,229,255,0.2) 80%, transparent);
  pointer-events: none;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px;
  background: rgba(7, 17, 31, 0.6);
  border: 1px solid rgba(81, 229, 255, 0.08);
  border-radius: var(--radius-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-cyan);
  text-shadow: 0 0 20px rgba(81,229,255,0.4);
  line-height: 1;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.step-body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-track .process-step:nth-child(5),
  .process-track .process-step:nth-child(6) {
    grid-column: span 1;
  }
  .process-line { display: none; }
}

@media (max-width: 480px) {
  .process-track { grid-template-columns: 1fr; }
}

/* ============================================================
   STUDIO PHILOSOPHY
   ============================================================ */
.philosophy-section { padding: var(--space-section) 0; }

.philosophy-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  align-items: center;
}

.philosophy-frame {
  border-radius: var(--radius-md);
  border: 1px solid rgba(81, 229, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(81,229,255,0.06);
}
.philosophy-frame img { width: 100%; height: auto; display: block; }

.philosophy-content { display: flex; flex-direction: column; gap: 24px; }

.philosophy-quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-cyan);
  border-left: 3px solid var(--color-cyan);
  padding-left: 20px;
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* --- Hero --- */
.about-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.about-hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}

.about-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}
.about-stat:first-child { padding-left: 0; }

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.about-stat-label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.about-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(81, 229, 255, 0.18);
  flex-shrink: 0;
}

/* --- Story section --- */
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-body-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--color-text-secondary);
  line-height: 1.78;
  margin-top: 24px;
}

.about-story-callout {
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 28px;
}

.about-story-callout-quote {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 20px;
}

.about-story-callout-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-story-callout-name {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-cyan);
}

.about-story-callout-title {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.about-story-detail {
  display: flex;
  flex-direction: column;
}

.about-story-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(81, 229, 255, 0.1);
  font-size: 0.875rem;
  gap: 16px;
}
.about-story-detail-item:last-child { border-bottom: none; }

.about-story-detail-label { color: var(--color-text-muted); flex-shrink: 0; }
.about-story-detail-value { color: var(--color-text-primary); font-weight: 500; text-align: right; }

/* --- Philosophy strip --- */
.about-philosophy-strip {
  background: linear-gradient(135deg, #0B1222 0%, #0F2040 100%);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.about-philosophy-strip::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.about-philosophy-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 28px;
}

.about-philosophy-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
  color: #EAF7FF;
  max-width: 860px;
  border-left: 2px solid var(--color-cyan);
  padding-left: 32px;
  margin: 0;
}

/* --- Work "see all" link --- */
.about-work-more {
  text-align: center;
  margin-top: 52px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-stat { padding: 0 28px; }
}

@media (max-width: 640px) {
  .about-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .about-stat { padding: 0; }
  .about-stat-divider { width: 40px; height: 1px; }
  .about-philosophy-statement { padding-left: 20px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  padding: var(--space-section) 0;
  background-image: url('../assets/hero/checkered-fluxgrid-logo-hero.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta-panel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 64px;
  background: rgba(11, 28, 51, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(81, 229, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px var(--glow-cyan), 0 40px 80px rgba(0,0,0,0.3);
  text-align: center;
  overflow: hidden;
}

.cta-magenta-accent {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233,92,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-body {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn { padding: 14px 32px; font-size: 0.95rem; }

@media (max-width: 600px) {
  .cta-panel { padding: 48px 28px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--color-bg-obsidian);
  border-top: 1px solid rgba(81, 229, 255, 0.08);
  padding: 80px 0 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2020/svg'%3E%3Cpath d='M0 0h40v1H0zM0 0h1v40H0z' fill='rgba(81,229,255,0.07)'/%3E%3C/svg%3E");
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(81, 229, 255, 0.06);
  margin-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-mark { height: 52px; width: auto; object-fit: contain; }

.footer-statement {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--color-cyan); }

.footer-avail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-cta-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-cyan);
  transition: opacity 0.2s;
  align-self: flex-start;
}
.footer-cta-link:hover { opacity: 0.7; }

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.footer-bar-links {
  display: flex;
  gap: 20px;
}
.footer-bar-links .footer-copy {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-more {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; text-align: center; }
}

/* ============================================================
   GLOBAL RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-section: 80px;
    --space-inner:   40px;
  }

  .container { padding: 0 24px; }
  .section-intro { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  :root { --space-section: 64px; }
  .container { padding: 0 16px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: var(--space-section);
  min-height: 100vh;
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ---- Left info column ---- */
.contact-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-sub {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* Process steps */
.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-step-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  min-width: 28px;
  padding-top: 3px;
}

.contact-step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-step-desc {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Availability badge */
.contact-avail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(81, 229, 255, 0.05);
  border: 1px solid rgba(81, 229, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.contact-avail strong { color: var(--color-text-primary); }

.contact-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--glow-cyan);
  flex-shrink: 0;
}

/* Trust bar */
.contact-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.trust-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* Contact reach (email + location) */
.contact-reach {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(81, 229, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-reach-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-reach-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-reach-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

a.contact-reach-value {
  color: var(--color-cyan);
  transition: opacity 0.2s ease;
}

a.contact-reach-value:hover { opacity: 0.8; }

/* Contact hours block */
.contact-hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-hours > .contact-reach-label {
  margin-bottom: 12px;
  display: block;
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
}

.contact-hours-day {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.contact-hours-time {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

/* Embedded map with animated border */
.contact-map-wrap {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  --border-angle: 0deg;
  border: 2px solid transparent;
  background:
    linear-gradient(rgb(7,17,31), rgb(7,17,31)) padding-box,
    conic-gradient(
      from var(--border-angle),
      var(--color-cyan)  0%,
      var(--color-azure) 50%,
      var(--color-cyan)  100%
    ) border-box;
  animation: btn-border-spin 6s linear infinite;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(81, 229, 255, 0.12);
}

/* ---- Right form panel ---- */
.contact-form-panel {
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-form-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-hb-wrap { margin: 0 -48px -48px; }
.contact-hb-iframe { width: 100%; height: 720px; border: none; display: block; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.form-input {
  background: rgba(4, 7, 13, 0.6);
  border: 1px solid rgba(81, 229, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder { color: var(--color-text-muted); }
.form-input:focus {
  border-color: rgba(81, 229, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(81, 229, 255, 0.08);
  outline: none;
}

.form-select { cursor: pointer; appearance: none; }
.form-textarea { resize: vertical; min-height: 130px; }

.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  margin-top: 4px;
  font-size: 0.95rem;
}

.hidden { display: none; }

/* ---- Logo upload zone ---- */
.form-label-optional {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.78rem;
}

.upload-zone {
  border: 2px dashed rgba(81, 229, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
  user-select: none;
}
.upload-zone:hover {
  border-color: rgba(81, 229, 255, 0.4);
  background: rgba(81, 229, 255, 0.03);
}
.upload-zone.drag-over {
  border-color: var(--color-cyan);
  border-style: solid;
  background: rgba(81, 229, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(81, 229, 255, 0.08);
}
.upload-zone.has-file {
  border-style: solid;
  border-color: rgba(81, 229, 255, 0.25);
  background: rgba(81, 229, 255, 0.04);
  cursor: default;
}
.upload-zone.upload-error-state {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.04);
}

.upload-input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  color: var(--color-text-muted);
  margin: 0 auto 12px;
  display: block;
  transition: color 0.2s;
}
.upload-zone:hover .upload-icon,
.upload-zone.drag-over .upload-icon { color: var(--color-cyan); }

.upload-prompt {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.upload-sub {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.upload-browse {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.upload-formats {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.upload-preview {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-secondary);
}
.upload-zone.has-file .upload-preview { display: flex; }
.upload-zone.has-file .upload-idle    { display: none; }
.upload-filename {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-remove {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.upload-remove:hover {
  background: rgba(233, 92, 255, 0.15);
  border-color: rgba(233, 92, 255, 0.3);
  color: var(--color-magenta);
}

.upload-error {
  font-size: 0.78rem;
  color: var(--color-error);
  margin-top: 8px;
  display: none;
}
.upload-zone.upload-error-state .upload-error { display: block; }

/* ---- Color palette picker ---- */
.form-label-hint {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.78rem;
}

.palette-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.color-picker { position: relative; }

.color-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(4, 7, 13, 0.6);
  border: 1px solid rgba(81, 229, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.color-picker-trigger:focus {
  border-color: rgba(81, 229, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(81, 229, 255, 0.08);
  outline: none;
}
.color-picker-trigger[aria-expanded="true"] {
  border-color: rgba(81, 229, 255, 0.4);
}
.color-picker-trigger[aria-expanded="true"] .cp-arrow {
  transform: rotate(180deg);
}

.cp-swatch {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: background 0.15s;
}

.cp-text { flex: 1; }
.cp-text.is-selected { color: var(--color-text-primary); }

.cp-arrow {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Dropdown list */
.color-picker-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 200px;
  background: rgba(7, 17, 31, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(81, 229, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 6px;
  list-style: none;
  z-index: 200;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.color-picker-list.open { display: block; }

.color-picker-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: background 0.15s, color 0.15s;
}
.color-picker-list li:hover {
  background: rgba(81, 229, 255, 0.08);
  color: var(--color-text-primary);
}
.color-picker-list li[aria-selected="true"] {
  background: rgba(81, 229, 255, 0.1);
  color: var(--color-text-primary);
}

.cp-option-swatch {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .palette-row { grid-template-columns: 1fr; }
  .color-picker-list { min-width: 0; }
}

/* ============================================================
   INTAKE FORM PAGE
   ============================================================ */
.intake-main { padding-top: var(--header-height); padding-bottom: 80px; min-height: 100vh; }

/* ---- Intake: video background overrides ---- */
.intake-main.has-video-bg .intake-page-header,
.intake-main.has-video-bg .intake-wrap { position: relative; z-index: 2; }
.intake-main.has-video-bg .section-label { color: var(--color-cyan); }
.intake-main.has-video-bg .intake-page-title { color: #fff; }
.intake-main.has-video-bg .headline-accent { color: var(--color-cyan); text-shadow: 0 0 40px rgba(81,229,255,0.45); }
.intake-main.has-video-bg .intake-page-sub { color: rgba(255,255,255,0.72); }
.intake-main.has-video-bg .intake-step-counter { color: var(--color-cyan); }
.intake-main.has-video-bg .intake-progress-track { background: rgba(81,229,255,0.12); }
.intake-main.has-video-bg .intake-form {
  --border-angle: 0deg;
  border: 2px solid transparent;
  background:
    linear-gradient(rgb(7,17,31), rgb(7,17,31)) padding-box,
    conic-gradient(
      from var(--border-angle),
      var(--color-cyan)  0%,
      var(--color-azure) 50%,
      var(--color-cyan)  100%
    ) border-box;
  animation: btn-border-spin 6s linear infinite;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.intake-main.has-video-bg .intake-nav { border-top-color: rgba(81,229,255,0.1); }
.intake-main.has-video-bg .intake-step .step-title { color: #EAF7FF; }
.intake-main.has-video-bg .step-intro { color: rgba(184,210,232,0.72); }
.intake-main.has-video-bg .form-label { color: rgba(234,247,255,0.88); }
.intake-main.has-video-bg .form-hint,
.intake-main.has-video-bg .form-label-hint { color: rgba(184,210,232,0.55); }
.intake-main.has-video-bg .field-required { color: rgba(248,113,113,0.85); }
.intake-main.has-video-bg .field-optional { color: rgba(184,210,232,0.42); }

.intake-main.has-video-bg .radio-label {
  border-color: rgba(81,229,255,0.15);
  color: rgba(184,210,232,0.78);
}
.intake-main.has-video-bg .intake-radio-option:has(input:checked) .radio-label {
  background: rgba(6,182,212,0.12);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.intake-main.has-video-bg .intake-radio-group.is-invalid .radio-label { border-color: rgba(244,63,94,0.4); }
.intake-main.has-video-bg .checkbox-label {
  border-color: rgba(81,229,255,0.15);
  color: rgba(184,210,232,0.78);
}
.intake-main.has-video-bg .intake-checkbox-option:has(input:checked) .checkbox-label {
  background: rgba(6,182,212,0.12);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.intake-main.has-video-bg .intake-checkbox-group.is-invalid .checkbox-label { border-color: rgba(244,63,94,0.4); }
.intake-main.has-video-bg .intake-extra-block {
  background: rgba(6,182,212,0.04);
  border-color: rgba(81,229,255,0.1);
}
.intake-main.has-video-bg .extra-block-label { color: rgba(184,210,232,0.65); }
.intake-main.has-video-bg .intake-confirm-row {
  background: rgba(6,182,212,0.04);
  border-color: rgba(81,229,255,0.1);
}
.intake-main.has-video-bg .intake-confirm-text { color: rgba(234,247,255,0.85); }
.intake-main.has-video-bg .upload-zone {
  border-color: rgba(81,229,255,0.2);
  background: rgba(4,7,13,0.25);
}
.intake-main.has-video-bg .upload-zone:hover {
  border-color: rgba(81,229,255,0.4);
  background: rgba(81,229,255,0.03);
}
.intake-main.has-video-bg .upload-prompt { color: rgba(184,210,232,0.85); }
.intake-main.has-video-bg .upload-sub { color: rgba(184,210,232,0.55); }
.intake-main.has-video-bg .upload-formats { color: rgba(184,210,232,0.45); }
.intake-main.has-video-bg .upload-browse { color: var(--color-cyan); }


.intake-page-header {
  text-align: center;
  padding: 80px 0 48px;
}

.intake-page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.intake-page-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.intake-wrap { max-width: 820px; margin: 0 auto; }

/* Progress bar */
.intake-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.intake-step-counter {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.intake-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(81, 229, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.intake-progress-fill {
  height: 100%;
  width: 12.5%;
  background: linear-gradient(to right, var(--color-cyan), var(--color-azure));
  border-radius: 2px;
  transition: width 0.45s ease;
}

/* Form card */
.intake-form {
  background: rgba(11, 28, 51, 0.5);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  backdrop-filter: blur(12px);
}

/* Steps */
.intake-step { display: none; }

.intake-step.active {
  display: block;
  animation: intakeStepIn 0.35s ease forwards;
}

.intake-step.active.slide-back {
  animation: intakeStepBack 0.35s ease forwards;
}

@keyframes intakeStepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes intakeStepBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Step header */
.step-header { margin-bottom: 36px; }

.intake-step .step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.step-intro {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* Step fields container */
.step-fields { display: flex; flex-direction: column; gap: 24px; }

/* Field annotations */
.field-required { color: var(--color-cyan); font-size: 0.85em; margin-left: 1px; }
.field-optional  { color: var(--color-text-muted); font-weight: 400; font-size: 0.8em; }

/* Form hint below field */
.form-hint {
  font-size: 0.77rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Inline field error */
.field-error {
  font-size: 0.77rem;
  color: var(--color-error);
  margin-top: 4px;
}

.form-input.is-invalid {
  border-color: rgba(244, 63, 94, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.07) !important;
}

/* Pill radio buttons */
.intake-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intake-radio-option { display: flex; }

.intake-radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.radio-label {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(81, 229, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--color-text-secondary);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
}

.intake-radio-option:has(input:checked) .radio-label {
  background: rgba(81, 229, 255, 0.1);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.intake-radio-option:has(input:focus-visible) .radio-label {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.intake-radio-group.is-invalid .radio-label { border-color: rgba(244, 63, 94, 0.35); }

/* Pill checkbox buttons */
.intake-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intake-checkbox-option { display: flex; }

.intake-checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkbox-label {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(81, 229, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--color-text-secondary);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
}

.intake-checkbox-option:has(input:checked) .checkbox-label {
  background: rgba(81, 229, 255, 0.1);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.intake-checkbox-option:has(input:focus-visible) .checkbox-label {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.intake-checkbox-group.is-invalid .checkbox-label { border-color: rgba(244, 63, 94, 0.3); }

/* Conditional reveal */
.intake-reveal {
  display: none;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.intake-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service-specific extra block */
.intake-extra-block {
  background: rgba(81, 229, 255, 0.03);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.extra-block-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
}

/* Stacked URL fields (reference sites) */
.intake-url-list { display: flex; flex-direction: column; gap: 8px; }

/* Confirmation checkbox row */
.intake-confirm-row {
  padding: 20px;
  background: rgba(81, 229, 255, 0.03);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-sm);
}

.intake-confirm-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.intake-confirm-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--color-cyan);
  cursor: pointer;
}

.intake-confirm-text {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Step navigation */
.intake-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(81, 229, 255, 0.08);
}

.intake-nav-right { display: flex; gap: 12px; }

.intake-prev   { min-width: 110px; }
.intake-next,
.intake-submit { min-width: 160px; justify-content: center; }

/* Date input dark mode */
input[type="date"].form-input { color-scheme: light; }

/* Upload zones inside intake */
.intake-upload { margin: 0; }

@media (max-width: 900px) {
  .intake-form { padding: 40px 32px; }
}

@media (max-width: 600px) {
  .intake-form { padding: 32px 20px; }
  .intake-progress-wrap { gap: 10px; }
  .intake-nav { flex-direction: column; gap: 12px; align-items: stretch; }
  .intake-nav-right { justify-content: stretch; }
  .intake-next, .intake-submit { flex: 1; }
  .intake-prev { width: 100%; justify-content: center; }
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.thankyou-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--header-height) 0 80px;
}

.thankyou-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(81, 229, 255, 0.08);
  border: 1px solid rgba(81, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--color-cyan);
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.thankyou-body {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 12px;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ---- Domain toggle ---- */
.domain-toggle {
  display: flex;
  background: rgba(4, 7, 13, 0.6);
  border: 1px solid rgba(81, 229, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.domain-toggle-option { display: flex; }

.domain-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.domain-toggle-btn {
  display: block;
  padding: 9px 22px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
  border-right: 1px solid rgba(81, 229, 255, 0.12);
}

.domain-toggle-option:last-child .domain-toggle-btn { border-right: none; }

.domain-toggle-option:has(.domain-radio:checked) .domain-toggle-btn {
  background: rgba(81, 229, 255, 0.1);
  color: var(--color-cyan);
}

.domain-toggle-option:has(.domain-radio:focus-visible) .domain-toggle-btn {
  outline: 2px solid var(--color-cyan);
  outline-offset: -2px;
}

/* ---- Domain reveal ---- */
#domain-reveal {
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#domain-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-panel { position: static; padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* ---- Services Hero ---- */
.srv-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.srv-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.srv-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 13, 0.62);
  z-index: 1;
}

.srv-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.srv-hero-card {
  background: rgba(7, 17, 31, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(81, 229, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(81, 229, 255, 0.07), inset 0 1px 0 rgba(255,255,255,0.04);
}

.srv-hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.srv-hero-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(81, 229, 255, 0.06);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.srv-hero-list-item:last-child { border-bottom: none; }
.srv-hero-list-item:hover { color: var(--color-text-primary); padding-left: 4px; }

.srv-list-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  min-width: 20px;
  flex-shrink: 0;
}

.srv-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(81, 229, 255, 0.1);
}

.srv-avail-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.srv-avail-text strong { color: var(--color-text-primary); }

/* srv-hero-inner is single-column at all breakpoints */
.srv-hero-inner .hero-content { align-items: center; }
.srv-hero-inner .hero-cta-row { justify-content: center; }
.srv-hero-inner .hero-body { max-width: 640px; }

/* ---- Capability Intro ---- */
.srv-capability-intro {
  padding: var(--space-section) 0;
  background: rgba(7, 17, 31, 0.45);
  border-top: 1px solid rgba(81, 229, 255, 0.07);
  border-bottom: 1px solid rgba(81, 229, 255, 0.07);
}

.section-intro .srv-intro-wide { max-width: 800px; }

/* ---- 8-card grid ---- */
.srv-grid-8 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
  .srv-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .srv-grid-8 { grid-template-columns: 1fr; }
}

/* Compact card (no image) */
.srv-card-compact { gap: 16px; }

.srv-card-for {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.55;
}

/* Extended nth-child top accent colors for 8 cards */
.service-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--color-magenta), var(--color-azure));
}
.service-card:nth-child(7)::before {
  background: linear-gradient(90deg, var(--color-azure), var(--color-cyan));
}
.service-card:nth-child(8)::before {
  background: linear-gradient(90deg, var(--color-magenta), var(--color-cyan));
}

.service-card:nth-child(6):hover,
.service-card:nth-child(8):hover {
  border-color: rgba(233, 92, 255, 0.22);
  box-shadow: 0 16px 56px rgba(233, 92, 255, 0.1);
}

.service-card:nth-child(6) .service-link,
.service-card:nth-child(8) .service-link {
  color: var(--color-magenta);
}

/* ---- Expanded Services ---- */
.srv-expanded {
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
}

.srv-expanded--alt {
  background: rgba(7, 17, 31, 0.4);
}

.srv-expanded-inner {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: 80px;
  align-items: start;
}

.srv-expanded-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.srv-expanded-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.srv-expanded-body {
  color: var(--color-text-secondary);
  font-size: 0.975rem;
  line-height: 1.75;
}

.srv-who {
  background: rgba(81, 229, 255, 0.04);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.srv-who-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.srv-who-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.srv-expanded-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.srv-why-cta { align-self: flex-start; margin-top: 8px; }

.srv-expanded-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-detail-block {
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
}

.srv-expanded--alt .srv-detail-block {
  background: rgba(4, 7, 13, 0.65);
}

.srv-detail-block-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.srv-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.srv-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.srv-includes-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px rgba(81, 229, 255, 0.4);
  flex-shrink: 0;
  margin-top: 8px;
}

.srv-why-matters {
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid rgba(81, 229, 255, 0.4);
  padding-left: 20px;
  margin: 0;
}

.srv-outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-outcomes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  line-height: 1.55;
}

.srv-outcomes-item::before {
  content: '✓';
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 960px) {
  .srv-expanded-inner { grid-template-columns: 1fr; gap: 40px; }
  .srv-expanded-meta { position: static; }
}

/* ---- 6-step process override ---- */
.process-track--six { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1100px) {
  .process-track--six { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .process-track--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-track--six { grid-template-columns: 1fr; }
}

/* ---- Engagement Tiers ---- */
.engagement-section {
  padding: var(--space-section) 0;
  background: transparent;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.engagement-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.engagement-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 13, 0.62);
  z-index: 1;
}

/* Engagement section — always dark (video background), text + card overrides */
.engagement-section .section-headline { color: #ffffff; }
.engagement-section .section-body { color: rgba(255, 255, 255, 0.72); }
.engagement-section .engagement-tier { color: rgba(255, 255, 255, 0.48); }
.engagement-section .engagement-title { color: #fff; }
.engagement-section .engagement-price-from { color: rgba(255, 255, 255, 0.48); }
.engagement-section .engagement-price-amount { color: #fff; }
.engagement-section .engagement-card--featured .engagement-price-amount { color: var(--color-cyan); }
.engagement-section .engagement-desc { color: rgba(255, 255, 255, 0.72); }
.engagement-section .engagement-best-for { color: rgba(255, 255, 255, 0.65); border-color: rgba(81, 229, 255, 0.1); background: rgba(255, 255, 255, 0.04); }
.engagement-section .engagement-best-for strong { color: rgba(255, 255, 255, 0.48); }
.engagement-section .engagement-includes-item { color: rgba(255, 255, 255, 0.72); }

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-inner);
  align-items: stretch;
}

.engagement-card {
  background: rgba(7, 17, 31, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.engagement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-azure));
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.engagement-card:hover {
  transform: translateY(-6px);
  border-color: rgba(81, 229, 255, 0.22);
  box-shadow: 0 16px 56px rgba(81, 229, 255, 0.1);
}
.engagement-card:hover::before { opacity: 1; }

.engagement-card--featured {
  border-color: rgba(81, 229, 255, 0.22);
  box-shadow: 0 0 50px rgba(81, 229, 255, 0.09);
}
.engagement-card--featured::before { opacity: 0.75; }

.engagement-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(81, 229, 255, 0.1);
  border: 1px solid rgba(81, 229, 255, 0.2);
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  align-self: flex-start;
}

.engagement-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.engagement-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.engagement-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.engagement-best-for {
  padding: 14px 16px;
  background: rgba(81, 229, 255, 0.04);
  border: 1px solid rgba(81, 229, 255, 0.08);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.engagement-best-for strong {
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
}

.engagement-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.engagement-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.845rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.engagement-includes-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 7px;
}

.engagement-cta {
  margin-top: auto;
}

.engagement-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
}

@media (max-width: 900px) {
  .engagement-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Service preview modules (slim overview cards on services.html) ---- */
.srv-previews-section {
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
}

.srv-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--space-inner);
}

.srv-preview-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.srv-preview-card:hover {
  border-color: rgba(81, 229, 255, 0.2);
  box-shadow: 0 8px 40px rgba(81, 229, 255, 0.07);
}

.srv-preview-meta {
  padding: 36px 36px;
  border-right: 1px solid rgba(81, 229, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.srv-preview-num {
  font-family: var(--font-heading);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-cyan);
  text-transform: uppercase;
}

.srv-preview-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}

.srv-preview-desc {
  font-size: 0.865rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.srv-preview-detail {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.srv-preview-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.srv-preview-list-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.835rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.srv-preview-list-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 6px rgba(81, 229, 255, 0.4);
  flex-shrink: 0;
  margin-top: 6px;
}

.srv-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
}

.srv-preview-price {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-cyan);
}

.srv-preview-price-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 3px;
}

@media (max-width: 900px) {
  .srv-preview-card { grid-template-columns: 1fr; }
  .srv-preview-meta { border-right: none; border-bottom: 1px solid rgba(81, 229, 255, 0.08); padding-bottom: 24px; }
}

@media (max-width: 600px) {
  .srv-preview-meta, .srv-preview-detail { padding: 24px 20px; }
  .srv-preview-list { grid-template-columns: 1fr; }
}

/* ---- Service card pricing ---- */
.srv-card-price {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
}

.srv-price-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
}

.srv-price-value {
  font-size: 0.845rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-cyan);
}

/* ---- Engagement tier pricing ---- */
.engagement-price { margin-bottom: 2px; }

.engagement-price-from {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 6px;
}

.engagement-price-amount {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  line-height: 1;
}

.engagement-card--featured .engagement-price-amount { color: var(--color-cyan); }

/* ---- Footer 5-column modifier (services pages) ---- */
.footer-inner--five {
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
}

@media (max-width: 1050px) {
  .footer-inner--five { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner--five { grid-template-columns: 1fr; }
}

/* ============================================================
   INDIVIDUAL SERVICE PAGES  (services/*.html)
   ============================================================ */

/* ---- Breadcrumb ---- */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.svc-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.svc-breadcrumb a:hover { color: var(--color-text-secondary); }

.svc-breadcrumb-sep { color: rgba(110, 137, 166, 0.4); font-size: 0.68rem; }
.svc-breadcrumb-current { color: var(--color-text-secondary); }

/* ---- Service page hero ---- */
.svc-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
}

.svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(81, 229, 255, 0.07);
  border: 1px solid rgba(81, 229, 255, 0.18);
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  margin-bottom: 28px;
}

.svc-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px rgba(81, 229, 255, 0.6);
  flex-shrink: 0;
}

.svc-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.svc-hero-sub {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 36px;
}

.svc-hero-meta {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(7, 17, 31, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-sm);
  width: fit-content;
}

.svc-hero-meta-item { display: flex; flex-direction: column; gap: 5px; }

.svc-meta-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
}

.svc-meta-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.svc-meta-value--price { color: var(--color-cyan); font-size: 1.1rem; }

.svc-hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.svc-hero-cta-row .btn { padding: 14px 36px; font-size: 0.95rem; }
.svc-hero-cta-row .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  --btn-bg: rgba(4, 7, 13, 0.4);
}
.svc-hero-cta-row .btn-ghost:hover {
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(81, 229, 255, 0.1);
}

/* ---- Shared page-hero video background ---- */
.has-video-bg {
  position: relative !important;
  overflow: hidden;
}

.page-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 10, 24, 0.82) 0%,
    rgba(6, 10, 24, 0.60) 100%
  );
  z-index: 1;
}

/* About hero video */
.about-hero.has-video-bg .hero-bg-cyan,
.about-hero.has-video-bg .hero-bg-magenta { z-index: 2; opacity: 0.5; }
.about-hero.has-video-bg .about-hero-inner { z-index: 3; }
.about-hero.has-video-bg .about-h1         { color: #fff; }
.about-hero.has-video-bg .headline-accent  { color: var(--color-cyan); text-shadow: 0 0 40px rgba(81, 229, 255, 0.45); }
.about-hero.has-video-bg .about-hero-sub   { color: rgba(255, 255, 255, 0.78); }
.about-hero.has-video-bg .about-stat-value { color: #fff; }
.about-hero.has-video-bg .about-stat-label { color: rgba(255, 255, 255, 0.60); }
.about-hero.has-video-bg .about-stat-divider { background: rgba(255, 255, 255, 0.14); }

/* Legal hero video (FAQ, Terms & Conditions, Policy & Procedures) */
.legal-hero.has-video-bg .legal-hero-inner { z-index: 3; }
.legal-hero.has-video-bg .legal-h1         { color: #fff; }
.legal-hero.has-video-bg .legal-hero-meta  { color: rgba(255, 255, 255, 0.60); }

/* Contact main video */
.contact-main.has-video-bg .contact-layout  { position: relative; z-index: 2; }
.contact-main.has-video-bg .section-label   { color: var(--color-cyan); }
.contact-main.has-video-bg .contact-headline { color: #fff; }
.contact-main.has-video-bg .headline-accent  { color: var(--color-cyan); text-shadow: 0 0 40px rgba(81, 229, 255, 0.45); }
.contact-main.has-video-bg .contact-sub      { color: rgba(255, 255, 255, 0.78); }
.contact-main.has-video-bg .contact-step-num   { color: var(--color-cyan); }
.contact-main.has-video-bg .contact-step-title { color: #fff; }
.contact-main.has-video-bg .contact-step-desc  { color: rgba(255, 255, 255, 0.68); }
.contact-main.has-video-bg .contact-avail p    { color: rgba(255, 255, 255, 0.72); }
.contact-main.has-video-bg .contact-avail strong { color: #fff; }
.contact-main.has-video-bg .contact-avail-dot  { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25); }
.contact-main.has-video-bg .trust-value        { color: #fff; }
.contact-main.has-video-bg .trust-label        { color: rgba(255, 255, 255, 0.60); }
.contact-main.has-video-bg .trust-divider      { background: rgba(255, 255, 255, 0.14); }
.contact-main.has-video-bg .contact-reach-label { color: rgba(255, 255, 255, 0.55); }
.contact-main.has-video-bg .contact-reach-value { color: #fff; }
.contact-main.has-video-bg .contact-hours { border-top-color: rgba(255, 255, 255, 0.10); }
.contact-main.has-video-bg .contact-hours-day  { color: #fff; }
.contact-main.has-video-bg .contact-hours-time { color: rgba(255, 255, 255, 0.60); }
.contact-main.has-video-bg .contact-form-panel {
  --border-angle: 0deg;
  border: 2px solid transparent;
  background:
    linear-gradient(rgb(7,17,31), rgb(7,17,31)) padding-box,
    conic-gradient(
      from var(--border-angle),
      var(--color-cyan)  0%,
      var(--color-azure) 50%,
      var(--color-cyan)  100%
    ) border-box;
  animation: btn-border-spin 6s linear infinite;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---- Video hero (website-design page) ---- */
.svc-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 10, 24, 0.82) 0%,
    rgba(6, 10, 24, 0.62) 60%,
    rgba(6, 10, 24, 0.50) 100%
  );
  z-index: 1;
}

.svc-hero--video .svc-hero-inner {
  z-index: 3;
}

.svc-hero--video .hero-bg-cyan,
.svc-hero--video .hero-bg-magenta {
  z-index: 2;
  opacity: 0.6;
}

/* Breadcrumb */
.svc-hero--video .svc-breadcrumb a        { color: rgba(255, 255, 255, 0.55); }
.svc-hero--video .svc-breadcrumb a:hover  { color: rgba(255, 255, 255, 0.9); }
.svc-hero--video .svc-breadcrumb-sep      { color: rgba(255, 255, 255, 0.25); }
.svc-hero--video .svc-breadcrumb-current  { color: rgba(255, 255, 255, 0.45); }

/* Badge */
.svc-hero--video .svc-hero-badge {
  background: rgba(6, 182, 212, 0.14);
  border-color: rgba(6, 182, 212, 0.35);
  color: var(--color-cyan);
}
.svc-hero--video .svc-hero-badge-dot {
  background: var(--color-cyan);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

/* Headline */
.svc-hero--video .svc-h1          { color: #fff; }
.svc-hero--video .headline-accent { color: var(--color-cyan); text-shadow: 0 0 40px rgba(81, 229, 255, 0.45); }

/* Body copy */
.svc-hero--video .svc-hero-sub { color: rgba(255, 255, 255, 0.78); }

/* Meta bar */
.svc-hero--video .svc-hero-meta {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.svc-hero--video .svc-meta-label { color: rgba(255, 255, 255, 0.5); }
.svc-hero--video .svc-meta-value { color: #fff; }

/* Ghost button */
.svc-hero--video .svc-hero-cta-row .btn-ghost {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.3);
}
.svc-hero--video .svc-hero-cta-row .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* ---- Generic service section padding ---- */
.svc-section {
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
}

.svc-section--alt { background: rgba(7, 17, 31, 0.4); }

/* ---- Two-column layout ---- */
.svc-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .svc-two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Body copy ---- */
.svc-body-copy {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}
.svc-body-copy p + p { margin-top: 16px; }

/* ---- Who it's for ---- */
.svc-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 800px) { .svc-for-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .svc-for-grid { grid-template-columns: 1fr; } }

.svc-for-card {
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.svc-for-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(81, 229, 255, 0.08);
  border: 1px solid rgba(81, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.svc-for-title {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.svc-for-desc {
  font-size: 0.835rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- Deliverables grid ---- */
.svc-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 600px) { .svc-includes-grid { grid-template-columns: 1fr; } }

.svc-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(7, 17, 31, 0.6);
  border: 1px solid rgba(81, 229, 255, 0.09);
  border-radius: 12px;
  padding: 16px 18px;
}

.svc-includes-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px rgba(81, 229, 255, 0.5);
  flex-shrink: 0;
  margin-top: 6px;
}

.svc-includes-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ---- Service process grid ---- */
.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 800px) { .svc-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-process-grid { grid-template-columns: 1fr; } }

.svc-process-step {
  background: rgba(7, 17, 31, 0.65);
  border: 1px solid rgba(81, 229, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
}

.svc-process-num {
  font-family: var(--font-heading);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-cyan);
  margin-bottom: 10px;
  display: block;
}

.svc-process-title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.svc-process-desc {
  font-size: 0.835rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- Investment cards ---- */
.svc-invest-section {
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(81, 229, 255, 0.07);
  background: rgba(7, 17, 31, 0.4);
  position: relative;
  overflow: hidden;
}
.svc-invest-section .container { position: relative; z-index: 2; }

.svc-invest-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.18;
}

/* Investment section — dark text overrides for video background */
.svc-invest-section .section-headline { color: #fff; }
.svc-invest-section .section-body { color: rgba(255, 255, 255, 0.72); }
.svc-invest-section .svc-invest-card {
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(81, 229, 255, 0.12);
}
.svc-invest-section .svc-invest-card:hover { border-color: rgba(81, 229, 255, 0.22); }
.svc-invest-section .svc-invest-card--featured { border-color: rgba(81, 229, 255, 0.25); }
.svc-invest-section .svc-invest-tier { color: rgba(255, 255, 255, 0.48); }
.svc-invest-section .svc-invest-price { color: #fff; }
.svc-invest-section .svc-invest-card--featured .svc-invest-price { color: var(--color-cyan); }
.svc-invest-section .svc-invest-price-note { color: rgba(255, 255, 255, 0.5); }
.svc-invest-section .svc-invest-title { color: #fff; }
.svc-invest-section .svc-invest-includes-item { color: rgba(255, 255, 255, 0.72); }
.svc-invest-section .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  --btn-bg: rgba(4, 7, 13, 0.4);
}
.svc-invest-section .btn-ghost:hover { color: #fff; }

.svc-invest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

.svc-invest-card {
  background: rgba(7, 17, 31, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.svc-invest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-azure));
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.svc-invest-card .btn { margin-top: auto; }

.svc-invest-card:hover { transform: translateY(-4px); border-color: rgba(81, 229, 255, 0.2); }
.svc-invest-card:hover::before { opacity: 0.8; }

.svc-invest-card--featured {
  border-color: rgba(81, 229, 255, 0.22);
  box-shadow: 0 0 50px rgba(81, 229, 255, 0.07);
}
.svc-invest-card--featured::before { opacity: 0.75; }

.svc-invest-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(81, 229, 255, 0.1);
  border: 1px solid rgba(81, 229, 255, 0.2);
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-cyan);
  font-family: var(--font-heading);
  align-self: flex-start;
}
.svc-invest-tag--ghost { visibility: hidden; pointer-events: none; }

.svc-invest-tier {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.svc-invest-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  line-height: 1;
}

.svc-invest-card--featured .svc-invest-price { color: var(--color-cyan); }

.svc-invest-price-note {
  font-size: 0.775rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}

.svc-invest-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.svc-invest-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-invest-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.845rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.svc-invest-includes-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- FAQ ---- */
.svc-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(81, 229, 255, 0.08);
  margin-top: 48px;
}

.svc-faq-item {
  border-bottom: 1px solid rgba(81, 229, 255, 0.08);
  padding: 28px 0;
}

.svc-faq-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-bottom: 14px;
}

.svc-faq-a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ---- Related services ---- */
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

@media (max-width: 800px) { .svc-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .svc-related-grid { grid-template-columns: 1fr; } }

.svc-related-card {
  background: rgba(7, 17, 31, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(81, 229, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.svc-related-card:hover {
  border-color: rgba(81, 229, 255, 0.2);
  box-shadow: 0 8px 32px rgba(81, 229, 255, 0.08);
  transform: translateY(-3px);
}

.svc-related-num {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-cyan);
}

.svc-related-title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.svc-related-desc {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.svc-related-arrow {
  color: var(--color-cyan);
  font-size: 0.845rem;
  margin-top: 4px;
}

/* =============================================
   NAV DROPDOWN
   ============================================= */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-chevron {
  width: 9px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.65;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: rgba(4, 7, 13, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(81, 229, 255, 0.04);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown li {
  list-style: none;
}

.header-nav .nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: background 0.14s ease, color 0.14s ease;
  white-space: nowrap;
  text-decoration: none;
}

.header-nav .nav-dropdown-link:hover {
  background: rgba(81, 229, 255, 0.06);
  color: var(--color-cyan);
}

.nav-dropdown-num {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: 0.06em;
  min-width: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ---- Mobile nav sub-links ---- */
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin: 2px 0 14px 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-sublink {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 7px 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink:focus {
  color: var(--color-cyan);
}

/* ============================================================
   LIGHT THEME OVERRIDES
   ============================================================ */

/* ---- Skip link ---- */
.skip-link { color: #0F172A; }

/* ---- Header — always dark ---- */
#site-header {
  background: #04070D;
  border-bottom-color: rgba(81, 229, 255, 0.08);
}
#site-header.scrolled {
  background: rgba(4, 7, 13, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(6, 182, 212, 0.15);
}
.header-nav a { color: #B8D2E8; }
.header-nav a:hover { color: var(--color-cyan); }
.header-cta {
  --btn-bg: #04070D;
  color: #B8D2E8;
}
.header-cta:hover { color: #EAF7FF; }
.hamburger-line { background: #B8D2E8; }
.header-nav .nav-dropdown-link { color: var(--color-text-primary); }
.header-nav .nav-dropdown-link:hover {
  background: rgba(6, 182, 212, 0.08);
  color: var(--color-azure);
}

/* ---- Mobile nav ---- */
.mobile-nav { background: rgba(247, 249, 252, 0.98); }
.mobile-nav-close { color: var(--color-text-secondary); }
.mobile-nav-close:hover { background: rgba(15, 23, 42, 0.06); color: var(--color-text-primary); }
.mobile-nav-sub { border-left-color: rgba(15, 23, 42, 0.1); }
.mobile-nav-sublink { color: var(--color-text-muted); }

/* ---- Hero ---- */
.headline-accent { text-shadow: none; }
.hero-bg-cyan { background: rgba(6, 182, 212, 0.06); }
.hero-bg-magenta { background: rgba(139, 92, 246, 0.04); }

/* ---- Capability strip ---- */
.capability-strip {
  background: #EEF3F8;
  border-top-color: rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}
.strip-dot { background: rgba(6, 182, 212, 0.5); }

/* ---- Service cards ---- */
.service-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05), 0 4px 16px rgba(15, 23, 42, 0.04);
}
.service-card:hover {
  border-color: rgba(6, 182, 212, 0.28);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}
.service-card:nth-child(2):hover,
.service-card:nth-child(4):hover,
.service-card:nth-child(6):hover,
.service-card:nth-child(8):hover {
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow: 0 16px 56px rgba(139, 92, 246, 0.1);
}

/* ---- Work cards ---- */
.work-card {
  background: #F0F4F8;
  border-color: rgba(15, 23, 42, 0.1);
}
.work-card:hover { border-color: rgba(6, 182, 212, 0.2); }

/* ---- Why FluxGrid ---- */
.advantage-block { border-bottom-color: rgba(15, 23, 42, 0.08); }
.advantage-marker { box-shadow: none; }

/* ---- Process ---- */
.process-step {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
.process-line {
  background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.2) 20%, rgba(6, 182, 212, 0.2) 80%, transparent);
}
.step-number { text-shadow: none; }

/* ---- Philosophy ---- */
.philosophy-frame {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

/* ---- CTA panel — inverted dark block for contrast ---- */
.cta-panel {
  background: linear-gradient(145deg, #0F172A 0%, #1E3A5F 100%);
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 32px 80px rgba(6, 182, 212, 0.1), 0 8px 32px rgba(15, 23, 42, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.cta-panel .cta-headline { color: #EAF7FF; }
.cta-panel .cta-body { color: rgba(184, 210, 232, 0.82); }
.cta-panel .btn-primary { color: #0F172A; }
.cta-panel .btn-ghost {
  color: rgba(184, 210, 232, 0.75);
  --btn-bg: #0F172A;
}
.cta-panel .btn-ghost:hover { color: #EAF7FF; }
.cta-magenta-accent { background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%); }

/* ---- Footer — inverted dark ---- */
#site-footer {
  background: #0F172A;
  border-top-color: rgba(6, 182, 212, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v1H0zM0 0h1v40H0z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}
.footer-inner { border-bottom-color: rgba(255, 255, 255, 0.07); }
.footer-statement { color: rgba(184, 210, 232, 0.55); }
.footer-col-title { color: rgba(234, 247, 255, 0.75); }
.footer-link { color: rgba(184, 210, 232, 0.5); }
.footer-link:hover { color: var(--color-cyan); }
.footer-cta-link { color: var(--color-cyan); }
.footer-avail { color: rgba(184, 210, 232, 0.5); }
.footer-copy { color: rgba(184, 210, 232, 0.3); }

/* ---- Contact page ---- */
.contact-avail {
  background: rgba(6, 182, 212, 0.04);
  border-color: rgba(6, 182, 212, 0.15);
}
.contact-avail-dot { box-shadow: none; }
.trust-divider { background: rgba(15, 23, 42, 0.1); }
.contact-form-panel {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
}
.form-input {
  background: #F7F9FC;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--color-text-primary);
}
.form-input::placeholder { color: var(--color-text-muted); }
.form-input:focus {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.08);
}
.upload-zone { border-color: rgba(6, 182, 212, 0.2); }
.upload-zone:hover {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.02);
}
.upload-zone.drag-over {
  background: rgba(6, 182, 212, 0.04);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.08);
}
.upload-zone.has-file {
  border-color: rgba(6, 182, 212, 0.22);
  background: rgba(6, 182, 212, 0.03);
}
.upload-remove {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.1);
}
.upload-remove:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--color-magenta);
}
.color-picker-trigger {
  background: #F7F9FC;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--color-text-secondary);
}
.color-picker-trigger:focus {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.08);
}
.color-picker-trigger[aria-expanded="true"] { border-color: rgba(6, 182, 212, 0.4); }
.cp-swatch { border-color: rgba(15, 23, 42, 0.12); background: rgba(15, 23, 42, 0.05); }
.color-picker-list {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}
.color-picker-list li { color: var(--color-text-secondary); }
.color-picker-list li:hover {
  background: rgba(6, 182, 212, 0.06);
  color: var(--color-text-primary);
}
.color-picker-list li[aria-selected="true"] {
  background: rgba(6, 182, 212, 0.08);
  color: var(--color-text-primary);
}
.cp-option-swatch { border-color: rgba(15, 23, 42, 0.1); }

/* ---- Intake form ---- */
.intake-progress-track { background: rgba(6, 182, 212, 0.1); }
.intake-form {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.09);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.intake-nav { border-top-color: rgba(15, 23, 42, 0.08); }
.radio-label {
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--color-text-secondary);
}
.intake-radio-option:has(input:checked) .radio-label {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.intake-radio-group.is-invalid .radio-label { border-color: rgba(244, 63, 94, 0.35); }
.checkbox-label {
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--color-text-secondary);
}
.intake-checkbox-option:has(input:checked) .checkbox-label {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}
.intake-checkbox-group.is-invalid .checkbox-label { border-color: rgba(244, 63, 94, 0.3); }
.intake-extra-block {
  background: rgba(6, 182, 212, 0.03);
  border-color: rgba(6, 182, 212, 0.1);
}
.intake-confirm-row {
  background: rgba(6, 182, 212, 0.03);
  border-color: rgba(6, 182, 212, 0.1);
}
.domain-toggle {
  background: #F7F9FC;
  border-color: rgba(15, 23, 42, 0.12);
}
.domain-toggle-btn { border-right-color: rgba(15, 23, 42, 0.1); }
.domain-toggle-option:has(.domain-radio:checked) .domain-toggle-btn {
  background: rgba(6, 182, 212, 0.08);
  color: var(--color-cyan);
}

/* ---- Thank-you page ---- */
.thankyou-icon {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.2);
}

/* ---- Services page: hero card ---- */
.srv-hero-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.srv-hero-list-item { border-bottom-color: rgba(15, 23, 42, 0.07); }
.srv-hero-trust { border-top-color: rgba(15, 23, 42, 0.09); }

/* ---- Services page: capability intro ---- */
.srv-capability-intro {
  background: #EEF3F8;
  border-top-color: rgba(15, 23, 42, 0.07);
  border-bottom-color: rgba(15, 23, 42, 0.07);
}

/* ---- Services page: expanded sections ---- */
.srv-expanded { border-top-color: rgba(15, 23, 42, 0.08); }
.srv-expanded--alt { background: #EEF3F8; }
.srv-detail-block {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
.srv-expanded--alt .srv-detail-block { background: #F7F9FC; }
.srv-who {
  background: rgba(6, 182, 212, 0.04);
  border-color: rgba(6, 182, 212, 0.12);
}
.srv-why-matters { border-left-color: rgba(6, 182, 212, 0.35); }
.srv-includes-item::before { box-shadow: none; }
.srv-preview-list-item::before { box-shadow: none; }

/* ---- Engagement tiers — dark glass (matches investment cards) ---- */
.engagement-card {
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(81, 229, 255, 0.12);
  box-shadow: none;
}
.engagement-card:hover {
  border-color: rgba(81, 229, 255, 0.22);
  box-shadow: 0 16px 56px rgba(81, 229, 255, 0.1);
}
.engagement-card--featured {
  border-color: rgba(81, 229, 255, 0.25);
  box-shadow: 0 0 50px rgba(81, 229, 255, 0.09);
}
.engagement-tag {
  background: rgba(81, 229, 255, 0.1);
  border-color: rgba(81, 229, 255, 0.2);
}
.engagement-card--featured .engagement-price-amount { color: var(--color-cyan); }

/* ---- Services page: preview modules ---- */
.srv-previews-section { border-top-color: rgba(15, 23, 42, 0.07); }
.srv-preview-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
.srv-preview-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.08);
}
.srv-preview-meta { border-right-color: rgba(15, 23, 42, 0.08); }
.srv-preview-footer { border-top-color: rgba(15, 23, 42, 0.07); }
.srv-card-price { border-top-color: rgba(15, 23, 42, 0.07); }

@media (max-width: 900px) {
  .srv-preview-meta { border-bottom-color: rgba(15, 23, 42, 0.08); }
}

/* ---- Individual service pages ---- */
.svc-section { border-top-color: rgba(15, 23, 42, 0.07); }
.svc-section--alt { background: #EEF3F8; }
.svc-breadcrumb-sep { color: rgba(15, 23, 42, 0.25); }
.svc-hero-badge {
  background: rgba(6, 182, 212, 0.07);
  border-color: rgba(6, 182, 212, 0.18);
}
.svc-hero-badge-dot { box-shadow: none; }
.svc-hero-meta {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.svc-for-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.09);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
.svc-for-icon {
  background: rgba(6, 182, 212, 0.07);
  border-color: rgba(6, 182, 212, 0.15);
}
.svc-includes-item {
  background: #F7F9FC;
  border-color: rgba(15, 23, 42, 0.08);
}
.svc-includes-dot { box-shadow: none; }
.svc-process-step {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
.svc-invest-section {
  border-top-color: rgba(15, 23, 42, 0.07);
}
.svc-invest-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.09);
}
.svc-invest-card:hover { border-color: rgba(6, 182, 212, 0.22); }
.svc-invest-card--featured {
  border-color: rgba(6, 182, 212, 0.28);
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.1);
}
.svc-invest-card--featured .svc-invest-price { color: var(--color-azure); }
.svc-invest-tag {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}
.svc-faq-list { border-top-color: rgba(15, 23, 42, 0.08); }
.svc-faq-item { border-bottom-color: rgba(15, 23, 42, 0.08); }
.svc-related-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
.svc-related-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.08);
}

/* ---- Nav dropdown (light) ---- */
.nav-dropdown {
  background: rgba(247, 249, 252, 0.98);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}

/* ---- Contact reach ---- */
.contact-reach { border-top-color: rgba(15, 23, 42, 0.08); }
.contact-hours { border-top-color: rgba(15, 23, 42, 0.08); }

/* ---- About page ---- */
.about-stat-divider { background: rgba(15, 23, 42, 0.12); }
.about-story-callout {
  background: rgba(6, 182, 212, 0.04);
  border-color: rgba(6, 182, 212, 0.14);
}

/* ---- Index: Process section video bg ---- */
.process-section.has-video-bg { background: #06080F; }
.process-section.has-video-bg .container { position: relative; z-index: 2; }
.process-section.has-video-bg .section-label   { color: var(--color-cyan); }
.process-section.has-video-bg .section-headline { color: #fff; }
.process-section.has-video-bg .section-body    { color: rgba(255, 255, 255, 0.72); }

/* ---- About: Who We Work With video section ---- */
.about-who-section.has-video-bg { background: #06080F; }
.about-who-section.has-video-bg .container { position: relative; z-index: 2; }
.about-who-section.has-video-bg .section-label   { color: var(--color-cyan); }
.about-who-section.has-video-bg .section-headline { color: #fff; }
.about-who-section.has-video-bg .section-body    { color: rgba(255, 255, 255, 0.72); }

/* ============================================================
   LEGAL PAGES (Terms & Conditions, Privacy Policy, etc.)
   ============================================================ */

.legal-hero {
  position: relative;
  padding: calc(var(--header-height) + 72px) 0 72px;
  overflow: hidden;
  background-color: var(--color-bg-midnight);
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.legal-hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-azure);
  margin-bottom: 20px;
}

.legal-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.legal-hero-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---- Two-column legal layout ---- */
.legal-content-section {
  padding-top: 72px;
  padding-bottom: 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: 64px;
  align-items: start;
}

/* ---- Sidebar TOC ---- */
.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.legal-toc-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: color 0.18s, background 0.18s;
  line-height: 1.45;
}

.legal-toc-link:hover,
.legal-toc-link.is-active {
  color: var(--color-azure);
  background: rgba(var(--color-azure-rgb), 0.06);
}

/* ---- Attorney review notice ---- */
.legal-notice {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 52px;
}

.legal-notice p {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.65;
}

.legal-notice strong {
  color: #92400E;
}

/* ---- Individual sections ---- */
.legal-section {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.legal-section a { color: var(--color-azure); }

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 18px;
  scroll-margin-top: calc(var(--header-height) + 32px);
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}

.legal-section ul li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  padding: 3px 0 3px 22px;
  position: relative;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-azure);
  font-size: 0.75rem;
  top: 8px;
}

.legal-placeholder {
  display: inline-block;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 0.8125rem;
  color: var(--color-magenta);
  font-family: var(--font-heading);
  font-style: normal;
}

/* ---- Legal footer note ---- */
.legal-footer-note {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-footer-note p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-toc {
    position: static;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 20px;
  }

  .legal-toc-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .legal-toc-link {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
  }

  .legal-toc-link:hover {
    background: rgba(var(--color-azure-rgb), 0.06);
    border-color: var(--color-azure);
  }
}

@media (max-width: 640px) {
  .legal-hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
  }
  .legal-content-section {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}
.about-story-detail-item { border-bottom-color: rgba(15, 23, 42, 0.08); }

/* ---- Legal page: policy sub-headings & intro block ---- */
.legal-intro-block {
  background: rgba(var(--color-azure-rgb), 0.04);
  border-left: 3px solid var(--color-azure);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-bottom: 52px;
}

.legal-intro-block p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-intro-block p:last-child { margin-bottom: 0; }

.legal-section-subheading {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 22px;
  margin-bottom: 10px;
}

/* ---- Legal page: studio process checklist ---- */
.legal-checklist-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-checklist-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.legal-checklist-sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.legal-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legal-checklist-card {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 22px 22px 24px;
}

.legal-checklist-phase {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-azure);
  margin-bottom: 14px;
}

.legal-checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-checklist-card ul li {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-checklist-card ul li:last-child { border-bottom: none; }

.legal-checklist-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-azure);
  font-size: 0.65rem;
  top: 7px;
}

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

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-content-section {
  padding-top: 72px;
  padding-bottom: 120px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 60px;
}

.faq-group-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-azure);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.faq-item {
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-azure);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(var(--color-azure-rgb), 0.28);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.faq-item:hover::before,
.faq-item.is-open::before {
  transform: scaleY(1);
}

.faq-item.is-open {
  border-color: rgba(var(--color-azure-rgb), 0.35);
  box-shadow: 0 4px 20px rgba(var(--color-azure-rgb), 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover .faq-question-text { color: var(--color-azure); }

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.45;
  transition: color 0.18s;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.25s ease;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  color: var(--color-text-muted);
  transition: color 0.2s;
  pointer-events: none;
}

.faq-item.is-open .faq-icon {
  border-color: var(--color-azure);
  background: rgba(var(--color-azure-rgb), 0.08);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon svg { color: var(--color-azure); }
.faq-item.is-open .faq-question-text { color: var(--color-azure); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.is-open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 20px 20px;
}

.faq-answer-inner p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 10px;
}

.faq-answer-inner ul li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  padding: 3px 0 3px 22px;
  position: relative;
}

.faq-answer-inner ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-azure);
  font-size: 0.75rem;
  top: 7px;
}

/* ---- FAQ CTA ---- */
.faq-cta {
  margin-top: 72px;
  padding: 48px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  text-align: center;
}

.faq-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.faq-cta-body {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.faq-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .faq-content-section { padding-top: 48px; padding-bottom: 80px; }
  .faq-cta { padding: 32px 24px; }
}

/* ============================================================
   WORK PAGE
   ============================================================ */

/* ---- Hero ---- */
.work-hero.has-video-bg .hero-bg-cyan,
.work-hero.has-video-bg .hero-bg-magenta  { z-index: 2; opacity: 0.5; }
.work-hero.has-video-bg .work-hero-inner  { z-index: 3; }
.work-hero.has-video-bg .work-h1          { color: #fff; }
.work-hero.has-video-bg .headline-accent  { color: var(--color-cyan); text-shadow: 0 0 40px rgba(81, 229, 255, 0.45); }
.work-hero.has-video-bg .work-hero-sub    { color: rgba(255, 255, 255, 0.78); }
.work-hero.has-video-bg .work-stat-value  { color: #fff; }
.work-hero.has-video-bg .work-stat-label  { color: rgba(255, 255, 255, 0.60); }
.work-hero.has-video-bg .work-hero-stat   { border-right-color: rgba(255, 255, 255, 0.14); }

.work-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
}

.work-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.work-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.work-hero-sub {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}

.work-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.work-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.work-hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.work-stat-value {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.work-stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

/* ---- Filter bar ---- */
.work-filter-bar {
  padding: 56px 0 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.work-filter-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-right: 8px;
}

.work-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: none;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  padding: 6px 16px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.work-filter-btn:hover {
  color: var(--color-azure);
  border-color: var(--color-azure);
}

.work-filter-btn.is-active {
  color: #fff;
  background: var(--color-azure);
  border-color: var(--color-azure);
}

/* ---- Project grid ---- */
.work-page-section {
  padding-bottom: 120px;
}

.wp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.wp-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-midnight);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.wp-card:hover {
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.wp-card--wide  { grid-column: span 3; }
.wp-card--narrow { grid-column: span 2; }

.wp-card.is-hidden {
  display: none;
}

.wp-img-wrap {
  height: 280px;
  overflow: hidden;
  background: var(--color-bg-navy);
}

.wp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.42s ease;
}

.wp-card:hover .wp-img-wrap img { transform: scale(1.04); }

.wp-info {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wp-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.wp-tag {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-azure);
  background: rgba(var(--color-azure-rgb), 0.07);
  border: 1px solid rgba(var(--color-azure-rgb), 0.14);
  border-radius: 20px;
  padding: 3px 9px;
}

.wp-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.wp-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
}

.wp-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-azure);
  text-decoration: none;
  transition: gap 0.18s;
}

.wp-link:hover { gap: 9px; }

/* ---- Coming soon cards ---- */
.wp-card--placeholder {
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.12);
  background: transparent;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  gap: 10px;
  text-align: center;
  padding: 32px;
}

.wp-card--placeholder:hover {
  border-color: rgba(var(--color-azure-rgb), 0.2);
  box-shadow: none;
  transform: none;
}

.wp-placeholder-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.wp-placeholder-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 200px;
}

/* ---- No results message ---- */
.wp-no-results {
  grid-column: span 5;
  text-align: center;
  padding: 60px 0;
  display: none;
}

.wp-no-results.is-visible { display: block; }

.wp-no-results p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .wp-grid { grid-template-columns: repeat(2, 1fr); }
  .wp-card--wide, .wp-card--narrow { grid-column: span 1; }
  .wp-no-results { grid-column: span 2; }
  .wp-img-wrap { height: 240px; }
}

@media (max-width: 600px) {
  .wp-grid { grid-template-columns: 1fr; }
  .wp-card--wide, .wp-card--narrow { grid-column: span 1; }
  .wp-img-wrap { height: 220px; }
  .wp-no-results { grid-column: span 1; }
  .work-hero-stat { padding-right: 24px; margin-right: 24px; }
}

/* ============================================================
   PROCESS PAGE
   ============================================================ */

/* ---- Hero ---- */
.process-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
}

.process-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.process-hero-inner .hero-cta-col { justify-content: center; }

.process-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.process-hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 52px;
}

.process-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Video overrides */
.process-hero.has-video-bg .process-hero-inner { z-index: 3; }
.process-hero.has-video-bg .process-h1         { color: #fff; }
.process-hero.has-video-bg .headline-accent    { color: var(--color-cyan); text-shadow: 0 0 40px rgba(81, 229, 255, 0.45); }
.process-hero.has-video-bg .process-hero-sub   { color: rgba(255, 255, 255, 0.78); }

/* ---- Phase breakdown section ---- */
.process-phases-section { padding: var(--space-section) 0; }

.process-phase-list {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}

.process-phase-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  padding: 56px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  align-items: flex-start;
}

.process-phase-item:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.process-phase-left {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.process-phase-num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-azure);
  opacity: 0.18;
  display: block;
  margin-bottom: 14px;
}

.process-phase-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-azure);
  background: rgba(var(--color-azure-rgb), 0.08);
  border: 1px solid rgba(var(--color-azure-rgb), 0.18);
  border-radius: 20px;
  padding: 4px 12px;
}

.process-phase-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.process-phase-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-azure);
  margin-bottom: 18px;
  line-height: 1.5;
}

.process-phase-body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.process-phase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.process-phase-items li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.process-phase-items li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--color-azure);
  margin-top: 9px;
}

.process-phase-result {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  padding: 12px 16px;
  line-height: 1.6;
}

.process-phase-result strong {
  color: var(--color-text-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* ---- FAQ section on process page ---- */
.process-faq-section {
  padding: var(--space-section) 0;
  background: rgba(15, 23, 42, 0.02);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.process-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .process-phase-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 44px 0;
  }

  .process-phase-left {
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .process-phase-num {
    font-size: 3rem;
    margin-bottom: 0;
    opacity: 0.22;
  }
}

@media (max-width: 600px) {
  .process-hero { padding: calc(var(--header-height) + 60px) 0 64px; }
  .process-phase-item { padding: 36px 0; }
  .process-phase-left { flex-direction: column; align-items: flex-start; gap: 10px; }
  .process-phase-num { font-size: 2.5rem; }
}

/* ============================================================
   HONEYBOOK DISCOVERY CALL MODAL
   ============================================================ */
#hb-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hb-modal[hidden] { display: none; }

.hb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hb-modal-container {
  position: relative;
  z-index: 1;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(81, 229, 255, 0.15);
  border-radius: var(--radius-lg);
  width: 92vw;
  max-width: 720px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 0;
  overflow: hidden;
}

.hb-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: 1px solid rgba(81, 229, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.hb-modal-close:hover {
  border-color: rgba(81, 229, 255, 0.6);
  color: #fff;
}

.hb-modal-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hb-modal-frame-wrap {
  flex: 1;
  overflow-y: auto;
  margin: 0 -40px;
  min-height: 0;
}

.hb-modal-iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .hb-modal-container {
    padding: 32px 20px 0;
    width: 96vw;
    max-height: 92vh;
  }
  .hb-modal-frame-wrap { margin: 0 -20px; }
  .hb-modal-iframe { height: 580px; }
}
