/* ============================================================
   veltiq — neobrutalism agency site
   Using design tokens from colors_and_type.css (theme-violet)
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); }

img, svg { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}
.container--narrow { max-width: 880px; }

/* ----------- override .nb-btn for the bigger sizes ----------- */
.nb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-base);
  font-weight: var(--heading-font-weight);
  text-decoration: none;
  cursor: pointer;
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: var(--main);
  color: var(--main-foreground);
  font-size: var(--text-sm);
  height: 40px;
  padding: 0 16px;
  transition: transform 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.nb-btn:hover { transform: translate(var(--box-shadow-x), var(--box-shadow-y)); box-shadow: none; }
.nb-btn--lg { height: 48px; padding: 0 22px; font-size: var(--text-base); }
.nb-btn--xl { height: 60px; padding: 0 28px; font-size: var(--text-lg); }
.nb-btn--reverse {
  background: var(--secondary-background);
  color: var(--foreground);
}
.nb-btn--final {
  height: 68px; padding: 0 36px;
  font-size: var(--text-xl);
  background: var(--foreground); color: var(--background);
  box-shadow: 6px 6px 0 0 var(--foreground);
  border-color: var(--foreground);
}
.nb-btn--final:hover { transform: translate(6px,6px); box-shadow: none; }

.nb-badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 12px;
  background: var(--main); color: var(--main-foreground);
  border: var(--border-width) solid var(--border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: var(--heading-font-weight);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nb-badge--neutral { background: var(--secondary-background); color: var(--foreground); }

.nb-pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: oklch(72% 0.18 145);
  border: 2px solid var(--border);
  box-shadow: 0 0 0 0 oklch(72% 0.18 145 / 0.7);
  animation: pulse 1.8s infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 oklch(72% 0.18 145 / 0.6); }
  70%  { box-shadow: 0 0 0 10px oklch(72% 0.18 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(72% 0.18 145 / 0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  padding: 14px 28px;
  background: var(--secondary-background);
  border-bottom: 4px solid var(--border);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--foreground); }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--main);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--main-foreground);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-mark img {
  width: 24px; height: 24px;
  object-fit: contain;
  display: block;
}
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 28px; font-weight: var(--heading-font-weight); font-size: var(--text-sm); }
.nav-links a {
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--main); transform: scaleX(0); transform-origin: left;
  transition: transform 160ms ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-availability { font-size: var(--text-xs); font-weight: var(--heading-font-weight); white-space: nowrap; opacity: 0.8; }

.nav-hamburger {
  display: none;
  width: 44px; height: 40px; padding: 8px;
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-hamburger span { display: block; height: 3px; background: var(--foreground); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column; gap: 6px;
  padding: var(--space-4);
  background: var(--secondary-background);
  border-bottom: 4px solid var(--border);
  position: sticky; top: 68px; z-index: 49;
}
.mobile-menu a {
  text-decoration: none; padding: 12px 8px;
  font-weight: var(--heading-font-weight); font-size: var(--text-base);
  border-bottom: 2px solid color-mix(in oklab, var(--foreground) 10%, transparent);
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--foreground) 10%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--foreground) 10%, transparent) 1px, transparent 1px);
  background-size: 70px 70px;
  border-bottom: 4px solid var(--border);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-weight: var(--heading-font-weight);
  font-size: var(--text-sm);
}
.hero-eyebrow-sep { opacity: 0.4; }
.hero-eyebrow-text { letter-spacing: 0.02em; }

.hero-h1 {
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 1200px; margin: 0 auto;
}
.hero-h1 .hl {
  position: relative; display: inline-block;
  padding: 0 16px;
  background: var(--main);
  color: var(--main-foreground);
  border: 3px solid var(--border);
  border-radius: 8px;
  box-shadow: 6px 6px 0 0 var(--border);
  transform: rotate(-1.2deg);
  margin: 6px 0;
}
.hl-star { position: absolute; width: 52px; height: 52px; pointer-events: none; }
.hl-star.tl { top: -28px; left: -28px; transform: rotate(-12deg); }
.hl-star.br { bottom: -28px; right: -28px; transform: rotate(20deg); }

.hero-lead {
  margin: 36px auto 0;
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 500;
}

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

/* trust bar */
.trust-bar {
  margin-top: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.trust-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); font-weight: var(--heading-font-weight);
  opacity: 0.8;
}
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.logo-box {
  height: 56px; min-width: 160px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 0 22px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* stats */
.stats-row {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 22px;
  text-align: left;
}
.stat-card--accent { background: var(--main); color: var(--main-foreground); }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 8px;
  font-size: var(--text-sm);
  font-weight: var(--heading-font-weight);
  opacity: 0.85;
}

/* hero floating stars */
.float-star { position: absolute; pointer-events: none; z-index: 1; }
.fs-1 { top: 90px; left: 40px; width: 90px; height: 90px; transform: rotate(-15deg); animation: spin 22s linear infinite; }
.fs-2 { top: 220px; right: 60px; width: 60px; height: 60px; transform: rotate(20deg); animation: spin 30s linear infinite reverse; }
.fs-3 { bottom: 100px; left: 80px; width: 100px; height: 100px; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-bottom: 4px solid var(--border);
  background: var(--foreground);
  color: var(--background);
  padding: 18px 0;
  display: flex;
}
.marquee .track {
  display: inline-flex; align-items: center; gap: 50px;
  animation: scroll 24s linear infinite;
  padding-right: 50px;
}
.marquee .track span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.marquee .track svg { width: 34px; height: 34px; flex-shrink: 0; }
@keyframes scroll {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION basics
   ============================================================ */
.section { padding: 100px 0; border-bottom: 4px solid var(--border); position: relative; }
.section-head {
  text-align: center; max-width: 820px; margin: 0 auto 64px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-head h2 .ul {
  background-image: linear-gradient(transparent 65%, var(--main) 65%);
  background-repeat: no-repeat;
  padding: 0 2px;
}
.section-head h2 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--main);
  opacity: 0.55;
}
.section-sub {
  font-size: var(--text-lg);
  max-width: 600px;
  opacity: 0.78;
  line-height: 1.5;
}

/* ============================================================
   SERVICES
   ============================================================ */
.section--services { background: var(--secondary-background); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  position: relative;
  background: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--foreground);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 120ms ease, box-shadow 120ms ease;
  min-height: 320px;
}
.svc:hover { transform: translate(6px, 6px); box-shadow: none; }
.svc--accent { background: var(--main); color: var(--main-foreground); }
.svc-icon {
  width: 56px; height: 56px;
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  color: var(--foreground);
}
.svc--accent .svc-icon { background: var(--foreground); color: var(--main); }
.svc-icon svg { width: 28px; height: 28px; }
.svc-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  opacity: 0.5;
}
.svc h3 {
  font-size: var(--text-2xl);
  line-height: 1.15;
  margin-top: 4px;
}
.svc p {
  font-size: var(--text-base);
  line-height: 1.5;
  opacity: 0.85;
  flex: 1;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: var(--heading-font-weight);
  font-size: var(--text-sm);
  margin-top: 8px;
}
.svc-link svg { transition: transform 160ms ease; }
.svc:hover .svc-link svg { transform: translate(2px, -2px); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.why-card--accent { background: var(--main); color: var(--main-foreground); }
.why-big {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 4px;
}
.why-cap {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}
.why-card h3 {
  font-size: var(--text-xl);
  margin-top: 6px;
  line-height: 1.2;
}
.why-card p { font-size: var(--text-base); opacity: 0.85; line-height: 1.5; }

.why-bar { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.why-bar-row {
  display: grid; grid-template-columns: 110px 1fr 50px;
  align-items: center; gap: 10px;
  font-size: var(--text-sm); font-weight: 600;
}
.why-bar-track {
  height: 14px;
  background: color-mix(in oklab, var(--foreground) 8%, transparent);
  border: 2px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.why-bar-fill { height: 100%; background: var(--foreground); }
.why-bar-fill.traditional { width: 100%; background: color-mix(in oklab, var(--foreground) 35%, transparent); }
.why-bar-fill.us { width: 31%; background: var(--main); }
.why-bar-row b { text-align: right; font-family: var(--font-mono); font-size: var(--text-sm); }

.why-time { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.why-time-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600;
}
.why-time-row .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--main-foreground); opacity: 0.2;
  border: 2px solid var(--border);
}
.why-time-row .dot--filled { background: var(--main-foreground); opacity: 1; }
.why-card--accent .why-time-row .dot { background: var(--foreground); opacity: 0.35; }
.why-card--accent .why-time-row .dot--filled { background: var(--foreground); opacity: 1; }

.why-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.why-tag {
  display: inline-flex; align-items: center;
  height: 30px; padding: 0 12px;
  background: var(--main);
  color: var(--main-foreground);
  border: var(--border-width) solid var(--border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section--testimonials { background: var(--secondary-background); overflow: hidden; }
.t-deco { position: absolute; pointer-events: none; z-index: 0; opacity: 0.7; }
.t-deco--l { left: -100px; top: 80px; width: 240px; height: 240px; animation: spin 35s linear infinite; }
.t-deco--r { right: -100px; bottom: 80px; width: 200px; height: 200px; animation: spin 28s linear infinite reverse; }

.t-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.t-card {
  background: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.t-card--accent { background: var(--main); color: var(--main-foreground); }
.t-stars { display: flex; gap: 4px; }
.t-stars svg { width: 22px; height: 22px; }
.t-quote {
  font-size: var(--text-lg);
  line-height: 1.4;
  font-weight: 600;
  flex: 1;
}
.t-quote mark {
  background: var(--background);
  border: 2px solid var(--border);
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 800;
}
.t-card--accent .t-quote mark { background: var(--secondary-background); }
.t-meta { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 48px; height: 48px;
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: var(--text-base);
  color: #000;
}
.t-name { font-weight: var(--heading-font-weight); font-size: var(--text-base); line-height: 1.1; }
.t-role { font-size: var(--text-xs); opacity: 0.7; margin-top: 2px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  align-items: stretch;
  gap: 0;
}
.proc-step {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.proc-step--accent { background: var(--main); color: var(--main-foreground); }
.proc-num {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.proc-icon {
  width: 56px; height: 56px;
  background: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 4px;
}
.proc-step--accent .proc-icon { background: var(--foreground); color: var(--main); }
.proc-icon svg { width: 28px; height: 28px; }
.proc-step h3 {
  font-size: var(--text-xl);
  margin-top: 6px;
  line-height: 1.2;
}
.proc-step p { font-size: var(--text-sm); line-height: 1.5; opacity: 0.85; flex: 1; }
.proc-meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  opacity: 0.7;
  margin-top: 4px;
}

.proc-connector {
  align-self: center;
  height: 4px;
  width: 100%;
  background: var(--border);
  position: relative;
}
.proc-connector::after {
  content: "";
  position: absolute;
  right: -2px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--border);
}

/* ============================================================
   PRICING
   ============================================================ */
.section--pricing {
  background:
    linear-gradient(to right, color-mix(in oklab, var(--foreground) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--foreground) 6%, transparent) 1px, transparent 1px),
    var(--background);
  background-size: 70px 70px, 70px 70px, auto;
}
.pricing-toggle {
  margin: 0 auto 48px;
  display: inline-flex;
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 4px;
  gap: 2px;
  position: relative;
  left: 50%; transform: translateX(-50%);
}
.pt-btn {
  border: 0; background: transparent; cursor: pointer;
  height: 44px; padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-base);
  font-weight: var(--heading-font-weight);
  font-size: var(--text-sm);
  color: var(--foreground);
  transition: background 160ms ease, color 160ms ease;
}
.pt-btn.is-active {
  background: var(--main);
  color: var(--main-foreground);
  border: 2px solid var(--border);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid[hidden] { display: none; }

.price-card {
  position: relative;
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.price-card--featured {
  background: var(--main); color: var(--main-foreground);
  box-shadow: var(--shadow-xl);
  transform: translateY(-12px) rotate(-0.5deg);
  border-width: 3px;
}
.price-ribbon {
  position: absolute;
  top: -18px; right: 20px;
  background: var(--foreground); color: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 6px 14px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.price-ribbon svg { width: 14px; height: 14px; fill: var(--background); }

.price-tier {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.price-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-3xl);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-amount {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-heading);
  margin-top: 2px;
}
.price-from { font-size: var(--text-xs); font-weight: 700; opacity: 0.6; letter-spacing: 0.1em; text-transform: uppercase; }
.price-amount b {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-range { font-size: var(--text-base); font-weight: 600; opacity: 0.7; }

.price-blurb { font-size: var(--text-sm); opacity: 0.85; line-height: 1.5; }

.price-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--text-xs); font-weight: 700;
}
.price-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 999px;
}
.price-card--featured .price-meta span { background: var(--secondary-background); }

.price-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: var(--text-sm);
}
.price-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  background: var(--main);
  border: 2px solid var(--border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.price-card--featured .price-list li::before { background-color: var(--secondary-background); }

.price-cta { margin-top: auto; align-self: stretch; justify-content: center; }

/* not sure callout */
.not-sure {
  margin-top: 48px;
  background: var(--foreground);
  color: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.ns-icon {
  width: 48px; height: 48px;
  background: var(--main);
  color: var(--main-foreground);
  border: 2px solid var(--background);
  border-radius: var(--border-radius);
  display: inline-flex; align-items: center; justify-content: center;
}
.ns-icon svg { width: 26px; height: 26px; }
.ns-text { display: flex; flex-direction: column; gap: 2px; }
.ns-text b { font-size: var(--text-lg); }
.ns-text span { font-size: var(--text-sm); opacity: 0.85; }
.not-sure .nb-btn {
  background: var(--main); color: var(--main-foreground);
  border-color: var(--background);
  box-shadow: 4px 4px 0 0 var(--background);
}
.not-sure .nb-btn:hover { box-shadow: none; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.section--cases { background: var(--secondary-background); }
.case-list { display: flex; flex-direction: column; gap: 32px; }
.case-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  background: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  padding: 40px;
}
.case-card--accent { background: var(--main); color: var(--main-foreground); }
.case-left { display: flex; flex-direction: column; gap: 18px; }
.case-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.case-summary { font-size: var(--text-base); opacity: 0.85; line-height: 1.5; max-width: 560px; }

.case-baf {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 16px; align-items: stretch;
  margin-top: 4px;
}
.case-baf-col {
  background: var(--secondary-background);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  padding: 16px;
  font-size: var(--text-sm);
}
.case-card--accent .case-baf-col { background: var(--background); color: var(--foreground); }
.case-baf-col--after { background: var(--main); color: var(--main-foreground); }
.case-card--accent .case-baf-col--after { background: var(--foreground); color: var(--main); }
.case-card--accent .case-baf-col--after ul li::marker { color: var(--main); }
.baf-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  opacity: 0.7;
}
.case-baf-col ul {
  margin: 0; padding: 0 0 0 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.case-baf-arrow {
  align-self: center;
  display: flex; align-items: center; justify-content: center;
  color: var(--foreground);
}
.case-card--accent .case-baf-arrow { color: var(--main-foreground); }
.case-baf-arrow svg { width: 28px; height: 28px; }

.case-stack {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: var(--text-sm);
  margin-top: 6px;
}
.case-stack > span:first-child { font-weight: 700; opacity: 0.6; font-family: var(--font-mono); }
.case-pill {
  display: inline-flex; align-items: center;
  height: 30px; padding: 0 12px;
  background: var(--secondary-background);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
}
.case-card--accent .case-pill { background: var(--background); color: var(--foreground); }

.case-right {
  display: flex; flex-direction: column; gap: 16px;
  align-self: stretch;
}
.case-metric {
  background: var(--secondary-background);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.case-metric--alt { background: var(--main); color: var(--main-foreground); }
.case-card--accent .case-metric { background: var(--foreground); color: var(--main); }
.case-card--accent .case-metric--alt { background: var(--background); color: var(--foreground); }
.case-metric-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.case-metric-num small { font-size: 0.45em; font-weight: 700; letter-spacing: 0; margin-left: 4px; }
.case-metric-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.faq-item[data-open="true"] {
  background: var(--main); color: var(--main-foreground);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--border);
}
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: 0;
  padding: 22px 24px;
  font-family: var(--font-base);
  font-weight: var(--heading-font-weight);
  font-size: var(--text-lg);
  color: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  line-height: 1.3;
}
.faq-chev { width: 22px; height: 22px; transition: transform 220ms ease; flex-shrink: 0; }
.faq-item[data-open="true"] .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 260ms ease, padding 200ms ease;
  padding: 0 24px;
  font-size: var(--text-base);
  line-height: 1.55;
}
.faq-item[data-open="true"] .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.section--final {
  background: var(--main);
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--foreground) 18%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--foreground) 18%, transparent) 1px, transparent 1px);
  background-size: 70px 70px;
  color: var(--main-foreground);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final-star { position: absolute; pointer-events: none; }
.fs-tl { top: 80px; left: 80px; width: 110px; height: 110px; animation: spin 24s linear infinite; }
.fs-br { bottom: 80px; right: 80px; width: 130px; height: 130px; animation: spin 28s linear infinite reverse; }

.final-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; z-index: 2; }
.final-h2 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.final-lead { font-size: var(--text-xl); max-width: 640px; line-height: 1.45; font-weight: 500; }

.final-trust {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
  margin-top: 8px;
  font-weight: var(--heading-font-weight);
  font-size: var(--text-sm);
}
.final-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 2px solid color-mix(in oklab, var(--background) 20%, transparent);
}
.footer-brand .brand-mark {
  background: var(--main);
  box-shadow: 4px 4px 0 0 var(--background);
}
.footer-brand p { margin: 18px 0 24px; font-size: var(--text-base); opacity: 0.85; line-height: 1.5; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px; height: 44px;
  background: var(--background); color: var(--foreground);
  border: 2px solid var(--background);
  border-radius: var(--border-radius);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 120ms ease, box-shadow 120ms ease;
  text-decoration: none;
  box-shadow: 4px 4px 0 0 var(--main);
}
.footer-social a:hover { transform: translate(4px, 4px); box-shadow: none; }

.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  color: var(--main);
}
.footer-col a {
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  opacity: 0.85;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); font-weight: 700;
  margin-top: 8px;
}

.footer-strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  font-size: var(--text-sm);
  opacity: 0.8;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-strip a { color: var(--main); }

/* ============================================================
   CAPABILITIES STRIP
   ============================================================ */
.section--caps {
  background: var(--secondary-background);
  padding: 56px 0;
}
.caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.caps-block { display: flex; flex-direction: column; gap: 14px; }
.caps-block--split {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.caps-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}
.caps-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.caps-pill {
  display: inline-flex; align-items: center;
  height: 32px; padding: 0 14px;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.caps-pill--solid {
  background: var(--main);
  color: var(--main-foreground);
}

/* ============================================================
   SERVICE DELIVERABLES LIST
   ============================================================ */
.svc-list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: var(--text-sm);
}
.svc-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
  opacity: 0.9;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
}
.svc--accent .svc-list li::before { background: var(--main-foreground); }

/* ============================================================
   NAV — sign-in ghost link
   ============================================================ */
.nb-btn-ghost {
  display: inline-flex; align-items: center;
  height: 40px; padding: 0 14px;
  font-family: var(--font-base);
  font-weight: var(--heading-font-weight);
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--foreground);
  border-radius: var(--border-radius);
}
.nb-btn-ghost:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   SUBPAGE COMMON — hero header, breadcrumbs
   ============================================================ */
.subpage-hero {
  position: relative;
  padding: 80px 24px 60px;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--foreground) 10%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--foreground) 10%, transparent) 1px, transparent 1px);
  background-size: 70px 70px;
  border-bottom: 4px solid var(--border);
}
.subpage-hero .container {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  max-width: 980px;
}
.subpage-hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.subpage-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 760px;
  font-weight: 500;
}
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.breadcrumbs a { text-decoration: none; color: var(--foreground); }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumbs .bc-sep { opacity: 0.5; }
.breadcrumbs [aria-current="page"] {
  background: var(--main);
  color: var(--main-foreground);
  border: 2px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   SERVICES DEEP (services.html)
   ============================================================ */
.section--services-deep .svc-deep {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 2px solid color-mix(in oklab, var(--foreground) 10%, transparent);
}
.section--services-deep .svc-deep:last-child { border-bottom: 0; }
.svc-deep-left { display: flex; flex-direction: column; gap: 14px; }
.svc-deep-icon {
  width: 64px; height: 64px;
  background: var(--main);
  color: var(--main-foreground);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-deep-icon svg { width: 32px; height: 32px; }
.svc-deep-num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.55;
}
.svc-deep-left h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.svc-deep-lead { font-size: var(--text-lg); line-height: 1.55; opacity: 0.88; max-width: 540px; }
.svc-deep-meta {
  margin-top: 8px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.svc-deep-meta > div {
  background: var(--secondary-background);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  padding: 14px 16px;
}
.svc-deep-meta .meta-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.svc-deep-meta p { margin-top: 4px; font-size: var(--text-sm); line-height: 1.4; }
.svc-deep-right { display: flex; flex-direction: column; gap: 20px; }
.svc-deep-block {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 26px;
}
.svc-deep-block h3 {
  font-size: var(--text-base);
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.7;
}
.svc-deep-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  font-size: var(--text-sm);
}
.svc-deep-list li {
  position: relative; padding-left: 24px; line-height: 1.4;
}
.svc-deep-list li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 16px; height: 16px;
  background: var(--main);
  border: 2px solid var(--border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ============================================================
   PROCESS DEEP (process.html)
   ============================================================ */
.process-deep { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 32px; }
.proc-deep {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.proc-deep--accent { background: var(--main); color: var(--main-foreground); }
.proc-deep-num {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: 0.18em;
  opacity: 0.55;
}
.proc-deep h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px;
}
.proc-deep h2 span {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.65;
  text-transform: uppercase;
}
.proc-deep-lead { font-size: var(--text-lg); line-height: 1.5; opacity: 0.9; max-width: 760px; }
.proc-deep-grid {
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.proc-deep-grid > div {
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  padding: 18px 20px;
}
.proc-deep--accent .proc-deep-grid > div { background: var(--secondary-background); color: var(--foreground); }
.proc-deep-grid h3 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}
.proc-deep-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: var(--text-sm); line-height: 1.4; }
.proc-deep-grid li { position: relative; padding-left: 16px; }
.proc-deep-grid li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 2px; background: var(--main); border-radius: 2px;
}

.section--how-tools { background: var(--secondary-background); }

/* ============================================================
   PRICING COMPARISON TABLE (pricing.html)
   ============================================================ */
.section--compare { background: var(--secondary-background); }
.compare-wrap {
  background: var(--background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-base);
  text-align: left;
  padding: 18px 20px;
  border-bottom: 3px solid var(--border);
  background: var(--secondary-background);
}
.compare-table thead th.ct-feat {
  background: var(--main); color: var(--main-foreground);
}
.compare-table td, .compare-table th[scope] { padding: 14px 20px; }
.compare-table td { border-bottom: 1px solid color-mix(in oklab, var(--foreground) 8%, transparent); vertical-align: top; }
.compare-table tbody tr td:first-child { font-weight: 700; }
.compare-table td.ct-feat { background: color-mix(in oklab, var(--main) 14%, transparent); font-weight: 700; }
.compare-table th.ct-group {
  background: var(--foreground);
  color: var(--background);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: left;
}

/* ============================================================
   CASE TESTIMONIAL QUOTE
   ============================================================ */
.case-quote {
  margin: 4px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--main);
  background: var(--secondary-background);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: var(--text-base);
  line-height: 1.5;
  font-style: italic;
  font-weight: 600;
  display: flex; flex-direction: column; gap: 6px;
}
.case-card--accent .case-quote { background: var(--background); color: var(--foreground); }
.case-quote cite {
  display: block; font-style: normal; font-weight: 700;
  font-size: var(--text-sm); opacity: 0.7;
}

/* ============================================================
   FAQ GROUPS (faq.html)
   ============================================================ */
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-size: var(--text-2xl);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-form {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.contact-form h2 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
.cf-note { font-size: var(--text-sm); opacity: 0.65; margin-top: -4px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: var(--text-sm); font-weight: 700;
}
.nb-input { font-size: var(--text-base); }
.cf-textarea { height: auto; min-height: 120px; padding: 12px; resize: vertical; }
.cf-check {
  flex-direction: row; align-items: center; gap: 10px;
  font-weight: 600; font-size: var(--text-sm);
}
.cf-check input[type="checkbox"] {
  width: 20px; height: 20px;
  appearance: none;
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.cf-check input[type="checkbox"]:checked {
  background: var(--main);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.cf-trust {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); opacity: 0.7;
  margin-top: 6px;
}
.cf-success {
  position: absolute; inset: 0;
  background: var(--main); color: var(--main-foreground);
  border-radius: var(--border-radius);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 40px; gap: 12px;
}
.cf-success[hidden] { display: none; }
.cf-success h3 { font-size: var(--text-4xl); letter-spacing: -0.02em; }
.cf-success p { font-size: var(--text-base); max-width: 380px; line-height: 1.5; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--secondary-background);
  border: var(--border-width) solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.contact-card--accent { background: var(--main); color: var(--main-foreground); }
.contact-card h3 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.contact-card--accent h3 { opacity: 0.85; }
.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 700; font-size: var(--text-base);
  color: inherit;
}
.contact-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: var(--text-sm); font-weight: 600;
}
.contact-list li span { opacity: 0.75; font-weight: 500; text-align: right; }

/* ============================================================
   RESPONSIVE additions for subpages
   ============================================================ */
@media (max-width: 1024px) {
  .section--services-deep .svc-deep { grid-template-columns: 1fr; gap: 24px; }
  .proc-deep-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-deep-list { grid-template-columns: 1fr; }
  .svc-deep-meta { grid-template-columns: 1fr; }
  .proc-deep { padding: 26px 22px; }
  .compare-table thead th, .compare-table td, .compare-table th[scope] { padding: 12px 14px; font-size: var(--text-xs); }
  .compare-table thead th { font-size: var(--text-sm); }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 22px; }
  .subpage-hero { padding: 56px 18px 44px; }
}
@media (max-width: 640px) {
  .subpage-hero h1 { font-size: clamp(28px, 8vw, 40px); }
}

/* ============================================================
   RESPONSIVE (original homepage)
   ============================================================ */
@media (max-width: 1180px) {
  .nav { padding: 12px 20px; }
  .nav-links { gap: 20px; }
  .hero-h1 { font-size: clamp(36px, 6.2vw, 76px); }
}

@media (max-width: 1024px) {
  .nav-links, .nav-availability { display: none; }
  .nb-btn-ghost { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .nb-btn { display: none; }

  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .stat-card { padding: 20px 16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; gap: 18px; }
  .proc-connector { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .price-card--featured { transform: none; }

  .case-card { grid-template-columns: 1fr; padding: 28px; }
  .case-right { flex-direction: row; }
  .case-baf { grid-template-columns: 1fr; }
  .case-baf-arrow { transform: rotate(90deg); }

  .caps-grid { grid-template-columns: 1fr; gap: 24px; }
  .caps-block--split { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(28px, 6vw, 44px); }

  .hero { padding: 64px 18px 56px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

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

  .caps-block--split { grid-template-columns: 1fr; }

  .case-right { flex-direction: row; flex-wrap: wrap; }
  .case-right .case-metric { flex: 1 1 calc(50% - 8px); min-width: 0; }

  .not-sure { grid-template-columns: 1fr; text-align: center; }
  .not-sure .ns-text { align-items: center; }
  .not-sure .nb-btn { width: 100%; justify-content: center; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-strip { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 640px) {
  .nav { padding: 10px 14px; gap: 10px; }
  .brand-name { font-size: 20px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; gap: 14px; }
  .hero { padding: 48px 14px 44px; }
  .hero-h1 { font-size: clamp(34px, 9vw, 56px); }
  .hero-h1 .hl { padding: 0 10px; box-shadow: 4px 4px 0 0 var(--border); }
  .hero-lead { font-size: 16px; margin-top: 28px; }
  .hero-ctas { margin-top: 28px; }
  .hero-ctas .nb-btn { width: 100%; justify-content: center; }
  .trust-bar { margin-top: 44px; }
  .stats-row { margin-top: 44px; gap: 10px; }
  .stat-card { padding: 16px 14px; }
  .stat-num { font-size: clamp(34px, 11vw, 48px); }
  .stat-label { font-size: var(--text-xs); }

  .container { padding-left: 16px; padding-right: 16px; }

  .marquee .track span { font-size: 22px; }
  .marquee .track svg { width: 26px; height: 26px; }

  .price-card { padding: 24px 20px; }
  .price-name { font-size: var(--text-2xl); }
  .price-amount b { font-size: var(--text-4xl); }

  .case-card { padding: 22px 18px; }
  .case-right { flex-direction: column; }
  .case-stack { font-size: var(--text-xs); }

  .faq-q { font-size: var(--text-base); padding: 18px 18px; }
  .faq-item[data-open="true"] .faq-a { padding: 0 18px 18px; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }

  .final-trust { gap: 14px; font-size: var(--text-xs); }
  .float-star { display: none; }
  .hl-star { width: 32px; height: 32px; }
  .hl-star.tl { top: -16px; left: -14px; }
  .hl-star.br { bottom: -16px; right: -14px; }

  .t-deco { display: none; }
  .final-star { width: 64px !important; height: 64px !important; }
  .fs-tl { top: 24px; left: 14px; }
  .fs-br { bottom: 24px; right: 14px; }
}

@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .nb-btn--xl { height: 52px; padding: 0 22px; font-size: var(--text-base); }
  .nb-btn--final { height: 60px; padding: 0 26px; font-size: var(--text-lg); }
  .case-stack { gap: 6px; }
  .case-pill { font-size: 11px; padding: 0 10px; height: 26px; }
}
