@font-face {
  font-family: "Instrument Serif";
  src: url("assets/instrument-serif-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --background: #eceff3;
  --surface: #ffffff;
  --surface-secondary: #f2f5f8;
  --surface-blue: #eaf1f9;
  --navy: #071326;
  --navy-soft: #0d1c33;
  --text-primary: #09111f;
  --text-secondary: #566174;
  --text-inverse: #f8fbff;
  --accent-blue: #2368f2;
  --accent-cyan: #11b8cf;
  --accent-violet: #7658ed;
  --border: #dce2e9;
  --border-dark: rgba(255, 255, 255, 0.14);
  --success: #25a875;
  --warning: #f09d39;
  --shadow: 0 28px 80px rgba(20, 37, 61, 0.12);
  --shadow-soft: 0 12px 32px rgba(20, 37, 61, 0.09);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --site-max-width: 1680px;
  --outer-gutter: clamp(12px, 1.67vw, 32px);
  --section-padding: clamp(52px, 5vw, 84px);
  --compact-padding: clamp(44px, 3.7vw, 62px);
  --readable-text-width: 760px;
  --legal-readable-width: 920px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: var(--font-ui);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(35, 104, 242, 0.42);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--navy);
  color: white;
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(calc(100% - var(--outer-gutter) - var(--outer-gutter)), var(--site-max-width));
  margin: var(--outer-gutter) auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(13, 28, 51, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--section-padding);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-color: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  width: 30px;
  height: 22px;
  display: inline-block;
}

.brand-symbol i {
  position: absolute;
  width: 13px;
  height: 8px;
  background: var(--navy);
  border-radius: 4px;
  transform: rotate(-38deg);
}

.brand-symbol i:first-child {
  left: 1px;
  top: 7px;
}

.brand-symbol i:nth-child(2) {
  left: 9px;
  top: 3px;
  background: var(--accent-blue);
}

.brand-symbol i:last-child {
  left: 16px;
  top: 9px;
  background: var(--accent-cyan);
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
}

.brand-name small {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--accent-blue);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--text-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.hero {
  min-height: clamp(690px, 48vw, 780px);
  margin: 0 14px;
  padding: clamp(58px, 4.75vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  gap: clamp(48px, 4vw, 72px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), transparent 48%),
    var(--surface-secondary);
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #7ee9fa;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 104px;
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0;
}

.hero h1 em {
  display: block;
  color: var(--accent-blue);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 36px 0 12px;
  font-size: 22px;
  line-height: 1.42;
}

.hero-support {
  max-width: var(--readable-text-width);
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(15px, 1vw, 16px);
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(7, 19, 38, 0.18);
}

.button-primary:hover {
  background: var(--accent-blue);
  box-shadow: 0 12px 28px rgba(35, 104, 242, 0.24);
}

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

.button-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.text-link,
.whatsapp-link {
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-proof {
  width: max-content;
  max-width: 100%;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #ccd3dc;
  color: var(--text-secondary);
  font-size: 12px;
}

.hero-proof strong {
  color: var(--text-primary);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: clamp(544px, 39vw, 620px);
  margin: 0;
}

.hero-visual img {
  position: absolute;
  inset: 26px 16px 0 34px;
  width: calc(100% - 50px);
  height: calc(100% - 26px);
  object-fit: cover;
  object-position: 58% center;
  border-radius: 8px;
  box-shadow: 0 32px 60px rgba(10, 27, 53, 0.2);
}

.visual-aura {
  position: absolute;
  inset: 0 0 36px 68px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent-blue), var(--accent-cyan) 52%, var(--accent-violet));
}

.example-label {
  position: absolute;
  top: 42px;
  right: 32px;
  padding: 6px 9px;
  background: rgba(7, 19, 38, 0.82);
  color: white;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(20, 37, 61, 0.16);
}

.floating-card small,
.floating-card strong {
  display: block;
  line-height: 1.35;
}

.floating-card small {
  color: var(--text-secondary);
  font-size: 10px;
}

.floating-card strong {
  font-size: 12px;
}

.card-new {
  top: 126px;
  left: -22px;
  width: 178px;
}

.card-priority {
  top: 206px;
  right: -16px;
  width: 196px;
}

.card-follow {
  left: 0;
  bottom: 42px;
  width: 246px;
  justify-content: space-between;
}

.card-time {
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(17, 184, 207, 0.12);
}

.status-cyan { background: var(--accent-cyan); }
.status-violet { background: var(--accent-violet); box-shadow: 0 0 0 5px rgba(118, 88, 237, 0.12); }
.status-green { background: var(--success); box-shadow: 0 0 0 5px rgba(37, 168, 117, 0.12); }

.source-strip {
  padding: 34px var(--compact-padding) 40px;
  border-bottom: 1px solid var(--border);
}

.source-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.source-heading p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.source-heading span {
  color: var(--text-secondary);
  font-size: 11px;
}

.source-list,
.icp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.source-list {
  margin-top: 20px;
}

.source-list li {
  padding: 8px 13px;
  background: var(--surface-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.icp-list {
  margin-top: 14px;
}

.icp-list li {
  color: var(--text-secondary);
  font-size: 11px;
}

.icp-list li:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
}

.section {
  padding: clamp(100px, 7vw, 128px) var(--section-padding);
}

.section-heading {
  max-width: var(--readable-text-width);
}

.section-heading h2,
.diagnostic-intro h2,
.offer-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.diagnostic-intro > p,
.offer-heading > p {
  max-width: var(--readable-text-width);
  margin: 22px 0 0;
  color: var(--text-secondary);
}

.process {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 0 46px 0 0;
}

.process-step:not(:first-child) {
  padding-left: 34px;
}

.step-number {
  display: block;
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-size: 44px;
}

.step-line {
  height: 1px;
  margin: 20px 0 28px;
  background: linear-gradient(90deg, var(--accent-blue), var(--border) 78%);
}

.process-step h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.process-step p {
  max-width: 280px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.product-stage {
  position: relative;
  padding: clamp(100px, 7vw, 128px) var(--section-padding);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(64px, 5vw, 92px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(35, 104, 242, 0.22), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(17, 184, 207, 0.12), transparent 30%),
    var(--navy);
  color: var(--text-inverse);
}

.product-copy {
  max-width: var(--readable-text-width);
  min-width: 0;
}

.product-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.product-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #b7c2d2;
}

.product-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.product-legend span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8e0ea;
  font-size: 11px;
}

.dashboard-demo {
  width: 100%;
  max-width: 940px;
  min-width: 0;
  justify-self: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 14px;
}

.demo-brand {
  font-size: 12px;
  font-weight: 700;
}

.example-chip {
  padding: 5px 8px;
  color: #b9c6d8;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.delivery-flow li {
  position: relative;
  min-width: 0;
  padding: 13px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
}

.delivery-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -9px;
  color: #7ee9fa;
  transform: translate(50%, -50%);
}

.delivery-flow span,
.delivery-flow strong {
  display: block;
}

.delivery-flow span {
  color: #7ee9fa;
  font-size: 9px;
  font-weight: 700;
}

.delivery-flow strong {
  margin-top: 3px;
  font-size: 11px;
}

.record-table {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
}

.record-row {
  display: grid;
  grid-template-columns: 0.55fr 0.8fr 1.45fr 0.8fr 1fr 1.15fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 12px 13px;
  color: #dbe3ed;
  background: rgba(9, 24, 46, 0.72);
  border-top: 1px solid var(--border-dark);
  font-size: 10px;
}

.record-row:first-child {
  border-top: 0;
}

.record-row strong {
  color: white;
}

.record-head {
  color: #8fa0b6;
  background: rgba(255, 255, 255, 0.05);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.record-status {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
}

.status-new {
  background: var(--accent-cyan);
}

.status-contacted {
  background: var(--success);
}

.status-pending {
  background: var(--warning);
}

.record-caption {
  margin: 12px 2px 0;
  color: #a9b6c7;
  font-size: 10px;
  text-align: right;
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(62px, 5vw, 94px);
  align-items: start;
  background: var(--surface-blue);
}

.diagnostic-intro {
  position: sticky;
  top: 110px;
}

.privacy-points {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  position: relative;
  margin: 12px 0;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 13px;
}

.privacy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
}

.diagnostic-card {
  width: 100%;
  max-width: 920px;
  justify-self: end;
  min-width: 0;
  padding: 30px;
  background: white;
  border: 1px solid rgba(35, 104, 242, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.diagnostic-top {
  display: grid;
  grid-template-columns: auto 180px;
  gap: 22px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.diagnostic-top span,
.diagnostic-top strong {
  display: block;
}

.diagnostic-top span {
  color: var(--accent-blue);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.diagnostic-top strong {
  margin-top: 3px;
  font-size: 14px;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  background: var(--surface-secondary);
  border-radius: 999px;
}

.progress-track span {
  width: 33.333%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transition: width 220ms ease;
}

.diag-step {
  min-width: 0;
  margin: 0;
  padding: 26px 0 0;
  border: 0;
}

.js .diag-step {
  display: none;
}

.js .diag-step.is-active {
  display: block;
}

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

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

.field > span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  background: #fafbfd;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
}

.field input:focus,
.field select:focus {
  border-color: var(--accent-blue);
  outline: 3px solid rgba(35, 104, 242, 0.12);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

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

.diagnostic-result {
  display: none;
  scroll-margin-top: 112px;
}

.diagnostic-result.visible {
  display: block;
  margin-top: 24px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.diagnostic-result.high { border-color: rgba(37, 168, 117, 0.4); }
.diagnostic-result.medium { border-color: rgba(240, 157, 57, 0.46); }

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.result-badge {
  padding: 6px 9px;
  background: var(--surface-secondary);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.result-badge.high { color: var(--success); background: rgba(37, 168, 117, 0.1); }
.result-badge.medium { color: #9b651d; background: rgba(240, 157, 57, 0.12); }

.result-score {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.result-score span {
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-size: 12px;
}

.diagnostic-result h3 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.result-explanation,
.result-next p {
  color: var(--text-secondary);
  font-size: 13px;
}

.result-next {
  margin: 18px 0;
  padding: 14px;
  background: white;
  border-left: 3px solid var(--accent-blue);
}

.result-next strong {
  font-size: 12px;
}

.result-next p {
  margin: 4px 0 0;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-storage-note {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 10px;
}

.offer {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(62px, 5vw, 94px);
  background:
    radial-gradient(circle at 0 100%, rgba(17, 184, 207, 0.14), transparent 35%),
    var(--navy);
  color: var(--text-inverse);
}

.offer-heading {
  align-self: center;
}

.offer-heading > p {
  color: #b4c0d0;
}

.offer-timing {
  width: max-content;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
}

.offer-timing span,
.offer-timing strong {
  display: block;
}

.offer-timing span {
  color: #97a7bb;
  font-size: 10px;
  text-transform: uppercase;
}

.offer-timing strong {
  margin-top: 4px;
  font-size: 19px;
}

.offer-panel {
  width: 100%;
  max-width: 900px;
  justify-self: end;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.price {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dark);
}

.price span,
.price strong,
.price small,
.maintenance span,
.maintenance strong,
.maintenance small {
  display: block;
}

.price span,
.maintenance span {
  color: #91a2b7;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.price strong {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 400;
  line-height: 1;
}

.price small,
.maintenance small {
  color: #aebac9;
  font-size: 11px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 22px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 20px;
  color: #dbe3ed;
  font-size: 12px;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #65e1ee;
  font-weight: 700;
}

.maintenance {
  margin-bottom: 24px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.maintenance strong {
  margin: 2px 0;
  font-size: 20px;
}

.offer-panel .button {
  width: 100%;
}

.offer-disclaimer {
  margin: 18px 0 0;
  color: #91a2b7;
  font-size: 10px;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(70px, 5vw, 96px);
  background: white;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item[aria-expanded="true"] .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer > div {
  max-width: var(--readable-text-width);
  padding: 0 40px 24px 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.final-cta {
  margin: 0 14px 14px;
  padding: 92px var(--section-padding);
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 15% 100%, rgba(17, 184, 207, 0.3), transparent 36%),
    radial-gradient(circle at 90% 0, rgba(118, 88, 237, 0.28), transparent 34%),
    var(--navy);
  border-radius: 8px;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 400;
  line-height: 1;
}

.final-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px auto 0;
  color: #b8c4d3;
}

.final-actions {
  justify-content: center;
}

.whatsapp-link {
  color: white;
}

.site-footer {
  padding: 50px var(--compact-padding) 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.6fr;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-main p {
  max-width: 400px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.footer-main > div:not(:first-child),
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-main strong {
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-main a,
.footer-main span {
  color: var(--text-secondary);
  font-size: 11px;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 10px;
}

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

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

.js .hero .reveal {
  animation: hero-enter 560ms ease both;
}

.js .hero .hero-visual {
  animation-delay: 90ms;
}

@keyframes hero-enter {
  from {
    opacity: 0.72;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cookieBanner {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  width: min(440px, calc(100% - 44px));
  padding: 16px;
  background: rgba(7, 19, 38, 0.96);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cookie-banner-text {
  margin: 0;
  color: #c1ccda;
  font-size: 10px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: white;
}

.cookie-banner-actions {
  display: flex;
  gap: 7px;
}

.cookie-btn {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-btn-accept {
  background: white;
  color: var(--navy);
}

.cookie-banner-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.legal-body {
  min-height: 100vh;
}

.legal-site-shell {
  min-height: calc(100vh - var(--outer-gutter) - var(--outer-gutter));
}

.legal-header {
  grid-template-columns: 1fr auto auto;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.legal-nav a {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--accent-blue);
}

.legal-main {
  min-height: 62vh;
  padding: clamp(64px, 6vw, 96px) var(--section-padding);
  background: var(--surface-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.legal-page-shell {
  width: min(100%, var(--legal-readable-width));
  margin: 0 auto;
  padding: clamp(38px, 4vw, 58px);
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.legal-page-shell h1 {
  margin: 0 0 10px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
}

.legal-page-shell h2 {
  margin: 30px 0 8px;
  color: var(--text-primary);
  font-size: 17px;
}

.legal-page-shell p,
.legal-page-shell li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.legal-page-shell a {
  color: var(--accent-blue);
}

.legal-meta,
.legal-note {
  color: var(--text-secondary);
}

.legal-note {
  margin-top: 28px;
  padding: 14px;
  background: var(--surface-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.legal-back {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    min-height: 630px;
    padding: 50px 40px;
    gap: 30px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-visual {
    height: 470px;
  }

  .section,
  .product-stage {
    padding: 88px 50px;
  }

  .section-heading h2,
  .diagnostic-intro h2,
  .offer-heading h2,
  .product-copy h2 {
    font-size: 48px;
  }

  .diagnostic,
  .offer {
    gap: 46px;
  }

  .legal-nav {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: calc(100% - 24px);
    margin: 12px auto;
    border-radius: 18px;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 0 18px;
  }

  .legal-header {
    grid-template-columns: 1fr auto;
  }

  .legal-nav {
    display: none;
  }

  .legal-header .header-cta {
    grid-column: 2;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 40px;
    padding: 0 14px;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 34px 32px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: 100%;
    max-width: 620px;
    height: 520px;
    margin: 8px auto 0;
  }

  .source-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: auto;
    padding: 0;
  }

  .product-stage,
  .diagnostic,
  .offer,
  .faq {
    grid-template-columns: 1fr;
  }

  .diagnostic-intro {
    position: static;
  }

  .offer-panel {
    max-width: 660px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-shell {
    width: calc(100% - 12px);
    margin: 6px auto;
    border-radius: 14px;
  }

  .site-header {
    min-height: 66px;
    padding: 0 12px;
  }

  .brand {
    gap: 7px;
  }

  .brand-name small {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    margin: 0 6px;
    padding: 42px 20px 18px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 62px;
    line-height: 0.88;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 18px;
  }

  .hero-support {
    font-size: 13px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .text-link {
    text-align: center;
  }

  .hero-proof {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-visual {
    height: 410px;
    margin-top: 4px;
  }

  .visual-aura {
    inset: 0 0 25px 28px;
  }

  .hero-visual img {
    inset: 14px 8px 0 14px;
    width: calc(100% - 22px);
    height: calc(100% - 14px);
    object-position: 57% center;
  }

  .example-label {
    top: 24px;
    right: 18px;
  }

  .floating-card {
    min-height: 54px;
    padding: 9px 11px;
  }

  .card-new {
    top: 90px;
    left: 0;
    width: 145px;
  }

  .card-priority {
    top: auto;
    right: 0;
    bottom: 86px;
    width: 160px;
  }

  .card-follow {
    left: 12px;
    bottom: 18px;
    width: calc(100% - 24px);
  }

  .source-strip {
    padding: 28px 20px;
  }

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

  .source-list li {
    min-width: 0;
    padding: 8px 9px;
    font-size: 10px;
  }

  .icp-list li:not(:last-child)::after {
    display: none;
  }

  .section,
  .product-stage {
    padding: 74px 22px;
  }

  .section-heading h2,
  .diagnostic-intro h2,
  .offer-heading h2,
  .product-copy h2 {
    font-size: 42px;
  }

  .process-grid {
    margin-top: 48px;
  }

  .step-number {
    font-size: 36px;
  }

  .product-stage {
    gap: 44px;
  }

  .product-legend {
    gap: 16px;
  }

  .dashboard-demo {
    padding: 10px;
  }

  .delivery-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-flow li:nth-child(2)::after {
    display: none;
  }

  .record-table {
    overflow: hidden;
  }

  .record-head {
    display: none;
  }

  .record-row:not(.record-head) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 16px;
    padding: 15px;
  }

  .record-row:not(.record-head) > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .record-row:not(.record-head) > :nth-child(3),
  .record-row:not(.record-head) > :nth-child(6) {
    grid-column: 1 / -1;
  }

  .record-row:not(.record-head) > [data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: #8fa0b6;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .record-caption {
    text-align: left;
  }

  .diagnostic {
    gap: 40px;
  }

  .diagnostic-card {
    padding: 20px 16px;
  }

  .diagnostic-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .step-actions {
    flex-direction: column-reverse;
  }

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

  .result-actions {
    flex-direction: column;
  }

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

  .offer {
    gap: 40px;
  }

  .offer-panel {
    padding: 24px 18px;
  }

  .price strong {
    font-size: 62px;
  }

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

  .faq {
    gap: 42px;
  }

  .faq-question {
    min-height: 66px;
    font-size: 13px;
  }

  .final-cta {
    margin: 0 6px 6px;
    padding: 72px 22px;
  }

  .final-cta h2 {
    font-size: 44px;
  }

  .site-footer {
    padding: 42px 22px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }

  .legal-page-shell {
    padding: 26px 20px;
  }

  .legal-main {
    padding: 26px 10px 42px;
  }

  .legal-page-shell h1 {
    font-size: 40px;
  }
}

.lead-form-card .diagnostic-top {
  grid-template-columns: 1fr;
}

.lead-form-card form {
  padding-top: 26px;
}

.field textarea {
  width: 100%;
  min-height: 116px;
  padding: 12px 13px;
  resize: vertical;
  background: #fafbfd;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  line-height: 1.5;
}

.field textarea:focus {
  border-color: var(--accent-blue);
  outline: 3px solid rgba(35, 104, 242, 0.12);
}

.direct-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.direct-contact-list a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(35, 104, 242, 0.2);
  border-radius: 6px;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.direct-contact-list a:hover {
  border-color: var(--accent-blue);
  background: rgba(35, 104, 242, 0.05);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent-blue);
}

.consent-row a {
  color: var(--accent-blue);
  font-weight: 700;
}

.lead-submit {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: var(--text-tertiary);
  font-size: 11px;
  text-align: center;
}

.thanks-main {
  min-height: 66vh;
  display: flex;
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
}

.thanks-main h1 {
  max-width: 720px;
}

.thanks-main > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--text-secondary);
  font-size: 18px;
}

@media (max-width: 560px) {
  .direct-contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .direct-contact-list a {
    justify-content: center;
  }
}

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

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

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