/* ── Reset ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  color: var(--txt);
  background: var(--base);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Tokens ──────────────────────────────────────────────────────────────────── */
:root {
  --base:       #0a0d16;
  --lift:       #111520;
  --lift-2:     #1a1f30;
  --rim:        rgba(255,255,255,.08);
  --rim-2:      rgba(255,255,255,.14);
  --txt:        #e2e4ef;
  --txt-2:      #9298b8;
  --spark:      #f43f5e;
  --spark-dk:   #e11d48;
  --spark-glow: rgba(244,63,94,.18);
  --canvas:     #f7f5f0;
  --canvas-2:   #edeae4;
  --canvas-txt: #1a1d2e;
  --canvas-txt2:#4a4e6a;
  --mono:       'Azeret Mono', monospace;
  --pi-max:     1160px;
  --head-h:     64px;
  --ease:       cubic-bezier(.25,.46,.45,.94);
}

/* ── Utility ─────────────────────────────────────────────────────────────────── */
.page-inner {
  max-width: var(--pi-max);
  margin: 0 auto;
  padding: 0 28px;
}
.mono-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--spark);
}
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-2);
  margin-bottom: 14px;
  display: block;
}
.btn-spark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--spark);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-spark:hover { background: var(--spark-dk); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--txt);
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid var(--rim-2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--spark); color: var(--spark); }
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--canvas-txt);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-light:hover { opacity: .85; }

/* ── Navigation ──────────────────────────────────────────────────────────────── */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--head-h);
  background: rgba(10,13,22,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rim);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.site-head.is-shown {
  transform: translateY(0);
  opacity: 1;
}
.head-in {
  max-width: var(--pi-max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.head-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.head-logo svg { width: 32px; height: 32px; }
.head-wordmark {
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.head-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.head-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  transition: color .2s, background .2s;
}
.head-nav a:hover { color: #fff; background: var(--rim); }
.head-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.head-phone {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-2);
  text-decoration: none;
  transition: color .2s;
}
.head-phone:hover { color: var(--spark); }
.head-audit {
  background: var(--spark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .2s;
}
.head-audit:hover { background: var(--spark-dk); }

@media (max-width: 960px) {
  .head-nav, .head-phone { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.fore {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 28px 0;
}
.fore-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fore-bg svg {
  width: 100%;
  height: 100%;
  opacity: .07;
}
.fore-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(244,63,94,.12) 0%, transparent 70%);
}
.fore-in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 16px;
}
.fore-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--spark);
  background: var(--spark-glow);
  border: 1px solid rgba(244,63,94,.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.fore-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spark);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.fore-h {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 10px;
}
.fore-h span.spark-word {
  color: var(--spark);
  position: relative;
}
.fore-cycle-wrap {
  display: block;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--txt-2);
  margin-bottom: 28px;
  min-height: 1.1em;
}
.fore-cycle {
  color: var(--txt);
  border-bottom: 2px solid var(--spark);
  padding-bottom: 2px;
}
.fore-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--txt-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.fore-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.fore-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid var(--rim);
  background: rgba(10,13,22,.7);
  backdrop-filter: blur(8px);
}
.fore-trust-in {
  max-width: var(--pi-max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--rim);
}
.fore-stat {
  padding: 18px 24px;
  border-right: 1px solid var(--rim);
  text-align: center;
}
.fore-stat:last-child { border-right: none; }
.fore-stat-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--spark);
  display: block;
  line-height: 1.2;
}
.fore-stat-lbl {
  font-size: 12px;
  color: var(--txt-2);
  margin-top: 3px;
  display: block;
}

@media (max-width: 680px) {
  .fore-trust-in { grid-template-columns: repeat(2, 1fr); }
  .fore-stat:nth-child(2) { border-right: none; }
  .fore-stat { padding: 14px 16px; }
  .fore-h, .fore-cycle-wrap { font-size: clamp(36px, 9vw, 54px); }
  .fore-btns { flex-direction: column; align-items: stretch; }
  .fore-btns .btn-spark, .fore-btns .btn-ghost { justify-content: center; }
}
@media (max-width: 400px) {
  .fore-trust-in { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services ─────────────────────────────────────────────────────────────────── */
.dial {
  padding: 96px 0;
  background: var(--base);
}
.dial-hd {
  text-align: center;
  margin-bottom: 56px;
}
.dial-hd h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.dial-hd p {
  font-size: 17px;
  color: var(--txt-2);
  max-width: 540px;
  margin: 0 auto;
}
.dial-panels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dial-panel {
  background: var(--lift);
  border: 1px solid var(--rim);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s;
  cursor: pointer;
}
.dial-panel:hover,
.dial-panel.is-open { border-color: var(--spark); }
.dial-top {
  display: grid;
  grid-template-columns: 72px 60px 1fr auto;
  align-items: center;
  gap: 0;
  padding: 28px 32px 28px 0;
  position: relative;
  user-select: none;
}
.dial-num {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 500;
  color: rgba(255,255,255,.05);
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
.dial-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--spark-glow);
  border: 1px solid rgba(244,63,94,.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dial-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--spark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dial-label {
  padding-left: 20px;
}
.dial-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.dial-tag {
  font-size: 14px;
  color: var(--txt-2);
  margin-top: 4px;
}
.dial-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--rim-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, border-color .25s;
}
.dial-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--txt-2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s;
}
.dial-panel.is-open .dial-arrow { transform: rotate(45deg); border-color: var(--spark); }
.dial-panel.is-open .dial-arrow svg { stroke: var(--spark); }
.dial-body {
  display: none;
  padding: 0 32px 32px 72px;
  border-top: 1px solid var(--rim);
}
.dial-panel.is-open .dial-body { display: block; }
.dial-body-in {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.dial-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.5;
}
.dial-feat::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--spark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.dial-feat strong { color: var(--txt); font-weight: 600; }

@media (max-width: 680px) {
  .dial-top { grid-template-columns: 48px 48px 1fr auto; padding: 20px 20px 20px 0; }
  .dial-body { padding-left: 48px; }
  .dial-body-in { grid-template-columns: 1fr; }
  .dial-num { font-size: 36px; }
}

/* ── Process ─────────────────────────────────────────────────────────────────── */
.step-track {
  padding: 96px 0;
  background: var(--lift);
}
.step-hd {
  text-align: center;
  margin-bottom: 56px;
}
.step-hd h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.step-hd p {
  font-size: 16px;
  color: var(--txt-2);
  max-width: 480px;
  margin: 0 auto;
}
.step-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 0 40px;
  margin-bottom: 0;
}
.step-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(40px + 72px);
  right: calc(40px + 72px);
  height: 1px;
  background: var(--rim-2);
}
.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: pointer;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--rim-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--txt-2);
  background: var(--lift);
  transition: border-color .25s, color .25s, background .25s;
  margin-bottom: 14px;
}
.step-node.is-active .step-badge {
  border-color: var(--spark);
  color: var(--spark);
  background: var(--spark-glow);
}
.step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-2);
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-family: var(--mono);
  transition: color .25s;
}
.step-node.is-active .step-title { color: #fff; }
.step-cards {
  margin-top: 32px;
  position: relative;
}
.step-card {
  display: none;
  background: var(--lift-2);
  border: 1px solid var(--rim);
  border-top: 2px solid var(--spark);
  border-radius: 0 0 10px 10px;
  padding: 32px 40px;
  animation: fade-card .25s ease;
}
@keyframes fade-card { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.step-card.is-active { display: block; }
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.step-card p {
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.7;
  max-width: 640px;
}
.step-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.step-point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--txt-2);
}
.step-point::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--spark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .step-row { padding: 0 16px; }
  .step-row::before { left: calc(16px + 44px); right: calc(16px + 44px); }
  .step-badge { width: 44px; height: 44px; font-size: 13px; }
  .step-title { font-size: 11px; }
}
@media (max-width: 680px) {
  .step-row {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0;
  }
  .step-row::before { display: none; }
  .step-node {
    flex-direction: row;
    align-items: center;
    padding: 14px 20px;
    gap: 14px;
    background: var(--lift-2);
    border: 1px solid var(--rim);
    border-radius: 8px;
  }
  .step-badge { margin-bottom: 0; flex-shrink: 0; }
  .step-title { text-align: left; }
  .step-card { border-radius: 8px; border-top: 2px solid var(--spark); }
  .step-card-grid { grid-template-columns: 1fr; }
  .step-cards { margin-top: 16px; }
}

/* ── Stats ────────────────────────────────────────────────────────────────────── */
.metric {
  padding: 96px 0;
  background: var(--base);
}
.metric-hd {
  text-align: center;
  margin-bottom: 56px;
}
.metric-hd h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.metric-hd p {
  font-size: 16px;
  color: var(--txt-2);
  max-width: 500px;
  margin: 0 auto;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 800px;
  margin: 0 auto;
}
.metric-cell {
  background: var(--lift);
  border: 1px solid var(--rim);
  padding: 48px 40px;
  text-align: center;
  border-radius: 0;
}
.metric-cell:first-child { border-radius: 10px 0 0 0; }
.metric-cell:nth-child(2) { border-radius: 0 10px 0 0; }
.metric-cell:nth-child(3) { border-radius: 0 0 0 10px; }
.metric-cell:last-child { border-radius: 0 0 10px 0; }
.metric-num {
  font-family: var(--mono);
  font-size: 56px;
  font-weight: 500;
  color: var(--spark);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.metric-lbl {
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}
.metric-src {
  text-align: center;
  margin-top: 32px;
}
.metric-src p {
  font-size: 12px;
  color: var(--txt-2);
  font-family: var(--mono);
}

@media (max-width: 560px) {
  .metric-num { font-size: 42px; }
  .metric-cell { padding: 32px 24px; }
}

/* ── Pricing ──────────────────────────────────────────────────────────────────── */
.price-zone {
  padding: 96px 0;
  background: var(--canvas);
}
.price-hd {
  text-align: center;
  margin-bottom: 48px;
}
.price-hd h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--canvas-txt);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.price-hd p {
  font-size: 16px;
  color: var(--canvas-txt2);
  max-width: 480px;
  margin: 0 auto;
}
.price-hd .section-label { color: var(--canvas-txt2); }
.price-sel {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--canvas-2);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
.price-btn {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--canvas-txt2);
  background: transparent;
  border: none;
  padding: 11px 26px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.price-btn.is-active {
  background: var(--canvas-txt);
  color: #fff;
}
.price-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--canvas-txt);
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.price-card-top {
  background: var(--spark);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.price-tier-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.price-range {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,.18);
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card-body {
  padding: 28px 36px;
}
.price-desc {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  line-height: 1.65;
}
.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.price-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--spark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23f43f5e'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.price-card-foot {
  padding: 20px 36px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.price-note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-family: var(--mono);
}
.price-content { display: none; }
.price-content.is-active { display: block; }

@media (max-width: 560px) {
  .price-card-top, .price-card-body, .price-card-foot { padding-left: 24px; padding-right: 24px; }
  .price-btn { padding: 10px 18px; font-size: 13px; }
}

/* ── SEO Content ──────────────────────────────────────────────────────────────── */
.knoll {
  padding: 96px 0;
  background: var(--base);
}
.knoll-in {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.knoll-nav {
  position: sticky;
  top: calc(var(--head-h) + 24px);
}
.knoll-nav-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-2);
  margin-bottom: 16px;
  display: block;
}
.knoll-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.knoll-nav-list a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-2);
  text-decoration: none;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color .2s, border-color .2s, background .2s;
  line-height: 1.4;
}
.knoll-nav-list a:hover,
.knoll-nav-list a.is-active {
  color: var(--spark);
  border-left-color: var(--spark);
  background: var(--spark-glow);
}
.knoll-body {
  min-width: 0;
}
.knoll-body h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}
.knoll-section {
  margin-bottom: 8px;
}
.knoll-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  line-height: 1.3;
  padding-top: 8px;
}
.knoll-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
  margin: 20px 0 10px;
}
.knoll-section p {
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.knoll-acc {
  border: 1px solid var(--rim);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 6px;
}
.knoll-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--lift);
  list-style: none;
  transition: background .2s;
}
.knoll-acc summary::-webkit-details-marker { display: none; }
.knoll-acc summary:hover { background: var(--lift-2); }
.knoll-acc[open] summary { background: var(--lift-2); border-bottom: 1px solid var(--rim); }
.knoll-acc summary h2 {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--txt) !important;
  letter-spacing: -.005em !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}
.knoll-acc-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--rim-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--txt-2);
  line-height: 1;
  transition: transform .25s, border-color .25s, color .25s;
}
.knoll-acc[open] .knoll-acc-icon {
  transform: rotate(45deg);
  border-color: var(--spark);
  color: var(--spark);
}
.knoll-acc-body {
  padding: 20px;
  background: var(--lift);
}
.knoll-acc-body p {
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.knoll-acc-body p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .knoll-in { grid-template-columns: 1fr; }
  .knoll-nav { position: static; display: none; }
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.ask {
  padding: 96px 0;
  background: var(--lift);
}
.ask-hd {
  text-align: center;
  margin-bottom: 48px;
}
.ask-hd h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.ask-hd p {
  font-size: 16px;
  color: var(--txt-2);
  max-width: 440px;
  margin: 0 auto;
}
.ask-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ask-item {
  border: 1px solid var(--rim);
  border-radius: 8px;
  overflow: hidden;
  background: var(--lift-2);
}
.ask-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  transition: background .2s;
}
.ask-item summary::-webkit-details-marker { display: none; }
.ask-item summary:hover { background: rgba(255,255,255,.03); }
.ask-item[open] summary { border-bottom: 1px solid var(--rim); }
.ask-chip {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 1px solid;
}
.ask-chip.chip-general { color: var(--spark); border-color: rgba(244,63,94,.3); background: var(--spark-glow); }
.ask-chip.chip-tech { color: #7dd3fc; border-color: rgba(125,211,252,.3); background: rgba(125,211,252,.1); }
.ask-chip.chip-results { color: #86efac; border-color: rgba(134,239,172,.3); background: rgba(134,239,172,.1); }
.ask-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--txt);
  flex: 1;
  line-height: 1.4;
}
.ask-plus {
  width: 22px;
  height: 22px;
  border: 1px solid var(--rim-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--txt-2);
  line-height: 1;
  transition: transform .25s, border-color .25s, color .25s;
}
.ask-item[open] .ask-plus {
  transform: rotate(45deg);
  border-color: var(--spark);
  color: var(--spark);
}
.ask-ans {
  padding: 16px 20px 20px;
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.75;
}

/* ── Results ──────────────────────────────────────────────────────────────────── */
.outlook {
  padding: 96px 0;
  background: var(--canvas);
}
.outlook-hd {
  text-align: center;
  margin-bottom: 56px;
}
.outlook-hd h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--canvas-txt);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.outlook-hd p {
  font-size: 16px;
  color: var(--canvas-txt2);
  max-width: 500px;
  margin: 0 auto;
}
.outlook-hd .section-label { color: var(--canvas-txt2); }
.outlook-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.outlook-step {
  background: #fff;
  border: 1px solid var(--canvas-2);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.outlook-step::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 500;
  color: rgba(0,0,0,.04);
  line-height: 1;
}
.outlook-step-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--spark);
  margin-bottom: 10px;
  display: block;
}
.outlook-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--canvas-txt);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.outlook-step p {
  font-size: 14px;
  color: var(--canvas-txt2);
  line-height: 1.65;
}

@media (max-width: 680px) {
  .outlook-steps { grid-template-columns: 1fr; }
}

/* ── Contact ──────────────────────────────────────────────────────────────────── */
.reach {
  padding: 96px 0;
  background: var(--base);
  position: relative;
  overflow: hidden;
}
.reach::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,63,94,.14) 0%, transparent 70%);
  pointer-events: none;
}
.reach-hd {
  text-align: center;
  margin-bottom: 48px;
}
.reach-hd h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.reach-hd p {
  font-size: 16px;
  color: var(--txt-2);
  max-width: 480px;
  margin: 0 auto;
}
.reach-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--lift);
  border: 1px solid var(--rim);
  border-radius: 12px;
  padding: 40px;
}
.reach-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.reach-form-grid .field-full { grid-column: 1 / -1; }
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-2);
  margin-bottom: 7px;
  letter-spacing: .02em;
}
.field-label span { color: var(--spark); }
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: var(--lift-2);
  border: 1px solid var(--rim);
  border-radius: 7px;
  color: var(--txt);
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color .2s;
  outline: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: rgba(255,255,255,.2); }
.field-input:focus,
.field-select:focus,
.field-textarea:focus { border-color: var(--spark); }
.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 6 5-6' stroke='%239298b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 36px;
  cursor: pointer;
}
.field-select option { background: var(--lift-2); }
.field-textarea { resize: vertical; min-height: 120px; }
.reach-form-grid .reach-submit { grid-column: 1 / -1; margin-top: 6px; }
.reach-submit-btn {
  width: 100%;
  background: var(--spark);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.reach-submit-btn:hover { background: var(--spark-dk); }
.reach-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.reach-msg {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
  transition: opacity .3s;
}
.reach-msg.ok { color: #86efac; }
.reach-msg.err { color: #fca5a5; }
.reach-antispam { display: none !important; }

@media (max-width: 560px) {
  .reach-form-grid { grid-template-columns: 1fr; }
  .reach-form-grid .field-full { grid-column: 1; }
  .reach-card { padding: 28px 20px; }
}

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.site-ft {
  background: var(--lift);
  border-top: 1px solid var(--rim);
  padding: 64px 0 0;
}
.ft-in {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.ft-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.ft-brand-logo svg { width: 30px; height: 30px; }
.ft-brand-wordmark {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.ft-tagline {
  font-size: 14px;
  color: var(--txt-2);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.ft-socials {
  display: flex;
  gap: 10px;
}
.ft-social {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rim-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-2);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.ft-social svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
.ft-social:hover { border-color: var(--spark); color: var(--spark); }
.ft-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 16px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ft-col ul li a {
  font-size: 14px;
  color: var(--txt-2);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ft-col ul li a:hover { color: var(--spark); }
.ft-col .ft-phone {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--txt-2);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color .2s;
}
.ft-col .ft-phone:hover { color: var(--spark); }
.ft-col .ft-email {
  font-size: 14px;
  color: var(--txt-2);
  text-decoration: none;
  display: block;
  transition: color .2s;
  word-break: break-all;
}
.ft-col .ft-email:hover { color: var(--spark); }
.ft-bar {
  border-top: 1px solid var(--rim);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-copy {
  font-size: 13px;
  color: var(--txt-2);
}
.ft-legal {
  display: flex;
  gap: 20px;
}
.ft-legal a {
  font-size: 13px;
  color: var(--txt-2);
  text-decoration: none;
  transition: color .2s;
}
.ft-legal a:hover { color: var(--spark); }

@media (max-width: 860px) {
  .ft-in { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .ft-in { grid-template-columns: 1fr; }
  .ft-brand { grid-column: 1; }
  .ft-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Sticky CTA ───────────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--spark);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 28px -6px rgba(244,63,94,.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  text-decoration: none;
  cursor: pointer;
}
.sticky-cta svg { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-cta:hover { background: var(--spark-dk); }
@media (max-width: 560px) {
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 14px; border-radius: 50%; }
}

/* ── Legal pages ─────────────────────────────────────────────────────────────── */
.legal-page {
  padding: 96px 0 80px;
  background: var(--base);
}
.legal-page .page-inner { max-width: 760px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--txt-2);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color .2s;
}
.legal-back:hover { color: var(--spark); }
.legal-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.legal-page h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.legal-page .legal-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--txt-2);
  margin-bottom: 36px;
  display: block;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin: 36px 0 12px;
}
.legal-page p {
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 10px 0 14px 20px;
}
.legal-page ul li {
  font-size: 15px;
  color: var(--txt-2);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ── Ticker ───────────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--lift);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txt-2);
  white-space: nowrap;
}
.ticker-item span.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--spark);
  flex-shrink: 0;
}
