:root {
  --bg: #eef5ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #0b1225;
  --muted: #475569;
  --line: rgba(11, 18, 37, 0.09);
  --accent: #1537c6;
  --accent-strong: #1c61e7;
  --accent-soft: #54c7f1;
  --accent-softest: #d8f4ff;
  --shadow: 0 24px 80px rgba(21, 55, 198, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(84, 199, 241, 0.34), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(28, 97, 231, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #edf4ff 100%);
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(11, 18, 37, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--accent);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 30px rgba(21, 55, 198, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.button-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 72px 0 40px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2,
.pricing-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 9vw, 6.6rem);
}

.hero-text,
.pricing-copy p,
.contact-card p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero-card,
.feature-card,
.stat-card,
.pricing-card,
.contact-card,
.process-grid article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.92)),
    linear-gradient(135deg, rgba(84, 199, 241, 0.2), rgba(21, 55, 198, 0.14));
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(84, 199, 241, 0.2);
  filter: blur(8px);
}

.dashboard-topline,
.score-grid,
.bar-panel,
.message-card,
.logo-grid,
.feature-grid,
.stats-grid,
.process-grid,
.pricing-section {
  display: grid;
}

.dashboard-topline {
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
}

.status-pill,
.trend-pill,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-pill,
.pricing-badge {
  color: var(--accent);
  background: rgba(84, 199, 241, 0.18);
}

.trend-pill {
  color: var(--accent-strong);
  background: rgba(28, 97, 231, 0.11);
}

.score-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.score-grid article,
.message-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(27, 27, 24, 0.06);
}

.score-grid span,
.bar-row span,
.message-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.score-grid strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 2.4rem;
  font-family: "Space Grotesk", sans-serif;
}

.bar-panel {
  gap: 14px;
  margin-bottom: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 90px 1fr max-content;
  gap: 12px;
  align-items: center;
}

.bar {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(27, 27, 24, 0.08);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.message-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1rem;
}

section {
  padding: 52px 0;
}

.logo-strip {
  padding-top: 20px;
}

.logo-strip p {
  margin: 0 0 18px;
  color: var(--muted);
}

.logo-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.logo-grid span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  background: rgba(255, 255, 255, 0.55);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.pricing-copy h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: end;
  padding: 72px 0 32px;
}

.page-hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero-copy p:last-child {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
}

.mini-panel,
.highlight-card,
.detail-card,
.comparison-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.mini-panel {
  padding: 28px;
}

.mini-panel h3,
.detail-card h3,
.highlight-card h2 {
  margin: 14px 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.mini-panel p,
.detail-card p,
.highlight-card p {
  color: var(--muted);
  line-height: 1.7;
}

.highlight-strip {
  padding-top: 0;
}

.highlight-card {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 244, 255, 0.9));
}

.opportunity-section {
  padding: 86px 0 54px;
}

.opportunity-heading {
  margin-bottom: 34px;
}

.opportunity-heading > p:last-child {
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.7;
}

.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.scan-card,
.calculator-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.scan-card {
  background: rgba(255, 255, 255, 0.82);
}

.calculator-card {
  color: #eef5ff;
  background:
    radial-gradient(circle at 90% 2%, rgba(84, 199, 241, 0.3), transparent 28%),
    linear-gradient(145deg, #102d98, #1537c6 56%, #1b58d9);
}

.scan-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: rgba(84, 199, 241, 0.18);
}

.calculator-card .step-number {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.card-kicker {
  margin: 0 0 2px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-card .card-kicker {
  color: #a9e8ff;
}

.scan-card-heading h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.website-scan-form > label,
.calculator-label-row label,
.position-picker legend {
  display: block;
  margin-bottom: 9px;
  font-size: 0.92rem;
  font-weight: 800;
}

.website-scan-form > label span {
  color: #718096;
  font-weight: 500;
}

.url-field {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(21, 55, 198, 0.18);
  border-radius: 14px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.url-field:focus-within,
.text-field:focus {
  outline: 0;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(28, 97, 231, 0.12);
}

.url-field span {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 800;
}

.url-field input,
.text-field {
  width: 100%;
  min-height: 50px;
  border: 0;
  outline: 0;
  color: var(--text);
  font: inherit;
}

.text-field {
  display: block;
  padding: 0 15px;
  border: 1px solid rgba(21, 55, 198, 0.18);
  border-radius: 14px;
  background: #fff;
}

.field-help {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.website-scan-form .button {
  min-height: 50px;
}

.website-scan-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-feedback {
  min-height: 1.4em;
  margin: 11px 2px 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.scan-data-notice {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: #eff9ff;
}

.notice-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  background: #1a9dce;
}

.scan-data-notice p {
  margin: 0;
  color: #31536a;
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-report {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(21, 55, 198, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #f5faff, #eef8ff);
}

.site-report-topline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.report-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #147f57;
  font-size: 0.75rem;
  font-weight: 800;
}

.report-status i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22ba7c;
  box-shadow: 0 0 0 4px rgba(34, 186, 124, 0.13);
}

.report-domain {
  overflow: hidden;
  max-width: 48%;
  color: #476075;
  font-size: 0.75rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-report h4 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
}

.report-checklist {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.report-checklist li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(21, 55, 198, 0.1);
  color: var(--muted);
  font-size: 0.75rem;
}

.report-checklist strong {
  max-width: 60%;
  color: var(--text);
  text-align: right;
}

.site-report > p {
  margin: 14px 0 0;
  color: #637589;
  font-size: 0.73rem;
  line-height: 1.5;
}

.live-analysis {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 55, 198, 0.14);
}

.live-analysis-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.live-analysis-heading .card-kicker {
  margin-bottom: 3px;
  font-size: 0.64rem;
}

.live-analysis-heading h4 {
  margin: 0;
  font-size: 1.05rem;
}

.scope-pill {
  max-width: 45%;
  padding: 6px 8px;
  border-radius: 8px;
  color: #3a607d;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  background: #e2f4ff;
}

.ranking-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}

.ranking-summary > div {
  padding: 11px;
  border-radius: 12px;
  background: #fff;
}

.ranking-summary span,
.live-potential-grid span,
.live-potential-grid small {
  display: block;
  color: #61758a;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.35;
}

.ranking-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.keyword-report {
  overflow-x: auto;
  border: 1px solid rgba(21, 55, 198, 0.13);
  border-radius: 12px;
  background: #fff;
}

.keyword-report-head,
.keyword-report-row {
  display: grid;
  grid-template-columns: minmax(180px, 2fr) repeat(5, minmax(72px, 0.72fr));
  gap: 6px;
  align-items: center;
  min-width: 720px;
}

.keyword-report-head {
  padding: 8px 10px;
  color: #728498;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: #f2f8ff;
}

.keyword-report-row {
  padding: 10px;
  border-top: 1px solid rgba(21, 55, 198, 0.09);
  color: #4c6174;
  font-size: 0.69rem;
  line-height: 1.35;
}

.keyword-report-row span:first-child {
  overflow: hidden;
  color: var(--text);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.keyword-report-row span:last-child {
  color: #147f57;
  font-weight: 800;
}

.keyword-report-row .is-winning {
  color: #147f57;
  font-weight: 800;
}

.keyword-empty-state {
  padding: 14px;
  margin: 0;
  color: #637589;
  font-size: 0.73rem;
  line-height: 1.5;
}

.customer-value-control {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}

.customer-value-control label {
  max-width: 55%;
  color: #4d6276;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
}

.customer-value-control > div {
  display: flex;
  align-items: center;
  border: 1px solid rgba(21, 55, 198, 0.16);
  border-radius: 9px;
  color: #61758a;
  font-size: 0.68rem;
  overflow: hidden;
}

.customer-value-control > div span {
  padding: 8px;
  font-weight: 800;
  background: #f3f8ff;
}

.customer-value-control input {
  width: 68px;
  min-height: 34px;
  padding: 4px 7px;
  border: 0;
  outline: 0;
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.live-potential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 14px 0 12px;
}

.live-potential-grid article {
  padding: 10px;
  border-radius: 11px;
  background: linear-gradient(145deg, #1537c6, #2768d9);
}

.live-potential-grid span,
.live-potential-grid small {
  color: rgba(255, 255, 255, 0.73);
}

.live-potential-grid strong {
  display: block;
  margin: 4px 0 2px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.live-disclaimer {
  margin: 0;
  color: #6c8195;
  font-size: 0.66rem;
  line-height: 1.45;
}

.calculator-intro {
  margin: -8px 0 24px;
  color: rgba(238, 245, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.55;
}

.calculator-input {
  margin: 20px 0;
}

.calculator-label-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.calculator-label-row label {
  max-width: 70%;
  color: #fff;
  line-height: 1.35;
}

.calculator-label-row output {
  padding: 5px 8px;
  border-radius: 8px;
  color: #102d98;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  background: #fff;
  white-space: nowrap;
}

.range-control {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 11px;
  align-items: center;
}

.range-button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}

.range-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.range-control input[type="range"] {
  width: 100%;
  accent-color: #8de6ff;
  cursor: pointer;
}

.range-limits {
  display: flex;
  justify-content: space-between;
  margin: 5px 48px 0;
  color: rgba(238, 245, 255, 0.57);
  font-size: 0.7rem;
}

.position-picker {
  padding: 20px 0 22px;
  margin: 8px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.position-picker legend {
  padding: 0;
  color: #fff;
}

.position-buttons {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
}

.position-buttons button {
  min-height: 36px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}

.position-buttons button:hover,
.position-buttons button.is-selected {
  color: #1537c6;
  border-color: #fff;
  background: #fff;
}

.revenue-result {
  padding: 22px;
  border-radius: 18px;
  color: var(--text);
  background: #fff;
}

.revenue-result > p {
  margin: 0 0 5px;
  color: #496176;
  font-size: 0.8rem;
  font-weight: 800;
}

.revenue-result > strong {
  display: block;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.revenue-result > strong span {
  color: #5a6d80;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 16px 0 14px;
}

.result-details span {
  padding: 10px;
  border-radius: 10px;
  color: #5a6d80;
  font-size: 0.7rem;
  line-height: 1.35;
  background: #f3f8ff;
}

.result-details b {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.86rem;
}

.revenue-result small {
  display: block;
  color: #718396;
  font-size: 0.68rem;
  line-height: 1.45;
}

.content-section {
  padding: 34px 0 52px;
}

.detail-grid,
.tag-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.detail-card {
  padding: 28px;
}

.tag-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tag-grid span {
  padding: 18px 16px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(21, 55, 198, 0.08);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing-card-featured {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 255, 0.96));
}

.comparison-table {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

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

.table-row span {
  line-height: 1.6;
}

.table-head {
  font-weight: 800;
  background: rgba(84, 199, 241, 0.12);
}

.table-row-4 {
  grid-template-columns: 180px repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card,
.stat-card,
.process-grid article,
.pricing-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
}

.feature-card h3,
.process-grid h3,
.pricing-card h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.feature-card p,
.process-grid p,
.pricing-card li,
.stat-card span {
  color: var(--muted);
  line-height: 1.7;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.integration-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 244, 255, 0.9));
  box-shadow: var(--shadow);
}

.integration-copy p {
  max-width: 58ch;
  margin-top: 0;
  color: var(--muted);
  line-height: 1.7;
}

.integration-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.integration-list li {
  padding: 14px 16px;
  border: 1px solid rgba(21, 55, 198, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.integration-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(84, 199, 241, 0.3), transparent 42%),
    linear-gradient(135deg, rgba(21, 55, 198, 0.96), rgba(28, 97, 231, 0.9));
  overflow: hidden;
}

.integration-orbit::before,
.integration-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.integration-orbit::before {
  width: 220px;
  height: 220px;
}

.integration-orbit::after {
  width: 300px;
  height: 300px;
}

.integration-orbit span {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.integration-orbit span:nth-child(1) {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.integration-orbit span:nth-child(2) {
  top: 96px;
  right: 28px;
}

.integration-orbit span:nth-child(3) {
  bottom: 66px;
  right: 58px;
}

.integration-orbit span:nth-child(4) {
  bottom: 40px;
  left: 54px;
}

.integration-orbit span:nth-child(5) {
  top: 112px;
  left: 26px;
}

.pricing-section {
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 18px;
}

.price-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
}

.pricing-card ul {
  padding-left: 20px;
  margin: 0 0 24px;
}

.contact-card {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(84, 199, 241, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.72);
}

.contact-card .button {
  margin-top: 10px;
}

[data-counter] {
  opacity: 0.2;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease;
}

[data-counter].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header,
  .site-nav,
  .hero,
  .page-hero,
  .feature-grid,
  .integration-panel,
  .detail-grid,
  .stats-grid,
  .process-grid,
  .pricing-section,
  .pricing-grid,
  .logo-grid,
  .score-grid,
  .tag-grid,
  .opportunity-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .table-row,
  .table-row-4 {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .hero-proof {
    gap: 10px;
    font-size: 0.95rem;
  }

  .dashboard-card,
  .feature-card,
  .stat-card,
  .process-grid article,
  .pricing-card,
  .contact-card {
    padding: 22px;
  }

  .bar-row {
    grid-template-columns: 72px 1fr max-content;
  }

  .opportunity-section {
    padding-top: 62px;
  }

  .scan-card,
  .calculator-card {
    padding: 22px;
    border-radius: var(--radius-lg);
  }

  .position-buttons {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Standalone Google-positieanalyse */
.analyzer-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 4%, rgba(118, 222, 184, 0.32), transparent 24rem),
    radial-gradient(circle at 90% 12%, rgba(77, 124, 255, 0.2), transparent 27rem),
    #f6f8fc;
}

.seo-tool {
  width: min(calc(100% - 40px), 1060px);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.tool-hero {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.tool-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  color: #101a35;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.tool-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(21, 55, 198, 0.18);
}

.tool-eyebrow {
  margin: 0 0 12px;
  color: #167854;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-hero h1 {
  max-width: 720px;
  margin: 0 auto;
  color: #101a35;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 6vw, 4.3rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.tool-hero h1 em {
  color: #1967d9;
  font-style: normal;
}

.tool-intro {
  max-width: 630px;
  margin: 20px auto 0;
  color: #5e6a7e;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.7;
}

.analysis-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(265px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.analysis-start-card,
.analysis-explainer {
  border: 1px solid rgba(25, 60, 120, 0.1);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(29, 58, 112, 0.1);
}

.analysis-start-card {
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
}

.start-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.start-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #1f62d0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: #e9f2ff;
}

.start-card-header .card-kicker,
.analysis-explainer .card-kicker {
  margin: 0 0 4px;
  color: #718096;
}

.start-card-header h2 {
  margin: 0;
  color: #111c36;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  letter-spacing: -0.04em;
}

.analysis-start-card .website-scan-form {
  gap: 0;
  padding: 0;
  background: none;
}

.analysis-start-card .website-scan-form label {
  margin-bottom: 8px;
  color: #24324d;
  font-size: 0.8rem;
}

.analysis-start-card .url-field {
  min-height: 58px;
  border-radius: 14px;
  background: #fff;
}

.analysis-start-card .url-field:focus-within {
  border-color: #2d72df;
  box-shadow: 0 0 0 4px rgba(45, 114, 223, 0.13);
}

.analysis-start-card .url-field span {
  color: #2d72df;
  font-size: 1.1rem;
}

.analysis-start-card .url-field input {
  color: #13213d;
  font-size: 1rem;
}

.analysis-start-card .field-help {
  margin: 9px 0 20px;
  color: #718096;
  font-size: 0.75rem;
}

.analysis-start-card .button-block {
  min-height: 54px;
  border-radius: 14px;
  font-size: 0.93rem;
  box-shadow: 0 12px 20px rgba(21, 55, 198, 0.2);
}

.analysis-start-card .form-feedback {
  min-height: 20px;
  margin: 12px 0 0;
  color: #3e5c7a;
  font-size: 0.77rem;
  line-height: 1.45;
}

.analysis-start-card .scan-data-notice {
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid #d7f0e5;
  border-radius: 14px;
  background: #f2fbf7;
}

.analysis-start-card .scan-data-notice p {
  color: #416755;
}

.analysis-explainer {
  padding: 30px 25px;
  color: #fff;
  background: linear-gradient(155deg, #111f46, #173c8b);
}

.analysis-explainer .card-kicker {
  color: #a9c7ff;
}

.analysis-explainer ul {
  display: grid;
  gap: 21px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.analysis-explainer li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
}

.analysis-explainer li > span {
  color: #7dcbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.analysis-explainer strong,
.analysis-explainer small {
  display: block;
}

.analysis-explainer strong {
  font-size: 0.87rem;
}

.analysis-explainer small {
  margin-top: 4px;
  color: #b9c8e9;
  font-size: 0.73rem;
  line-height: 1.5;
}

.analyzer-page .site-report {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(25, 60, 120, 0.11);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(29, 58, 112, 0.1);
}

.analyzer-page .site-report-topline {
  padding-bottom: 19px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e7edf7;
}

.analyzer-page .report-status {
  color: #137451;
}

.analyzer-page .report-title-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.analyzer-page .report-title-row .card-kicker,
.potential-heading .card-kicker {
  margin: 0 0 5px;
  color: #64748b;
}

.analyzer-page .report-title-row h2 {
  max-width: 590px;
  margin: 0;
  color: #111c36;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 3.7vw, 2.35rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.analyzer-page .scope-pill {
  flex: 0 0 auto;
  max-width: none;
  padding: 8px 10px;
  border-radius: 9px;
  color: #386082;
  font-size: 0.69rem;
  text-align: left;
}

.website-snapshot {
  margin-top: 25px;
  padding: 16px;
  border: 1px solid #e5edf7;
  border-radius: 16px;
  background: #f8fbff;
}

.snapshot-label {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 9px;
  color: #2e587c;
  font-size: 0.72rem;
  font-weight: 800;
}

.snapshot-label span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.6rem;
  background: #28a877;
}

.analyzer-page .report-checklist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.analyzer-page .report-checklist li {
  display: grid;
  gap: 4px;
  padding: 8px 14px 8px 0;
  border-top: 0;
  border-right: 1px solid #e2eaf5;
}

.analyzer-page .report-checklist li + li {
  padding-left: 14px;
}

.analyzer-page .report-checklist li:last-child {
  border-right: 0;
}

.analyzer-page .report-checklist strong {
  max-width: none;
  overflow: hidden;
  color: #263d56;
  font-size: 0.73rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analyzer-page .site-report > p,
.website-snapshot > p {
  margin: 10px 0 0;
  color: #718096;
  font-size: 0.7rem;
}

.analyzer-page .live-analysis {
  margin-top: 29px;
  padding-top: 0;
  border-top: 0;
}

.analyzer-page .live-analysis-heading {
  align-items: flex-end;
}

.analyzer-page .live-analysis-heading h3,
.potential-heading h3 {
  margin: 0;
  color: #13213d;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.38rem);
  letter-spacing: -0.04em;
}

.updated-at {
  max-width: 225px;
  color: #7b8aa1;
  font-size: 0.67rem;
  line-height: 1.45;
  text-align: right;
}

.analyzer-page .ranking-summary {
  gap: 14px;
  margin: 18px 0;
}

.analyzer-page .ranking-summary > div {
  padding: 18px;
  border: 1px solid #e5edf7;
  border-radius: 15px;
  background: linear-gradient(140deg, #fbfdff, #f1f7ff);
}

.analyzer-page .ranking-summary span {
  color: #62748c;
  font-size: 0.7rem;
}

.analyzer-page .ranking-summary strong {
  margin-top: 7px;
  color: #1967d9;
  font-size: 1.7rem;
}

.analyzer-page .ranking-summary small {
  display: block;
  margin-top: 3px;
  color: #7a899e;
  font-size: 0.66rem;
}

.analyzer-page .customer-value-control {
  margin: 18px 0;
  padding: 15px 17px;
  border: 1px solid #e5edf7;
  border-radius: 15px;
  background: #fff;
}

.value-copy label,
.value-copy small {
  display: block;
}

.analyzer-page .customer-value-control label {
  max-width: none;
  color: #263d56;
  font-size: 0.78rem;
}

.value-copy small {
  margin-top: 3px;
  color: #7a899e;
  font-size: 0.67rem;
}

.analyzer-page .keyword-report {
  border-color: #dfe9f5;
  border-radius: 15px;
}

.analyzer-page .keyword-report-head {
  padding: 11px 14px;
  color: #63758d;
  background: #f5f8fc;
}

.analyzer-page .keyword-report-row {
  padding: 13px 14px;
  font-size: 0.73rem;
}

.analyzer-page .keyword-report-row span:nth-child(n + 4) {
  color: #147f57;
  font-weight: 800;
}

.potential-heading {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin: 30px 0 12px;
}

.potential-heading > span {
  color: #7b8aa1;
  font-size: 0.68rem;
}

.analyzer-page .live-potential-grid {
  gap: 12px;
  margin: 0 0 13px;
}

.analyzer-page .live-potential-grid article {
  padding: 17px;
  border-radius: 15px;
  background: linear-gradient(145deg, #142a61, #1d57bd);
}

.analyzer-page .live-potential-grid article:first-child {
  background: linear-gradient(145deg, #117453, #1ba16f);
}

.analyzer-page .live-potential-grid strong {
  margin: 7px 0 3px;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
}

.analyzer-page .live-disclaimer {
  color: #7a899e;
  font-size: 0.68rem;
}

.tool-footer {
  margin: 30px 0 0;
  color: #8390a3;
  font-size: 0.7rem;
  text-align: center;
}

@media (max-width: 760px) {
  .seo-tool {
    width: min(calc(100% - 24px), 1060px);
    padding-top: 24px;
  }

  .tool-brand {
    margin-bottom: 25px;
  }

  .analysis-workspace {
    grid-template-columns: 1fr;
  }

  .analysis-explainer {
    padding: 24px;
  }

  .analysis-explainer ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .analysis-explainer li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .analyzer-page .report-title-row,
  .analyzer-page .live-analysis-heading,
  .potential-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .updated-at {
    max-width: none;
    text-align: left;
  }

  .analyzer-page .report-checklist {
    grid-template-columns: 1fr;
  }

  .analyzer-page .report-checklist li,
  .analyzer-page .report-checklist li + li {
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid #e2eaf5;
  }

  .analyzer-page .report-checklist li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .tool-hero h1 {
    font-size: 2.4rem;
  }

  .analysis-explainer ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .analysis-explainer li {
    grid-template-columns: 30px 1fr;
  }

  .analyzer-page .customer-value-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .analyzer-page .live-potential-grid {
    grid-template-columns: 1fr;
  }
}

/* Strakke blauw-witte dashboardstijl voor de analyse */
.analyzer-page {
  background: #f7f9fc;
}

.seo-tool {
  width: min(calc(100% - 32px), 1050px);
  padding-top: 0;
}

.tool-hero {
  position: relative;
  max-width: none;
  padding: 48px 24px 38px;
  margin-bottom: 18px;
}

.tool-hero::before {
  position: absolute;
  top: 0;
  right: calc((100vw - min(100vw - 32px, 1050px)) / -2);
  left: calc((100vw - min(100vw - 32px, 1050px)) / -2);
  height: 9px;
  content: "";
  background: #2455dc;
}

.tool-brand {
  margin-bottom: 25px;
  color: #17306f;
  font-size: 0.92rem;
}

.tool-brand .brand-mark {
  border-radius: 8px;
  background: #2455dc;
  box-shadow: none;
}

.tool-eyebrow {
  color: #2455dc;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.tool-hero h1 {
  max-width: 780px;
  color: #122043;
  font-size: clamp(2.25rem, 5vw, 3.85rem);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.tool-hero h1 em {
  color: #2455dc;
}

.tool-intro {
  max-width: 610px;
  color: #62718a;
  font-size: 1rem;
  line-height: 1.65;
}

.analysis-workspace {
  gap: 14px;
}

.analysis-start-card,
.analysis-explainer,
.analyzer-page .site-report {
  border: 1px solid #dfe6f1;
  border-radius: 11px;
  box-shadow: 0 5px 18px rgba(26, 58, 110, 0.06);
}

.analysis-start-card {
  padding: 28px;
}

.start-card-header {
  gap: 12px;
  margin-bottom: 22px;
}

.start-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #2455dc;
  font-size: 1.5rem;
  background: #ebf0ff;
}

.start-card-header h2 {
  color: #1a2950;
  font-size: 1.35rem;
}

.start-card-header .card-kicker,
.analysis-explainer .card-kicker {
  color: #74829a;
}

.analysis-start-card .url-field {
  min-height: 52px;
  border: 1px solid #cdd8e9;
  border-radius: 7px;
}

.analysis-start-card .url-field:focus-within {
  border-color: #2455dc;
  box-shadow: 0 0 0 3px rgba(36, 85, 220, 0.12);
}

.analysis-start-card .button-block {
  min-height: 50px;
  border-radius: 7px;
  background: #2455dc;
  box-shadow: none;
}

.analysis-start-card .button-block:hover {
  background: #1d48c4;
  transform: none;
}

.analysis-start-card .scan-data-notice {
  border: 1px solid #dce6fa;
  border-radius: 7px;
  background: #f5f8ff;
}

.analysis-start-card .scan-data-notice p {
  color: #52647e;
}

.notice-icon {
  background: #2455dc;
}

.analysis-explainer {
  color: #1d315c;
  background: #eef3ff;
}

.analysis-explainer .card-kicker {
  color: #2455dc;
}

.analysis-explainer ul {
  gap: 17px;
  margin-top: 23px;
}

.analysis-explainer li {
  padding-bottom: 16px;
  border-bottom: 1px solid #d9e3f7;
}

.analysis-explainer li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.analysis-explainer li > span {
  color: #2455dc;
}

.analysis-explainer strong {
  color: #1c3261;
}

.analysis-explainer small {
  color: #64748b;
}

.analyzer-page .site-report {
  margin-top: 14px;
  padding: 30px;
}

.analyzer-page .site-report-topline {
  padding-bottom: 15px;
  margin-bottom: 19px;
}

.analyzer-page .report-status {
  color: #2455dc;
}

.report-status i {
  background: #2455dc;
  box-shadow: 0 0 0 4px rgba(36, 85, 220, 0.12);
}

.analyzer-page .report-title-row h2 {
  color: #16264b;
  font-size: 2rem;
}

.analyzer-page .scope-pill {
  border: 1px solid #d9e4fa;
  border-radius: 7px;
  color: #3d5e9e;
  background: #f1f5ff;
}

.website-snapshot {
  padding: 14px;
  border: 1px solid #e0e7f2;
  border-radius: 8px;
  background: #fafcff;
}

.snapshot-label {
  color: #31517e;
}

.snapshot-label span {
  border-radius: 5px;
  background: #2455dc;
}

.analyzer-page .ranking-summary > div {
  border-color: #dfe7f3;
  border-radius: 8px;
  background: #f7f9fd;
}

.analyzer-page .ranking-summary strong {
  color: #2455dc;
}

.analyzer-page .customer-value-control {
  border-color: #dfe7f3;
  border-radius: 8px;
}

.analyzer-page .customer-value-control > div {
  border-color: #cbd8ed;
  border-radius: 6px;
}

.analyzer-page .customer-value-control > div span {
  color: #355181;
  background: #eff4ff;
}

.analyzer-page .keyword-report {
  border-color: #dfe7f3;
  border-radius: 8px;
}

.analyzer-page .keyword-report-head {
  color: #5b6d86;
  background: #f3f6fb;
}

.analyzer-page .keyword-report-row {
  border-top-color: #e7edf5;
}

.analyzer-page .keyword-report-row span:nth-child(n + 4) {
  color: #2455dc;
}

.analyzer-page .live-potential-grid article,
.analyzer-page .live-potential-grid article:first-child {
  border-radius: 8px;
  background: #2455dc;
}

.analyzer-page .live-potential-grid article:nth-child(2) {
  background: #315fdb;
}

.analyzer-page .live-potential-grid article:nth-child(3) {
  background: #3c6ee6;
}

.tool-footer {
  color: #7a889e;
}

@media (max-width: 760px) {
  .seo-tool {
    width: min(calc(100% - 20px), 1050px);
  }

  .tool-hero {
    padding: 37px 12px 30px;
  }

  .tool-hero::before {
    right: -10px;
    left: -10px;
  }

  .analysis-start-card,
  .analyzer-page .site-report {
    padding: 21px;
  }
}

/* Analyse-flow: grote invoerkaart, voortgang en groeirapport */
.result-funnel [hidden] {
  display: none !important;
}

.result-funnel {
  background:
    radial-gradient(circle at 50% 15%, rgba(71, 145, 255, 0.11), transparent 33rem),
    #f8fbff;
}

.result-funnel .seo-tool {
  width: min(calc(100% - 48px), 1370px);
  padding: 20px 0 46px;
}

.result-funnel .tool-hero {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding: 21px 46px 28px;
  margin: 0;
  border: 1px solid #e4edf9;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 20%, rgba(84, 167, 255, 0.12), transparent 16rem),
    radial-gradient(circle at 88% 75%, rgba(84, 167, 255, 0.1), transparent 20rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(53, 104, 180, 0.09);
}

.result-funnel .tool-hero::before {
  display: none;
}

.analysis-pill {
  display: inline-flex;
  padding: 9px 22px;
  margin: 0 0 18px;
  border-radius: 999px;
  color: #1c63e7;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e7f2ff, #eef5ff);
}

.quick-note {
  position: absolute;
  top: 58px;
  right: 64px;
  margin: 0;
  color: #1968ef;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-5deg);
}

.quick-note::after {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 48px;
  height: 34px;
  border-right: 3px solid #1968ef;
  border-bottom: 3px solid #1968ef;
  border-radius: 0 0 32px 0;
  content: "";
  transform: rotate(18deg);
}

.result-funnel .tool-hero h1 {
  max-width: 850px;
  color: #0d1b55;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.result-funnel .tool-hero h1 em {
  color: #0d1b55;
  font-style: normal;
}

.result-funnel .tool-intro {
  max-width: 800px;
  margin-top: 9px;
  color: #52628b;
  font-size: clamp(0.98rem, 1.7vw, 1.15rem);
  line-height: 1.5;
}

.result-funnel .website-scan-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  max-width: 940px;
  padding: 0;
  margin: 34px auto 0;
  border: 1px solid #bed6fb;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(43, 105, 212, 0.08);
}

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

.result-funnel .url-field {
  min-height: 62px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: transparent;
}

.result-funnel .url-field:focus-within {
  box-shadow: none;
}

.result-funnel .url-field span {
  padding-left: 20px;
  color: #1769ec;
  font-size: 1.7rem;
}

.result-funnel .url-field input {
  min-width: 0;
  color: #172451;
  font-size: 1rem;
}

.result-funnel .website-scan-form .button {
  min-width: 252px;
  min-height: 58px;
  margin: 2px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #1671fa, #2356dd);
  box-shadow: 0 10px 18px rgba(24, 102, 237, 0.24);
}

.result-funnel .website-scan-form .button:hover {
  background: linear-gradient(135deg, #0d63e6, #1948c5);
  transform: translateY(-1px);
}

.result-funnel .form-feedback {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 10px 12px -1px;
  color: #3c5f96;
  font-size: 0.76rem;
}

.analysis-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: #233967;
  font-size: 0.79rem;
  font-weight: 700;
}

.analysis-assurances li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.analysis-assurances li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  content: "✓";
  font-size: 0.65rem;
  background: #18ad67;
}

.flow-arrow {
  height: 26px;
  margin: 8px 0;
  color: #1769ec;
  font-family: Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 300;
  line-height: 0.55;
  text-align: center;
}

.analysis-progress {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(230px, 1.1fr) minmax(230px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 25px 34px;
  border: 1px solid #e4edf9;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 15px 35px rgba(53, 104, 180, 0.08);
}

.progress-intro {
  display: flex;
  gap: 18px;
  align-items: center;
}

.progress-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #1269f1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, #e9f5ff, #dcecff);
}

.progress-intro h2 {
  margin: 0;
  color: #101d56;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  letter-spacing: -0.04em;
}

.progress-intro p {
  margin: 5px 0 0;
  color: #607099;
  font-size: 0.82rem;
}

.progress-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  align-items: center;
}

.progress-track {
  height: 19px;
  overflow: hidden;
  border: 1px solid #d5e4fa;
  border-radius: 999px;
  background: #edf5ff;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1780ff, #2456e6);
  box-shadow: 0 0 12px rgba(30, 112, 251, 0.38);
  transition: width 420ms ease;
}

.progress-meter strong {
  color: #173b87;
  font-size: 1rem;
}

.progress-steps {
  display: grid;
  gap: 10px;
  padding: 0 0 0 23px;
  margin: 0;
  border-left: 1px solid #d9e5f5;
  list-style: none;
}

.progress-steps li {
  position: relative;
  color: #536383;
  font-size: 0.72rem;
  font-weight: 600;
}

.progress-steps li::before {
  position: absolute;
  top: 2px;
  left: -17px;
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  content: "✓";
  font-size: 0.55rem;
  background: #d4e1f3;
}

.progress-steps li.is-active {
  color: #173b87;
}

.progress-steps li.is-active::before {
  color: #1769ec;
  background: #fff;
  box-shadow: 0 0 0 2px #1769ec;
}

.progress-steps li.is-complete::before {
  color: #fff;
  background: #18ad67;
}

.result-funnel .site-report {
  padding: 30px 34px 28px;
  margin-top: 0;
  border: 1px solid #e3ecf7;
  border-radius: 27px;
  background:
    radial-gradient(circle at 4% 3%, rgba(121, 191, 255, 0.14), transparent 23rem),
    linear-gradient(135deg, #f9fcff, #f1f8ff);
  box-shadow: 0 17px 42px rgba(53, 104, 180, 0.1);
}

.result-funnel .site-report-topline {
  padding-bottom: 0;
  margin-bottom: 20px;
  border-bottom: 0;
}

.result-funnel .report-status {
  padding: 8px 13px;
  border-radius: 999px;
  color: #148d54;
  background: #e1f9ea;
}

.result-funnel .report-status i {
  background: #18ad67;
  box-shadow: none;
}

.result-funnel .scope-pill {
  border-color: #dae7fa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.result-heading {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.result-heading h2 {
  margin: 0;
  color: #0f1d55;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.result-heading p {
  margin: 7px 0 0;
  color: #5b6a91;
  font-size: 0.87rem;
}

.domain-card {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 250px;
  padding: 14px 16px;
  border: 1px solid #e0e9f6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 18px rgba(51, 98, 166, 0.06);
}

.website-preview {
  display: grid;
  width: 112px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #dce8f8;
  border-radius: 8px;
  background: #edf5ff;
}

.website-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.website-preview span {
  color: #1769ec;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
}

.domain-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  color: #1769ec;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  background: #eaf3ff;
}

.domain-card strong,
.domain-card small {
  display: block;
}

.domain-card strong {
  overflow: hidden;
  max-width: 175px;
  color: #142558;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.domain-card small {
  margin-top: 4px;
  color: #70809e;
  font-size: 0.68rem;
}

.result-funnel .live-analysis {
  margin-top: 0;
}

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

.result-metrics article {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px 15px;
  border: 1px solid rgba(227, 236, 247, 0.95);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 16px rgba(45, 86, 145, 0.04);
}

.metric-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #1468ee;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: #e9f3ff;
}

.metric-icon.euro {
  color: #14a666;
  background: #e5faee;
}

.metric-icon.chart {
  color: #7a38e8;
  background: #f0e8ff;
}

.metric-icon.target {
  color: #f39c11;
  background: #fff4dc;
}

.result-metrics span:not(.metric-icon),
.result-metrics small {
  display: block;
}

.result-metrics span:not(.metric-icon) {
  color: #263963;
  font-size: 0.68rem;
  font-weight: 800;
}

.result-metrics strong {
  display: block;
  margin: 5px 0 4px;
  color: #1266ea;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.82rem);
  letter-spacing: -0.05em;
}

.result-metrics article:nth-child(2) strong {
  color: #14a666;
}

.result-metrics article:nth-child(3) strong {
  color: #7a38e8;
}

.result-metrics article:nth-child(4) strong {
  color: #f39c11;
}

.result-metrics small {
  color: #71809d;
  font-size: 0.63rem;
  line-height: 1.35;
}

.growth-outlook {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.25fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  margin-top: 16px;
  border: 1px solid #cfe2ff;
  border-radius: 17px;
  background:
    radial-gradient(circle at 8% 0%, rgba(115, 184, 255, 0.2), transparent 13rem),
    linear-gradient(120deg, #eaf5ff, #f9fcff);
}

.growth-main .card-kicker {
  margin: 0 0 5px;
  color: #1769ec;
}

.growth-main h3 {
  margin: 0;
  color: #1b315f;
  font-size: 0.83rem;
}

.growth-main > strong {
  display: block;
  margin: 3px 0;
  color: #0d55d7;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3.3vw, 2.45rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.growth-main > strong em {
  color: #18336a;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.growth-main > p {
  margin: 0;
  color: #5a6d90;
  font-size: 0.7rem;
  line-height: 1.45;
}

.current-visibility {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  margin-top: 13px;
  color: #60718f;
  font-size: 0.65rem;
}

.current-visibility strong {
  color: #213968;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.93rem;
}

.growth-targets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.growth-targets article {
  padding: 15px 12px;
  border: 1px solid #d5e4f7;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
}

.growth-targets span,
.growth-targets small {
  display: block;
  color: #647694;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.35;
}

.growth-targets strong {
  display: block;
  margin: 6px 0 3px;
  color: #1e63dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: -0.04em;
}

.growth-targets .target-one {
  border-color: #1d70f4;
  background: linear-gradient(145deg, #1673fa, #2456dd);
  box-shadow: 0 9px 18px rgba(28, 101, 232, 0.2);
}

.growth-targets .target-one span,
.growth-targets .target-one small,
.growth-targets .target-one strong {
  color: #fff;
}

.revenue-range {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(400px, 1.25fr);
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  margin-top: 16px;
  border: 1px solid #e0e7f4;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.74);
}

.revenue-range-heading .card-kicker {
  margin: 0 0 5px;
  color: #536d9e;
}

.revenue-range-heading h3 {
  margin: 0;
  color: #17295b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.revenue-range-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.revenue-range-options article {
  padding: 12px;
  border: 1px solid #dce7f5;
  border-radius: 10px;
  background: #fbfdff;
}

.revenue-range-options article.range-likely {
  border-color: #9fc6ff;
  background: #eaf4ff;
}

.revenue-range-options span,
.revenue-range-options small {
  display: block;
  color: #637694;
  font-size: 0.62rem;
  font-weight: 700;
}

.revenue-range-options strong {
  display: block;
  margin: 5px 0 3px;
  color: #215fcf;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  letter-spacing: -0.04em;
}

.revenue-range-options .range-likely strong {
  color: #0b69ed;
}

.report-section-heading {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin: 28px 0 12px;
}

.report-section-heading .card-kicker {
  margin: 0 0 4px;
  color: #1769ec;
}

.report-section-heading h3 {
  margin: 0;
  color: #15265a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.result-funnel .updated-at {
  color: #7383a0;
  font-size: 0.65rem;
}

.result-funnel .customer-value-control {
  padding: 14px 16px;
  margin: 0 0 12px;
  border: 1px solid #dde8f6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.result-funnel .keyword-report {
  border-color: #dce8f5;
  border-radius: 12px;
}

.keyword-filter-note {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 7px 10px;
  border: 1px solid #d8e7fb;
  border-radius: 7px;
  color: #3d6098;
  font-size: 0.68rem;
  font-weight: 700;
  background: #f2f7ff;
}

.result-funnel .opportunity-analysis {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid #cfe1fb;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(236, 246, 255, 0.88), rgba(255, 255, 255, 0.94));
}

.result-funnel .opportunity-heading {
  align-items: flex-start;
  margin-bottom: 14px;
}

.result-funnel .opportunity-heading .card-kicker {
  color: #087e4d;
}

.result-funnel .opportunity-heading h3 {
  margin-bottom: 5px;
}

.result-funnel .opportunity-heading p:not(.card-kicker) {
  max-width: 620px;
  margin: 0;
  color: #526888;
  font-size: 0.78rem;
  line-height: 1.5;
}

.result-funnel .opportunity-report {
  background: rgba(255, 255, 255, 0.82);
}

.opportunity-note {
  margin: 10px 0 0;
  color: #637492;
  font-size: 0.68rem;
  line-height: 1.45;
}

.result-funnel .keyword-report-head {
  color: #5e7190;
  background: #f2f7fd;
}

.result-funnel .keyword-report-row {
  background: rgba(255, 255, 255, 0.86);
}

.result-funnel .keyword-report-row span:nth-child(n + 4) {
  color: #1769ec;
}

.result-funnel .potential-heading {
  margin-top: 26px;
}

.result-funnel .potential-heading .card-kicker {
  color: #1769ec;
}

.result-funnel .potential-heading h3 {
  color: #14265a;
}

.result-funnel .live-potential-grid {
  gap: 12px;
}

.result-funnel .live-potential-grid article,
.result-funnel .live-potential-grid article:first-child,
.result-funnel .live-potential-grid article:nth-child(2),
.result-funnel .live-potential-grid article:nth-child(3) {
  padding: 16px;
  border: 1px solid #dce7f5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
}

.result-funnel .live-potential-grid span,
.result-funnel .live-potential-grid small {
  color: #637491;
}

.result-funnel .live-potential-grid strong {
  color: #1769ec;
}

.result-funnel .live-potential-grid article:first-child strong {
  color: #14a666;
}

.result-funnel .website-snapshot {
  margin-top: 22px;
  padding: 0;
  border: 1px solid #dde8f6;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.68);
}

.result-funnel .website-snapshot summary {
  padding: 13px 15px;
  cursor: pointer;
  color: #425779;
  font-size: 0.74rem;
  font-weight: 800;
}

.result-funnel .website-snapshot[open] summary {
  border-bottom: 1px solid #e3ebf5;
}

.result-funnel .website-snapshot .report-checklist,
.result-funnel .website-snapshot > p {
  margin-right: 15px;
  margin-left: 15px;
}

.report-request {
  display: grid;
  grid-template-columns: 50px minmax(210px, 0.7fr) minmax(510px, 1.55fr);
  gap: 15px;
  align-items: center;
  padding: 18px;
  margin-top: 20px;
  border: 1px solid #d8e8fc;
  border-radius: 15px;
  background: linear-gradient(110deg, #eef7ff, #e8f3ff);
}

.report-request-primary {
  grid-template-columns: 50px minmax(220px, 0.7fr) minmax(500px, 1.55fr);
  padding: 20px;
  margin: 4px 0 20px;
  border-color: #bcd8ff;
  background:
    radial-gradient(circle at 94% 50%, rgba(67, 138, 255, 0.16), transparent 19rem),
    linear-gradient(115deg, #edf7ff, #e1efff);
  box-shadow: 0 9px 23px rgba(38, 96, 186, 0.09);
}

.report-request-primary .report-request-icon {
  color: #fff;
  background: linear-gradient(135deg, #1673fa, #2456dd);
}

.report-request-primary .report-request-copy h3 {
  font-size: 1.12rem;
}

.report-request-primary .report-request-copy p {
  font-size: 0.72rem;
}

.report-request-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #1668eb;
  font-size: 1.45rem;
  background: #fff;
  box-shadow: 0 6px 14px rgba(47, 104, 184, 0.08);
}

.report-request-copy h3 {
  margin: 0;
  color: #12275c;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.report-request-copy p {
  margin: 4px 0 0;
  color: #5d7092;
  font-size: 0.68rem;
  line-height: 1.4;
}

.report-request-form {
  display: grid;
  grid-template-columns: minmax(135px, 1fr) minmax(115px, 0.7fr) minmax(135px, 0.85fr) auto;
  gap: 7px;
  align-items: end;
}

.report-request-primary .report-request-form {
  grid-template-columns: 1fr;
  gap: 10px;
}

.report-email-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.report-email-row .button {
  min-height: 43px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 0.76rem;
  white-space: nowrap;
  background: linear-gradient(135deg, #1673fa, #2456dd);
  box-shadow: 0 8px 16px rgba(28, 101, 232, 0.22);
}

.estimate-inputs {
  display: grid;
  grid-template-columns: auto minmax(135px, 0.8fr) minmax(170px, 1fr);
  gap: 8px;
  align-items: end;
  padding-top: 10px;
  border-top: 1px solid rgba(163, 197, 240, 0.55);
}

.estimate-inputs > p {
  grid-column: auto;
  min-height: 0;
  margin: 0 4px 12px 0;
  color: #4b6590;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.35;
}

.report-field {
  display: grid;
  gap: 5px;
  color: #506581;
  font-size: 0.62rem;
  font-weight: 800;
}

.report-request-form input {
  min-width: 0;
  min-height: 43px;
  padding: 0 13px;
  border: 1px solid #c9dcf7;
  border-radius: 9px;
  outline: none;
  color: #193262;
  font: inherit;
  font-size: 0.78rem;
  background: #fff;
}

.field-with-prefix {
  display: flex;
  align-items: center;
  min-height: 43px;
  overflow: hidden;
  border: 1px solid #c9dcf7;
  border-radius: 9px;
  background: #fff;
}

.field-with-prefix:focus-within {
  border-color: #1769ec;
  box-shadow: 0 0 0 3px rgba(23, 105, 236, 0.12);
}

.field-with-prefix input {
  min-width: 0;
  min-height: 41px;
  padding: 0 7px;
  border: 0;
  box-shadow: none !important;
}

.field-with-prefix i {
  padding: 0 9px;
  color: #486693;
  font-size: 0.73rem;
  font-style: normal;
}

.report-request-form input:focus {
  border-color: #1769ec;
  box-shadow: 0 0 0 3px rgba(23, 105, 236, 0.12);
}

.report-request-form .button {
  min-height: 43px;
  padding: 0 15px;
  border-radius: 9px;
  font-size: 0.72rem;
  white-space: nowrap;
  background: linear-gradient(135deg, #1673fa, #2456dd);
}

.report-request-form p {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: #5a6f91;
  font-size: 0.63rem;
}

@media (max-width: 1100px) {
  .report-request-primary {
    grid-template-columns: 50px 1fr;
  }

  .report-request-primary .report-request-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .website-preview {
    width: 84px;
    height: 48px;
  }

  .report-request-primary {
    grid-template-columns: 1fr;
  }

  .report-email-row,
  .estimate-inputs {
    grid-template-columns: 1fr;
  }

  .estimate-inputs > p {
    margin: 0;
  }
}

@media (max-width: 1020px) {
  .result-funnel .seo-tool {
    width: min(calc(100% - 28px), 940px);
  }

  .quick-note {
    display: none;
  }

  .analysis-progress {
    grid-template-columns: 1fr 1fr;
  }

  .progress-steps {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px 0 0;
    border-top: 1px solid #d9e5f5;
    border-left: 0;
  }

  .progress-steps li::before {
    position: static;
    display: inline-grid;
    margin-right: 6px;
    vertical-align: -2px;
  }

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

  .growth-outlook {
    grid-template-columns: 1fr;
  }

  .revenue-range {
    grid-template-columns: 1fr;
  }

  .report-request {
    grid-template-columns: 50px 1fr;
  }

  .report-request-form {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .report-request-form .button,
  .report-request-form p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .result-funnel .seo-tool {
    width: min(calc(100% - 20px), 1370px);
    padding-top: 10px;
  }

  .result-funnel .tool-hero {
    padding: 28px 17px 22px;
    border-radius: 19px;
  }

  .result-funnel .tool-hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .result-funnel .website-scan-form {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .result-funnel .url-field {
    border-radius: 16px 16px 0 0;
  }

  .result-funnel .website-scan-form .button {
    width: calc(100% - 4px);
    min-width: 0;
    border-radius: 12px;
  }

  .analysis-assurances {
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.7rem;
  }

  .analysis-progress {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 23px 19px;
    border-radius: 18px;
  }

  .progress-steps {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .result-funnel .site-report {
    padding: 23px 17px;
    border-radius: 19px;
  }

  .result-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .domain-card {
    width: 100%;
  }

  .result-metrics {
    grid-template-columns: 1fr;
  }

  .growth-targets {
    grid-template-columns: 1fr;
  }

  .revenue-range-options {
    grid-template-columns: 1fr;
  }

  .report-request {
    grid-template-columns: 1fr;
  }

  .report-request-form {
    grid-template-columns: 1fr;
  }

  .report-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
