:root {
  --ink: #07111d;
  --ink-2: #0d1e2e;
  --ink-3: #132a3e;
  --paper: #f8fafc;
  --white: #ffffff;
  --soft: #eef3f8;
  --line: #d8e2ec;
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #607086;
  --muted-dark: #aab8c8;
  --red: #f43d3f;
  --red-dark: #bf2433;
  --cyan: #00b8d8;
  --cyan-dark: #057d98;
  --green: #0fae8a;
  --yellow: #f4b63f;
  --shadow: 0 22px 70px rgba(7, 17, 29, 0.16);
  --shadow-soft: 0 14px 40px rgba(7, 17, 29, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

  .btn:hover {
    transform: none;
  }
}

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

p {
  margin: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 29, 0.74);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
button.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font: 800 14px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(244, 61, 63, 0.28);
}

.btn-primary:hover {
  background: #ff5557;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover,
.btn-light:hover {
  border-color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.96) 0%, rgba(7, 17, 29, 0.78) 38%, rgba(7, 17, 29, 0.22) 72%, rgba(7, 17, 29, 0.58) 100%),
    linear-gradient(0deg, rgba(7, 17, 29, 0.92) 0%, rgba(7, 17, 29, 0.18) 48%, rgba(7, 17, 29, 0.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 44px;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: 74px;
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero h1 strong {
  color: var(--red);
  font-weight: 950;
}

.hero-lead {
  margin-top: 24px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.65;
}

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

.hero-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 860px;
}

.hero-signal {
  min-height: 84px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.35;
}

.hero-signal svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.hero-dashboard {
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2));
  bottom: 48px;
  width: 318px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(8, 22, 35, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(15, 174, 138, 0.14);
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
}

.mini-bars span {
  display: block;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--red));
}

.dashboard-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.dashboard-note div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-note strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--paper);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.wide-head h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-head h2 span,
.wide-head h2 span {
  color: var(--red);
}

.section-head p,
.wide-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-dark .section-head p,
.section-dark .wide-head p {
  color: var(--muted-dark);
}

.wide-head {
  max-width: 900px;
  margin-bottom: 44px;
}

.wide-head h2 {
  margin-bottom: 18px;
}

.proof-strip {
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px repeat(5, 1fr);
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.proof-item {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  font-weight: 800;
  color: #334155;
  text-align: center;
}

.myth-section {
  scroll-margin-top: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 184, 216, 0.12), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(244, 61, 63, 0.1), transparent 28%),
    var(--white);
}

.myth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.myth-copy h2 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: 50px;
  line-height: 1.02;
  text-transform: uppercase;
}

.myth-copy h2 span {
  color: var(--red);
}

.myth-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

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

.trust-check-graphic {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.98), rgba(19, 42, 62, 0.96));
  box-shadow: var(--shadow);
}

.trust-check-graphic::before {
  content: "";
  position: absolute;
  inset: 28px 28px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 216, 0.6), transparent);
}

.phone-call-card {
  position: relative;
  z-index: 2;
  width: min(270px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.phone-call-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-call-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.12;
}

.search-window {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 62px;
  z-index: 2;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(216, 226, 236, 0.18);
  border-radius: 14px;
  padding: 16px;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.search-bar {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: #334155;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.search-bar i {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid var(--cyan-dark);
  border-radius: 50%;
}

.search-bar i::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  background: var(--cyan-dark);
}

.search-placeholder {
  display: flex;
  align-items: center;
  gap: 7px;
}

.search-placeholder b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #9fb0c0;
}

.search-placeholder b:nth-child(1) {
  width: 88px;
  background: var(--cyan);
}

.search-placeholder b:nth-child(2) {
  width: 62px;
}

.search-placeholder b:nth-child(3) {
  width: 36px;
  background: rgba(244, 61, 63, 0.72);
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px;
  background: var(--white);
}

.search-result b {
  display: block;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.search-result strong {
  display: block;
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.search-result em {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  color: #0c6e58;
  background: rgba(15, 174, 138, 0.12);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.search-result.muted {
  opacity: 0.66;
}

.search-result.muted b {
  color: var(--red);
}

.search-result.muted em {
  color: var(--red-dark);
  background: rgba(244, 61, 63, 0.1);
}

.myth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.myth-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(7, 17, 29, 0.06);
}

.myth-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.myth-card h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.15;
}

.myth-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.reputation-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border: 1px solid rgba(244, 61, 63, 0.22);
  border-radius: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(244, 61, 63, 0.07), rgba(0, 184, 216, 0.06)),
    var(--white);
}

.reputation-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.reputation-panel p {
  max-width: 760px;
  color: var(--muted);
}

.concept-section {
  scroll-margin-top: 82px;
  padding: 54px 0 64px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 68%, #f8fafc 100%);
}

.concept-title {
  margin: 0 0 24px;
  text-align: center;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.concept-title span {
  color: var(--red);
}

.concept-title.small {
  margin-top: 26px;
  margin-bottom: 24px;
  font-size: 31px;
}

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

.concept-route-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.78fr);
  gap: 22px;
  min-height: 210px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 17, 29, 0.06);
}

.concept-route-copy h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.1;
}

.concept-label {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.concept-label.cyan {
  color: var(--cyan-dark);
}

.concept-label.red {
  color: var(--red);
}

.concept-route-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #26364a;
  font-size: 13px;
  line-height: 1.35;
}

.concept-route-copy li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
}

.concept-route-copy li::before {
  content: "✓";
  color: var(--cyan-dark);
  font-weight: 950;
}

.concept-route-card:nth-child(2) .concept-route-copy li::before {
  color: var(--red);
}

.concept-button,
.concept-start,
.concept-all-prices {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.concept-button:hover,
.concept-start:hover,
.concept-all-prices:hover {
  transform: translateY(-1px);
}

.concept-button.cyan {
  color: var(--white);
  background: var(--cyan);
}

.concept-button.red {
  color: var(--white);
  background: var(--red);
}

.concept-route-art {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border-radius: 10px;
}

.self-service-art {
  padding: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 184, 216, 0.2), transparent 30%),
    linear-gradient(135deg, #f7fbfd, #eaf7fb);
  border: 1px solid rgba(0, 184, 216, 0.22);
}

.self-editor-window {
  position: relative;
  z-index: 2;
  border: 2px solid #12304a;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(14, 53, 80, 0.13);
}

.self-editor-top {
  display: grid;
  grid-template-columns: 8px 8px 8px 1fr;
  gap: 6px;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-bottom: 1px solid #d7e9f0;
  background: #f0f8fb;
}

.self-editor-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ec9d9;
}

.self-editor-top b {
  justify-self: end;
  color: #2a7188;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.self-editor-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 12px;
  padding: 13px;
}

.self-editor-page {
  min-height: 92px;
}

.self-editor-page strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.1;
}

.self-editor-page i,
.agency-core i {
  display: block;
  height: 5px;
  margin-top: 7px;
  border-radius: 999px;
}

.self-editor-page i {
  background: #a7d9e5;
}

.self-editor-page i:nth-of-type(1) { width: 92%; }
.self-editor-page i:nth-of-type(2) { width: 76%; }
.self-editor-page i:nth-of-type(3) { width: 84%; }
.self-editor-page i:nth-of-type(4) { width: 56%; }

.self-editor-page div {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.self-editor-page span,
.self-editor-panel span {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  color: #0e5970;
  background: rgba(0, 184, 216, 0.12);
  font-size: 10px;
  font-weight: 900;
}

.self-editor-panel {
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 184, 216, 0.16), rgba(0, 184, 216, 0.05));
}

.self-editor-panel em {
  width: 34px;
  height: 34px;
  border: 2px solid #57bbd1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(0, 184, 216, 0.18) 58%),
    repeating-linear-gradient(0deg, #dceef4 0 4px, transparent 4px 10px);
}

.self-editor-panel strong {
  margin-top: 6px;
  color: var(--cyan-dark);
  font-size: 22px;
  line-height: 1;
}

.self-publish-flow {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: grid;
  grid-template-columns: 1fr 26px 26px 26px;
  gap: 8px;
  align-items: center;
}

.self-publish-flow span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(0, 184, 216, 0));
}

.self-publish-flow i {
  height: 26px;
  border: 1px solid rgba(0, 184, 216, 0.34);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
}

.premium-agency-art {
  min-height: 186px;
  padding: 12px;
  border: 1px solid rgba(244, 61, 63, 0.28);
  background:
    radial-gradient(circle at 74% 26%, rgba(244, 61, 63, 0.23), transparent 35%),
    linear-gradient(135deg, rgba(7, 17, 29, 0.96), rgba(31, 42, 57, 0.96));
}

.agency-orbit {
  position: absolute;
  inset: 12px;
}

.agency-orbit::before,
.agency-orbit::after {
  content: "";
  position: absolute;
  inset: 30px 48px;
  border: 1px solid rgba(244, 61, 63, 0.24);
  border-radius: 50%;
}

.agency-orbit::after {
  inset: 50px 72px;
  border-color: rgba(0, 184, 216, 0.2);
}

.agency-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 116px;
  padding: 14px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 61, 63, 0.58);
  border-radius: 13px;
  background: rgba(8, 22, 35, 0.96);
  box-shadow: 0 18px 40px rgba(244, 61, 63, 0.18);
}

.agency-core span,
.agency-node span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.agency-core strong {
  display: block;
  margin: 3px 0 5px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.05;
}

.agency-core i {
  background: rgba(244, 61, 63, 0.56);
}

.agency-core i:nth-of-type(1) { width: 86%; }
.agency-core i:nth-of-type(2) { width: 62%; }
.agency-core i:nth-of-type(3) { width: 74%; }

.agency-node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 7px;
  align-items: center;
  min-width: 90px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
}

.agency-node em {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--red), #ff7778);
  box-shadow: 0 8px 18px rgba(244, 61, 63, 0.25);
}

.strategy-node { top: 4px; left: 6px; }
.text-node { top: 4px; right: 4px; }
.media-node { bottom: 5px; left: 10px; }
.report-node { right: 8px; bottom: 5px; }

.concept-divider {
  scroll-margin-top: 94px;
  height: 1px;
  margin: 24px 0 0;
  background: var(--line);
}

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

.concept-price-card {
  position: relative;
  min-height: 252px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 17, 29, 0.06);
}

.concept-price-card.highlight {
  border-color: var(--cyan);
  box-shadow: 0 16px 44px rgba(0, 184, 216, 0.16);
}

.concept-ribbon {
  position: absolute;
  right: -37px;
  top: 17px;
  width: 132px;
  transform: rotate(45deg);
  background: var(--cyan);
  color: var(--white);
  font-size: 10px;
  font-weight: 950;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}

.concept-price-card svg {
  width: 50px;
  height: 50px;
  color: #334155;
}

.concept-number {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 10px;
  color: var(--cyan-dark);
}

.concept-number strong {
  font-size: 52px;
  line-height: 0.86;
  font-weight: 950;
}

.concept-number span {
  max-width: 128px;
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.concept-price-card p {
  min-height: 48px;
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.concept-price {
  color: var(--ink);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.concept-price-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.concept-start {
  width: 100%;
  margin-top: 18px;
  border: 1px solid #9fb0c0;
  color: var(--ink);
  background: var(--white);
}

.concept-start.cyan {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

.concept-feature-list {
  display: grid;
  align-content: center;
  gap: 17px;
  color: #334155;
  font-size: 14px;
}

.concept-feature-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
}

.concept-feature-list span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 16px;
}

.concept-all-prices {
  justify-self: start;
  margin-bottom: 3px;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
}

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

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.route-card.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 30, 46, 0.98), rgba(10, 22, 34, 0.96)),
    var(--ink-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.route-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.12;
}

.route-card p {
  color: var(--muted);
  font-size: 16px;
}

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

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

.route-card .btn {
  align-self: flex-start;
}

.route-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 184, 216, 0.12);
  color: var(--cyan-dark);
  font-weight: 900;
}

.route-card.dark .check {
  background: rgba(244, 61, 63, 0.16);
  color: var(--red);
}

.route-graphic {
  position: relative;
  width: min(310px, 100%);
  min-width: 0;
  margin: 28px 0 0 auto;
  opacity: 0.96;
}

.laptop-graphic,
.agency-graphic {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #eef7fb);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.laptop-graphic::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 14%;
  height: 56%;
  border: 2px solid #8ec9d9;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(0, 184, 216, 0.16) 68% 100%),
    repeating-linear-gradient(0deg, #d8e7ee 0 6px, transparent 6px 18px);
}

.laptop-graphic::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 16%;
  height: 12px;
  border-radius: 0 0 8px 8px;
  background: #8ec9d9;
}

.agency-graphic {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(244, 61, 63, 0.16));
}

.agency-graphic::before,
.agency-graphic::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.agency-graphic::before {
  left: 18%;
  right: 18%;
  top: 18%;
  height: 42%;
  border-radius: 6px;
}

.agency-graphic::after {
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 18%;
  border-radius: 50% 50% 8px 8px;
  border-top: 0;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 24px 70px rgba(0, 184, 216, 0.16);
}

.price-card h3 {
  margin: 18px 0 8px;
  font-size: 28px;
}

.package-number {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: var(--cyan-dark);
}

.package-number strong {
  font-size: 64px;
  line-height: 0.9;
}

.package-number span {
  max-width: 120px;
  padding-bottom: 7px;
  font-weight: 800;
  line-height: 1.15;
}

.price-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.price-features {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #334155;
}

.price-icon {
  width: 56px;
  height: 56px;
  color: var(--red);
}

.service-note {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.price-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.note-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.note-tile svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--cyan-dark);
}

.note-tile strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.copy-stack h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.copy-stack p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .copy-stack p {
  color: var(--muted-dark);
}

.graphic-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.section-dark .graphic-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
}

.workflow-step {
  min-height: 192px;
  padding: 22px 18px;
  background: var(--ink);
}

.workflow-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 900;
}

.workflow-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.workflow-step p {
  color: var(--muted-dark);
  font-size: 14px;
}

.chart-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 18px;
}

.benefit-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.benefit-row svg {
  width: 36px;
  height: 36px;
  color: var(--red);
}

.benefit-row h3 {
  margin: 0 0 4px;
  font-size: 19px;
}

.benefit-row p {
  color: var(--muted);
}

.bar-visual {
  min-height: 360px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  height: 250px;
  align-items: end;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 16px 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(216, 226, 236, 0.72) 48px 49px);
}

.bar-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: end;
  height: 100%;
}

.bar {
  border-radius: 4px 4px 0 0;
}

.bar.old {
  background: #9aa6b5;
}

.bar.new {
  background: linear-gradient(180deg, var(--red), var(--cyan));
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.legend {
  display: flex;
  gap: 18px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: inline-block;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.compare-side {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 410px;
  background: rgba(255, 255, 255, 0.05);
}

.compare-side h3 {
  margin: 0 0 18px;
  font-size: 26px;
}

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

.compare-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted-dark);
}

.bad-mark,
.good-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
}

.bad-mark {
  background: rgba(244, 61, 63, 0.14);
  color: var(--red);
}

.good-mark {
  background: rgba(0, 184, 216, 0.14);
  color: var(--cyan);
}

.vs {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 950;
  font-size: 22px;
}

.duplicate-graphic,
.unique-graphic {
  position: relative;
  min-height: 276px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.duplicate-graphic {
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 61, 63, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(244, 61, 63, 0.08), rgba(255, 255, 255, 0.025));
}

.duplicate-source {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: min(178px, 52%);
  padding: 13px 15px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 61, 63, 0.62);
  border-radius: 12px;
  background: rgba(12, 24, 36, 0.95);
  box-shadow: 0 18px 42px rgba(244, 61, 63, 0.16);
}

.duplicate-source::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -31px;
  width: 1px;
  height: 31px;
  background: linear-gradient(180deg, rgba(244, 61, 63, 0.8), rgba(244, 61, 63, 0));
}

.duplicate-source span,
.unique-article-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.duplicate-source strong,
.unique-article-card strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  line-height: 1.12;
}

.duplicate-source i,
.unique-article-card i {
  display: block;
  height: 5px;
  margin-top: 7px;
  border-radius: 999px;
}

.duplicate-source i {
  background: rgba(244, 61, 63, 0.56);
}

.duplicate-source i:nth-of-type(2) {
  width: 78%;
}

.duplicate-source i:nth-of-type(3) {
  width: 64%;
}

.duplicate-stamp {
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 4;
  padding: 8px 10px;
  transform: rotate(6deg);
  border: 1px solid rgba(244, 61, 63, 0.72);
  border-radius: 8px;
  color: #ff6a6c;
  background: rgba(244, 61, 63, 0.1);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.duplicate-web {
  position: absolute;
  right: 14px;
  bottom: 15px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.duplicate-web::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(244, 61, 63, 0.48);
}

.duplicate-copy {
  position: relative;
  min-height: 100px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.duplicate-copy::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 1px;
  height: 18px;
  background: rgba(244, 61, 63, 0.48);
}

.duplicate-copy b {
  display: block;
  color: var(--white);
  font-size: 11px;
  line-height: 1.2;
}

.duplicate-copy em {
  display: block;
  margin: 6px 0 9px;
  color: #ff7274;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.duplicate-copy span {
  display: block;
  height: 5px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(244, 61, 63, 0.42);
}

.duplicate-copy span:nth-of-type(1) { width: 90%; }
.duplicate-copy span:nth-of-type(2) { width: 72%; }
.duplicate-copy span:nth-of-type(3) { width: 84%; }

.unique-graphic {
  min-height: 300px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 184, 216, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(0, 184, 216, 0.09), rgba(244, 61, 63, 0.035));
}

.unique-ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  padding: 9px 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #062031;
  background: linear-gradient(135deg, var(--cyan), #6be6ff);
  box-shadow: 0 16px 38px rgba(0, 184, 216, 0.22);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.unique-stage {
  position: absolute;
  inset: 58px 16px 16px;
  display: grid;
  grid-template-columns: minmax(124px, 1.12fr) repeat(2, minmax(108px, 0.9fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.unique-stage::before {
  content: "";
  position: absolute;
  inset: 50% 10% auto 22%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 184, 216, 0.1), rgba(0, 184, 216, 0.62), rgba(0, 184, 216, 0.1));
}

.unique-article-card {
  position: relative;
  z-index: 2;
  padding: 13px;
  border: 1px solid rgba(0, 184, 216, 0.5);
  border-radius: 12px;
  background: rgba(8, 22, 35, 0.9);
  box-shadow: 0 16px 36px rgba(0, 184, 216, 0.08);
}

.unique-primary {
  display: flex;
  grid-row: 1 / 3;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(0, 184, 216, 0.82);
  background:
    linear-gradient(135deg, rgba(0, 184, 216, 0.18), rgba(8, 22, 35, 0.94));
}

.unique-red {
  border-color: rgba(244, 61, 63, 0.54);
}

.unique-article-card i {
  background: rgba(0, 184, 216, 0.55);
}

.unique-red i {
  background: rgba(244, 61, 63, 0.52);
}

.unique-article-card i:nth-of-type(1) { width: 88%; }
.unique-article-card i:nth-of-type(2) { width: 58%; }
.unique-article-card i:nth-of-type(3) { width: 76%; }
.unique-article-card i:nth-of-type(4) { width: 46%; }

.unique-article-card:nth-child(3) i:nth-of-type(1) { width: 64%; }
.unique-article-card:nth-child(3) i:nth-of-type(2) { width: 92%; }
.unique-article-card:nth-child(3) i:nth-of-type(3) { width: 52%; }

.unique-article-card:nth-child(4) i:nth-of-type(1) { width: 74%; }
.unique-article-card:nth-child(4) i:nth-of-type(2) { width: 48%; }
.unique-article-card:nth-child(4) i:nth-of-type(3) { width: 86%; }

.magazine-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: stretch;
}

.map-card {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 184, 216, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
}

.logo-board {
  min-height: auto;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 184, 216, 0.18), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(244, 61, 63, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.logo-board::before {
  content: "";
  position: absolute;
  inset: 70px 28px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 216, 0.42), transparent);
}

.logo-board-head {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin-bottom: 22px;
}

.logo-board-head span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(0, 184, 216, 0.28);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--cyan);
  background: rgba(0, 184, 216, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-board-head strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.05;
}

.logo-board-head p {
  max-width: 360px;
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 14px;
}

.magazine-logo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.magazine-logo-card {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 226, 236, 0.9);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.magazine-logo-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.magazine-logo-card.wide {
  grid-column: span 2;
}

.magazine-logo-card.accent-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.96), rgba(18, 48, 74, 0.92));
  border-color: rgba(0, 184, 216, 0.32);
  font-size: 20px;
  font-weight: 950;
}

.magazine-logo-card.accent-card span {
  color: var(--red);
}

.map-card svg {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.stat-box strong {
  display: block;
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.stat-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

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

.use-case {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.use-case svg {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--red);
}

.use-case h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.use-case p {
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.guide-chapter {
  border-top: 3px solid var(--red);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.guide-chapter h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.18;
}

.guide-chapter p + p {
  margin-top: 16px;
}

.guide-chapter p {
  color: var(--muted);
}

.hero-lead strong,
.section-head p strong,
.wide-head p strong,
.myth-copy p strong,
.copy-stack p strong,
.use-case p strong,
.guide-chapter p strong,
.faq-answer p strong {
  color: var(--ink);
  font-weight: 900;
}

.hero-lead strong,
.section-dark .section-head p strong,
.section-dark .wide-head p strong,
.section-dark .copy-stack p strong {
  color: var(--white);
}

.focus-line,
.wide-head .focus-line,
.myth-copy .focus-line,
.copy-stack .focus-line,
.guide-chapter .focus-line {
  margin: 4px 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.28;
}

.focus-line span {
  color: var(--red);
}

.section-dark .focus-line,
.section-dark .wide-head .focus-line,
.section-dark .copy-stack .focus-line {
  color: var(--white);
}

.guide-chapter .focus-line {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 16px 18px;
  background: transparent;
  color: var(--ink);
  font: 800 16px/1.3 Arial, Helvetica, sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(244, 61, 63, 0.22), rgba(0, 184, 216, 0.12)),
    var(--ink-2);
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.08;
  text-transform: uppercase;
}

.cta-panel p {
  max-width: 720px;
  color: var(--muted-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.contact-card a,
.contact-card span {
  color: var(--muted-dark);
}

.site-footer {
  padding: 30px 0;
  background: #050c14;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.subpage-main {
  padding-top: 72px;
  background: var(--paper);
}

.subpage-hero {
  padding: 92px 0 58px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 17, 29, 0.97), rgba(13, 30, 46, 0.94)),
    var(--ink);
}

.subpage-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.subpage-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  text-transform: uppercase;
}

.subpage-hero h1 span {
  color: var(--red);
}

.subpage-hero p {
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.65;
}

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

.post-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.post-card-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
}

.post-visual {
  min-height: 132px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 61, 63, 0.92), rgba(0, 184, 216, 0.64)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 28%),
    var(--ink);
}

.post-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .post-visual {
  aspect-ratio: 1200 / 630;
  min-height: 0;
}

.post-card:nth-child(2n) .post-visual {
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.96), rgba(0, 184, 216, 0.55)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 20px);
}

.post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.post-meta {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-body h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.post-body p {
  margin-bottom: 22px;
  color: var(--muted);
}

.post-body .btn {
  margin-top: auto;
  align-self: flex-start;
  pointer-events: none;
}

.featured-article,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 0;
  overflow: hidden;
}

.featured-article .post-visual {
  min-height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.featured-copy {
  padding: 34px;
}

.featured-copy h2,
.legal-panel h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.16;
}

.featured-copy p,
.legal-panel p {
  color: var(--muted);
}

.featured-copy p + p,
.legal-panel p + p {
  margin-top: 14px;
}

.legal-panel {
  max-width: 860px;
  padding: 36px;
}

.legal-panel h2 {
  margin-top: 34px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.legal-note {
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  background: rgba(244, 61, 63, 0.06);
  color: var(--muted);
}

.myth-actions {
  margin-top: 24px;
}

.trust-page .section {
  overflow: hidden;
}

.trust-hero {
  padding: 98px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 61, 63, 0.24), transparent 35%),
    radial-gradient(circle at 78% 34%, rgba(0, 184, 216, 0.18), transparent 36%),
    linear-gradient(120deg, #07111d, #0d1e2e 64%, #132a3e);
}

.trust-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.8fr);
  gap: 46px;
  align-items: center;
}

.trust-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 62px;
  line-height: 1;
  text-transform: uppercase;
}

.trust-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: 19px;
  line-height: 1.7;
}

.trust-hero-graphic {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 22, 35, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.trust-hero-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.7) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.7) 49% 50%, transparent 50%);
  background-size: 104px 104px;
}

.ad-stack,
.traffic-line,
.trust-search-card {
  position: relative;
  z-index: 2;
}

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

.ad-stack span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 950;
}

.traffic-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 28px 0;
}

.traffic-line i {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.traffic-line i:last-child {
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.traffic-line b {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #062031;
  background: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-search-card {
  display: grid;
  gap: 12px;
  border-radius: 14px;
  padding: 18px;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.trust-search-bar {
  display: grid;
  grid-template-columns: 28px 1fr 0.7fr 0.42fr;
  gap: 9px;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
}

.trust-search-bar em {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid var(--cyan-dark);
  border-radius: 50%;
}

.trust-search-bar em::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  background: var(--cyan-dark);
}

.trust-search-bar span {
  height: 8px;
  border-radius: 999px;
  background: #9fb0c0;
}

.trust-search-bar span:first-of-type {
  background: var(--cyan);
}

.trust-search-bar span:last-of-type {
  background: rgba(244, 61, 63, 0.72);
}

.trust-result {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px;
  background: var(--white);
}

.trust-result b {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-result strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.trust-result.danger {
  opacity: 0.74;
}

.trust-result.danger b {
  color: var(--red);
}

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

.trust-text-grid article,
.scenario-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-text-grid h3,
.scenario-card h3,
.pr-system h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.12;
}

.trust-text-grid p,
.scenario-card p {
  color: var(--muted);
}

.trust-text-grid p + p,
.scenario-card p + p {
  margin-top: 14px;
}

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

.query-grid,
.audit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.query-grid article,
.audit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.query-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.query-grid h3 {
  margin: 10px 0 12px;
  font-size: 23px;
  line-height: 1.12;
}

.query-grid p,
.audit-grid p {
  color: var(--muted);
}

.trust-audit-section .section-head p {
  color: var(--muted-dark);
}

.audit-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.audit-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.15;
}

.audit-grid p {
  color: var(--muted-dark);
}

.scenario-graphic {
  position: relative;
  min-height: 150px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.96), rgba(19, 42, 62, 0.92));
}

.scenario-graphic span {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.scenario-graphic span:nth-child(1) { top: 34px; width: 72%; }
.scenario-graphic span:nth-child(2) { top: 66px; width: 54%; }
.scenario-graphic span:nth-child(3) { top: 98px; width: 82%; }

.empty-search span {
  background: rgba(159, 176, 192, 0.28);
}

.negative-result span:nth-child(2) {
  background: rgba(244, 61, 63, 0.78);
}

.competitor-result span:nth-child(1) {
  background: rgba(0, 184, 216, 0.75);
}

.ai-layout,
.pr-system {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.ai-answer-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 26px;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 184, 216, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.ai-top {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.ai-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.ai-top span:nth-child(2) {
  background: var(--red);
}

.ai-top span:nth-child(3) {
  background: rgba(255, 255, 255, 0.42);
}

.ai-answer-card strong {
  display: block;
  color: var(--white);
  font-size: 28px;
}

.ai-answer-card p {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.55;
}

.ai-sources {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ai-sources span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.pr-system {
  align-items: stretch;
}

.pr-system-graphic {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 184, 216, 0.18), transparent 36%),
    linear-gradient(135deg, #ffffff, #eef3f8);
  box-shadow: var(--shadow-soft);
}

.offer-node,
.article-node,
.trust-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px;
  font-weight: 950;
  text-align: center;
}

.offer-node {
  top: 34px;
  left: 50%;
  width: 142px;
  height: 62px;
  transform: translateX(-50%);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 36px rgba(244, 61, 63, 0.24);
}

.article-node {
  width: 146px;
  min-height: 70px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.node-one { left: 36px; top: 176px; }
.node-two { right: 36px; top: 176px; }
.node-three { left: 50%; bottom: 118px; transform: translateX(-50%); }

.trust-node {
  left: 50%;
  bottom: 30px;
  width: 170px;
  height: 58px;
  transform: translateX(-50%);
  color: #062031;
  background: var(--cyan);
}

.pr-system-graphic::before,
.pr-system-graphic::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(0, 184, 216, 0.36);
}

.pr-system-graphic::before {
  top: 96px;
  height: 250px;
}

.pr-system-graphic::after {
  bottom: 86px;
  height: 36px;
}

.trust-table {
  margin-bottom: 0;
}

.trust-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-product-grid a {
  display: grid;
  gap: 12px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-product-grid a:hover {
  border-color: var(--cyan);
}

.trust-product-grid strong {
  color: var(--red);
  font-size: 24px;
  line-height: 1.08;
}

.trust-product-grid span {
  color: var(--muted);
}

.blog-article {
  background: var(--paper);
}

.article-hero-section {
  padding: 86px 0 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(244, 61, 63, 0.24), transparent 34%),
    radial-gradient(circle at 84% 34%, rgba(0, 184, 216, 0.18), transparent 36%),
    linear-gradient(120deg, #07111d, #0d1e2e 62%, #132a3e);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.article-back {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.article-hero-section h1 {
  max-width: 760px;
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  text-transform: uppercase;
}

.article-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: 19px;
  line-height: 1.68;
}

.article-hero-image,
.article-inline-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.article-hero-image img,
.article-inline-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
}

.article-hero-image figcaption,
.article-inline-image figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.article-content {
  max-width: 960px;
  padding: 70px 0 84px;
}

.article-content h2 {
  scroll-margin-top: 96px;
  margin: 52px 0 16px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.1;
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

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

.article-toc {
  display: grid;
  gap: 10px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-toc strong {
  color: var(--ink);
  font-size: 18px;
}

.article-toc a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.article-callout {
  margin: 34px 0;
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(244, 61, 63, 0.08), rgba(0, 184, 216, 0.05)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

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

.content-table th,
.content-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.content-table th {
  color: var(--ink);
  background: #eef3f8;
  font-weight: 900;
}

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

.article-inline-image {
  margin: 38px 0;
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-inline-image figcaption {
  color: var(--muted);
}

.article-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.article-steps li {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--white);
}

.article-steps strong {
  color: var(--ink);
  font-size: 17px;
}

.article-steps span {
  color: var(--muted);
}

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

.article-checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #334155;
  font-weight: 800;
}

.article-checklist li::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cyan-dark);
  background: rgba(0, 184, 216, 0.12);
  font-weight: 950;
}

.article-related {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.article-related h2 {
  margin-top: 0;
}

.article-related div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-related a {
  display: flex;
  min-height: 112px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
  box-shadow: var(--shadow-soft);
}

.article-link-hub,
.article-product-box {
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-link-hub h2,
.article-product-box h2 {
  margin-top: 0;
}

.article-link-hub > p,
.article-product-box > p {
  max-width: 760px;
  margin-bottom: 22px;
}

.article-link-hub div,
.article-product-box div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-link-hub a,
.article-product-box a {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
}

.article-link-hub a:hover,
.article-product-box a:hover {
  border-color: var(--cyan);
}

.article-link-hub strong,
.article-product-box strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.article-link-hub span,
.article-product-box span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-product-box {
  border-color: rgba(244, 61, 63, 0.22);
  background:
    linear-gradient(135deg, rgba(244, 61, 63, 0.05), rgba(0, 184, 216, 0.04)),
    var(--white);
}

.article-product-box a {
  background: var(--white);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
}

.blog-pagination strong {
  margin-right: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.blog-pagination a:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

.blog-pagination span {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

@media (max-width: 1120px) {
  .hero-dashboard {
    display: none;
  }

  .hero-copy {
    width: min(760px, 100%);
  }

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

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

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0;
    background: rgba(7, 17, 29, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 20px 22px;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .hero-signals,
  .proof-grid,
  .routes,
  .pricing-grid,
  .editorial-grid,
  .chart-compare,
  .compare-grid,
  .myth-layout,
  .magazine-section,
  .trust-hero-grid,
  .trust-text-grid,
  .scenario-grid,
  .query-grid,
  .audit-grid,
  .ai-layout,
  .pr-system,
  .trust-product-grid,
  .use-case-grid,
  .guide-grid,
  .faq-grid,
  .cta-panel,
  .contact-grid,
  .article-grid,
  .article-hero-grid,
  .article-related div,
  .article-link-hub div,
  .article-product-box div,
  .featured-article,
  .subpage-hero .container,
  .section-head {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .concept-routes,
  .concept-pricing {
    grid-template-columns: 1fr;
  }

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

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

  .concept-route-art {
    width: min(330px, 100%);
    margin: 0 auto;
  }

  .concept-feature-list {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px;
    background: var(--white);
  }

  .route-card {
    min-height: auto;
  }

  .route-graphic {
    width: 100%;
    margin-top: 26px;
  }

  .featured-article .post-visual {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .vs {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .container,
  .footer-inner,
  .proof-grid,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    font-size: 23px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 112px;
    padding-bottom: 34px;
  }

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

  .hero-lead,
  .section-head p,
  .wide-head p {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .wide-head h2,
  .subpage-hero h1 {
    font-size: 34px;
  }

  .myth-copy h2 {
    font-size: 36px;
  }

  .trust-check-graphic {
    min-height: auto;
    padding: 18px;
  }

  .search-window {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 18px;
  }

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

  .reputation-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .concept-title,
  .concept-title.small {
    font-size: 31px;
  }

  .hero-signals,
  .service-note,
  .workflow {
    grid-template-columns: 1fr;
  }

  .hero-signals {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .package-number strong {
    font-size: 52px;
  }

  .compare-side {
    min-height: auto;
  }

  .duplicate-graphic {
    min-height: 410px;
  }

  .duplicate-source {
    width: min(178px, 68%);
  }

  .duplicate-stamp {
    top: 102px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .duplicate-web {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    top: 156px;
    bottom: 14px;
  }

  .duplicate-web::before,
  .duplicate-copy::before {
    display: none;
  }

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

  .unique-stage {
    inset: 60px 12px 12px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .unique-primary {
    grid-row: auto;
  }

  .map-card,
  .map-card svg {
    min-height: 380px;
  }

  .logo-board {
    padding: 18px;
  }

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

  .magazine-logo-card.wide {
    grid-column: span 2;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-panel,
  .featured-copy {
    padding: 24px;
  }

  .article-hero-section {
    padding: 62px 0 46px;
  }

  .article-hero-section h1 {
    font-size: 34px;
  }

  .article-lead,
  .article-content p {
    font-size: 16px;
  }

  .article-content {
    padding: 50px 0 64px;
  }

  .article-content h2 {
    font-size: 28px;
  }

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

  .article-toc,
  .article-callout,
  .article-link-hub,
  .article-product-box {
    padding: 18px;
  }

  .trust-hero {
    padding: 66px 0 52px;
  }

  .trust-hero h1 {
    font-size: 38px;
  }

  .trust-lead,
  .trust-text-grid p,
  .scenario-card p,
  .ai-answer-card p {
    font-size: 16px;
  }

  .trust-hero-graphic,
  .pr-system-graphic {
    min-height: 430px;
  }

  .ad-stack {
    grid-template-columns: 1fr;
  }

  .trust-product-grid a {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }
}
