:root {
  color-scheme: light;
  --ink: #081522;
  --ink-2: #15283a;
  --muted: #5d6c78;
  --line: #dce4e8;
  --paper: #ffffff;
  --paper-soft: #f5f7f8;
  --paper-blue: #eef7f8;
  --red: #d40016;
  --red-dark: #ad0012;
  --teal: #00a7a7;
  --teal-dark: #067979;
  --gold: #c69a2c;
  --navy: #071b2d;
  --shadow: 0 24px 70px rgba(7, 19, 31, 0.12);
  --radius: 8px;
  --content: min(1180px, calc(100vw - 40px));
  --serif: "Iowan Old Style", "Baskerville", "Georgia", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 21, 34, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #ffffff 0%, #f8fafb 42%, #ffffff 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(212, 0, 22, 0.08), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(0, 167, 167, 0.08), transparent 26%);
  z-index: -1;
}

main {
  display: flex;
  flex-direction: column;
}

main > section {
  order: 20;
}

.hero {
  order: 1;
}

.split-intro {
  order: 2;
}

.process-section {
  order: 3;
}

.visual-section {
  order: 4;
}

.comparison-section {
  order: 5;
}

.radar-section {
  order: 6;
}

.article-gallery {
  order: 7;
}

.infographic-strip {
  order: 8;
}

#pakete {
  order: 9;
}

.ad-trust-section {
  order: 10;
}

.proof-section {
  order: 11;
}

.faq-section {
  order: 12;
}

.content-deep-dive {
  order: 13;
}

.final-cta {
  order: 14;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.85rem, 3.65vw, 3.85rem);
  max-width: 860px;
}

h1 span {
  color: var(--red);
  font-size: 0.78em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

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

svg {
  display: block;
}

section[id] {
  scroll-margin-top: 118px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  width: var(--content);
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 20px;
  border: 1px solid rgba(8, 21, 34, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 28px rgba(7, 19, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
}

.brand strong {
  color: var(--red);
  font-weight: 800;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  color: var(--ink-2);
  white-space: nowrap;
}

.main-nav {
  gap: 10px;
  font-size: 0.74rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red);
}

.header-cta,
.header-price,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-price {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(212, 0, 22, 0.28);
  border-radius: 4px;
  background: #fff7f8;
  color: var(--red);
  box-shadow: 0 10px 24px rgba(212, 0, 22, 0.12);
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(212, 0, 22, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 19, 31, 0.12);
}

.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  width: var(--content);
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  padding: 70px 0 42px;
}

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

.hero-lead {
  margin-top: 24px;
  max-width: 620px;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.55;
  color: var(--ink-2);
}

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

.hero-offer {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px 14px;
  align-items: end;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(212, 0, 22, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.11), transparent 44%),
    #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(7, 19, 31, 0.1);
}

.hero-offer span,
.pricing-offer span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer strong,
.pricing-offer strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.82;
}

.hero-offer em,
.pricing-offer em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 30px;
}

.hero-benefits article {
  display: grid;
  gap: 7px;
  justify-items: center;
  text-align: center;
}

.hero-benefits svg {
  width: 48px;
  height: 48px;
  color: var(--teal);
  margin-bottom: 4px;
}

.hero-benefits svg path,
.hero-benefits svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits strong {
  font-size: 0.82rem;
  line-height: 1.15;
}

.hero-benefits span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.22;
}

.btn-play {
  color: var(--ink);
  background: transparent;
  padding-left: 4px;
}

.btn-play svg {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.btn-play svg path {
  fill: currentColor;
  stroke: none;
}

.hero-visual {
  position: relative;
}

.network-map {
  width: 100%;
  max-width: 610px;
  margin-left: auto;
}

.map-lines path {
  fill: none;
  stroke: rgba(8, 21, 34, 0.24);
  stroke-width: 1.4;
}

.map-nodes circle {
  fill: var(--ink);
}

.map-nodes circle:nth-child(3n) {
  fill: var(--red);
}

.map-nodes circle:nth-child(4n) {
  fill: var(--teal);
}

.media-orbits circle {
  fill: #fff;
  stroke: #d5dee5;
}

.media-orbits path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.center-mark circle:first-child {
  fill: #fff;
  stroke: #d5dee5;
}

.center-mark circle:nth-child(2) {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
}

.center-mark text {
  font-family: var(--serif);
  font-weight: 800;
  fill: var(--red);
  font-size: 56px;
}

.section-pad {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section-kicker,
.price-top span,
.media-stack span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--teal-dark);
}

.split-intro,
.visual-section,
.content-deep-dive,
.faq-section,
.proof-section {
  width: var(--content);
  margin: 0 auto;
}

.unique-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.58fr 0.72fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.unique-copy,
.originality-card {
  padding: 30px;
}

.unique-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.unique-copy p {
  margin-top: 16px;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 7vw, 92px);
  margin-top: 18px;
}

.intro-text {
  font-size: 1.04rem;
  color: var(--ink-2);
}

.duplicate-graphic {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 0;
}

.dup-side {
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  padding: 30px 22px;
  box-shadow: none;
  text-align: center;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.dup-side h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.dup-side > span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.dup-side.mass > span {
  color: var(--red);
}

.dup-vs {
  align-self: center;
  width: 54px;
  height: 54px;
  margin: 0 -27px;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--serif);
  font-weight: 800;
}

.duplicate-graphic svg {
  width: 100%;
  height: auto;
  margin-top: 18px;
  transform: translateY(16px);
}

.doc-main,
.copy-grid rect {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 3;
}

.doc-fold {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
}

.red-arrow,
.red-lines path {
  stroke: var(--red);
  stroke-width: 3;
  fill: none;
}

.doc-main.teal,
.doc-fold.teal {
  stroke: var(--teal);
}

.teal-arrow {
  fill: none;
  stroke: var(--teal);
  stroke-width: 6;
}

.portal-card {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 3;
}

.fingerprint path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 5;
  stroke-linecap: round;
}

.originality-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  text-align: left;
}

.originality-card .quality-seal {
  width: 132px;
  height: 132px;
  margin: 12px auto 18px;
  transform: translateY(10px);
}

.seal-glow {
  fill: rgba(0, 167, 167, 0.08);
}

.seal-shield {
  fill: url(#qualitySealGrad);
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linejoin: round;
}

.seal-fold {
  fill: none;
  stroke: var(--ink);
  stroke-width: 6;
  stroke-linecap: round;
}

.seal-check-bg {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 6;
}

.seal-check,
.seal-orbit {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seal-check {
  stroke: #fff;
  stroke-width: 8;
}

.seal-orbit {
  stroke: var(--teal);
  stroke-width: 5;
}

.orbit-two {
  stroke: var(--red);
  stroke-width: 4;
}

.originality-card svg path {
  stroke-linecap: round;
}

.originality-card h3 {
  font-size: 1.45rem;
  text-align: center;
  margin-bottom: 16px;
}

.originality-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.originality-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.originality-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.18), transparent 34%),
    linear-gradient(90deg, #071522, #0b2337 58%, #071522);
  color: #fff;
}

.dark-band h2,
.dark-band p {
  color: #fff;
}

.band-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 8vw, 94px);
  align-items: center;
}

.band-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.editorial-board {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.board-top span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.board-top strong {
  font-family: var(--serif);
  font-size: 4.4rem;
  color: #fff;
  line-height: 0.9;
}

.board-list {
  display: grid;
  gap: 12px;
}

.board-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
}

.board-list span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.74);
}

.board-list b {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), rgba(255, 255, 255, 0.35));
}

.board-list div:nth-child(2) b {
  width: 87%;
}

.board-list div:nth-child(3) b {
  width: 96%;
}

.board-list div:nth-child(4) b {
  width: 82%;
}

.board-list div:nth-child(5) b {
  width: 90%;
}

.editorial-board svg {
  margin-top: 24px;
  width: 100%;
}

.section-head {
  width: var(--content);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.section-head.compact {
  display: block;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.process-section .section-head {
  display: block;
  max-width: 860px;
  text-align: center;
}

.process-section .section-head h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.process-section .section-head p {
  max-width: 760px;
  margin: 18px auto 0;
}

.process {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 0;
  border-bottom: 0;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ink), var(--teal), transparent);
}

.process article {
  padding: 0 18px;
  border-right: 0;
  text-align: center;
  position: relative;
}

.process article:last-child {
  border-right: 0;
}

.process span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(7, 19, 31, 0.08);
  position: relative;
  z-index: 1;
}

.process-icon svg {
  width: 42px;
  height: 42px;
  color: var(--teal);
}

.process article:nth-child(2n) .process-icon svg {
  color: var(--red);
}

.process-icon path,
.process-icon circle,
.process-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  margin: 0 0 10px;
  font-weight: 900;
}

.process p {
  font-size: 0.94rem;
  color: var(--muted);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card > div:not(.service-visual) {
  padding: 30px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--muted);
}

.service-visual {
  background: linear-gradient(135deg, #f2f8f9, #fff);
  border-bottom: 1px solid var(--line);
}

.service-visual svg {
  width: 100%;
  height: auto;
}

.service-visual rect,
.service-visual circle {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 4;
}

.service-visual path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.self-service .service-visual path:nth-of-type(2),
.agency-service .service-visual path:last-child {
  stroke: var(--teal);
}

.comparison-section {
  background: #f1f5f6;
}

.comparison-table {
  width: var(--content);
  margin: 0 auto;
  border: 1px solid #22384c;
  background: #071b2d;
  color: #fff;
  box-shadow: var(--shadow);
}

.comparison-table .row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.comparison-table .row:last-child {
  border-bottom: 0;
}

.comparison-table .row > div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.comparison-table .row > div:last-child {
  border-right: 0;
}

.comparison-table .head {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.comparison-table .row:not(.head) div:first-child {
  font-weight: 900;
}

.comparison-table .row:not(.head) div:nth-child(2) {
  color: rgba(255, 255, 255, 0.66);
}

.comparison-table .row:not(.head) div:nth-child(3) {
  color: #d8ffff;
}

.article-gallery {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 1.14fr 0.34fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.gallery-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.gallery-copy h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.impact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.impact-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.impact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.media-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}

.media-stack article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), #fff 60%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(8, 21, 34, 0.05) 18px 19px),
    #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.media-stack article::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 28px;
  height: 110px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.22), transparent 55%),
    linear-gradient(45deg, transparent 0 48%, rgba(212, 0, 22, 0.22) 49% 52%, transparent 53%);
}

.media-stack article:nth-child(2) {
  min-height: 390px;
}

.media-stack article:nth-child(3) {
  min-height: 355px;
}

.media-stack h3 {
  font-size: 1.35rem;
  margin: 10px 0;
}

.media-stack p {
  color: var(--muted);
  font-size: 0.92rem;
}

.media-stats {
  display: grid;
  gap: 26px;
}

.media-stats div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.media-stats strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--ink);
}

.media-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.infographic-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.infographic-copy,
.flow-graphic {
  width: var(--content);
  margin-left: auto;
  margin-right: auto;
}

.infographic-copy {
  max-width: 980px;
  text-align: center;
  margin-bottom: 48px;
}

.infographic-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.flow-graphic {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr 0.5fr 1fr 0.5fr 1fr;
  align-items: center;
}

.flow-item {
  display: grid;
  justify-items: center;
  gap: 14px;
  font-weight: 900;
}

.flow-item svg {
  width: 96px;
  height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.flow-item path,
.flow-item rect {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-line {
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--red));
}

.pricing-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-offer {
  width: var(--content);
  margin: -24px auto 34px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px 18px;
  align-items: end;
  padding: 24px 28px;
  border: 1px solid rgba(212, 0, 22, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 251, 0.96)),
    #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.pricing-offer em {
  grid-column: auto;
  padding-bottom: 8px;
  color: var(--ink-2);
}

.price-card {
  position: relative;
  scroll-margin-top: 120px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--red);
  transform: translateY(-18px);
}

.price-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  min-height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .price-top {
  padding-top: 32px;
}

.price-card h3 {
  margin: 8px 0 12px;
}

.price-amount,
.order-price {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
  margin: 12px 0 14px;
}

.price-amount span,
.order-price span {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.price-card ul {
  padding: 0;
  margin: 18px 0 28px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-left: 26px;
}

.price-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 0.58em;
  border-radius: 50%;
  background: var(--teal);
}

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

.ad-trust-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(8, 21, 34, 0.16);
  border-bottom: 1px solid rgba(8, 21, 34, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(180deg, #061522 0%, #0a2537 54%, #071724 100%);
  color: #fff;
}

.ad-trust-wrap {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.ad-trust-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.ad-trust-section .section-kicker {
  color: #78eeee;
}

.ad-trust-head h2 {
  color: #fff;
  max-width: 760px;
}

.ad-trust-intro p,
.ad-scenario-grid p,
.search-result p,
.route-copy p {
  color: rgba(235, 247, 249, 0.78);
}

.ad-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ad-trust-visual,
.search-result,
.trust-route {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.ad-trust-visual {
  padding: clamp(22px, 4vw, 42px);
}

.ad-channel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ad-channel {
  min-height: 128px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.ad-channel span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.ad-channel.fb span {
  color: #1877f2;
}

.ad-channel.google span {
  color: var(--red);
}

.ad-channel.linkedin span {
  color: #0a66c2;
}

.ad-channel strong {
  color: #fff;
}

.ad-channel small,
.route-graphic small {
  color: rgba(235, 247, 249, 0.62);
  font-weight: 700;
}

.ad-flow {
  width: 100%;
  margin: 8px 0 0;
}

.ad-flow .flow-main,
.ad-flow .flow-risk {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}

.ad-flow .flow-main {
  stroke: var(--teal);
}

.ad-flow .flow-risk {
  stroke: var(--red);
}

.ad-flow circle {
  fill: #fff;
  stroke: var(--teal);
  stroke-width: 8;
}

.ad-flow circle:nth-of-type(2) {
  stroke: var(--gold);
}

.ad-flow circle:nth-of-type(3) {
  stroke: var(--red);
}

.ad-flow text {
  fill: #fff;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 900;
}

.trust-search-card {
  max-width: 720px;
  margin: -8px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #f7fbfc;
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.search-lines {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.search-lines p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink-2);
  font-weight: 800;
}

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

.ad-scenario-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.scenario-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff;
}

.scenario-icon svg {
  width: 42px;
  height: 42px;
}

.scenario-icon path,
.scenario-icon circle {
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-icon .danger {
  stroke: var(--red);
}

.scenario-icon .good {
  stroke: var(--teal);
}

.ad-scenario-grid h3,
.search-result h3,
.route-copy h3 {
  color: #fff;
}

.ad-scenario-grid h3 {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.22;
  margin-bottom: 12px;
  font-weight: 900;
}

.search-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.search-result {
  padding: clamp(24px, 3.4vw, 36px);
}

.result-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-window {
  margin: 24px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  display: grid;
  gap: 12px;
}

.result-query {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f5f7f8;
  color: var(--ink-2);
  font-weight: 900;
}

.result-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.28);
}

.muted-line {
  background: #dce4e8;
}

.result-line.short {
  width: 72%;
}

.result-alert,
.result-positive {
  padding: 13px 14px;
  border-radius: 4px;
  font-weight: 900;
}

.result-alert {
  border: 1px solid rgba(212, 0, 22, 0.18);
  background: #fff0f2;
  color: var(--red-dark);
}

.result-positive {
  border: 1px solid rgba(0, 167, 167, 0.24);
  background: #eefafa;
  color: var(--teal-dark);
}

.bad-result {
  border-color: rgba(212, 0, 22, 0.32);
}

.good-result {
  border-color: rgba(0, 167, 167, 0.42);
}

.trust-route {
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.route-copy .btn {
  margin-top: 16px;
}

.route-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.route-graphic::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--red));
}

.route-graphic div {
  position: relative;
  min-height: 178px;
  padding: 88px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.route-graphic span {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.route-graphic strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.18;
}

.route-graphic small {
  display: block;
  margin-top: 7px;
  line-height: 1.25;
}

.radar-section {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.radar-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.radar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.radar-card svg {
  width: 100%;
}

.radar-grid polygon,
.radar-grid path {
  fill: none;
  stroke: #cdd9df;
  stroke-width: 2;
}

.radar-fill {
  fill: rgba(0, 167, 167, 0.24);
  stroke: var(--teal);
  stroke-width: 5;
}

.radar-dots circle {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 4;
}

.radar-labels text {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
}

.long-copy {
  max-width: 980px;
  margin: 0 auto;
  columns: 2 380px;
  column-gap: 56px;
}

.long-copy h3 {
  break-after: avoid;
  margin: 0 0 14px;
  padding-top: 10px;
}

.long-copy p {
  break-inside: avoid;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
}

.proof-section {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #061522, #0a2539 58%, #061522);
  color: #fff;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.proof-section .section-head {
  width: 100%;
}

.proof-section h2,
.proof-section h3,
.proof-section p {
  color: #fff;
}

.proof-section .section-head h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.9rem);
}

.proof-section .section-head p,
.proof-section .principle-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.principle-grid svg {
  width: 58px;
  height: 58px;
  color: var(--teal);
  margin-bottom: 16px;
}

.principle-grid path,
.principle-grid circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.principle-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.faq-list,
.faq-aside {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0 22px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 160ms ease;
}

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

.faq-panel {
  display: none;
  padding: 18px 22px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.faq-panel.is-open {
  display: block;
}

.faq-aside {
  padding: 28px;
}

.faq-aside h3 {
  margin-bottom: 18px;
}

.faq-aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.faq-aside li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.faq-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.faq-visual {
  margin: 28px 0 0;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfc;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(7, 19, 31, 0.08);
}

.faq-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.18), transparent 32%),
    linear-gradient(90deg, #061320, #0a263b 56%, #061320);
  color: #fff;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-offer {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.final-cta p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .final-offer {
  max-width: none;
  color: #fff;
}

.cta-panel {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: end;
}

.site-footer {
  width: var(--content);
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.blog-page {
  display: block;
}

.blog-page > section {
  order: initial;
}

.blog-hero {
  width: var(--content);
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: 76px 0 50px;
}

.blog-hero-copy {
  max-width: 780px;
}

.blog-hero-visual {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.blog-hero-visual svg {
  width: 100%;
  height: auto;
}

.blog-hero-visual img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.blog-topics {
  background: #f4f8f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-topic-grid,
.blog-layout {
  width: var(--content);
  margin: 0 auto;
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.blog-topic-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 31, 0.08);
}

.blog-topic-grid svg {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  color: var(--teal);
}

.blog-topic-grid path,
.blog-topic-grid circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-topic-grid h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.blog-topic-grid p,
.article-row p,
.blog-sidebar p {
  color: var(--muted);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 26px;
  align-items: start;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 31, 0.08);
}

.article-date {
  min-height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f0f8f8);
}

.article-date strong {
  font-family: var(--serif);
  color: var(--red);
  font-size: 2.4rem;
  line-height: 1;
}

.article-date span,
.article-meta span,
.blog-progress strong {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-date span {
  color: var(--teal-dark);
}

.article-row h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  margin-bottom: 10px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--teal-dark);
  background: #f7fbfc;
}

.article-meta span:last-child {
  color: var(--red);
  background: #fff7f8;
}

.blog-sidebar {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.1), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.blog-sidebar h3 {
  margin-bottom: 14px;
}

.blog-progress {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.blog-progress div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.blog-progress span {
  color: var(--ink);
  font-weight: 800;
}

.blog-progress strong {
  color: var(--red);
}

.blog-sidebar svg {
  width: 100%;
}

.blog-sidebar path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-sidebar circle {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 4;
}

.blog-index-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-tools {
  width: var(--content);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.blog-search {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.blog-search span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 14px 16px;
  box-shadow: 0 14px 38px rgba(7, 19, 31, 0.08);
}

.blog-search input:focus {
  outline: 3px solid rgba(0, 167, 167, 0.18);
  border-color: var(--teal);
}

.blog-count {
  margin: 0 0 13px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 31, 0.08);
  overflow: hidden;
}

.blog-card a {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 0 0 24px;
  text-decoration: none;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.blog-card span,
.article-category,
.article-back {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card span,
.blog-card h3,
.blog-card p,
.blog-card strong {
  margin-left: 22px;
  margin-right: 22px;
}

.blog-card h3 {
  font-size: 1.45rem;
}

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

.blog-card strong {
  margin-top: auto;
  color: var(--red);
}

.blog-empty {
  width: var(--content);
  margin: 26px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 38px rgba(7, 19, 31, 0.08);
}

.blog-pagination {
  width: var(--content);
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-pagination[hidden] {
  display: none;
}

.blog-pagination button {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 10px 15px;
  box-shadow: 0 12px 30px rgba(7, 19, 31, 0.08);
}

.blog-pagination button:hover,
.blog-pagination button[aria-current="page"] {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.blog-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.article-page {
  display: block;
}

.article-page > article {
  order: initial;
}

.article-hero {
  width: var(--content);
  margin: 0 auto;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: 72px 0 54px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  text-decoration: none;
}

.article-category {
  margin: 0 0 18px;
}

.article-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.article-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.article-cover {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  display: block;
}

.article-shell {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 860px);
  gap: 48px;
  align-items: start;
  padding-bottom: 86px;
}

.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 19, 31, 0.08);
}

.article-toc strong {
  margin-bottom: 6px;
}

.article-toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.article-body {
  display: grid;
  gap: 46px;
}

.article-body section {
  scroll-margin-top: 118px;
}

.article-body h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.article-body h3 {
  font-size: 1.45rem;
  margin: 22px 0 10px;
}

.article-body p,
.article-body li {
  color: var(--ink-2);
  font-size: 1.04rem;
  overflow-wrap: break-word;
}

.article-body ol,
.article-body ul {
  margin: 18px 0 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 19, 31, 0.08);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

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

.article-body th {
  background: #071b2d;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.article-example-grid,
.article-package-grid,
.article-plan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.article-example-grid div,
.article-plan div,
.article-package,
.article-note,
.article-cta-box,
.briefing-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 19, 31, 0.08);
}

.article-example-grid strong,
.article-example-grid span,
.article-plan strong,
.article-plan span,
.article-package span,
.article-package strong,
.article-package em {
  display: block;
}

.article-example-grid span,
.article-plan span,
.article-package em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
}

.article-plan strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.article-package {
  text-decoration: none;
}

.article-package span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-package strong {
  margin-top: 8px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.article-note {
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.12), transparent 42%),
    #fff;
}

.briefing-box {
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.08), transparent 42%),
    #fff;
}

.article-checklist {
  list-style: none;
  padding-left: 0;
}

.article-checklist li {
  position: relative;
  padding-left: 30px;
}

.article-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.article-cta-box {
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.14), transparent 36%),
    linear-gradient(90deg, #061320, #0a263b 56%, #061320);
}

.article-cta-box h2,
.article-cta-box p {
  color: #fff;
}

.kit-infographic,
.kit-asset-grid,
.kit-checklist-grid,
.kit-score-grid {
  display: grid;
  gap: 14px;
}

.kit-infographic {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin: 28px 0;
}

.kit-flow-step,
.kit-asset-card,
.kit-check-column,
.kit-score {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 19, 31, 0.08);
}

.kit-flow-step span,
.kit-asset-card span,
.kit-score span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.kit-flow-step strong,
.kit-asset-card strong,
.kit-score strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.kit-flow-step p,
.kit-asset-card p,
.kit-score p {
  margin-bottom: 0;
}

.kit-flow-arrow {
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
}

.kit-asset-grid,
.kit-checklist-grid,
.kit-score-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kit-asset-card span,
.kit-score span {
  height: auto;
  padding: 8px 12px;
  background: #eef7f8;
  color: var(--teal-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kit-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 167, 167, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.16), transparent 46%),
    #fff;
  box-shadow: var(--shadow);
}

.kit-cta h2,
.kit-cta p {
  margin-bottom: 0;
}

.kit-cta .btn {
  white-space: nowrap;
}

.kit-cta-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.18), transparent 42%),
    linear-gradient(90deg, #061320, #0a263b 58%, #061320);
}

.kit-cta-dark h2,
.kit-cta-dark p {
  color: #fff;
}

.kit-folder-map {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 21, 34, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    #fff;
  box-shadow: 0 14px 38px rgba(7, 19, 31, 0.08);
}

.kit-folder-map code {
  display: block;
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  background: #f8fbfc;
  color: var(--ink-2);
  white-space: normal;
}

.kit-check-column h3 {
  margin-top: 0;
}

.kit-check-column .article-checklist {
  margin-top: 14px;
}

.purchase-page {
  display: block;
}

.purchase-page > section {
  order: initial;
}

.legal-page {
  display: block;
}

.legal-page > section {
  order: initial;
}

.portal-page {
  display: block;
}

.portal-page > section {
  order: initial;
}

.portal-hero {
  width: var(--content);
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: 76px 0 50px;
}

.portal-hero h1 {
  max-width: 900px;
}

.portal-hero h1 span {
  display: block;
  color: var(--red);
}

.portal-hero-panel {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.12), transparent 40%),
    #fff;
  box-shadow: var(--shadow);
}

.portal-counter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.portal-counter strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.portal-counter span {
  color: var(--ink-2);
  font-weight: 900;
  line-height: 1.2;
}

.portal-hero-panel svg {
  width: 100%;
  margin: 12px 0;
}

.portal-lines path {
  fill: none;
  stroke: url(#portalLineGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.58;
}

.portal-nodes circle {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 4;
}

.portal-nodes circle:first-child {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 7;
}

.portal-docs path {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portal-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.portal-proof-row div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.portal-proof-row strong,
.portal-proof-row span {
  display: block;
}

.portal-proof-row strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.portal-proof-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.portal-principles {
  background: #f4f8f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portal-principle-grid,
.portal-grid,
.portal-source-card {
  width: var(--content);
  margin: 0 auto;
}

.portal-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portal-principle-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 31, 0.08);
}

.portal-principle-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.portal-principle-grid h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
}

.portal-principle-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portal-card {
  position: relative;
  min-height: 154px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.08), transparent 44%),
    #fff;
  box-shadow: 0 14px 40px rgba(7, 19, 31, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 167, 167, 0.46);
  box-shadow: 0 22px 58px rgba(7, 19, 31, 0.13);
}

.portal-card span {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.portal-card strong {
  display: block;
  max-width: calc(100% - 54px);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.04;
}

.portal-card em {
  color: var(--teal-dark);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 900;
  word-break: break-word;
}

.portal-source {
  padding-top: 0;
}

.portal-source-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.16), transparent 36%),
    linear-gradient(90deg, #061320, #0a263b 56%, #061320);
  box-shadow: var(--shadow);
}

.portal-source-card h2,
.portal-source-card p {
  color: #fff;
}

.portal-source-card p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
}

.portal-source-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: end;
}

.legal-hero {
  width: var(--content);
  margin: 0 auto;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 76px 0 46px;
}

.legal-hero h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.legal-note {
  padding: 28px;
  border: 1px solid rgba(212, 0, 22, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 0, 22, 0.08), transparent 44%),
    #fff;
  box-shadow: var(--shadow);
}

.legal-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.08;
}

.legal-note p {
  color: var(--muted);
}

.legal-content {
  background: #f4f8f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-grid,
.legal-text {
  width: var(--content);
  margin: 0 auto;
}

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

.legal-card,
.legal-text section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 31, 0.08);
}

.legal-card {
  padding: 30px;
}

.legal-card h2,
.legal-text h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  margin-bottom: 18px;
}

.legal-details {
  display: grid;
  gap: 8px;
}

.legal-details p,
.legal-text p {
  margin: 0;
  color: var(--ink-2);
}

.legal-details a,
.legal-text a {
  color: var(--red);
  font-weight: 800;
}

.legal-text {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.legal-text section {
  padding: 30px;
}

.buy-hero {
  width: var(--content);
  margin: 0 auto;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 76px 0 50px;
}

.buy-hero h1 {
  max-width: 900px;
}

.buy-summary {
  display: grid;
  gap: 14px;
}

.buy-summary a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 16px 46px rgba(7, 19, 31, 0.08);
}

.buy-summary strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.buy-summary span {
  color: var(--ink);
  font-weight: 900;
}

.buy-pricing {
  background: #f4f8f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-section {
  width: var(--content);
  margin: 0 auto;
}

.order-section .section-head {
  width: 100%;
}

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

.order-panel {
  scroll-margin-top: 118px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.order-panel h3 {
  font-size: 1.7rem;
}

.order-panel form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.order-panel label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
}

.order-panel input,
.order-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f9fbfc;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  padding: 12px 12px;
}

.order-panel textarea {
  resize: vertical;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .dup-side,
  .process article,
  .service-card,
  .price-card,
  .ad-trust-visual,
  .ad-scenario-grid article,
  .search-result,
  .trust-route,
  .media-stack article {
    animation: rise 700ms ease both;
  }

  .hero-visual {
    animation-delay: 120ms;
  }

  .map-nodes circle {
    animation: pulse 2400ms ease-in-out infinite;
  }

  .map-nodes circle:nth-child(2n) {
    animation-delay: 700ms;
  }

  @keyframes rise {
    from {
      transform: translateY(18px);
    }
    to {
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0%,
    100% {
      opacity: 0.55;
      transform: scale(1);
      transform-origin: center;
    }
    50% {
      opacity: 1;
      transform: scale(1.25);
    }
  }
}

@media (max-width: 1080px) {
  .site-header,
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero,
  .buy-hero,
  .blog-hero,
  .article-hero,
  .article-shell,
  .portal-hero,
  .portal-source-card,
  .legal-hero,
  .intro-grid,
  .unique-layout,
  .band-grid,
  .section-head,
  .article-gallery,
  .radar-section,
  .ad-trust-head,
  .search-comparison,
  .trust-route,
  .faq-grid,
  .blog-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .network-map {
    max-width: 520px;
    margin: 0 auto;
  }

  .unique-layout {
    border: 1px solid var(--line);
  }

  .duplicate-graphic {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .originality-card {
    border-left: 0;
  }

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

  .process article {
    border-bottom: 1px solid var(--line);
  }

  .process article:nth-child(2n) {
    border-right: 0;
  }

  .service-grid,
  .pricing-grid,
  .portal-grid,
  .portal-principle-grid,
  .legal-grid,
  .order-grid,
  .ad-scenario-grid,
  .principle-grid,
  .blog-topic-grid,
  .blog-index-grid,
  .blog-tools {
    grid-template-columns: 1fr 1fr;
  }

  .article-toc {
    position: static;
  }

  .kit-infographic,
  .kit-cta {
    grid-template-columns: 1fr;
  }

  .kit-flow-arrow {
    transform: rotate(90deg);
  }

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

  .final-cta,
  .portal-source-actions,
  .cta-panel {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100vw - 28px, 1180px);
  }

  section[id] {
    scroll-margin-top: 250px;
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .header-cta {
    width: 100%;
  }

  .header-price {
    width: 100%;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-signals,
  .hero-benefits,
  .duplicate-graphic,
  .service-grid,
  .pricing-grid,
  .portal-grid,
  .portal-principle-grid,
  .portal-proof-row,
  .legal-grid,
  .ad-channel-row,
  .ad-scenario-grid,
  .search-comparison,
  .order-grid,
  .media-stack,
  .principle-grid,
  .blog-topic-grid,
  .blog-index-grid,
  .blog-tools,
  .article-example-grid,
  .article-package-grid,
  .article-plan,
  .article-row,
  .kit-asset-grid,
  .kit-checklist-grid,
  .kit-score-grid {
    grid-template-columns: 1fr;
  }

  .buy-summary a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-offer,
  .pricing-offer {
    width: 100%;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-offer {
    margin-top: -18px;
  }

  .pricing-offer em {
    padding-bottom: 0;
  }

  .ad-trust-visual,
  .search-result,
  .trust-route {
    padding: 20px;
  }

  .ad-flow text {
    font-size: 28px;
  }

  .trust-search-card {
    margin-top: 0;
  }

  .route-graphic {
    grid-template-columns: 1fr;
  }

  .route-graphic::before {
    display: none;
  }

  .route-graphic div {
    min-height: 0;
    padding: 20px 18px 20px 86px;
    text-align: left;
  }

  .route-graphic span {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  .dup-vs {
    justify-self: center;
    margin: -27px 0;
  }

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

  .process article,
  .process article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table .row {
    min-width: 760px;
  }

  .flow-graphic {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-line {
    width: 2px;
    height: 44px;
    justify-self: center;
  }

  .long-copy {
    columns: 1;
  }

  .buy-hero h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .blog-hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-count {
    margin-bottom: 0;
    white-space: normal;
  }

  .article-hero h1 {
    font-size: 2.35rem;
  }

  .kit-cta .btn {
    white-space: normal;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 1.55rem;
  }

  .hero-actions,
  .cta-panel,
  .blog-pagination {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .blog-pagination button {
    width: 100%;
  }

  .dup-side,
  .price-card,
  .service-card > div:not(.service-visual),
  .faq-aside,
  .article-row,
  .blog-sidebar,
  .blog-topic-grid article,
  .article-example-grid div,
  .article-package,
  .article-note,
  .article-cta-box,
  .briefing-box,
  .kit-flow-step,
  .kit-asset-card,
  .kit-check-column,
  .kit-score,
  .kit-cta,
  .kit-folder-map {
    padding: 22px;
  }
}
