:root {
  --ink: #17161b;
  --ink-soft: #2d2b34;
  --paper: #f3f0e8;
  --paper-deep: #e9e4d9;
  --white: #fffdf8;
  --violet: #5b45f6;
  --violet-dark: #4430d8;
  --violet-soft: #ddd7ff;
  --lime: #d9f45b;
  --coral: #ff7558;
  --muted: #68656e;
  --line: rgba(23, 22, 27, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 26px 70px rgba(35, 28, 72, 0.14);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1240px, calc(100% - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--violet);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.8vw, 3.65rem);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 22px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow-light {
  color: var(--lime);
}

.site-header,
.legal-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 8px 10px 8px 16px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(23, 22, 27, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(36, 30, 62, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 14px 40px rgba(36, 30, 62, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--violet);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.06em;
  place-items: center;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.text-button,
.text-link,
.estimator-alternatives button,
.footer-links button {
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-button:focus-visible,
.text-link:focus-visible,
.estimator-alternatives button:focus-visible,
.footer-links a:focus-visible,
.footer-links button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.button-small {
  min-height: 46px;
  padding: 10px 17px;
  font-size: 14px;
}

.button-primary {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 9px 24px rgba(91, 69, 246, 0.22);
}

.button-primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 13px 28px rgba(91, 69, 246, 0.3);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--violet);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  background: var(--white);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--lime);
}

.button-light:hover {
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-full {
  width: 100%;
}

.text-button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--ink);
  background: transparent;
  border-bottom: 2px solid currentColor;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  transition: gap 180ms ease, color 180ms ease;
}

.text-button:hover,
.text-link:hover {
  gap: 15px;
  color: var(--violet);
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: var(--lime);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 78px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(34px, 4vw, 52px);
}

.hero-copy {
  padding-top: 52px;
}

.hero-copy h1 {
  margin-bottom: 26px;
}

.hero-copy h1 em {
  color: var(--violet);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #514e58;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 24px;
}

.hero-actions .text-button {
  margin-left: 4px;
}

.hero-delivery {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 610px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 6px;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 244, 91, 0.35);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-trust p {
  margin: 0;
  padding: 16px 14px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.35;
}

.hero-trust p:first-child {
  padding-left: 0;
}

.hero-trust p:last-child {
  border-right: 0;
}

.hero-trust strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape-circle {
  top: 90px;
  right: -170px;
  width: 520px;
  height: 520px;
  background: var(--violet-soft);
  border-radius: 50%;
  opacity: 0.65;
}

.hero-shape-grid {
  bottom: 26px;
  left: -60px;
  width: 290px;
  height: 210px;
  opacity: 0.22;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(-7deg);
}

.hero-stamp {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  height: 0;
  font-size: 14px;
  font-weight: 800;
}

.hero-stamp > * {
  transform: translateY(-20px) rotate(-3deg);
}

.estimator-card {
  position: relative;
  min-height: 650px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 22, 27, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.estimator-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--violet) 0 62%, var(--lime) 62% 84%, var(--coral) 84%);
  content: "";
}

.estimator-card.is-highlighted {
  animation: card-pulse 600ms ease;
}

.estimator-topline,
.progress-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.estimator-topline {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.estimator-kicker {
  color: var(--violet);
}

.estimator-time {
  padding: 5px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 13px;
}

.estimator-card > h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.estimator-intro {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.progress-wrap {
  margin-bottom: 24px;
}

.progress-labels {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 99px;
}

.progress-track > span {
  display: block;
  width: 14.285%;
  height: 100%;
  background: var(--violet);
  border-radius: inherit;
  transition: width 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.form-alert {
  margin-bottom: 18px;
  padding: 12px 14px;
  color: #702b1d;
  background: #ffe2d9;
  border: 1px solid rgba(112, 43, 29, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-question {
  animation: question-in 220ms ease both;
}

.question-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  margin-bottom: 20px;
}

.question-number {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
  place-items: center;
}

.question-kicker {
  margin-bottom: 4px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
}

.question-heading h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.question-help {
  margin: -8px 0 18px 55px;
  color: var(--muted);
  font-size: 14px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.choice-card {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card > span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 11px 13px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice-card > span::before {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--white);
  border: 2px solid #aaa6b1;
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 4px var(--white);
  transition: background 160ms ease, border-color 160ms ease;
}

.choice-check > span::before {
  border-radius: 5px;
}

.choice-card:hover > span {
  border-color: var(--violet);
  transform: translateY(-1px);
}

.choice-card input:checked + span {
  color: var(--ink);
  background: #efecff;
  border-color: var(--violet);
}

.choice-card input:checked + span::before {
  background: var(--violet);
  border-color: var(--violet);
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.choice-card input[aria-invalid="true"] + span {
  border-color: var(--coral);
}

.choice-wide {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field label,
.other-field > label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea,
.other-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 22, 27, 0.28);
  border-radius: 11px;
  outline: 0;
  font-size: 16px;
  line-height: 1.45;
  resize: vertical;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea,
.other-field textarea {
  min-height: 108px;
}

.field input:focus,
.field textarea:focus,
.other-field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(91, 69, 246, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.other-field textarea[aria-invalid="true"] {
  border-color: var(--coral);
}

.field-large input,
.field-large textarea {
  min-height: 60px;
  font-size: 17px;
}

.other-field {
  margin-top: 13px;
  padding: 14px;
  background: #efecff;
  border-radius: 13px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.form-actions-end {
  justify-content: flex-end;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.consent-row a,
.privacy-note a {
  color: var(--violet);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.button-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.form-success,
.dialog-success {
  padding: 44px 12px 28px;
  text-align: center;
}

.form-success .eyebrow,
.dialog-success .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}

.success-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
  place-items: center;
}

.form-success h3,
.dialog-success h2 {
  margin-bottom: 15px;
}

.form-success > p:not(.eyebrow),
.dialog-success > p:not(.eyebrow) {
  max-width: 520px;
  margin-inline: auto;
  color: var(--muted);
}

.success-reference {
  font-size: 13px;
}

.estimator-alternatives {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.estimator-alternatives p {
  width: 100%;
  margin: 0;
  text-align: center;
}

.estimator-alternatives button {
  padding: 0 0 2px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.noscript-note {
  margin: 15px 0 0;
  padding: 12px;
  background: var(--paper);
  border-radius: 10px;
  font-size: 14px;
}

.proof-rail {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line-light);
  text-align: center;
}

.proof-grid p:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-grid strong {
  color: var(--lime);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.52fr);
  align-items: end;
  max-width: none;
  gap: 60px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p,
.section-heading-row > p,
.faq-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 18px 40px rgba(30, 26, 52, 0.13);
  transform: translateY(-5px) rotate(-0.35deg);
}

.service-card-violet {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
}

.service-card-lime {
  background: var(--lime);
  border-color: #bed63a;
}

.service-card-coral {
  background: var(--coral);
  border-color: #e95d41;
}

.service-card-ink {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-index {
  font-size: 13px;
  font-weight: 850;
  opacity: 0.7;
}

.service-symbol {
  display: grid;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--ink);
  font-size: 21px;
  place-items: center;
  transition: transform 200ms ease;
}

.service-card:hover .service-symbol {
  transform: rotate(18deg);
}

.service-card h3 {
  max-width: 420px;
  margin: auto 0 12px;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
}

.service-card p {
  max-width: 520px;
  margin-bottom: 22px;
  opacity: 0.84;
}

.service-tag {
  align-self: flex-start;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.value-section {
  color: var(--white);
  background: var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(55px, 8vw, 110px);
}

.value-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.value-intro h2 {
  margin-bottom: 24px;
}

.value-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.value-list {
  border-top: 1px solid var(--line-light);
}

.value-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line-light);
}

.value-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.value-item h3 {
  margin-bottom: 9px;
}

.value-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.method {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.timeline-item {
  position: relative;
  min-height: 310px;
  padding: 26px 22px 28px;
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item::before {
  position: absolute;
  inset: -1px 0 auto;
  height: 5px;
  background: var(--violet);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 240ms ease;
}

.timeline-item:nth-child(2)::before {
  background: var(--coral);
}

.timeline-item:nth-child(3)::before {
  background: var(--lime);
}

.timeline-item:nth-child(4)::before {
  background: var(--ink);
}

.timeline-item:hover::before {
  transform: scaleX(1);
}

.timeline-number {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 70px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.timeline-item small {
  display: block;
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.technical-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-top: 48px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.technical-proof-copy,
.delivery-proof {
  padding: clamp(28px, 4vw, 48px);
}

.technical-proof-copy {
  border-right: 1px solid var(--line-light);
}

.technical-proof-copy h3 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
}

.technical-proof-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.technology-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-list li {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 11px;
}

.technology-list strong {
  color: var(--lime);
  font-size: 15px;
}

.technology-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.delivery-proof {
  background: linear-gradient(145deg, rgba(91, 69, 246, 0.34), rgba(91, 69, 246, 0.08));
}

.delivery-proof-label {
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.delivery-proof-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.delivery-proof-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.delivery-proof-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  place-items: center;
}

.delivery-proof-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.delivery-proof-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.aftercare-note {
  margin: 22px 0 20px;
  padding: 19px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.aftercare-note > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.aftercare-note > div > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border-radius: 50%;
  font-weight: 900;
  place-items: center;
}

.aftercare-note strong {
  font-size: 15px;
}

.aftercare-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.profile-section {
  background: var(--paper);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.profile-poster {
  position: relative;
  height: 540px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--violet);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile-poster::before {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 3;
  width: 125px;
  height: 7px;
  background: linear-gradient(90deg, var(--lime) 0 72%, var(--violet) 72%);
  content: "";
}

.profile-poster::after {
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(23, 22, 27, 0.84));
  content: "";
  pointer-events: none;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.profile-poster:hover .profile-photo {
  transform: scale(1.018);
}

.profile-caption {
  display: grid;
  position: absolute;
  bottom: 26px;
  left: 27px;
  z-index: 2;
  gap: 4px;
}

.profile-caption strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.profile-caption span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.profile-copy h2 {
  margin-bottom: 24px;
}

.profile-copy > p:not(.eyebrow):not(.profile-location) {
  color: var(--muted);
  font-size: 18px;
}

.profile-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.profile-points li {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
}

.profile-points li > span {
  margin-right: 7px;
  color: var(--violet);
}

.profile-location {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.project-band {
  padding: 76px 0;
  color: var(--white);
  background: var(--violet);
}

.project-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.project-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.project-band-actions {
  display: flex;
  align-items: stretch;
  min-width: 260px;
  flex-direction: column;
  gap: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 20px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: center;
  gap: 18px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 500;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.accordion details[open] summary span {
  color: var(--white);
  background: var(--violet);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 720px;
  margin-bottom: 24px;
  padding-right: 58px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  text-align: center;
  background: var(--lime);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(23, 22, 27, 0.24);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -110px;
  left: -80px;
}

.final-cta::after {
  right: -70px;
  bottom: -140px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
  color: var(--ink);
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 28px;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

.final-delivery {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 750;
}

.site-footer {
  padding: 58px 0 22px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-links a,
.footer-links button {
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--lime);
  border-color: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid var(--line-light);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 80;
  padding: 8px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(23, 22, 27, 0.2);
  backdrop-filter: blur(13px);
  transform: translateY(130%);
  transition: transform 220ms ease;
}

.mobile-action .button {
  width: 100%;
}

.mobile-action.is-visible {
  transform: translateY(0);
}

dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(88vh, 820px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 22, 27, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 100px rgba(18, 15, 29, 0.34);
}

dialog::backdrop {
  background: rgba(17, 15, 25, 0.68);
  backdrop-filter: blur(5px);
}

.callback-dialog {
  width: min(560px, calc(100% - 28px));
}

.consent-dialog {
  width: min(620px, calc(100% - 28px));
}

.dialog-content {
  padding: clamp(27px, 5vw, 48px);
}

.dialog-content > h2 {
  margin-bottom: 14px;
}

.dialog-content > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.dialog-close {
  display: grid;
  position: sticky;
  top: 12px;
  z-index: 5;
  width: 40px;
  height: 40px;
  margin: 12px 12px -52px auto;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  place-items: center;
}

.message-form,
.callback-form {
  display: grid;
  gap: 17px;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.consent-option:last-of-type {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.consent-option strong,
.consent-option span {
  display: block;
}

.consent-option span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.consent-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--violet);
}

.consent-option-essential > span:last-child {
  color: var(--violet);
  font-weight: 850;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(1050px, calc(100% - 36px));
  margin-inline: auto;
  padding: 18px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(17, 15, 25, 0.34);
}

.cookie-copy strong {
  display: block;
  margin-bottom: 3px;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions .button-ghost,
.cookie-actions .text-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.cookie-actions .button-ghost:hover {
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-page .legal-header {
  position: static;
  padding-top: 16px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  align-items: start;
  gap: 70px;
  padding: 90px 0 110px;
}

.legal-intro {
  position: sticky;
  top: 30px;
}

.legal-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-intro > p:last-child {
  color: var(--muted);
}

.legal-content {
  padding: clamp(25px, 5vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.legal-content h2 {
  margin: 38px 0 14px;
  font-size: 27px;
}

.legal-content h2:first-of-type {
  margin-top: 20px;
}

.legal-content h3 {
  margin: 26px 0 10px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #4e4b55;
}

.legal-warning {
  margin-bottom: 28px;
  padding: 17px 18px;
  background: #fff0eb;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  font-size: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay {
  transition-delay: 90ms;
}

@keyframes question-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes card-pulse {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 0 0 6px rgba(91, 69, 246, 0.16), var(--shadow); }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(960px, calc(100% - 34px));
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    max-width: 820px;
    padding-top: 25px;
  }

  .estimator-card {
    width: min(780px, 100%);
    min-height: 620px;
    margin-inline: auto;
  }

  .hero-shape-circle {
    top: 420px;
  }

  .section-heading-row,
  .value-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .value-intro,
  .faq-heading {
    position: static;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item:nth-child(2) {
    border-right: 0;
  }

  .timeline-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .technical-proof {
    grid-template-columns: 1fr;
  }

  .technical-proof-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .project-band-inner {
    grid-template-columns: 1fr;
  }

  .project-band-actions {
    width: min(360px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 2.85rem);
  }

  h2 {
    font-size: clamp(2rem, 8.8vw, 2.35rem);
  }

  .site-header,
  .legal-header {
    inset: 10px 0 auto;
  }

  .header-inner {
    min-height: 62px;
    padding-left: 12px;
  }

  .header-inner > .button {
    min-height: 43px;
    padding-inline: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 112px 0 62px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-button {
    align-self: center;
    margin-left: 0;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust p,
  .hero-trust p:first-child {
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-trust p:last-child {
    border-bottom: 0;
  }

  .estimator-card {
    min-height: 600px;
    padding: 25px 18px;
    border-radius: 20px;
  }

  .estimator-topline {
    align-items: flex-start;
  }

  .progress-labels {
    align-items: flex-start;
  }

  .progress-labels span:first-child {
    max-width: 235px;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .choice-wide {
    grid-column: auto;
  }

  .form-actions .button {
    min-height: 50px;
    padding-inline: 16px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid p:nth-child(2) {
    border-right: 0;
  }

  .proof-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section {
    padding: 76px 0;
  }

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

  .service-card:nth-child(n) {
    grid-column: auto;
    min-height: 270px;
  }

  .value-grid {
    gap: 35px;
  }

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

  .timeline-item,
  .timeline-item:nth-child(2) {
    min-height: auto;
    padding: 24px 16px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .timeline-number {
    margin-bottom: 42px;
  }

  .technical-proof {
    margin-top: 34px;
    border-radius: 20px;
  }

  .technical-proof-copy,
  .delivery-proof {
    padding: 26px 20px;
  }

  .technology-list {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .profile-poster {
    height: 480px;
  }

  .profile-photo {
    object-position: 50% 40%;
  }

  .project-band,
  .final-cta {
    padding: 70px 0;
  }

  .project-band-actions {
    width: 100%;
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-actions .text-button {
    align-self: center;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-action {
    display: block;
  }

  dialog {
    border-radius: 19px;
  }

  .dialog-content {
    padding: 27px 20px 24px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    width: auto;
    gap: 16px;
    padding: 17px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 0 80px;
  }

  .legal-intro {
    position: static;
  }
}

@media (max-width: 480px) {
  .header-inner > .button {
    font-size: 13px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions .button,
  .final-actions .button {
    min-height: 52px;
  }

  .question-heading {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .question-number {
    width: 36px;
    height: 36px;
  }

  .question-help {
    margin-left: 0;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }

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

  .proof-grid p,
  .proof-grid p:first-child,
  .proof-grid p:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .proof-grid p:last-child {
    border-bottom: 0;
  }

  .value-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .profile-points {
    grid-template-columns: 1fr;
  }

  .profile-poster {
    min-height: 360px;
  }

  .accordion summary {
    font-size: 16px;
  }

  .accordion details p {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
