/* ============================================================
   YNRmedia — Full Stylesheet
   Critical above-fold styles are inlined in index.html <head>.
   This file covers all below-fold sections plus responsive.
   ============================================================ */

/* Scroll offset for sticky header */
#services, #work, #process, #testimonials, #faq, #contact, #two-paths {
  scroll-margin-top: 100px;
}

/* Extra button variants */
.btn-cyan-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-cyan-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,188,212,0.2);
}
/* ============================================================
   SECTION 4: SOCIAL PROOF STRIP (edge-to-edge)
   ============================================================ */
.social-proof {
  background: var(--neutral-900);
  border-top: 1px solid var(--neutral-800);
  border-bottom: 1px solid var(--neutral-800);
  padding: 28px 0;
  overflow: hidden;
  margin-top: 0;
}
.sp-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.sp-label {
  width: 34%;
  flex-shrink: 0;
  padding: 0 24px 0 80px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-500);
  background: var(--neutral-900);
  border-right: 1px solid var(--neutral-800);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.sp-marquee-wrapper {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 100%);
}
.sp-marquee { overflow: hidden; }
.sp-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.sp-track:hover,
.sp-marquee:hover .sp-track { animation-play-state: paused; }
.sp-entry {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-500);
  white-space: nowrap;
  transition: color 300ms;
}
.sp-track:hover .sp-entry { color: var(--neutral-300); }
.sp-sep { color: var(--neutral-700); font-size: 18px; flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION 5: SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
}
.services-header {
  margin-bottom: 80px;
}
.service-module {
  padding: 0;
  position: relative;
}
.service-module + .service-module {
  margin-top: 96px;
}
.service-module-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.service-module-inner-reverse {
  direction: rtl;
}
.service-module-inner-reverse > * {
  direction: ltr;
}
.service-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-content .display-m {
  color: #fff;
}
.service-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--neutral-300);
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--neutral-300);
  line-height: 1.55;
}
.bullet-icon {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  border-bottom: 1px solid rgba(0,188,212,0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 180ms, border-color 180ms;
}
.service-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* Service visual containers */
.service-visual {
  position: relative;
}

/* Build mockup (Service 1) */
.build-mockup {
  position: relative;
  height: 360px;
}
.bm-wireframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 290px;
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden;
  z-index: 1;
  box-shadow: -8px 8px 40px rgba(0,0,0,0.4);
}
.bm-wf-nav {
  height: 20px;
  background: var(--neutral-700);
  border-radius: 4px;
  margin-bottom: 12px;
}
.bm-wf-hero {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.bm-wf-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-wf-line {
  height: 8px;
  background: var(--neutral-700);
  border-radius: 3px;
}
.l-full { width: 100%; }
.l-medium { width: 70%; }
.l-short { width: 50%; }
.bm-wf-btn {
  height: 18px;
  width: 70px;
  background: var(--neutral-700);
  border-radius: 3px;
  margin-top: 6px;
}
.bm-wf-block {
  width: 80px;
  height: 60px;
  background: var(--neutral-700);
  border-radius: 4px;
  flex-shrink: 0;
}
.bm-wf-cards {
  display: flex;
  gap: 6px;
}
.bm-wf-card {
  flex: 1;
  height: 50px;
  background: var(--neutral-700);
  border-radius: 4px;
}
.bm-wf-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--neutral-500);
  text-transform: uppercase;
}
.bm-styled {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 290px;
  background: var(--neutral-900);
  border: 1px solid var(--neutral-700);
  border-radius: 10px;
  padding: 16px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 8px 8px 40px rgba(0,0,0,0.5);
}
.bm-s-nav {
  height: 20px;
  background: var(--cyan);
  border-radius: 4px;
  margin-bottom: 12px;
  opacity: 0.8;
}
.bm-s-hero {
  display: flex;
  gap: 10px;
}
.bm-s-content { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.bm-s-eye { height: 6px; width: 80%; background: var(--cyan); border-radius: 2px; opacity: 0.7; }
.bm-s-h1 { height: 10px; border-radius: 3px; }
.bm-s-h1.cyan-line { background: var(--cyan); width: 100%; }
.bm-s-h1.white { background: var(--neutral-300); width: 80%; }
.bm-s-body { height: 6px; background: var(--neutral-500); border-radius: 2px; width: 90%; margin-top: 4px; }
.bm-s-cta {
  height: 18px;
  width: 70px;
  background: var(--cyan);
  border-radius: 3px;
  margin-top: 6px;
}
.bm-s-device {
  width: 60px;
  height: 90px;
  background: var(--neutral-800);
  border-radius: 4px;
  border: 1px solid var(--neutral-700);
  flex-shrink: 0;
}
.bm-s-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
}

/* SERP mockup (Service 2) */
.serp-mockup {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-width: 480px;
  margin: 0 auto;
}
.serp-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e8eaed;
}
.serp-g {
  font-size: 22px;
  font-weight: 900;
  color: #4285f4;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.serp-search {
  flex: 1;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.serp-query {
  font-size: 14px;
  color: #202124;
  font-family: var(--font-body);
}
.serp-search-icon { font-size: 14px; color: #4285f4; }
.serp-results { padding: 12px 20px 20px; }
.serp-result { padding: 12px 0; }
.serp-result + .serp-result { border-top: 1px solid #f0f0f0; }
.serp-result-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; position: relative; }
.serp-favicon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.serp-favicon.muted { background: #ccc; }
.serp-domain-info { flex: 1; }
.serp-domain {
  font-size: 12px;
  color: #202124;
  font-weight: 500;
  font-family: var(--font-body);
}
.serp-domain.muted { color: #888; }
.serp-breadcrumb { font-size: 11px; color: #5f6368; display: block; font-family: var(--font-body); }
.serp-rank-badge {
  background: var(--cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  position: absolute;
  right: 0;
  font-family: var(--font-body);
}
.serp-title-text {
  font-size: 15px;
  font-weight: 600;
  color: #1a0dab;
  line-height: 1.3;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.serp-title-text.muted { color: #888; font-size: 13px; font-weight: 500; }
.serp-snippet-text {
  font-size: 12px;
  color: #4d5156;
  line-height: 1.4;
  font-family: var(--font-body);
}
.serp-snippet-text.muted { color: #aaa; }
.serp-result-top { background: #f0f9ff; border-radius: 8px; padding: 12px; margin: -4px; }

/* Lead Gen mockup (Service 3) */
.lead-flow-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.7;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.lead-mockup {
  position: relative;
  height: 360px;
}
.lead-flow-line {
  position: absolute;
  left: 37%;
  top: 48%;
  bottom: 28%;
  width: 1px;
  background: rgba(0,188,212,0.3);
  z-index: 3;
  pointer-events: none;
}
.lead-form-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 12px;
  padding: 20px;
  z-index: 1;
  box-shadow: -8px 8px 40px rgba(0,0,0,0.4);
}
.lfc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--neutral-700);
}
.lfc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-100);
}
.lfc-badge {
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  padding: 3px 8px;
  border-radius: 20px;
}
.lfc-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-800);
}
.lfc-label {
  font-size: 12px;
  color: var(--neutral-500);
}
.lfc-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-100);
}
.lfc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.lfc-time { font-size: 11px; color: var(--neutral-500); }
.lfc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}
.sms-notification {
  position: absolute;
  bottom: 16px;
  right: 0;
  width: 70%;
  background: var(--neutral-900);
  border: 1px solid var(--neutral-700);
  border-radius: 12px;
  padding: 16px;
  z-index: 2;
  box-shadow: 8px 8px 40px rgba(0,0,0,0.5);
}
.sms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.sms-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--cyan);
  flex-shrink: 0;
}
.sms-app-info { flex: 1; }
.sms-app-name { display: block; font-size: 12px; font-weight: 600; color: var(--neutral-100); }
.sms-time { font-size: 11px; color: var(--neutral-500); }
.sms-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--neutral-300);
}


/* ============================================================
   SECTION 8: PROCESS
   ============================================================ */
.process {
  padding: var(--section-pad) 0 60px;
  background: var(--neutral-950);
  border-top: 1px solid var(--neutral-800);
  border-bottom: 1px solid var(--neutral-800);
}
.process-header { margin-bottom: 96px; }
.process-timeline-wrap { position: relative; }
.process-line-track {
  position: absolute;
  top: 28px;
  left: calc(50px / 2);
  right: calc(50px / 2);
  height: 2px;
  background: var(--neutral-800);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  width: 0;
  background: var(--cyan);
  transition: width 100ms linear;
  border-radius: 2px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform 400ms ease, opacity 600ms ease-out;
}
.process-step.is-active { transform: scale(1.04); }
.step-num-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neutral-800);
  border: 2px solid var(--neutral-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--neutral-100);
  transition: background 400ms, border-color 400ms, color 400ms;
  flex-shrink: 0;
}
.process-step.is-active .step-num-circle {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,188,212,0.4);
}
.step-dot {
  display: none;
}
.step-body { flex: 1; }
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-desc {
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.6;
}
.process-step.is-active .step-title { color: #fff; }
.process-step.is-active .step-desc { color: var(--neutral-300); }

/* ============================================================
   SECTION 9: WHAT WE BUILD
   ============================================================ */
.what-we-build {
  padding: var(--section-pad) 0;
}
.build-header { margin-bottom: 80px; }

/* Wireframe → Live site overlay */
.wf-to-styled {
  position: relative;
  height: 400px;
  max-width: 920px;
  margin: 0 auto 80px;
}
.wf-frame {
  position: absolute;
  width: 56%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--neutral-700);
  display: flex;
  flex-direction: column;
}
.wf-frame-back {
  top: 40px;
  left: 0;
  transform: rotate(-3deg);
  z-index: 1;
  background: var(--neutral-800);
  opacity: 0.82;
  box-shadow: -8px 12px 40px rgba(0,0,0,0.45);
}
.wf-frame-front {
  top: 0;
  right: 0;
  width: 62%;
  z-index: 2;
  background: var(--neutral-900);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), 0 0 48px rgba(0,188,212,0.08);
}
.wf-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--neutral-800);
  border-bottom: 1px solid var(--neutral-700);
  flex-shrink: 0;
}
.wf-dots { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.wf-url {
  flex: 1;
  background: var(--neutral-900);
  border: 1px solid var(--neutral-700);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--neutral-500);
  text-align: center;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wf-screen {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wf-nav-bar {
  height: 14px;
  background: var(--neutral-700);
  border-radius: 3px;
  margin-bottom: 4px;
}
.wf-nav-styled {
  background: var(--neutral-800);
  border-bottom: 1px solid rgba(0,188,212,0.25);
}
.wf-content-row {
  display: flex;
  gap: 12px;
  flex: 1;
}
.wf-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wf-line {
  height: 8px;
  border-radius: 2px;
  background: var(--neutral-700);
}
.wf-l-eyebrow { width: 45%; height: 5px; }
.wf-l-h1 { height: 11px; }
.wf-l-full { width: 100%; }
.wf-l-medium { width: 72%; }
.wf-l-body { height: 6px; }
.wf-l-short { width: 62%; }
.wf-l-btn { width: 72px; height: 15px; border-radius: 3px; margin-top: 4px; }
.wf-cyan-line { background: var(--cyan) !important; opacity: 0.85; }
.wf-white-line { background: var(--neutral-100) !important; }
.wf-muted-line { background: var(--neutral-500) !important; opacity: 0.55; }
.wf-cyan-btn-line { background: var(--cyan) !important; }
.wf-img-block {
  width: 76px;
  flex-shrink: 0;
  background: var(--neutral-700);
  border-radius: 5px;
  min-height: 72px;
}
.wf-img-styled {
  background: linear-gradient(135deg, var(--neutral-800) 0%, rgba(0,188,212,0.1) 100%);
  border: 1px solid rgba(0,188,212,0.18);
}
.wf-cards-row {
  display: flex;
  gap: 8px;
}
.wf-card {
  flex: 1;
  height: 36px;
  background: var(--neutral-700);
  border-radius: 4px;
}
.wf-card-styled {
  background: var(--neutral-800);
  border: 1px solid rgba(0,188,212,0.15);
}
.wf-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px;
  background: var(--neutral-800);
  border-top: 1px solid var(--neutral-700);
  font-family: ui-monospace, 'Fira Mono', Menlo, monospace;
}
.wf-label-back { color: var(--neutral-500); }
.wf-label-front { color: var(--cyan); }

/* Browser frame */
.browser-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--neutral-700);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  margin-bottom: 80px;
  background: var(--neutral-950);
}
.browser-chrome-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--neutral-800);
  border-bottom: 1px solid var(--neutral-700);
}
.browser-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.dot-red { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; }
.dot-yellow { width: 12px; height: 12px; border-radius: 50%; background: #ffbd2e; }
.dot-green { width: 12px; height: 12px; border-radius: 50%; background: #28c840; }
.browser-url-field {
  flex: 1;
  background: var(--neutral-900);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--neutral-500);
  text-align: center;
  font-family: var(--font-body);
  border: 1px solid var(--neutral-700);
}
.browser-chrome-right {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.browser-icon {
  width: 16px;
  height: 16px;
  background: var(--neutral-700);
  border-radius: 3px;
}
.browser-viewport {
  height: 360px;
  overflow: hidden;
}

/* Sample site inside browser */
.sample-site {
  height: 100%;
  background: var(--neutral-950);
  display: flex;
  flex-direction: column;
}
.ss-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 32px;
  background: rgba(10,14,26,0.95);
  border-bottom: 1px solid var(--neutral-800);
  flex-shrink: 0;
}
.ss-logo { width: 60px; height: 14px; background: var(--cyan); border-radius: 3px; opacity: 0.7; }
.ss-nav-links { display: flex; gap: 16px; flex: 1; justify-content: center; }
.ss-nav-links span { width: 36px; height: 8px; background: var(--neutral-700); border-radius: 3px; }
.ss-cta-btn { width: 60px; height: 20px; background: var(--cyan); border-radius: 4px; }
.ss-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  padding: 48px 32px;
  flex: 1;
}
.ss-hero-left { display: flex; flex-direction: column; gap: 10px; }
.ss-eyebrow { width: 120px; height: 7px; background: var(--cyan); border-radius: 2px; opacity: 0.7; }
.ss-h1 { height: 16px; border-radius: 4px; }
.coral-bar { background: var(--cyan); width: 90%; }
.white-bar { background: var(--neutral-300); width: 100%; }
.white-bar.short { width: 70%; }
.ss-p { height: 8px; background: var(--neutral-700); border-radius: 3px; width: 95%; margin-top: 4px; }
.ss-p.short { width: 75%; }
.ss-btns { display: flex; gap: 10px; margin-top: 8px; }
.ss-btn { height: 22px; border-radius: 4px; }
.ss-btn.coral { width: 100px; background: var(--cyan); }
.ss-btn.outline { width: 80px; background: transparent; border: 1.5px solid var(--neutral-700); }
.ss-hero-right { display: flex; align-items: center; justify-content: center; }
.ss-device-outer {
  width: 100%;
  height: 180px;
  background: var(--neutral-800);
  border-radius: 8px;
  border: 1px solid var(--neutral-700);
  overflow: hidden;
}
.ss-device-chrome {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 6px 10px;
  background: var(--neutral-700);
}
.ss-device-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neutral-500);
}
.ss-device-screen {
  height: calc(100% - 25px);
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
}
.ss-band { height: 32px; background: var(--neutral-900); border-top: 1px solid var(--neutral-800); flex-shrink: 0; }
.ss-services-row {
  display: flex;
  gap: 24px;
  padding: 24px 32px;
  flex-shrink: 0;
}
.ss-card {
  flex: 1;
  background: var(--neutral-900);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--neutral-800);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ss-card-icon { width: 24px; height: 24px; background: var(--cyan); border-radius: 6px; opacity: 0.4; }
.ss-card-title { height: 9px; background: var(--neutral-300); border-radius: 3px; width: 80%; }
.ss-card-body { height: 7px; background: var(--neutral-700); border-radius: 3px; width: 100%; }

/* Build badges */
.build-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--neutral-900);
  border: 1px solid var(--neutral-800);
  border-radius: 10px;
  padding: 20px 24px;
  transition: border-color 300ms, transform 300ms;
}
.badge:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.badge-icon {
  flex-shrink: 0;
  color: var(--cyan);
  width: 24px;
  height: 24px;
}
.badge-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-300);
}
.build-cta-line {
  font-size: 16px;
  color: var(--neutral-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cyan-cta-link {
  color: var(--cyan);
  font-weight: 600;
  border-bottom: 1px solid rgba(0,188,212,0.4);
  margin-left: 8px;
  transition: border-color 180ms;
}
.cyan-cta-link:hover { border-color: var(--cyan); }

/* ============================================================
   SECTION 10: TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--neutral-950);
  border-top: 1px solid var(--neutral-800);
  border-bottom: 1px solid var(--neutral-800);
}
.testimonials-header { margin-bottom: 80px; }

/* Featured testimonial */
.testimonial-featured {
  position: relative;
  background: var(--neutral-900);
  border: 1px solid var(--neutral-800);
  border-radius: 16px;
  padding: 64px 72px;
  margin-bottom: 40px;
}
.testimonial-quote-mark {
  position: absolute;
  top: 40px;
  left: 48px;
  font-family: Georgia, serif;
  font-size: 160px;
  color: var(--cyan);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonial-featured-quote {
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--neutral-100);
  max-width: 820px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, #26c6da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-avatar-sm {
  width: 56px;
  height: 56px;
  font-size: 20px;
}
.testimonial-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.testimonial-title {
  font-size: 14px;
  color: var(--neutral-500);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-top: 6px;
  color: #FFB800;
  font-size: 16px;
}

/* Secondary testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial-card {
  background: var(--neutral-900);
  border: 1px solid var(--neutral-800);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 300ms;
}
.testimonial-card:hover { border-color: var(--neutral-700); }
.testimonial-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 60px;
  background: var(--cyan);
  border-radius: 0 0 4px 0;
}
.testimonial-stars-sm {
  display: flex;
  gap: 2px;
  color: #FFB800;
  font-size: 14px;
}
.testimonial-card-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--neutral-300);
  font-style: italic;
  flex: 1;
}
.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-800);
}

/* ============================================================
   PATHS PREFERENCE LINE
   ============================================================ */
.paths-preference {
  text-align: center;
  font-size: 14px;
  color: var(--neutral-500);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION 11: PRICING
   ============================================================ */
.pricing {
  padding: var(--section-pad) 0;
}
.pricing-header { margin-bottom: 80px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}
.two-paths-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  border-radius: 16px;
  border: 1px solid var(--neutral-800);
  background: var(--neutral-900);
  transition: border-color 300ms, transform 300ms, opacity 300ms;
  position: relative;
  overflow: visible;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--neutral-700); }
/* The Site card — visually recedes slightly */
.two-paths-grid .pricing-card:not(.pricing-card-featured) {
  opacity: 0.92;
}
.pricing-card-featured {
  border-color: var(--cyan);
  border-width: 2px;
  background: linear-gradient(to bottom, rgba(0,188,212,0.07) 0%, var(--neutral-900) 100%);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 0 60px rgba(0,188,212,0.15), 0 20px 40px rgba(0,0,0,0.4);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); border-color: var(--cyan); }
.pricing-card-featured-cyan {
  border-color: var(--cyan) !important;
  border-width: 2px;
  background: linear-gradient(to bottom, rgba(0,188,212,0.07) 0%, var(--neutral-900) 100%) !important;
  box-shadow: 0 0 40px rgba(0,188,212,0.1);
}
.pricing-card-featured-cyan:hover { border-color: var(--cyan) !important; }
.pricing-popular-ribbon {
  position: absolute;
  top: 0;
  right: 28px;
  background: var(--cyan);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}
.pricing-popular-ribbon-cyan {
  background: var(--cyan) !important;
  color: var(--dark) !important;
}
.path-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 20px;
  padding: 4px 12px;
}
.path-tag-cyan {
  color: var(--cyan);
  background: rgba(0,188,212,0.1);
  border-color: rgba(0,188,212,0.3);
}
.pf-check-cyan { color: var(--cyan); }
.pricing-card-inner {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pricing-card-top { display: flex; flex-direction: column; gap: 12px; }
.pricing-tier-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-100);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--neutral-100);
  line-height: 1;
}
.price-period {
  font-size: 18px;
  color: var(--neutral-500);
  font-weight: 500;
}
.pricing-descriptor {
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-300);
  letter-spacing: 0.02em;
}
.pricing-position {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.5;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--neutral-300);
  line-height: 1.45;
}
.pf-check {
  color: var(--neutral-500);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}
.pricing-cta { width: 100%; justify-content: center; margin-top: auto; }
.pricing-footer-note {
  text-align: center;
  font-size: 14px;
  color: var(--neutral-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SECTION 12: CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--neutral-950);
  border-top: 1px solid var(--neutral-800);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 40px; }
.contact-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--neutral-300);
  max-width: 480px;
}
.contact-info-blocks { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--neutral-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  border: 1px solid var(--neutral-700);
}
.contact-info-text { flex: 1; }
.contact-info-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--neutral-500); margin-bottom: 3px; }
.contact-info-value { font-size: 15px; color: var(--neutral-300); font-weight: 500; line-height: 1.4; transition: color 180ms; }
a.contact-info-value:hover { color: var(--cyan); }

/* Contact form */
.contact-form-card {
  background: var(--neutral-900);
  border: 1px solid var(--neutral-800);
  border-radius: 16px;
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row-2 > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.required { color: var(--cyan); }
.form-input {
  background: var(--neutral-800);
  border: 1px solid rgba(0,188,212,0.15);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--neutral-100);
  font-family: var(--font-body);
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--neutral-500); }
.form-input:focus {
  border-color: #00BCD4;
  box-shadow: 0 0 0 3px rgba(0,188,212,0.15);
}
/* Error state applied by JS only after a submit attempt */
.form-input.field-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6484' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: var(--neutral-800); color: var(--neutral-100); }
.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
  border-radius: 8px;
}
.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--neutral-500);
  justify-content: center;
  text-align: center;
}
.form-trust svg { flex-shrink: 0; color: var(--neutral-500); }

/* ============================================================
   SECTION 13: FOOTER
   ============================================================ */
.site-footer { background: var(--neutral-950); border-top: 1px solid var(--neutral-800); }
.footer-top { padding: 96px 0 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 64px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-tagline { font-size: 15px; color: var(--neutral-500); line-height: 1.5; max-width: 220px; }
.footer-contact-links { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--neutral-500);
  transition: color 180ms;
}
.footer-contact-link:hover { color: var(--neutral-100); }
.footer-contact-link svg { flex-shrink: 0; color: var(--cyan); }
.footer-col { display: flex; flex-direction: column; gap: 24px; }
.footer-col-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neutral-100);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 14px;
  color: var(--neutral-500);
  transition: color 180ms;
  line-height: 1.4;
}
.footer-links li a:hover { color: var(--neutral-100); }
.footer-cities { display: flex; gap: 32px; }
.footer-links-resources li a {
  font-size: 14px;
  color: var(--neutral-500);
  transition: color 180ms;
}
.footer-links-resources li a:hover { color: var(--neutral-100); }
.footer-blog-item { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.footer-blog-soon {
  font-size: 13px;
  color: var(--neutral-500);
  line-height: 1.6;
}
.footer-newsletter { margin-top: 8px; }
.footer-newsletter-heading { font-size: 13px; color: var(--neutral-500); line-height: 1.5; margin-bottom: 12px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-input {
  flex: 1;
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--neutral-100);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 200ms;
  min-width: 0;
}
.footer-newsletter-input::placeholder { color: var(--neutral-500); }
.footer-newsletter-input:focus { border-color: var(--cyan); }
.footer-newsletter-btn { flex-shrink: 0; padding: 10px 16px; font-size: 13px; }
.footer-newsletter-sub { font-size: 12px; color: var(--neutral-500); margin-bottom: 12px; margin-top: -8px; }
.footer-faq-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--cyan);
  transition: opacity 180ms;
}
.footer-faq-link:hover { opacity: 0.75; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--neutral-800);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 13px; color: var(--neutral-500); }
.footer-legal-links { display: flex; gap: 16px; align-items: center; font-size: 13px; color: var(--neutral-500); }
.footer-legal-links a { color: var(--neutral-500); transition: color 180ms; }
.footer-legal-links a:hover { color: var(--neutral-300); }
.footer-legal-links span { color: var(--neutral-700); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--neutral-950);
  border-top: 1px solid var(--neutral-800);
}
.faq-header { margin-bottom: 64px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.faq-item {
  border-bottom: 1px solid var(--neutral-800);
}
.faq-item:first-child,
.faq-item:nth-child(2) {
  border-top: 1px solid var(--neutral-800);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--neutral-100);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: color 180ms;
}
.faq-q:hover { color: var(--cyan); }
.faq-q[aria-expanded="true"] { color: var(--cyan); }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 250ms ease;
  display: inline-block;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 24px;
}
.faq-a[hidden] { display: none; }
.faq-a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-300);
}

/* ============================================================
   FORM RISK REVERSAL
   ============================================================ */
.form-risk-reversal {
  font-size: 12px;
  color: var(--neutral-500);
  text-align: center;
  line-height: 1.6;
  max-width: 400px;
  margin: 4px auto 0;
}

/* ============================================================
   NAV SCROLL-SPY ACTIVE STATE
   ============================================================ */
.header-nav a {
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 250ms ease;
}
.header-nav a.nav-active {
  color: var(--cyan);
}
.header-nav a.nav-active::after {
  width: 100%;
}

/* ============================================================
   HERO DEVICE MOCKUP
   ============================================================ */
.hero-visual {
  position: relative;
  padding-right: 52px; /* contain chip-lead without clipping */
}
.hero-device {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.device-browser {
  background: var(--neutral-900);
  border-radius: 12px;
  border: 1px solid var(--neutral-700);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0, 188, 212, 0.08);
  animation: deviceFloat 6s ease-in-out infinite;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.device-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--neutral-800);
  border-bottom: 1px solid var(--neutral-700);
}
.device-dots { display: flex; gap: 6px; align-items: center; }
.dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; flex-shrink: 0; }
.dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #ffbd2e; flex-shrink: 0; }
.dot-green { width: 10px; height: 10px; border-radius: 50%; background: #28c840; flex-shrink: 0; }
.device-url-bar {
  flex: 1;
  background: var(--neutral-900);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--neutral-500);
  text-align: center;
  border: 1px solid var(--neutral-700);
}
.device-chrome-actions { display: flex; gap: 8px; }
.device-chrome-actions span { width: 12px; height: 12px; background: var(--neutral-700); border-radius: 3px; }
.device-screen {
  height: 340px;
  overflow: hidden;
  background: var(--neutral-950);
}

/* Mini recursive site */
.mini-site { height: 100%; display: flex; flex-direction: column; }
.ms-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(10,14,26,0.98);
  border-bottom: 1px solid var(--neutral-800);
  flex-shrink: 0;
}
.ms-nav-logo { width: 40px; height: 8px; background: var(--cyan); border-radius: 2px; }
.ms-nav-links { display: flex; gap: 8px; flex: 1; justify-content: center; }
.ms-nav-links span { width: 20px; height: 5px; background: var(--neutral-700); border-radius: 2px; }
.ms-nav-cta { width: 44px; height: 14px; background: var(--cyan); border-radius: 3px; }
.ms-hero {
  display: flex;
  gap: 20px;
  padding: 24px 16px;
  flex: 1;
  background: var(--neutral-950);
}
.ms-hero-left { flex: 1.1; display: flex; flex-direction: column; gap: 7px; }
.ms-hero-right { flex: 0.9; }
.ms-eyebrow { width: 80px; height: 4px; background: var(--cyan); border-radius: 1px; opacity: 0.7; margin-bottom: 2px; }
.ms-h1 { height: 10px; background: var(--neutral-300); border-radius: 2px; width: 100%; }
.ms-coral { background: var(--cyan); width: 85%; }
.ms-short { width: 65%; }
.ms-body { height: 6px; background: var(--neutral-700); border-radius: 2px; width: 100%; }
.ms-short-body { width: 80%; }
.ms-ctas { display: flex; gap: 6px; margin-top: 4px; }
.ms-btn-coral { width: 72px; height: 14px; background: var(--cyan); border-radius: 3px; }
.ms-btn-outline { width: 52px; height: 14px; border: 1px solid var(--neutral-600, #3a4060); border-radius: 3px; }
.ms-device-frame {
  width: 100%;
  height: 120px;
  background: var(--neutral-800);
  border-radius: 6px;
  border: 1px solid var(--neutral-700);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms-device-inner {
  width: 80%;
  height: 70%;
  background: linear-gradient(135deg, rgba(0,188,212,0.15) 0%, rgba(0,188,212,0.05) 100%);
  border-radius: 4px;
  border: 1px solid var(--neutral-700);
}
.ms-strip { height: 20px; background: var(--neutral-900); border-top: 1px solid var(--neutral-800); }
.ms-services { padding: 12px 16px; }
.ms-service-row { display: flex; gap: 10px; }
.ms-s-img { width: 60px; height: 44px; background: var(--neutral-800); border-radius: 4px; flex-shrink: 0; }
.ms-s-content { flex: 1; display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.ms-s-title { height: 8px; background: var(--neutral-300); border-radius: 2px; width: 80%; }
.ms-s-body { height: 5px; background: var(--neutral-700); border-radius: 2px; }
.ms-s-body.short { width: 60%; }

/* Floating device chips */
.device-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--neutral-900);
  border: 1px solid var(--neutral-700);
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-100);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  animation: chipIn 500ms ease-out forwards;
}
.chip-traffic {
  top: -16px;
  left: -32px;
  animation-delay: 800ms;
  border-color: rgba(0,188,212,0.3);
  background: rgba(0,188,212,0.08);
}
.chip-lead {
  top: 60px;
  right: -12px;
  animation-delay: 1000ms;
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.08);
}
.chip-ranking {
  bottom: -14px;
  left: -20px;
  animation-delay: 1200ms;
  border-color: rgba(0,188,212,0.3);
  background: rgba(0,188,212,0.08);
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chip-arrow { color: var(--cyan); font-weight: 900; font-size: 13px; }
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.8);
  flex-shrink: 0;
}
.chip-g {
  font-size: 14px;
  font-weight: 900;
  color: var(--cyan);
  font-family: var(--font-body);
}
.chip-text { color: var(--neutral-300); }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (768px)
   ============================================================ */
@media (max-width: 1023px) {
  .container { padding: 0 40px; }
  .header-inner { padding: 0 40px; }
  .header-nav { display: none; }
  .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: var(--section-pad-mobile) 40px;
    gap: 64px;
  }
  .hero-visual { display: flex; justify-content: center; padding-right: 0; }
  .hero-device { max-width: 420px; }

  .sp-label { padding: 0 16px 0 40px; }

  .service-module-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-module-inner-reverse { direction: ltr; }
  .service-visual { order: -1; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line-track { display: none; }

  .build-badges { grid-template-columns: repeat(2, 1fr); }

  .testimonial-featured { padding: 48px 40px; }
  .testimonial-featured-quote { font-size: 20px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .two-paths-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card-featured { transform: none; box-shadow: 0 0 40px rgba(0,188,212,0.12), 0 12px 24px rgba(0,0,0,0.4); }
  .pricing-card-featured-cyan { transform: none !important; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .two-paths-grid .pricing-card:not(.pricing-card-featured) { opacity: 1; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(2) { border-top: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 64px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (375px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-pad: 64px;
    --section-pad-mobile: 56px;
  }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }

  /* Typography mobile scale (40% reduction on display) */
  .display-xl { font-size: 52px; }
  .display-l { font-size: 38px; letter-spacing: -0.01em; }
  .display-m { font-size: 28px; }

  .hero-inner { padding: 80px 24px; gap: 48px; }
  .hero-sub { font-size: 17px; }
  .hero-tagline { font-size: 20px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; min-height: 48px; }

  .hero-device { max-width: 320px; }
  .device-screen { height: 240px; }
  .chip-traffic { left: -16px; }
  .chip-lead { right: -16px; }
  .chip-ranking { left: -8px; }

  .sp-inner { flex-direction: column; gap: 0; }
  .sp-label { width: 100%; padding: 16px 24px; border-right: none; border-bottom: 1px solid var(--neutral-800); font-size: 13px; }

  .services-header { margin-bottom: 56px; }
  .service-module + .service-module { margin-top: 72px; }
  .service-module-inner { gap: 36px; }

  .build-mockup { height: 280px; }
  .bm-wireframe { width: 65%; height: 220px; }
  .bm-styled { width: 70%; height: 220px; }

  .lead-mockup { height: 300px; }
  .lead-form-card { width: 85%; }
  .sms-notification { width: 80%; }

  .serp-mockup { font-size: 12px; }

  .process-steps { grid-template-columns: 1fr; }

  .build-badges { grid-template-columns: 1fr; }
  .browser-viewport { height: 300px; }

  .testimonial-featured {
    padding: 36px 28px;
  }
  .testimonial-featured-quote { font-size: 17px; margin-bottom: 32px; }
  .testimonial-quote-mark { font-size: 100px; top: 24px; left: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing-grid { max-width: none; }
  .pricing-card-inner { padding: 32px 28px; }

  .contact-form-card { padding: 32px 24px; }
  .form-row { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: 1; }
  .footer-cities { gap: 16px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   SMALL DESKTOP (1024px–1439px)
   ============================================================ */
@media (min-width: 1024px) and (max-width: 1439px) {
  .container { padding: 0 60px; }
  .header-inner { padding: 0 60px; }
  .hero-inner { padding: 80px 60px; }
  .display-xl { font-size: 72px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .device-browser { animation: none; }
  .sp-track { animation: none; }
}
