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

:root {
  --blue: #075edb;
  --blue-700: #0049b7;
  --blue-900: #062c67;
  --navy: #071936;
  --ink: #10243f;
  --muted: #53657a;
  --line: #dbe7f6;
  --soft: #f7faff;
  --soft-2: #eef5ff;
  --white: #ffffff;
  --green: #158466;
  --yellow: #ffb000;
  --shadow: 0 22px 60px rgba(5, 39, 95, 0.12);
  --shadow-soft: 0 14px 34px rgba(5, 39, 95, 0.08);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 230, 246, 0.76);
  box-shadow: 0 8px 26px rgba(7, 25, 54, 0.04);
}

.nav-wrap {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 244px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #243a57;
}

.primary-nav a {
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.mobile-toggle span::before {
  transform: translateY(-7px);
}

.mobile-toggle span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 13px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #0867ed 0%, #0756cf 100%);
  box-shadow: 0 14px 30px rgba(7, 88, 216, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-700);
}

.btn-secondary {
  color: var(--blue-700);
  background: var(--white);
  border-color: #b8d2f4;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  color: var(--blue-700);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 58px 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head.compact {
  margin-bottom: 26px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(7, 94, 219, 0.18);
  border-radius: 999px;
  background: #f2f7ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h3 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  font-size: 76px;
  line-height: 0.98;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 22px;
  font-weight: 800;
}

p {
  margin: 0;
}

.lead {
  font-size: 20px;
  color: #334963;
  line-height: 1.62;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f7faff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 88, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 88, 216, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 14%, #000 0, transparent 38%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 62px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 62px;
}

.hero-copy .lead {
  max-width: 640px;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  color: #445b75;
  font-size: 14px;
  font-weight: 700;
}

.avatar-stack {
  display: flex;
  isolation: isolate;
}

.avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -8px;
  box-shadow: 0 6px 14px rgba(6, 27, 58, 0.12);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #223853;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
}

.check {
  display: inline-flex;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 594px;
}

.paper-stack {
  position: absolute;
  inset: 4px 0 78px 14px;
  transform: rotate(-1.5deg);
}

.paper {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.paper-large {
  width: min(438px, 88%);
  min-height: 518px;
  right: 46px;
  top: 20px;
  padding: 34px;
  border-radius: 3px;
}

.paper-back {
  width: min(370px, 72%);
  height: 470px;
  right: 104px;
  top: 74px;
  background: #f8fbff;
  transform: rotate(5deg);
}

.paper-title {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
  text-align: center;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 12px;
  margin-bottom: 26px;
}

.paper h3 {
  font-size: 28px;
  line-height: 1.16;
  margin-bottom: 20px;
}

.paper-img {
  aspect-ratio: 16 / 10;
  background-image: url("assets/images/couple-laptop.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: 18px;
}

.paper-lines {
  display: grid;
  gap: 8px;
}

.paper-lines span {
  height: 8px;
  border-radius: 999px;
  background: #dbe6f5;
}

.phone {
  position: absolute;
  right: 2px;
  bottom: 18px;
  width: 226px;
  background: #111827;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 28px 58px rgba(6, 27, 58, 0.28);
  transform: rotate(2deg);
}

.phone-screen {
  overflow: hidden;
  border-radius: 21px;
  background: var(--white);
  min-height: 416px;
  padding: 22px 16px;
}

.phone-screen strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.15;
}

.phone-screen small {
  display: block;
  margin: 8px 0 15px;
  color: var(--muted);
}

.phone-img {
  aspect-ratio: 4 / 3;
  background-image: url("assets/images/magazine-und-journale.png");
  background-size: cover;
  background-position: center;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 166px;
  max-width: 238px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  padding: 15px 17px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(7, 88, 216, 0.28);
}

.signal-panel {
  position: absolute;
  right: 238px;
  bottom: 42px;
  width: 228px;
  padding: 16px;
  border: 1px solid rgba(7, 94, 219, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(6, 27, 58, 0.16);
}

.signal-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-panel strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.signal-meter {
  height: 7px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f0fc;
}

.signal-meter i {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.logo-row {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: center;
  gap: 22px;
  padding: 16px 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 6px 2px;
  opacity: 0.88;
}

.logo-mark img {
  display: block;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.blue-line {
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--blue);
}

.problem-grid,
.benefit-grid,
.article-grid,
.blog-grid,
.audience-grid,
.metrics-grid,
.visual-intro-grid {
  display: grid;
  gap: 22px;
}

.visual-intro {
  padding-top: 78px;
}

.visual-intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.visual-copy {
  max-width: 620px;
}

.visual-copy h2 {
  margin-bottom: 18px;
}

.visual-copy p + p {
  margin-top: 16px;
}

.visibility-graphic {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visibility-card {
  position: absolute;
  left: 34px;
  top: 42px;
  width: min(278px, 44%);
  border: 1px solid rgba(7, 94, 219, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(6, 27, 58, 0.18);
  overflow: hidden;
}

.visibility-card img {
  width: 100%;
  height: 344px;
  object-fit: cover;
  object-position: top;
}

.signal-node {
  position: absolute;
  min-width: 132px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(7, 94, 219, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(6, 27, 58, 0.09);
  z-index: 2;
}

.node-website {
  right: 62px;
  top: 54px;
}

.node-media {
  right: 120px;
  top: 184px;
  background: var(--blue);
  color: var(--white);
}

.node-google {
  right: 50px;
  bottom: 76px;
}

.node-ai {
  right: 238px;
  bottom: 48px;
}

.signal-line {
  position: absolute;
  height: 2px;
  background: rgba(7, 94, 219, 0.34);
  transform-origin: left center;
}

.line-one {
  left: 312px;
  top: 92px;
  width: 190px;
  transform: rotate(-5deg);
}

.line-two {
  left: 314px;
  top: 226px;
  width: 170px;
}

.line-three {
  left: 314px;
  bottom: 108px;
  width: 210px;
  transform: rotate(9deg);
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.article-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

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

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

.blog-grid.four .blog-card h3 {
  font-size: 19px;
  line-height: 1.18;
}

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

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

.card,
.price-card,
.blog-card,
.faq-panel,
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 28px;
}

.problem-grid .card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 26px 22px;
}

.problem-grid .card:last-child {
  border-right: 0;
}

.problem-grid .icon {
  grid-row: span 2;
  margin: 0;
}

.problem-grid .card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.problem-grid .card p {
  grid-column: 2;
  font-size: 13px;
  line-height: 1.55;
}

.benefit-grid .card {
  min-height: 100%;
  border-color: rgba(7, 94, 219, 0.13);
}

.icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-2);
  margin-bottom: 18px;
}

.icon svg {
  width: 25px;
  height: 25px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.blog-card p,
.testimonial-card p,
.price-card p {
  color: var(--muted);
}

.band {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content h2,
.content h3 {
  margin-top: 38px;
  margin-bottom: 16px;
}

.content h2:first-child,
.content h3:first-child {
  margin-top: 0;
}

.content p + p {
  margin-top: 18px;
}

.content ul,
.content ol {
  margin: 22px 0 0;
  padding-left: 22px;
}

.content li + li {
  margin-top: 10px;
}

.media-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.contain {
  padding: 20px;
}

.media-frame.contain img {
  object-fit: contain;
}

.sales-funnel-graphic {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(7, 94, 219, 0.12), transparent 31%),
    linear-gradient(rgba(7, 94, 219, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 94, 219, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  background-size: auto, 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
}

.sales-funnel-graphic::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 94, 219, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.funnel-v2-portals,
.funnel-v2-flow,
.funnel-v2-panel,
.funnel-v2-result {
  position: relative;
  z-index: 1;
}

.graphic-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(7, 94, 219, 0.15);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.funnel-v2-portals {
  padding: 16px;
  border: 1px solid rgba(7, 94, 219, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.funnel-v2-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.funnel-v2-logo-row article {
  min-width: 0;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 8px;
  border: 1px solid rgba(7, 94, 219, 0.13);
  border-radius: 10px;
  background: #f8fbff;
}

.funnel-v2-logo-row img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 34px;
  object-fit: contain;
}

.funnel-v2-logo-row span {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.funnel-v2-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 116px;
}

.funnel-v2-flow i {
  position: relative;
  width: 7px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(7, 94, 219, 0.12), var(--blue));
  box-shadow: 0 0 0 8px rgba(7, 94, 219, 0.06);
}

.funnel-v2-flow i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 15px solid var(--blue);
  transform: translateX(-50%);
}

.funnel-v2-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(7, 88, 216, 0.24);
}

.funnel-v2-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.funnel-v2-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.funnel-v2-stage {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 34px rgba(7, 88, 216, 0.2);
}

.funnel-v2-stage strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.funnel-v2-stage span {
  display: block;
  max-width: 280px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0.95;
}

.funnel-v2-stage-a {
  width: 100%;
  background: linear-gradient(135deg, #075edb, #2f8bff);
}

.funnel-v2-stage-b {
  width: 92%;
  background: linear-gradient(135deg, #064fb8, #1978e8);
}

.funnel-v2-stage-c {
  width: 84%;
  background: linear-gradient(135deg, #083d8a, #0f62c8);
}

.funnel-v2-stage-d {
  width: 76%;
  background: linear-gradient(135deg, #061b3a, #075edb);
}

.funnel-v2-result {
  padding: 16px;
  border: 1px solid rgba(7, 94, 219, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(6, 27, 58, 0.1);
}

.funnel-v2-result strong,
.funnel-v2-result small {
  display: block;
}

.funnel-v2-result strong {
  color: var(--navy);
  font-size: 16px;
}

.funnel-v2-result small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.pr-flow-graphic {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(7, 94, 219, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 94, 219, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
}

.document-stack {
  position: absolute;
  left: 34px;
  top: 54px;
  width: 210px;
  height: 248px;
}

.doc-page {
  position: absolute;
  inset: 0;
  border: 1px solid #c9d9ee;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 27, 58, 0.12);
}

.doc-page-back {
  transform: translate(18px, 18px) rotate(4deg);
  background: #f7fbff;
}

.doc-page-front {
  padding: 24px;
}

.doc-page-front span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.doc-page-front strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.02;
}

.doc-page-front i {
  display: block;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: #dbe7f6;
}

.doc-page-front i.short {
  width: 68%;
}

.flow-card {
  position: absolute;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(7, 94, 219, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(6, 27, 58, 0.12);
}

.flow-card strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.flow-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.flow-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-2);
}

.flow-icon svg {
  width: 22px;
  height: 22px;
}

.media-card {
  left: 284px;
  top: 74px;
  width: 210px;
}

.search-card {
  right: 34px;
  top: 142px;
  width: 214px;
}

.traffic-card {
  left: 88px;
  bottom: 44px;
  width: 190px;
}

.customer-card {
  right: 64px;
  bottom: 46px;
  width: 214px;
}

.mini-chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  background: #f2f7ff;
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: var(--blue);
}

.customer-row {
  display: flex;
  margin: 16px 0 8px;
}

.customer-row span {
  width: 34px;
  height: 34px;
  margin-right: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background:
    linear-gradient(180deg, #dceafe 0%, #ffffff 100%);
  box-shadow: 0 8px 18px rgba(6, 27, 58, 0.12);
}

.flow-line {
  position: absolute;
  height: 3px;
  background: rgba(7, 94, 219, 0.28);
  transform-origin: left center;
}

.line-media {
  left: 230px;
  top: 170px;
  width: 78px;
  transform: rotate(-4deg);
}

.line-search {
  left: 480px;
  top: 168px;
  width: 100px;
  transform: rotate(9deg);
}

.line-traffic {
  left: 265px;
  bottom: 118px;
  width: 246px;
  transform: rotate(-3deg);
}

.flow-badge {
  position: absolute;
  left: 292px;
  bottom: 182px;
  z-index: 3;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(7, 88, 216, 0.24);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-top: 4px;
}

.process::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 35px;
  height: 4px;
  background: var(--blue);
  border-radius: 999px;
}

.step {
  position: relative;
  padding-top: 62px;
  text-align: center;
}

.step-num {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: #cbdcf0;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 26px 62px rgba(7, 88, 216, 0.18);
  transform: translateY(-8px);
}

.price-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 8px 0 4px;
  font-size: 25px;
}

.price {
  margin: 22px 0 6px;
  color: var(--navy);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.price span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  gap: 10px;
  color: #293f5c;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 0 0 6px 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trust-signal-graphic {
  position: relative;
  min-height: 485px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: 1fr auto;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 44%, rgba(7, 94, 219, 0.13), transparent 28%),
    linear-gradient(rgba(7, 94, 219, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 94, 219, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  background-size: auto, 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
}

.trust-signal-graphic::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 94, 219, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.signal-source-card,
.signal-route-grid,
.signal-proof-panel,
.signal-hub {
  position: relative;
  z-index: 1;
}

.signal-source-card {
  grid-row: 1 / span 2;
  align-self: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(7, 94, 219, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 52px rgba(6, 27, 58, 0.14);
}

.source-window-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.source-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aac3e6;
}

.source-window-bar span:first-child {
  background: var(--blue);
}

.signal-source-card p {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-source-card h3 {
  margin: 8px 0 16px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.source-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(7, 94, 219, 0.12);
  border-radius: 10px;
  background: #f7fbff;
}

.source-logo-row img {
  width: 100%;
  height: 34px;
  object-fit: contain;
}

.source-lines {
  display: grid;
  gap: 7px;
  margin: 16px 0;
}

.source-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dbe7f6;
}

.source-lines span:nth-child(2) {
  width: 76%;
}

.source-lines span:nth-child(3) {
  width: 54%;
}

.source-badge {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(7, 88, 216, 0.24);
}

.signal-hub {
  position: absolute;
  left: 50%;
  top: 48%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.signal-hub span {
  width: 58px;
  height: 58px;
  border: 12px solid rgba(7, 94, 219, 0.12);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(7, 88, 216, 0.22);
}

.signal-hub i {
  position: absolute;
  width: 118px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 94, 219, 0.08), var(--blue), rgba(7, 94, 219, 0.08));
}

.signal-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: center;
}

.signal-route {
  min-width: 0;
  min-height: 132px;
  padding: 15px;
  border: 1px solid rgba(7, 94, 219, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.route-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-2);
}

.route-icon svg {
  width: 20px;
  height: 20px;
}

.signal-route strong,
.signal-route small {
  display: block;
}

.signal-route strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.signal-route small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.signal-proof-panel {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(7, 94, 219, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: var(--shadow-soft);
}

.signal-proof-panel strong,
.signal-proof-panel small {
  display: block;
}

.signal-proof-panel strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.signal-proof-panel small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.reports-section {
  overflow: hidden;
}

.report-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.tablet-mockup {
  position: relative;
  overflow: hidden;
  border: 12px solid #0b1529;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 78px rgba(6, 27, 58, 0.22);
}

.tablet-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f7faff;
  border-bottom: 1px solid var(--line);
}

.tablet-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aac3e6;
}

.tablet-bar span:first-child {
  background: #0758d8;
}

.tablet-mockup > img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top left;
}

.report-copy {
  padding: 8px 0;
}

.report-copy .btn {
  margin-top: 24px;
}

.research-trust-graphic {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 26%, rgba(7, 94, 219, 0.13), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(20, 184, 166, 0.11), transparent 26%),
    linear-gradient(rgba(7, 94, 219, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 94, 219, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: 0 28px 78px rgba(6, 27, 58, 0.18);
}

.research-trust-graphic::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(7, 94, 219, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.research-person,
.google-panel,
.ai-panel,
.proof-stack-mini,
.trust-path {
  position: absolute;
  z-index: 1;
}

.research-person {
  left: 30px;
  top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 94, 219, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.person-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #dceafe 0%, #ffffff 100%);
}

.person-avatar::before,
.person-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
}

.person-avatar::before {
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.person-avatar::after {
  bottom: 7px;
  width: 20px;
  height: 11px;
  border-radius: 999px 999px 7px 7px;
}

.research-person strong,
.research-person small {
  display: block;
}

.research-person strong {
  color: var(--navy);
  font-size: 15px;
}

.research-person small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.google-panel {
  left: 26px;
  top: 112px;
  width: 58%;
  min-height: 340px;
  padding: 18px;
  border: 1px solid #c9d9ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px rgba(6, 27, 58, 0.16);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}

.panel-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aac3e6;
}

.panel-top span:first-child {
  background: #0758d8;
}

.panel-top strong {
  margin-left: auto;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid rgba(7, 94, 219, 0.18);
  border-radius: 999px;
  background: #f6faff;
}

.search-field span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.search-field span svg {
  width: 15px;
  height: 15px;
}

.search-field strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.search-result {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(7, 94, 219, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.featured-result {
  border-color: rgba(7, 94, 219, 0.28);
}

.search-result img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.search-result small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trust-path {
  left: 54%;
  top: 272px;
  width: 132px;
  display: grid;
  place-items: center;
  gap: 8px;
}

.trust-path span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(7, 94, 219, 0.08);
}

.trust-path i {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 94, 219, 0.1), var(--blue));
}

.trust-path i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--blue);
  transform: translateY(-50%);
}

.trust-path strong {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(7, 88, 216, 0.24);
}

.ai-panel {
  right: 26px;
  top: 130px;
  width: 37%;
  padding: 20px;
  border: 1px solid rgba(7, 94, 219, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 24px 52px rgba(6, 27, 58, 0.16);
}

.ai-chip {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: #eaf3ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-panel h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
}

.ai-panel p {
  color: #2e4562;
  font-size: 14px;
  line-height: 1.55;
}

.ai-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ai-panel li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #203752;
  font-size: 13px;
  line-height: 1.35;
}

.proof-stack-mini {
  left: 58px;
  right: 44px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.proof-stack-mini article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 94, 219, 0.14);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.proof-stack-mini img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.proof-stack-mini span {
  display: block;
  padding: 10px 12px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-device-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.report-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  height: 590px;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.report-collage-grid img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 27, 58, 0.14);
}

.report-collage-grid img:nth-child(3n + 2) {
  transform: translateY(18px);
}

.report-collage-grid img:nth-child(3n) {
  transform: translateY(5px);
}

.phone-mockup {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 8px solid #101827;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(6, 27, 58, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.phone-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(6, 27, 58, 0.22);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #101827;
}

.phone-mockup img {
  width: 100%;
  height: 336px;
  object-fit: cover;
  object-position: top center;
}

.phone-mockup div {
  padding: 16px 17px 18px;
}

.phone-mockup strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.phone-mockup span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 26px;
}

.stars {
  color: var(--yellow);
  font-size: 20px;
  margin-bottom: 14px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.person-initials {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #061b3a);
  font-size: 14px;
  font-weight: 900;
}

.person strong {
  display: block;
  color: var(--navy);
  line-height: 1.2;
}

.person span {
  color: var(--muted);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.faq-tabs {
  position: sticky;
  top: 104px;
  height: fit-content;
  display: grid;
  gap: 8px;
}

.faq-tabs a {
  padding: 11px 13px;
  border-radius: 6px;
  text-decoration: none;
  color: #2b415d;
  background: var(--soft);
  font-weight: 800;
  font-size: 14px;
}

.faq-tabs a:hover,
.faq-tabs a:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.faq-panel {
  padding: 12px 24px;
}

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

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--muted);
  padding: 0 0 20px;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, #0758d8 0%, #003d99 100%);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 25px 70px rgba(7, 88, 216, 0.28);
}

.cta-band h2 {
  color: var(--white);
  font-size: 40px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 8px;
}

.blog-card {
  overflow: hidden;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
}

.blog-card time {
  display: none;
}

.blog-card h3 {
  margin-bottom: 10px;
}

.blog-intro-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: var(--shadow-soft);
}

.blog-intro-panel h2 {
  margin-bottom: 18px;
}

.blog-intro-panel .section-kicker {
  color: var(--blue);
}

.blog-intro-panel p {
  color: #2e4562;
}

.blog-intro-panel p + p {
  margin-top: 16px;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 12px;
  border: 1px solid #b8d2f4;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.related-section {
  padding-top: 0;
}

.related-section .blog-card h3 {
  font-size: 20px;
}

.site-footer {
  background: #071a36;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 36px;
}

.footer-logo {
  width: 230px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin-top: 9px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.page-hero {
  padding: 76px 0 54px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 22px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 56px;
  align-items: start;
}

.article-main {
  color: #1b314d;
}

.article-main h2 {
  font-size: 40px;
  margin-top: 44px;
  margin-bottom: 16px;
}

.article-main h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-main p + p {
  margin-top: 18px;
}

.article-main ul,
.article-main ol {
  margin: 20px 0 0;
  padding-left: 23px;
}

.article-main li + li {
  margin-top: 9px;
}

.article-image {
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.article-image figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.article-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--navy);
  background: #f1f7ff;
  font-size: 14px;
}

.article-table td {
  color: #2e4562;
  font-size: 14px;
  line-height: 1.45;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table th:last-child,
.article-table td:last-child {
  border-right: 0;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 34px 0;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #0758d8 0%, #003d99 100%);
  box-shadow: 0 25px 70px rgba(7, 88, 216, 0.25);
}

.article-cta span {
  display: inline-flex;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
  line-height: 1.08;
}

.article-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.article-main a:not(.btn) {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(7, 94, 219, 0.32);
  text-underline-offset: 3px;
}

.article-main a:not(.btn):hover,
.article-main a:not(.btn):focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.blog-intro-panel a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(7, 94, 219, 0.32);
  text-underline-offset: 3px;
}

.blog-intro-panel a:hover,
.blog-intro-panel a:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.article-cta .btn {
  white-space: nowrap;
  background: var(--white);
  color: var(--blue-700);
}

.toc {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.toc strong {
  display: block;
  color: var(--navy);
  margin-bottom: 12px;
}

.toc a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid #edf3fb;
  font-size: 14px;
  font-weight: 700;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--blue);
}

.quote-box {
  margin: 32px 0;
  padding: 28px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.48;
}

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

.checklist li {
  display: flex;
  gap: 10px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .article-grid,
  .article-shell,
  .visual-intro-grid,
  .report-stage {
    grid-template-columns: 1fr;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .article-cta .btn {
    width: 100%;
  }

  .article-table {
    display: block;
    overflow-x: auto;
  }

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

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .signal-panel {
    right: 250px;
    bottom: 24px;
  }

  .visual-copy {
    max-width: none;
  }

  .visibility-graphic {
    min-height: 400px;
  }

  .sales-funnel-graphic {
    min-height: 620px;
  }

  .pr-flow-graphic {
    min-height: 540px;
  }

  .document-stack {
    left: 28px;
    top: 34px;
  }

  .media-card {
    left: auto;
    right: 28px;
    top: 54px;
  }

  .search-card {
    right: 34px;
    top: 230px;
  }

  .traffic-card {
    left: 34px;
    bottom: 46px;
  }

  .customer-card {
    right: 34px;
    bottom: 48px;
  }

  .line-media,
  .line-search,
  .line-traffic {
    display: none;
  }

  .flow-badge {
    left: 260px;
    bottom: 220px;
  }

  .problem-grid,
  .benefit-grid,
  .pricing-grid,
  .blog-grid,
  .testimonial-grid,
  .metrics-grid,
  .report-device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid .card:nth-child(2n) {
    border-right: 0;
  }

  .problem-grid .card:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

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

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
  }

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

  .process::before {
    display: none;
  }

  .step {
    text-align: left;
    padding: 0 0 0 56px;
  }

  .step-num {
    left: 0;
    top: 0;
    transform: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-tabs,
  .toc {
    position: static;
  }

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

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 202px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 36px;
  }

  h2,
  .cta-band h2,
  .article-main h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .paper-stack {
    left: 0;
    right: 0;
  }

  .paper-large {
    width: 88%;
    min-height: 430px;
    right: 28px;
    padding: 22px;
  }

  .paper-back {
    right: 58px;
  }

  .phone {
    width: 190px;
  }

  .phone-screen {
    min-height: 340px;
  }

  .floating-note {
    left: 0;
    bottom: 106px;
  }

  .signal-panel {
    right: 0;
    bottom: 16px;
    width: 200px;
  }

  .visual-intro {
    padding-top: 58px;
  }

  .visibility-graphic {
    min-height: 560px;
  }

  .sales-funnel-graphic {
    min-height: auto;
    gap: 16px;
    padding: 18px;
  }

  .sales-funnel-graphic::before {
    inset: 12px;
  }

  .funnel-v2-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funnel-v2-logo-row article {
    min-height: 92px;
  }

  .funnel-v2-stage,
  .funnel-v2-stage-a,
  .funnel-v2-stage-b,
  .funnel-v2-stage-c,
  .funnel-v2-stage-d {
    width: 100%;
  }

  .funnel-v2-stage {
    min-height: 72px;
    padding: 14px 16px;
  }

  .funnel-v2-stage strong {
    font-size: 19px;
  }

  .pr-flow-graphic {
    min-height: 760px;
  }

  .document-stack {
    left: 50%;
    top: 24px;
    width: 200px;
    height: 236px;
    transform: translateX(-50%);
  }

  .media-card,
  .search-card,
  .traffic-card,
  .customer-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .media-card {
    top: 286px;
  }

  .search-card {
    top: 404px;
  }

  .traffic-card {
    top: 522px;
    bottom: auto;
  }

  .customer-card {
    bottom: 20px;
  }

  .flow-badge {
    left: 50%;
    bottom: auto;
    top: 238px;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .visibility-card {
    left: 18px;
    top: 24px;
    width: calc(100% - 36px);
  }

  .visibility-card img {
    height: 300px;
  }

  .signal-node {
    min-width: 120px;
    min-height: 48px;
    font-size: 14px;
  }

  .node-website {
    left: 22px;
    right: auto;
    top: 350px;
  }

  .node-media {
    right: 22px;
    top: 350px;
  }

  .node-google {
    left: 22px;
    right: auto;
    bottom: 34px;
  }

  .node-ai {
    right: 22px;
    bottom: 34px;
  }

  .signal-line {
    display: none;
  }

  .problem-grid,
  .benefit-grid,
  .pricing-grid,
  .blog-grid,
  .testimonial-grid,
  .audience-grid,
  .metrics-grid,
  .report-device-grid,
  .asset-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid .card {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .blog-grid.four {
    grid-template-columns: 1fr;
  }

  .trust-signal-graphic {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 18px;
  }

  .trust-signal-graphic::before {
    inset: 10px;
  }

  .signal-source-card,
  .signal-proof-panel {
    grid-row: auto;
    grid-column: 1;
  }

  .signal-hub {
    position: relative;
    left: auto;
    top: auto;
    min-height: 82px;
    transform: none;
  }

  .signal-hub i {
    width: 4px;
    height: 70px;
    background: linear-gradient(180deg, rgba(7, 94, 219, 0.08), var(--blue), rgba(7, 94, 219, 0.08));
  }

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

  .research-trust-graphic {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 18px;
  }

  .research-trust-graphic::before {
    inset: 10px;
  }

  .research-person,
  .google-panel,
  .ai-panel,
  .proof-stack-mini,
  .trust-path {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .google-panel {
    min-height: auto;
    padding: 15px;
  }

  .search-result {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 12px;
  }

  .trust-path {
    width: 100%;
    min-height: 86px;
  }

  .trust-path i {
    width: 6px;
    height: 52px;
    background: linear-gradient(180deg, rgba(7, 94, 219, 0.1), var(--blue));
  }

  .trust-path i::after {
    top: auto;
    right: 50%;
    bottom: -7px;
    border-top: 13px solid var(--blue);
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-bottom: 0;
    transform: translateX(50%);
  }

  .ai-panel h3 {
    font-size: 21px;
  }

  .proof-stack-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .proof-stack-mini img {
    height: 150px;
  }

  .problem-grid .card:first-child {
    border-top: 0;
  }

  .tablet-mockup {
    border-width: 8px;
    border-radius: 18px;
  }

  .tablet-mockup > img {
    aspect-ratio: 4 / 3;
  }

  .report-collage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 520px;
    gap: 10px;
    padding: 12px;
  }

  .report-collage-grid img {
    height: 176px;
    border-radius: 9px;
  }

  .phone-mockup {
    min-height: 390px;
    max-width: 310px;
    margin: 0 auto;
  }

  .phone-mockup img {
    height: 306px;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 0;
    gap: 10px;
  }

  .logo-mark {
    min-height: 64px;
    padding: 10px;
  }

  .logo-mark img {
    max-height: 36px;
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 44px 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .portal-grid,
  .funnel-v2-logo-row {
    grid-template-columns: 1fr;
  }

  .signal-route-grid,
  .search-result,
  .proof-stack-mini {
    grid-template-columns: 1fr;
  }
}
