/* Cleaning in Motion — service menu */
:root {
  --cim-blue: #0033FF;
  --cim-blue-deep: #001F99;
  --cim-blue-soft: #E8EDFF;
  --cim-yellow: #FFD600;
  --cim-yellow-soft: #FFF6CC;
  --cim-black: #000000;
  --cim-ink: #0A0A1A;
  --cim-ink-2: #2A2A38;
  --cim-mute: #6B6B7A;
  --cim-line: #E5E7EE;
  --cim-bg: #F4F5F8;
  --cim-bg-2: #ECEEF4;
  --cim-card: #FFFFFF;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-card: 0 1px 0 rgba(10,10,26,0.04), 0 8px 24px -12px rgba(10,10,26,0.12);
  --shadow-pop: 0 12px 40px -16px rgba(0,51,255,0.35), 0 1px 0 rgba(10,10,26,0.04);

  --font-display: "Anton", "Oswald", "Bebas Neue", Impact, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cim-bg);
  color: var(--cim-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.cim-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

.cim-mono { font-family: ui-monospace, SF Mono, Menlo, monospace; }

/* ---- Top bar ---- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,245,248,0.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--cim-line);
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--cim-blue);
  display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 14px; letter-spacing: -0.02em;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-eyebrow {
  font-size: 10.5px; letter-spacing: 0.18em; color: var(--cim-blue);
  font-weight: 700; text-transform: uppercase;
}
.brand-name { font-weight: 700; font-size: 15px; margin-top: 4px; }

.top-spacer { flex: 1; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost {
  background: white; color: var(--cim-ink);
  border: 1px solid var(--cim-line);
}
.btn-ghost:hover { border-color: var(--cim-ink); }
.btn-lang {
  background: rgba(0, 51, 255, 0.08);
  color: var(--cim-blue);
  border: 1px solid rgba(0, 51, 255, 0.18);
  font-size: 12.5px;
  padding: 9px 14px;
  letter-spacing: 0.01em;
}
.btn-lang:hover { background: rgba(0, 51, 255, 0.14); border-color: var(--cim-blue); }
body.theme-brand .btn-lang {
  background: rgba(255, 214, 0, 0.16);
  color: var(--cim-yellow);
  border-color: rgba(255, 214, 0, 0.3);
}
body.theme-brand .btn-lang:hover { background: rgba(255, 214, 0, 0.24); border-color: var(--cim-yellow); }
.btn-yellow {
  background: var(--cim-yellow); color: var(--cim-black);
  box-shadow: 0 6px 0 rgba(0,0,0,0.06);
}
.btn-yellow:hover { box-shadow: 0 8px 0 rgba(0,0,0,0.08); }
.btn-blue {
  background: var(--cim-blue); color: white;
  box-shadow: 0 6px 0 rgba(0,0,0,0.12);
}
.btn-blue:hover { box-shadow: 0 8px 0 rgba(0,0,0,0.18); }
.btn-dark {
  background: var(--cim-ink); color: white;
}

/* Quiz CTA — floating, attention-grabbing */
.btn-quiz-pop {
  position: relative;
  background: var(--cim-blue);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(0,51,255,0.6), 0 4px 0 rgba(0,0,0,0.18);
  animation: quizFloat 2.6s ease-in-out infinite;
  overflow: visible;
  z-index: 1;
}
.btn-quiz-pop:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -10px rgba(0,51,255,0.7), 0 6px 0 rgba(0,0,0,0.22);
}
.quiz-pop-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--cim-blue);
  opacity: 0;
  animation: quizPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes quizFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes quizPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ---- Hero ---- */
.hero {
  max-width: 1400px; margin: 0 auto;
  padding: 36px 28px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.hero-left {
  background: white;
  border-radius: var(--r-xl);
  padding: 44px 44px 36px;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; font-weight: 700;
  background: var(--cim-blue-soft); color: var(--cim-blue);
  padding: 7px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 22px 0 18px;
}
.hero-headline .hl-highlight {
  background: linear-gradient(180deg, transparent 60%, var(--cim-yellow) 60%);
  padding: 0 6px;
}
.hero-headline .hl-blue { color: var(--cim-blue); }
.hero-sub {
  font-size: 16.5px; color: var(--cim-ink-2);
  max-width: 56ch; line-height: 1.55;
  margin-bottom: 22px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 24px;
  border-top: 1px solid var(--cim-line);
  padding-top: 22px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 44px; line-height: 1; color: var(--cim-blue);
  letter-spacing: -0.01em;
}
.stat-lbl {
  font-size: 12px; color: var(--cim-mute);
  margin-top: 6px;
  max-width: 22ch;
}

/* Right rail = quiz teaser */
.hero-right {
  background: var(--cim-ink);
  color: white;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-right::before {
  content: ""; position: absolute;
  inset: -40% -20% auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(0,51,255,0.55), transparent 70%);
  pointer-events: none;
}
.quiz-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; color: var(--cim-yellow);
  font-weight: 700; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.quiz-eyebrow .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--cim-yellow); }
.quiz-title {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1;
  text-transform: uppercase;
  margin: 14px 0 12px;
}
.quiz-sub { font-size: 14px; color: rgba(255,255,255,0.78); margin-bottom: 22px; line-height: 1.5; }
.quiz-spine { flex: 1; display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.quiz-q { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }
.quiz-options {
  display: flex; flex-direction: column; gap: 8px;
}
.quiz-opt {
  text-align: left;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: all .15s ease;
}
.quiz-opt:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,214,0,0.5);
}
.quiz-opt.is-active {
  background: var(--cim-yellow); color: var(--cim-black);
  border-color: var(--cim-yellow);
}
.quiz-opt .num {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.quiz-opt.is-active .num { background: rgba(0,0,0,0.15); }
.quiz-result {
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,51,255,0.18), rgba(0,51,255,0.08));
  border: 1px solid rgba(0,51,255,0.4);
  border-radius: 14px;
}
.quiz-result-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; color: var(--cim-yellow);
  text-transform: uppercase; font-weight: 700;
}
.quiz-result-title {
  font-family: var(--font-display); font-size: 22px; line-height: 1; margin: 8px 0 6px;
  text-transform: uppercase;
}
.quiz-result-desc { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; }
.quiz-result-cta {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cim-yellow); color: var(--cim-black);
  padding: 9px 14px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
}
.quiz-progress {
  display: flex; gap: 4px; margin-bottom: 18px;
}
.quiz-progress .seg { flex: 1; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.14); }
.quiz-progress .seg.is-done { background: var(--cim-yellow); }

/* ---- Funnel spine section ---- */
.spine {
  max-width: 1400px; margin: 0 auto;
  padding: 22px 28px 0;
}
.spine-inner {
  background: white;
  border-radius: var(--r-xl);
  padding: 32px 36px 24px;
}
.spine-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid var(--cim-line);
  padding-bottom: 22px;
}
.spine-title {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1;
  text-transform: uppercase;
}
.spine-title .accent { color: var(--cim-blue); }
.spine-sub { color: var(--cim-mute); font-size: 14px; max-width: 56ch; margin-top: 8px; }

.support-toggle {
  display: flex; gap: 6px;
  background: var(--cim-bg-2);
  padding: 4px; border-radius: 999px;
}
.support-toggle button {
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--cim-ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.support-toggle button.is-active {
  background: var(--cim-ink); color: white;
}
.support-toggle .dot {
  width: 7px; height: 7px; border-radius: 999px; background: currentColor;
}

/* funnel rows */
.funnel-row {
  border-top: 1px solid var(--cim-line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}
.funnel-row:first-of-type { border-top: 0; padding-top: 28px; }
.funnel-rail {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.funnel-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cim-blue);
}
.funnel-stamp .stage {
  background: var(--cim-blue); color: white;
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: 0.18em;
}
.funnel-rail h3 {
  font-family: var(--font-display);
  font-size: 36px; line-height: 0.95;
  margin: 4px 0 8px;
  text-transform: uppercase;
}
.funnel-rail p {
  color: var(--cim-mute); font-size: 14px; max-width: 32ch; margin: 0;
}
.funnel-meta {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px; color: var(--cim-ink-2);
}
.funnel-meta span { display: inline-flex; align-items: center; gap: 6px; }
.funnel-meta .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--cim-blue); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ---- Service Card ---- */
.svc-card {
  background: white;
  border: 1px solid var(--cim-line);
  border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  text-align: left;
  cursor: pointer;
  transition: all .18s ease;
  min-height: 230px;
}
.svc-card:hover {
  border-color: var(--cim-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.svc-card.is-flagship {
  border-color: var(--cim-yellow);
  background: linear-gradient(180deg, #FFFDF2 0%, white 80%);
}
.svc-card.is-flagship::before {
  content: "★ FLAGSHIP";
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; letter-spacing: 0.18em; font-weight: 700;
  background: var(--cim-yellow); color: var(--cim-black);
  padding: 4px 8px; border-radius: 6px;
}
.svc-card.is-signature::before {
  content: "SIGNATURE";
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; letter-spacing: 0.18em; font-weight: 700;
  background: var(--cim-blue); color: white;
  padding: 4px 8px; border-radius: 6px;
}
.svc-head {
  display: flex; gap: 12px; align-items: flex-start;
}
.svc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cim-blue-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.svc-icon svg { width: 24px; height: 24px; }
.is-flagship .svc-icon { background: var(--cim-yellow-soft); }
.svc-name {
  font-weight: 700; font-size: 16.5px; line-height: 1.25; letter-spacing: -0.005em;
}
.svc-tagline { color: var(--cim-mute); font-size: 13.5px; line-height: 1.4; margin-top: 4px; }

.svc-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px;
}
.svc-price {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1;
  color: var(--cim-blue);
}
.svc-price .term { font-family: var(--font-body); font-size: 11px; color: var(--cim-mute); display: block; margin-top: 4px; letter-spacing: 0; text-transform: none; font-weight: 500; }
.svc-chips {
  display: flex; gap: 5px; flex-wrap: wrap;
}
.svc-chip {
  font-size: 10.5px; letter-spacing: 0.1em;
  padding: 4px 8px; border-radius: 6px;
  font-weight: 700; text-transform: uppercase;
}
.svc-chip.support-DIY { background: #E6F7EE; color: #0B6E3D; }
.svc-chip.support-DWY { background: #FFF6CC; color: #6E5A00; }
.svc-chip.support-DFY { background: #E8EDFF; color: var(--cim-blue-deep); }
.svc-chip.dept { background: #F1F2F7; color: var(--cim-ink-2); }

.svc-arrow {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--cim-bg-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .2s ease;
}
.svc-card:hover .svc-arrow {
  background: var(--cim-ink); color: white;
}

/* compact mode */
.density-compact .svc-card { padding: 14px 14px 12px; min-height: 170px; }
.density-compact .svc-icon { width: 36px; height: 36px; }
.density-compact .svc-icon svg { width: 20px; height: 20px; }
.density-compact .svc-name { font-size: 15px; }
.density-compact .svc-tagline { font-size: 12.5px; }
.density-compact .svc-price { font-size: 18px; }

/* spacious mode */
.density-spacious .svc-card { padding: 26px 26px 22px; min-height: 260px; }

/* ---- Drawer ---- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,10,26,0.45);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(640px, 92vw);
  background: white;
  z-index: 101;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(10,10,26,0.4);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--cim-line);
  display: flex; gap: 16px; align-items: flex-start;
  flex-shrink: 0;
}
.drawer-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cim-blue-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.drawer-icon svg { width: 30px; height: 30px; }
.drawer-eyebrow { font-size: 10.5px; letter-spacing: 0.18em; font-weight: 700; color: var(--cim-blue); text-transform: uppercase; }
.drawer-name {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1; text-transform: uppercase;
  margin: 6px 0 6px; letter-spacing: -0.005em;
}
.drawer-tag { color: var(--cim-mute); font-size: 14px; }
.drawer-close {
  margin-left: auto;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cim-bg-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--cim-ink); color: white; }

.drawer-body {
  overflow-y: auto;
  padding: 26px 28px 32px;
  display: flex; flex-direction: column; gap: 26px;
}
.drawer-row {}
.drawer-row h4 {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--cim-mute); text-transform: uppercase;
  font-weight: 700; margin: 0 0 10px;
}
.drawer-summary { font-size: 15px; line-height: 1.55; color: var(--cim-ink-2); }
.scope-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.scope-list li {
  display: flex; gap: 10px;
  font-size: 14px; color: var(--cim-ink-2);
}
.scope-list li .check {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--cim-blue);
  color: white; display: grid; place-items: center;
  flex-shrink: 0; font-size: 11px; margin-top: 2px;
}
.bestfit-card {
  background: var(--cim-bg);
  border-left: 4px solid var(--cim-yellow);
  border-radius: 10px;
  padding: 14px 16px;
}
.bestfit-card p { margin: 6px 0 0; font-size: 14px; color: var(--cim-ink-2); }

.price-card {
  border: 1px solid var(--cim-ink);
  background: var(--cim-ink); color: white;
  border-radius: 16px;
  padding: 22px;
}
.price-card .label { font-size: 10.5px; letter-spacing: 0.18em; color: var(--cim-yellow); font-weight: 700; text-transform: uppercase; }
.price-card .figure {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1; margin: 8px 0 0;
  color: var(--cim-yellow);
}
.price-card .term { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.price-card .row {
  margin-top: 14px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  display: flex; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 12px;
}
.drawer-foot {
  border-top: 1px solid var(--cim-line);
  padding: 16px 28px;
  display: flex; gap: 10px;
  flex-shrink: 0;
  background: white;
}
.drawer-foot .btn { flex: 1; justify-content: center; }

/* trust strip */
.trust {
  max-width: 1400px; margin: 22px auto 0;
  padding: 0 28px;
}
.trust-inner {
  background: var(--cim-ink); color: white;
  border-radius: var(--r-xl);
  padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center;
  position: relative; overflow: hidden;
}
.trust-inner::before {
  content: ""; position: absolute;
  inset: auto -10% -40% auto;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(255,214,0,0.18), transparent 70%);
  pointer-events: none;
}
.trust-quote {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.trust-quote .accent { color: var(--cim-yellow); }
.trust-attr { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 14px; }
.trust-points { display: flex; flex-direction: column; gap: 14px; }
.trust-point { display: flex; gap: 14px; align-items: flex-start; }
.trust-point .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,214,0,0.15); color: var(--cim-yellow);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-point h5 { margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.trust-point p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* CTA */
.bottom-cta {
  max-width: 1400px; margin: 22px auto 40px;
  padding: 0 28px;
}
.bottom-cta-inner {
  background: var(--cim-yellow);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  align-items: center;
}
.bottom-cta h2 {
  font-family: var(--font-display);
  font-size: 52px; line-height: 0.95;
  text-transform: uppercase; margin: 0;
}
.bottom-cta p { color: var(--cim-ink-2); font-size: 15px; margin: 14px 0 0; max-width: 50ch; }
.bottom-cta-actions { display: flex; flex-direction: column; gap: 10px; }
.bottom-cta-actions .btn { justify-content: center; padding: 14px 22px; font-size: 14.5px; }

/* footer */
.footer {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 28px 60px;
  font-size: 12.5px; color: var(--cim-mute);
  display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}

/* ---- Hierarchy alternate: support-first ---- */
.hier-support .funnel-rail .funnel-stamp .stage { background: var(--cim-ink); }
.hier-support .funnel-rail .funnel-stamp { color: var(--cim-ink); }

/* ---- Theme: brand bg variant ---- */
.theme-brand body, body.theme-brand { background: var(--cim-blue); }
body.theme-brand { background: linear-gradient(180deg, #001A99 0%, #0033FF 100%); color: white; }
body.theme-brand .topbar { background: rgba(0,26,153,0.7); border-color: rgba(255,255,255,0.1); }
body.theme-brand .brand-eyebrow, body.theme-brand .stat-num { color: var(--cim-yellow); }
body.theme-brand .hero-left, body.theme-brand .spine-inner { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; }
body.theme-brand .hero-left .hero-headline .hl-blue { color: var(--cim-yellow); }
body.theme-brand .hero-sub, body.theme-brand .stat-lbl, body.theme-brand .spine-sub { color: rgba(255,255,255,0.7); }
body.theme-brand .hero-eyebrow { background: rgba(255,255,255,0.12); color: var(--cim-yellow); }
body.theme-brand .svc-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: white; }
body.theme-brand .svc-card:hover { border-color: var(--cim-yellow); }
body.theme-brand .svc-tagline { color: rgba(255,255,255,0.65); }
body.theme-brand .svc-price { color: var(--cim-yellow); }
body.theme-brand .funnel-rail h3 { color: white; }
body.theme-brand .funnel-rail p { color: rgba(255,255,255,0.6); }
body.theme-brand .svc-arrow { background: rgba(255,255,255,0.1); }
body.theme-brand .support-toggle { background: rgba(0,0,0,0.3); }
body.theme-brand .support-toggle button { color: white; }
body.theme-brand .support-toggle button.is-active { background: var(--cim-yellow); color: var(--cim-black); }
body.theme-brand .hero-stats { border-color: rgba(255,255,255,0.12); }
body.theme-brand .funnel-row { border-color: rgba(255,255,255,0.12); }
body.theme-brand .spine-head { border-color: rgba(255,255,255,0.12); }
body.theme-brand .svc-icon { background: rgba(255,214,0,0.15); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .funnel-row { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner, .bottom-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero-left, .hero-right { padding: 28px 22px; }
  .svc-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
  .spine-title, .bottom-cta h2 { font-size: 30px; }
  .spine-inner { padding: 22px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
