:root {
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --blue: #365cf5;
  --blue-dark: #2744bd;
  --blue-pale: #eef2ff;
  --mint: #78d8b2;
  --mint-dark: #1c865b;
  --mint-pale: #eafaf3;
  --amber: #f6b44c;
  --surface: #ffffff;
  --canvas: #f7f8f5;
  --canvas-blue: #f5f7ff;
  --line: #e3e8ef;
  --line-strong: #cbd5e1;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.07);
  --shadow-lg: 0 24px 70px rgba(16, 24, 40, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.section {
  padding: 104px 0;
}

.section--compact {
  padding: 72px 0;
}

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

.section--blue {
  background: var(--canvas-blue);
}

.section--ink {
  color: #fff;
  background: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.eyebrow--mint {
  color: var(--mint);
}

.display {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6.3vw, 78px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section--ink .section-copy {
  color: #b8c3d7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading .section-copy {
  max-width: 480px;
  margin: 0 0 4px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.nav-link:focus-visible,
.logo:focus-visible,
.menu-button:focus-visible,
.icon-button:focus-visible,
.cookie-link:focus-visible {
  outline: 3px solid rgba(54, 92, 245, 0.28);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(54, 92, 245, 0.22);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.button--secondary:hover {
  border-color: var(--blue);
  background: #fff;
}

.button--mint {
  color: #073b29;
  background: var(--mint);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 750;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.05);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span span {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.nav-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--blue);
}

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

.header-actions .button {
  min-height: 44px;
  padding: 0 17px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 80px 0 66px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -170px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 216, 178, 0.28), rgba(120, 216, 178, 0) 68%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: -380px;
  left: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 92, 245, 0.14), rgba(54, 92, 245, 0) 70%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

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

.hero-copy .display em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #dce5e0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 650;
}

.check {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #075a3a;
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
}

.campaign-shell {
  position: relative;
}

.campaign-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid rgba(207, 217, 230, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.campaign-card::after {
  position: absolute;
  z-index: -1;
  inset: 12px -12px -12px 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(54, 92, 245, 0.13), rgba(120, 216, 178, 0.16));
  content: "";
}

.campaign-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.campaign-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.025em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(120, 216, 178, 0.18);
  content: "";
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfe;
}

.metric-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.reach-panel {
  margin-top: 12px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
}

.reach-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.reach-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.reach-caption {
  color: #aebbd0;
  font-size: 12px;
}

.chart {
  display: flex;
  height: 82px;
  align-items: end;
  gap: 7px;
  margin-top: 18px;
}

.chart span {
  flex: 1;
  min-width: 7px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--mint), #3c9d7a);
  animation: chart-in 700ms both;
  transform-origin: bottom;
}

.chart span:nth-child(1) { height: 26%; animation-delay: 50ms; }
.chart span:nth-child(2) { height: 38%; animation-delay: 100ms; }
.chart span:nth-child(3) { height: 33%; animation-delay: 150ms; }
.chart span:nth-child(4) { height: 54%; animation-delay: 200ms; }
.chart span:nth-child(5) { height: 49%; animation-delay: 250ms; }
.chart span:nth-child(6) { height: 66%; animation-delay: 300ms; }
.chart span:nth-child(7) { height: 75%; animation-delay: 350ms; }
.chart span:nth-child(8) { height: 91%; animation-delay: 400ms; }

@keyframes chart-in {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.rules-badge {
  position: absolute;
  z-index: 3;
  right: -30px;
  bottom: 46px;
  display: flex;
  width: 190px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #ccecdf;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.rules-badge__icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--mint-dark);
  background: var(--mint-pale);
  font-weight: 900;
}

.rules-badge strong,
.rules-badge small {
  display: block;
  line-height: 1.35;
}

.rules-badge strong {
  font-size: 13px;
}

.rules-badge small {
  color: var(--muted);
  font-size: 11px;
}

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

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

.trust-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
  line-height: 1.35;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #bdc9ff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-pale);
  font-family: var(--font-heading);
  font-weight: 800;
}

.service-card h2,
.service-card h3 {
  max-width: 390px;
  margin: 54px 0 10px;
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.service-card .text-link {
  position: absolute;
  bottom: 30px;
  left: 32px;
}

.service-card--mint {
  background: linear-gradient(145deg, #f4fff9, #fff);
}

.service-card--blue {
  background: linear-gradient(145deg, #f2f5ff, #fff);
}

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

.step {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--font-heading);
  font-weight: 900;
}

.step h3 {
  margin: 30px 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.step p {
  margin: 0;
  color: #b8c3d7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.comparison-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.comparison-item strong,
.comparison-item span {
  display: block;
}

.comparison-item strong {
  font-size: 14px;
}

.comparison-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.plan-preview {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.plan-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.plan-preview__head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 23px;
  letter-spacing: -0.03em;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--mint-dark);
  background: var(--mint-pale);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.plan-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.plan-row dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.plan-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.deliverable {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.deliverable:first-child {
  grid-row: span 2;
  min-height: 478px;
  color: #fff;
  background: var(--blue);
}

.deliverable h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
}

.deliverable:first-child p {
  color: #e2e8ff;
}

.mock-report {
  margin-top: 42px;
  padding: 22px;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  transform: rotate(-1.5deg);
}

.mock-report__line {
  height: 8px;
  margin: 11px 0;
  border-radius: 999px;
  background: #e8ebf1;
}

.mock-report__line:nth-child(2) { width: 72%; }
.mock-report__line:nth-child(3) { width: 88%; }

.mock-report__chart {
  height: 110px;
  margin-top: 20px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, transparent 44%, var(--mint) 45%, var(--mint) 48%, transparent 49%),
    linear-gradient(165deg, transparent 52%, var(--blue) 53%, var(--blue) 56%, transparent 57%),
    #f8fafc;
}

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

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.price-card--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.price-card h3 {
  margin: 14px 0 4px;
  font-family: var(--font-heading);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.price {
  margin: 22px 0;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

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

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

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

.guide-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.guide-card__meta {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 25px 0 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.guide-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.guide-card .text-link {
  margin-top: auto;
}

.faq-list {
  max-width: 860px;
  margin: 46px auto 0;
}

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

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

.faq-item summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--font-body);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 27px;
  color: var(--muted);
}

.review-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(50px, 8vw, 100px);
  padding: 54px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
}

.review-copy .section-title {
  font-size: clamp(34px, 4vw, 50px);
}

.review-copy p {
  color: #b8c3d7;
  font-size: 17px;
}

.review-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.review-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7deeb;
  font-size: 14px;
}

.review-form {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(54, 92, 245, 0.1);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 17px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  color: #075a3a;
  background: var(--mint-pale);
  font-size: 13px;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #8d1d2c;
  background: #fff0f2;
}

.review-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 72px 0 30px;
  color: #d1d8e5;
  background: #0b1220;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #8f9bb0;
  font-size: 14px;
}

.footer-title {
  margin: 6px 0 17px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.cookie-link {
  color: #9eabbe;
  font-size: 14px;
}

.footer-links a:hover,
.cookie-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #778399;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal button {
  padding: 0;
  border: 0;
  cursor: pointer;
  color: inherit;
  background: transparent;
}

.cookie-banner {
  position: fixed;
  z-index: 1500;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.is-visible {
  display: block;
  animation: slide-up 260ms ease both;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 17px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 17px;
  font-size: 13px;
}

.cookie-actions .button--link {
  min-height: 44px;
  padding: 0 8px;
  color: var(--ink);
  background: transparent;
}

.modal {
  position: fixed;
  z-index: 1700;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(10, 18, 32, 0.62);
  backdrop-filter: blur(5px);
}

.modal.is-visible {
  display: grid;
  animation: fade-in 180ms ease both;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: min(700px, calc(100vh - 44px));
  padding: 34px;
  overflow-y: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal-card--preferences {
  width: min(100%, 620px);
}

.icon-button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 27px;
  line-height: 1;
}

.icon-button:hover {
  color: var(--ink);
  background: #f3f5f8;
}

.modal-kicker {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--mint-dark);
  background: var(--mint-pale);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-card h2 {
  max-width: 440px;
  margin: 20px 50px 12px 0;
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.modal-card > p {
  margin: 0;
  color: var(--muted);
}

.modal-actions {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.messenger-links {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.messenger-links a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.preference-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.preference {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.preference strong,
.preference span {
  display: block;
}

.preference strong {
  font-size: 14px;
}

.preference span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cdd4df;
  transition: background 180ms ease;
}

.switch-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.2);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked + .switch-track {
  background: var(--blue);
}

.switch input:checked + .switch-track::after {
  transform: translateX(20px);
}

.switch input:focus-visible + .switch-track {
  outline: 3px solid rgba(54, 92, 245, 0.25);
  outline-offset: 3px;
}

.switch input:disabled + .switch-track {
  background: var(--mint);
}

.mobile-cta {
  position: fixed;
  z-index: 900;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transform: translateY(140%);
  transition: transform 220ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta .button {
  min-height: 48px;
}

.page-hero {
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--canvas));
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.page-title {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 780;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.page-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.prose {
  max-width: 780px;
}

.prose h2,
.prose h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.prose h2 {
  margin: 56px 0 16px;
  font-size: 34px;
}

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

.prose h3 {
  margin: 34px 0 12px;
  font-size: 23px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callout {
  margin: 30px 0;
  padding: 23px;
  border-left: 4px solid var(--mint);
  border-radius: 0 14px 14px 0;
  background: var(--mint-pale);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.sidebar-card {
  position: sticky;
  top: 105px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h2 {
  margin: 0 0 9px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.sidebar-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .header-actions .button--secondary {
    display: none;
  }

  .hero-grid,
  .comparison-grid,
  .review-wrap {
    grid-template-columns: 1fr;
  }

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

  .campaign-shell {
    width: min(100%, 620px);
    margin: 0 auto;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .deliverable:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 78px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 20px 24px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
    box-shadow: var(--shadow-sm);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    min-height: 52px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav .button {
    margin-top: 16px;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions > .button {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

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

  .service-grid,
  .steps,
  .pricing-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

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

  .section-heading .section-copy {
    max-width: 680px;
  }

  .review-wrap {
    padding: 36px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 48px 0 50px;
  }

  .display {
    font-size: clamp(40px, 12.8vw, 58px);
  }

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

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .campaign-card {
    padding: 20px;
    border-radius: 22px;
  }

  .rules-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

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

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

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

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 310px;
    padding: 25px;
  }

.service-card h2,
.service-card h3 {
    margin-top: 40px;
  }

  .service-card .text-link {
    bottom: 24px;
    left: 25px;
  }

  .plan-preview {
    padding: 23px;
  }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .deliverable:first-child {
    grid-column: auto;
    min-height: 420px;
  }

  .review-wrap {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .review-form {
    padding: 20px;
  }

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

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

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

  .footer-brand {
    grid-column: auto;
  }

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

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 20px;
    border-radius: 18px;
  }

  .cookie-actions {
    display: grid;
  }

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

  .modal {
    align-items: end;
    padding: 10px;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 28px 20px 22px;
    border-radius: 22px;
  }

  .modal-card h2 {
    margin-right: 38px;
    font-size: 25px;
  }

  .icon-button {
    top: 15px;
    right: 15px;
  }

  .mobile-cta {
    display: block;
  }

  .page-hero {
    padding: 54px 0 48px;
  }

  .page-lead {
    font-size: 17px;
  }

  .prose h2 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
