:root {
  --brand: #a500b8;
  --brand-deep: #710084;
  --brand-soft: #f8e9fb;
  --brand-blue: #2d489b;
  --ink: #101014;
  --muted: #62636f;
  --line: #e2e3e8;
  --soft: #f7f7f9;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell { min-height: 100vh; overflow-x: clip; background: white; }
.site-container { width: min(1152px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; }
.brand-logo-shell {
  width: 178px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  overflow: hidden;
  border-radius: 9px;
  background:
    radial-gradient(circle at 87% 10%, rgba(165,0,184,.38), transparent 36%),
    linear-gradient(145deg, #181522, #0d0d12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 8px 24px rgba(17, 9, 25, .12);
}
.brand-logo-shell img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 10px; }
.nav-link { padding: 10px 13px; font-size: 14px; font-weight: 650; color: #202027; transition: color .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--brand); }

.primary-button, .light-button, .download-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 7px;
  font-weight: 720;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.primary-button {
  padding: 13px 19px;
  color: white;
  background: linear-gradient(110deg, var(--brand-blue), var(--brand) 62%, #c208d2);
  box-shadow: 0 10px 25px rgba(137, 0, 158, .18);
  overflow: hidden;
}
.primary-button::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -35%;
  width: 28%;
  transform: rotate(18deg);
  background: rgba(255,255,255,.34);
  filter: blur(3px);
  transition: left .5s ease;
}
.primary-button:hover::after { left: 115%; }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(137,0,158,.25); }
.primary-button.compact { padding: 11px 15px; font-size: 14px; }

.mobile-nav { display: none; position: relative; }
.mobile-nav summary { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary > span { width: 20px; height: 2px; margin: 2px 0; display: block; border-radius: 999px; background: var(--ink); }
.mobile-nav-panel { position: absolute; right: 0; top: 54px; width: 210px; padding: 8px; display: grid; gap: 4px; border: 1px solid var(--line); border-radius: 10px; background: white; box-shadow: 0 18px 50px rgba(17,17,23,.15); }
.mobile-nav-panel a { padding: 12px; border-radius: 7px; font-size: 14px; font-weight: 700; }
.mobile-nav-panel a:last-child { background: var(--brand); color: white; }

.hero { padding: 88px 16px 66px; text-align: center; }
.hero-kicker {
  width: fit-content;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(165,0,184,.16);
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero h1 { margin: 0; font-size: clamp(44px, 7.3vw, 82px); line-height: .97; letter-spacing: -.065em; font-weight: 900; }
.hero h1 span { color: transparent; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); background-clip: text; -webkit-background-clip: text; }
.hero > p { max-width: 760px; margin: 26px auto 0; color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.75; }
.hero-button { margin-top: 29px; min-width: 210px; }
.hero-proof { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; color: #555662; font-size: 12px; font-weight: 650; }
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof i { min-width: 17px; color: var(--brand); font-style: normal; font-size: 15px; }

.tech-section { padding: 14px 0 8px; }
.tech-title { margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 14px; color: #626877; font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.tech-title-line { width: 48px; height: 1px; background: #cbd0d8; }
.marquee-window { position: relative; overflow: hidden; padding: 9px 0; mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 15px; animation: marquee 75s linear infinite; }
.marquee-window.reverse .marquee-track { animation-direction: reverse; animation-duration: 88s; }
.marquee-window:hover .marquee-track { animation-play-state: paused; }
.tech-chip { flex: none; min-height: 54px; display: inline-flex; align-items: center; gap: 12px; padding: 11px 21px; border: 1px solid #e0e2e7; border-radius: 999px; background: white; color: #111216; box-shadow: 0 5px 12px rgba(21,24,31,.12); font-size: 15px; }
.tech-chip strong { font-weight: 710; letter-spacing: -.015em; white-space: nowrap; }
.tech-logo { width: 25px; height: 25px; flex: none; display: grid; place-items: center; }
.tech-logo img, .tech-logo svg { width: 24px; height: 24px; object-fit: contain; }
@keyframes marquee { to { transform: translateX(-50%); } }

.service-section { padding-top: 94px; }
.section-heading { margin-bottom: 28px; padding-bottom: 17px; display: flex; align-items: end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.section-eyebrow { display: block; margin-bottom: 7px; color: var(--brand); font-size: 11px; font-weight: 820; text-transform: uppercase; letter-spacing: .15em; }
.section-heading h2 { margin: 0; font-size: clamp(27px, 4vw, 40px); line-height: 1.04; letter-spacing: -.045em; font-weight: 860; }
.section-number { color: #d7d7dc; font-size: clamp(42px, 6vw, 68px); line-height: .8; letter-spacing: -.08em; font-weight: 900; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding: 1px; background: var(--line); border-radius: 3px; overflow: hidden; }
.service-card { position: relative; min-height: 235px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.service-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); transition: transform .25s ease; }
.service-card:hover { z-index: 2; transform: translateY(-4px); box-shadow: 0 24px 45px -24px rgba(19,9,25,.36); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-top { display: flex; align-items: flex-start; gap: 16px; }
.service-icon { flex: none; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(165,0,184,.17); border-radius: 7px; color: var(--brand); background: var(--brand-soft); font-size: 11px; font-weight: 850; transition: color .25s, background .25s; }
.service-card:hover .service-icon { color: white; background: var(--brand); }
.service-card h3 { margin: 2px 0 9px; font-size: 19px; line-height: 1.2; letter-spacing: -.025em; font-weight: 820; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.66; }
.service-price { padding-top: 19px; border-top: 1px solid #ededf0; }
.service-price span { display: block; margin-bottom: 6px; color: #898a94; font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.service-price strong { color: var(--brand-deep); font-size: 16px; letter-spacing: -.02em; }

.faq-section { padding-top: 94px; }
.faq-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 22px; align-items: stretch; }
.faq-intro { position: relative; min-height: 420px; padding: 34px; overflow: hidden; border-radius: 5px; color: white; background: radial-gradient(circle at 110% 105%, rgba(165,0,184,.78), transparent 55%), radial-gradient(circle at -10% 0%, rgba(45,72,155,.72), transparent 45%), #111116; }
.faq-intro::after { content: "?"; position: absolute; right: -8px; bottom: -62px; color: rgba(255,255,255,.06); font-size: 280px; line-height: 1; font-weight: 900; }
.faq-intro > span { color: #da78e4; font-size: 11px; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.faq-intro h3 { position: relative; z-index: 1; margin: 21px 0 15px; font-size: 31px; line-height: 1.08; letter-spacing: -.045em; }
.faq-intro p { position: relative; z-index: 1; margin: 0; color: #cbc9d0; font-size: 14px; line-height: 1.7; }
.faq-icon-row { position: absolute; z-index: 1; left: 34px; bottom: 34px; display: flex; gap: 9px; }
.faq-icon-row i { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: rgba(255,255,255,.06); color: #e67aef; font-style: normal; font-size: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 16px; font-weight: 760; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: none; color: var(--brand); transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details p { margin: -8px 0 23px; padding-right: 35px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.quote-cta { position: relative; margin-top: 84px; padding: 43px 46px; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-radius: 5px; color: white; background: radial-gradient(circle at 100% 0, rgba(165,0,184,.72), transparent 48%), radial-gradient(circle at 0 100%, rgba(45,72,155,.53), transparent 42%), #111116; }
.quote-cta::after { content: ""; position: absolute; width: 220px; height: 220px; right: 9%; top: -150px; border: 34px solid rgba(255,255,255,.06); border-radius: 50%; }
.quote-cta > * { position: relative; z-index: 1; }
.quote-cta span { color: #e68bed; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.quote-cta h3 { margin: 7px 0 10px; font-size: clamp(27px, 4vw, 39px); line-height: 1; letter-spacing: -.045em; }
.quote-cta p { max-width: 610px; margin: 0; color: #cbc9d1; font-size: 14px; line-height: 1.6; }
.light-button { flex: none; padding: 14px 19px; color: var(--ink); background: white; }
.light-button:hover { transform: translateY(-2px); background: var(--brand-soft); }
.pricing-note { margin: 18px auto 74px; text-align: center; color: #858690; font-size: 11px; }

.site-footer { padding-top: 58px; color: white; background: #0e0e12; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(210px, .8fr) minmax(230px, .9fr); gap: 62px; padding-bottom: 48px; }
.footer-logo-shell { width: 202px; height: 72px; padding: 4px; }
.footer-logo-shell img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand > p { max-width: 465px; margin: 18px 0; color: #aaa9b1; font-size: 13px; line-height: 1.75; }
.footer-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-tags span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.11); border-radius: 4px; color: #d1cfd6; background: rgba(255,255,255,.04); font-size: 10px; }
.site-footer h3 { margin: 5px 0 20px; font-size: 14px; }
.footer-links { margin: 0; padding: 0; display: grid; gap: 15px; list-style: none; }
.footer-links li { display: flex; align-items: flex-start; gap: 10px; color: #c1bec8; }
.footer-links svg { flex: none; margin-top: 2px; color: #db67e8; }
.contact-icon { width: 20px; flex: none; margin-top: 1px; color: #db67e8; text-align: center; font-size: 17px; font-weight: 750; }
.footer-links a { font-size: 12px; }
.footer-links a span { display: block; margin-bottom: 3px; color: #777681; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.domain-button { width: fit-content; display: flex; align-items: center; gap: 8px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 6px; background: rgba(255,255,255,.05); font-size: 12px; font-weight: 650; transition: background .2s; }
.domain-button:hover { background: var(--brand); }
.footer-small { max-width: 260px; margin: 15px 0 0; color: #777681; font-size: 11px; line-height: 1.6; }
.footer-bottom { min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #6e6c77; font-size: 10px; }

/* Quotation builder */
.quote-page-hero { padding: 64px 16px 12px; text-align: center; }
.quote-page-hero > span { display: inline-block; margin-bottom: 13px; color: var(--brand); font-size: 11px; font-weight: 830; letter-spacing: .16em; text-transform: uppercase; }
.quote-page-hero h1 { margin: 0; font-size: clamp(36px, 6vw, 61px); line-height: 1; letter-spacing: -.055em; font-weight: 900; }
.quote-page-hero p { margin: 18px auto 0; color: var(--muted); font-size: 16px; }

.quote-builder-grid { padding: 44px 0 80px; display: grid; grid-template-columns: minmax(0, 3fr) minmax(350px, 2fr); gap: 30px; align-items: start; }
.builder-form-column { min-width: 0; display: grid; gap: 20px; }
.builder-panel { padding: 24px; border: 1px solid var(--line); border-radius: 9px; background: white; box-shadow: 0 6px 24px rgba(20,20,28,.03); }
.builder-panel-title { margin-bottom: 19px; display: flex; align-items: center; gap: 9px; }
.builder-panel-title > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 7px; color: var(--brand); background: var(--brand-soft); }
.builder-panel-title h2 { margin: 0; font-size: 16px; font-weight: 810; letter-spacing: -.02em; }
.panel-help { margin: -7px 0 17px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-grid { display: grid; gap: 15px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid-spaced { margin-top: 15px; }
.form-field { min-width: 0; display: grid; gap: 7px; color: #454650; font-size: 11px; font-weight: 700; }
.form-field > span { padding-left: 1px; }
.form-field input, .form-field select, .form-field textarea, .editable-row input {
  width: 100%;
  min-width: 0;
  border: 1px solid #dcdde3;
  border-radius: 7px;
  color: var(--ink);
  background: #fcfcfd;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-field input, .form-field select { height: 43px; padding: 0 11px; }
.form-field textarea { min-height: 82px; padding: 11px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .editable-row input:focus { border-color: rgba(165,0,184,.64); background: white; box-shadow: 0 0 0 3px rgba(165,0,184,.09); }
.editable-list { display: grid; gap: 9px; }
.editable-row { display: grid; grid-template-columns: 29px 1fr 38px; align-items: center; gap: 8px; }
.editable-row > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--brand); background: var(--brand-soft); font-size: 10px; font-weight: 800; }
.editable-row input { height: 41px; padding: 0 10px; font-size: 12px; }
.editable-row button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; color: #777883; background: white; cursor: pointer; }
.editable-row button:hover:not(:disabled) { color: #b4232c; border-color: #f2c5c8; background: #fff5f5; }
.editable-row button:disabled { opacity: .35; cursor: not-allowed; }
.add-item-button { width: fit-content; margin-top: 4px; padding: 9px 12px; display: inline-flex; align-items: center; gap: 7px; border: 1px dashed rgba(165,0,184,.34); border-radius: 6px; color: var(--brand-deep); background: var(--brand-soft); font-size: 11px; font-weight: 740; cursor: pointer; }

.cover-option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.cover-option { position: relative; min-width: 0; padding: 8px; display: grid; gap: 9px; text-align: left; border: 1px solid var(--line); border-radius: 8px; background: white; cursor: pointer; transition: border .2s, box-shadow .2s, transform .2s; }
.cover-option:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(18,18,25,.08); }
.cover-option.selected { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(165,0,184,.09); }
.cover-option > span { display: grid; gap: 2px; }
.cover-option > span strong { font-size: 11px; }
.cover-option > span small { overflow: hidden; color: #85858f; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.cover-option > i { position: absolute; right: 6px; top: 6px; width: 22px; height: 22px; display: none; place-items: center; border-radius: 50%; color: white; background: var(--brand); font-style: normal; }
.cover-option.selected > i { display: grid; }
.cover-option > .cover-swatch { position: relative; aspect-ratio: 1 / 1.414; overflow: hidden; display: flex; align-items: flex-end; padding: 9px; border-radius: 4px; color: white; background: #101015; }
.cover-swatch b { position: relative; z-index: 2; font-size: 7px; line-height: 1.05; letter-spacing: -.02em; }
.cover-swatch > i { position: absolute; inset: auto -35% -27% auto; width: 110%; aspect-ratio: 1; border-radius: 50%; background: var(--brand); }
.cover-swatch.cover-signature { background: radial-gradient(circle at 100% 100%, rgba(165,0,184,.9), transparent 57%), radial-gradient(circle at 100% 0, rgba(45,72,155,.8), transparent 54%), #101015; }
.cover-swatch.cover-band::after { content: ""; position: absolute; inset: 43% 0 auto; height: 13%; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); }
.cover-swatch.cover-band > i { display: none; }
.cover-swatch.cover-arc > i { right: -42%; bottom: -24%; }

.builder-preview-column { min-width: 0; }
.builder-preview-sticky { position: sticky; top: 101px; display: grid; gap: 13px; }
.preview-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.preview-heading > span { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 800; }
.preview-heading svg { color: var(--brand); }
.preview-heading small { color: #8b8b95; font-size: 10px; }

.quote-cover { position: relative; aspect-ratio: 1 / 1.414; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; color: white; background: #101015; box-shadow: 0 10px 28px rgba(16,13,22,.13); }
.quote-cover::after { content: ""; position: absolute; z-index: 0; pointer-events: none; }
.quote-cover.cover-signature { background: radial-gradient(ellipse 95% 73% at 112% 108%, rgba(165,0,184,.88), transparent 61%), radial-gradient(ellipse 62% 44% at 108% -8%, rgba(45,72,155,.85), transparent 59%), #101015; }
.quote-cover.cover-signature .cover-accent { position: absolute; z-index: 1; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); }
.quote-cover.cover-band::before { content: ""; position: absolute; z-index: 0; inset: 42% 0 auto; height: 10%; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); }
.quote-cover.cover-band::after { inset: calc(52% + 2px) 0 auto; height: 1px; background: #000; }
.quote-cover.cover-arc::before { content: ""; position: absolute; z-index: 0; width: 118%; height: 80%; right: -38%; bottom: -29%; border-radius: 50%; background: var(--brand); }
.quote-cover.cover-arc::after { width: 86%; height: 59%; right: -30%; bottom: -23%; border: 34px solid #6d007f; border-radius: 50%; background: #101015; }
.quote-cover-inner { position: relative; z-index: 2; height: 100%; padding: 7%; display: flex; flex-direction: column; }
.quote-cover-inner > img { width: 45%; height: auto; object-fit: contain; }
.cover-tagline { margin: 2.2% 0 0; color: rgba(255,255,255,.63); font-size: clamp(5px, 1.25vw, 9px); font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.cover-main { margin-top: auto; }
.cover-main::before { content: ""; display: block; width: 15%; height: 3px; margin-bottom: 3%; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); }
.cover-main > span { color: #e06de9; font-size: clamp(7px, 1.5vw, 11px); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cover-main h3 { max-width: 90%; margin: 2% 0; font-size: clamp(19px, 4.7vw, 38px); line-height: 1; letter-spacing: -.045em; }
.cover-main p { margin: 0; color: rgba(255,255,255,.82); font-size: clamp(8px, 1.7vw, 12px); }
.cover-meta { margin-top: 7%; padding-top: 4%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3%; border-top: 1px solid rgba(255,255,255,.25); }
.cover-meta span { display: block; margin-bottom: 5%; color: #e06de9; font-size: clamp(5px, 1.1vw, 8px); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cover-meta strong { display: block; overflow-wrap: anywhere; font-size: clamp(6px, 1.4vw, 10px); line-height: 1.25; }
.cover-contact { margin: 4.5% 0 0; color: rgba(255,255,255,.55); font-size: clamp(5px, 1.12vw, 8px); }
.compact-cover { width: 100%; border-radius: 4px; box-shadow: none; }
.compact-cover .cover-main h3 { font-size: clamp(8px, 1.45vw, 13px); }
.compact-cover .cover-main > span, .compact-cover .cover-main p, .compact-cover .cover-meta strong { font-size: 4px; }
.compact-cover .cover-tagline, .compact-cover .cover-meta span, .compact-cover .cover-contact { font-size: 3px; }
.compact-cover .cover-main::before { height: 1px; }
.compact-cover.cover-arc::after { border-width: 12px; }

.quote-detail-preview { padding: 22px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: white; box-shadow: 0 8px 24px rgba(20,20,27,.06); }
.preview-brand-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.preview-brand-row > strong { font-size: 18px; letter-spacing: -.03em; }
.preview-brand-row > span { text-align: right; color: #777883; font-size: 7px; line-height: 1.45; }
.preview-rule { height: 2px; margin: 10px 0 15px; background: linear-gradient(90deg, var(--brand-blue), var(--brand)); }
.preview-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.preview-meta-grid span, .preview-section > span, .preview-stat-stack span, .preview-terms span { display: block; margin-bottom: 4px; color: #858690; font-size: 7px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.preview-meta-grid strong { display: block; overflow-wrap: anywhere; font-size: 9px; }
.preview-section { margin-top: 15px; }
.preview-section > span { color: var(--brand); }
.preview-section > strong { font-size: 11px; }
.preview-section ul { margin: 6px 0 0; padding-left: 15px; color: #30313a; font-size: 8px; line-height: 1.7; }
.preview-section li::marker { color: var(--brand); }
.preview-body-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(110px, 2fr); gap: 12px; }
.preview-stat-stack { padding-top: 14px; display: grid; gap: 8px; }
.preview-stat-stack > div { padding: 9px; text-align: center; border-radius: 5px; background: #f5f5f7; }
.preview-stat-stack > div > i { color: var(--brand); font-style: normal; }
.preview-stat-stack span { margin: 2px 0; font-size: 6px; }
.preview-stat-stack strong { display: block; color: var(--brand); font-size: 12px; line-height: 1.15; }
.preview-stat-stack small { display: block; margin-top: 2px; color: #8a8a93; font-size: 5px; text-transform: uppercase; }
.preview-stat-stack > .dark { color: white; background: #131318; }
.preview-stat-stack > .dark span { color: #bbb9c2; }
.preview-stat-stack > .dark strong { font-size: 8px; }
.preview-terms { margin-top: 14px; padding-top: 11px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-top: 1px solid #ededf0; }
.preview-terms span { color: var(--brand); font-size: 6px; }
.preview-terms strong { display: block; font-size: 7px; line-height: 1.35; }
.preview-thanks { margin: 14px 0 0; padding: 10px; border-radius: 4px; text-align: center; color: #373740; background: var(--brand-soft); font-size: 7px; font-weight: 750; }
.preview-note { margin: 0; text-align: center; color: #858690; font-size: 9px; }
.download-button { width: 100%; min-height: 48px; padding: 12px 18px; color: white; background: linear-gradient(110deg, var(--brand-blue), var(--brand)); box-shadow: 0 12px 28px rgba(142,0,161,.2); }
.download-button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(142,0,161,.27); }
.download-button:disabled { opacity: .78; cursor: progress; }
.download-button.working > span:first-child { animation: spin 1s linear infinite; }
.download-error { margin: -4px 0 0; text-align: center; color: #b4232c; font-size: 10px; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { padding-top: 67px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { min-height: 330px; }
  .quote-cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quote-builder-grid { grid-template-columns: 1fr; }
  .builder-preview-sticky { position: static; }
  .builder-preview-column { max-width: 600px; width: 100%; margin-inline: auto; }
}

@media (max-width: 640px) {
  .site-container { width: min(100% - 24px, 1152px); }
  .header-inner { min-height: 72px; }
  .brand-logo-shell { width: 149px; height: 49px; }
  .hero { padding: 54px 4px 46px; }
  .hero h1 { font-size: clamp(41px, 14vw, 61px); }
  .hero-proof { align-items: flex-start; flex-direction: column; width: fit-content; margin-inline: auto; gap: 10px; }
  .service-section, .faq-section { padding-top: 68px; }
  .section-heading { align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; padding: 24px; }
  .quote-cta { margin-top: 60px; padding: 31px 25px; }
  .light-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 37px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 18px 0; align-items: flex-start; flex-direction: column; justify-content: center; }
  .quote-page-hero { padding-top: 46px; }
  .quote-builder-grid { width: min(100% - 20px, 1152px); padding-top: 32px; }
  .builder-panel { padding: 18px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .cover-option-grid { grid-template-columns: 1fr 1fr; }
  .cover-option:last-child { grid-column: 1 / -1; width: calc(50% - 6px); }
  .quote-detail-preview { padding: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
