/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --bg: #f5f0eb;
  --bg-elevated: #ebe5df;
  --bg-card: #ffffff;
  --border: #ddd6ce;
  --border-hover: #c4bbb2;
  --text: #0f0f0f;
  --text-muted: #2a2a2a;
  --text-dim: #8a8279;
  --accent: #2563eb;
  --accent-soft: #5b86d4;
  --accent-light: #3b82f6;
  --accent-dim: rgba(37, 99, 235, 0.08);
  --accent-glow: rgba(37, 99, 235, 0.15);
  --red: #dc2626;
  --green: #16a34a;
  --font-heading: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Work Sans', 'Segoe UI', sans-serif;
  --section-pad: 5.5rem;
  --section-pad-mobile: 3.5rem;
  --radius: 12px;
  --max-width: 1280px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
input, textarea, select { font-family: var(--font-body); }

/* Noise Texture Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.visible { transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
html.no-js .reveal { opacity: 1; transform: none; }
.mobile-break { display: none; }
@media (max-width: 768px) { .mobile-break { display: block; } }

/* ========================================
   BUTTON PRESS FEEDBACK
   ======================================== */
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
/* On non-home pages the nav sits on cream from the start, so apply the
   scrolled chrome immediately for legibility. */
.nav.solid {
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
}
.nav-logo img { height: 52px; width: auto; filter: invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-links a.nav-cta, .nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: #ffffff !important;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.nav-links a.nav-cta:hover, .nav-cta:hover { background: var(--accent-light); color: #ffffff !important; transform: translateY(-1px); }
.nav-links a.nav-cta::after { display: none; }

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 4px 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(245, 240, 235, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 1rem;
}
.mobile-menu .nav-cta {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ========================================
   HERO (HOME — video bg)
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}
.hero-overlay { display: none; }
.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  color: #ffffff;
}
.hero-content h1 { color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0 40px rgba(0,0,0,0.1); }
.hero-content .hero-sub { color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0 40px rgba(0,0,0,0.1); font-weight: 600; font-size: 1.1rem; }
.hero-content .proof-item { color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 0 40px rgba(0,0,0,0.1); font-weight: 600; }
.hero-content .proof-item svg { color: var(--accent); }
.hero-content .proof-divider { background: rgba(255, 255, 255, 0.3); }
.hero-content .btn-secondary { color: #ffffff; border-color: var(--accent); text-shadow: 0 2px 12px rgba(0,0,0,0.3); font-weight: 600; }
.hero-content .btn-secondary:hover { border-color: var(--accent-light); background: rgba(37, 99, 235, 0.15); }
.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.25s ease, transform 0.25s ease;
  min-height: 48px;
}
.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Proof Strip */
.proof-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.proof-item svg { color: var(--accent); flex-shrink: 0; }
.proof-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  align-self: center;
}

@media (max-width: 768px) {
  .hero { padding: 0; min-height: calc(100dvh - 72px); align-items: flex-end; }
  .hero::after { display: none; }
  .hero-content { padding: 0 1.5rem 2.5rem; text-align: center; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3.5rem); text-align: center; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.5rem; text-align: center; }
  .hero-buttons { display: none; }
  .hero .proof-strip { display: none; }
  .proof-divider { display: none; }
  .hero-content::after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    margin: 0.5rem auto 0;
    border-left: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: rotate(-45deg);
  }
}

/* ========================================
   PAGE HERO (interior pages — no video)
   ======================================== */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw);
  height: min(900px, 90vw);
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero p { font-size: 1rem; }
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.proof-bar {
  padding: 1.5rem 0;
  border: none;
  background: var(--accent);
}
.proof-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}
.proof-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-badge-icon svg { color: var(--accent); }
.proof-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.proof-bar-inner.cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .proof-bar-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .proof-bar-inner.cols-3 { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) {
  .proof-bar-inner { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ========================================
   PILLARS SECTION
   ======================================== */
.pillars {
  padding: var(--section-pad) 0;
}
.pillars-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  padding: 2.5rem 2rem 2.25rem;
  padding-left: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}
.pillar-card .pillar-num {
  position: absolute;
  top: -1.25rem;
  right: 0.5rem;
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.04em;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.pillar-card h3,
.pillar-card p { position: relative; z-index: 1; }
.pillar-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pillars { padding: var(--section-pad-mobile) 0; }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.services-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 2rem;
  padding-left: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover {
  border-color: var(--accent);
  border-left-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { color: var(--accent); }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  background: rgba(37, 99, 235, 0.06);
  color: var(--accent);
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services { padding: var(--section-pad-mobile) 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ========================================
   SERVICE DETAIL ROW (Services page)
   ======================================== */
.service-detail {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) { background: var(--bg-elevated); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-content {
  direction: ltr;
}
.service-detail:nth-child(even) .service-detail-visual {
  direction: ltr;
}
.service-detail-content .label { margin-bottom: 1rem; }
.service-detail-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.service-detail-content > p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-detail-bullets {
  margin-bottom: 2rem;
}
.service-detail-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.service-detail-bullets li svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.service-detail-visual {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border: none;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}
.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.18), transparent 55%);
  pointer-events: none;
}
.service-detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
  pointer-events: none;
}
.service-detail-visual svg {
  width: 150px;
  height: 150px;
  color: #ffffff;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

@media (max-width: 900px) {
  .service-detail { padding: var(--section-pad-mobile) 0; }
  .service-detail-grid,
  .service-detail:nth-child(even) .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }
  .service-detail-visual { padding: 2rem; min-height: 220px; }
  .service-detail-visual svg { width: 80px; height: 80px; }
}

/* ========================================
   INLINE CTA BAND (full-bleed accent)
   ======================================== */
.cta-band {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.05;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
}
.cta-band .btn-primary {
  background: #ffffff;
  color: var(--accent);
}
.cta-band .btn-primary:hover {
  background: var(--bg);
  color: var(--accent);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HOW IT WORKS / PROCESS
   ======================================== */
.process {
  padding: var(--section-pad) 0;
}
.process-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-light), var(--accent));
  opacity: 0.35;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process { padding: var(--section-pad-mobile) 0; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .process-step { text-align: left; display: grid; grid-template-columns: 72px 1fr; gap: 1.25rem; align-items: start; }
  .step-number { margin: 0; }
  .process-step h3 { margin-top: 0.5rem; }
  .process-step p { max-width: none; }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  padding: 2rem;
  padding-left: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.testimonial-stars svg { color: #d97706; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Mobile swipe carousel */
.testimonial-dots { display: none; }

@media (max-width: 768px) {
  .testimonials { padding: var(--section-pad-mobile) 0; }
  .testimonials-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .testimonial-card:hover { transform: none; }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-hover);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .testimonial-dot.active {
    background: var(--accent);
    transform: scale(1.3);
  }
}

/* ========================================
   RESULTS BANNER
   ======================================== */
.results-banner {
  padding: var(--section-pad) 0;
}
.results-card {
  background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
}
.results-card .label { margin-bottom: 2rem; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.result-stat h3 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.result-stat p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.result-context {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 768px) {
  .results-banner { padding: var(--section-pad-mobile) 0; }
  .results-card { padding: 2.5rem 1.5rem; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========================================
   CASE STUDIES (Work page)
   ======================================== */
.case-studies {
  padding: var(--section-pad) 0;
}
.case-studies-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.case-study {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.case-study:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.case-study .label { margin-bottom: 0.5rem; }
.case-study h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.case-study .case-vertical {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.case-study p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.case-study-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}
.case-study-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.case-stat { position: relative; z-index: 1; }
.case-stat h4 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.case-stat p {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .case-studies { padding: var(--section-pad-mobile) 0; }
  .case-study { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-dim), var(--accent-glow));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.founder-photo span {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
}
.founder-content .label { margin-bottom: 0.75rem; }
.founder-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.founder-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.founder-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .founder { padding: var(--section-pad-mobile) 0; }
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo { max-width: 240px; margin: 0 auto; }
}

/* ========================================
   VERTICALS GRID (About page)
   ======================================== */
.verticals {
  padding: var(--section-pad) 0;
}
.verticals-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.vertical-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.vertical-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}
.vertical-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.vertical-icon svg { color: var(--accent); width: 28px; height: 28px; transition: color 0.3s ease; }
.vertical-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.vertical-card:hover .vertical-icon {
  background: var(--accent);
  transform: scale(1.05);
}
.vertical-card:hover .vertical-icon svg { color: #ffffff; }
.vertical-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.vertical-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .verticals { padding: var(--section-pad-mobile) 0; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .verticals-grid { grid-template-columns: 1fr; }
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.faq-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  min-height: 48px;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, visibility 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.5rem;
  visibility: visible;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq { padding: var(--section-pad-mobile) 0; }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-list {
  margin-bottom: 2rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.guarantee-box {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.guarantee-box svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.guarantee-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.guarantee-box strong { color: var(--text); }
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-meta-item svg { color: var(--text-dim); }
.contact-meta-item a { color: var(--text-muted); text-decoration: none; }
.contact-meta-item a:hover { color: var(--text); }

/* Calendly inline embed */
.calendly-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

@media (max-width: 900px) {
  .contact { padding: var(--section-pad-mobile) 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .calendly-inline-widget { height: 1000px; }
}

/* ========================================
   FOOTER (dark — strong close on every page)
   ======================================== */
.footer {
  padding: 4.5rem 0 2.5rem;
  border-top: none;
  background: #080b14;
  color: #d8dce6;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; display: inline-block; }
.footer-brand .nav-logo img { filter: none; }
.footer-brand p {
  font-size: 0.92rem;
  color: #9ba3bd;
  line-height: 1.65;
  max-width: 340px;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: #d8dce6;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col a:hover { color: var(--accent-light); padding-left: 3px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: #6f7a9c;
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--accent-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.mobile-cta-bar .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* ========================================
   SERVICE PAGE ADDITIONS (2026-07-07)
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--accent); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb svg { color: var(--text-dim); flex-shrink: 0; }

.detail-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* LP split hero + assurances (start page) */
.page-hero.split { text-align: left; }
.page-hero.split::before { left: 32%; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.page-hero.split h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.page-hero.split p { margin-left: 0; }
.lp-hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  min-height: 380px;
  align-self: stretch;
}
.lp-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero-media.centered {
  margin: 3rem auto 0;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  align-self: auto;
}
.cta-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-top: 1.25rem;
}
.page-hero.split .cta-assurances { justify-content: flex-start; }
.cta-assurances li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.cta-assurances li svg { color: var(--green); flex-shrink: 0; }
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-hero-media { min-height: 260px; }
}

/* LP stacked testimonials — no mobile carousel on conversion pages */
@media (max-width: 768px) {
  .testimonials-grid.stacked {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 1rem;
    padding-bottom: 0;
  }
  .testimonials-grid.stacked .testimonial-card { min-width: 0; max-width: none; }
}

/* Partner platform marquee (home proof bar) */
.platform-marquee { overflow: hidden; }
.platform-track {
  display: flex;
  width: max-content;
  animation: platform-scroll 90s linear infinite;
}
.platform-set { display: flex; }
.platform-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  margin-right: 2.75rem;
  min-width: 104px;
  flex-shrink: 0;
}
.platform-item img { height: 28px; width: auto; }
.platform-divider {
  display: inline-flex;
  align-items: center;
  margin-right: 2.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes platform-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .platform-track { animation: none; width: 100%; justify-content: center; }
  .platform-track .platform-set { flex-wrap: wrap; justify-content: center; row-gap: 0.75rem; }
  .platform-track .platform-set[aria-hidden="true"] { display: none; }
}
@media (max-width: 768px) {
  .platform-item { padding: 0.55rem 1.1rem; margin-right: 1.75rem; min-width: 84px; }
  .platform-item img { height: 24px; }
  .platform-divider { margin-right: 1.75rem; font-size: 0.7rem; }
}

/* Photo variant for detail visuals */
.service-detail-visual.photo {
  padding: 0;
  background: none;
  align-self: stretch;
  min-height: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.service-detail-visual.photo::before { display: none; }
.service-detail-visual.photo.wide {
  align-self: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  width: 100%;
}
.service-detail-visual.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.copy-link:hover { color: var(--accent); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-link:hover { color: var(--accent-light); gap: 0.6rem; }

.included {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.included-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.check-grid li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.phase-meta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .included { padding: var(--section-pad-mobile) 0; }
}
@media (max-width: 768px) {
  .check-grid { grid-template-columns: 1fr; }
}
