@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../wp-content/uploads/elementor/google-fonts/fonts/poppins-pxieyp8kv8jhgfvrjjfecg.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../wp-content/uploads/elementor/google-fonts/fonts/poppins-pxibyp8kv8jhgfvrlej6z1xlfq.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../wp-content/uploads/elementor/google-fonts/fonts/poppins-pxibyp8kv8jhgfvrlcz7z1xlfq.woff2") format("woff2");
}

:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --ink: #08111f;
  --text: #354156;
  --muted: #687487;
  --line: #dfe6f0;
  --navy: #0b1220;
  --navy-2: #101b2e;
  --menu-blue: #0C1728;
  --blue: #1769ff;
  --blue-2: #0a4fd1;
  --cyan: #32d5ff;
  --green: #14b981;
  --gold: #f4a313;
  --gold-soft: #fff0c7;
  --shadow-sm: 0 10px 30px rgba(8, 17, 31, .08);
  --shadow-md: 0 24px 70px rgba(8, 17, 31, .14);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.skip-link:focus {
  left: 10px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  background: var(--menu-blue);
  box-shadow: none;
}

.header-inner {
  width: min(1200px, 90%);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.logo {
  height: 72px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 20px;
}

.logo img {
  width: auto;
  height: 32px;
  max-width: none;
}

.header-nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0;
}

.header-nav > a {
  color: #fff;
  transition: color .2s cubic-bezier(.68, .01, .58, .75), background-color .2s cubic-bezier(.68, .01, .58, .75);
}

.header-nav > a:not(.login-link, .btn-header) {
  padding: 0 22.5px;
}

.header-nav > a:hover {
  color: #248de9;
}

.header-nav .login-link {
  height: 72px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 25px;
  padding: 0;
  border-radius: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 72px;
}

.header-nav .login-link::before {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 14%, 82% 60%, 50% 100%, 18% 60%, 12% 14%);
  content: "";
}

.header-nav .login-link:hover {
  color: #248de9;
  background: transparent;
}

.header-nav .btn-header {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
  padding: 0 31px;
  border-radius: 10px;
  color: var(--menu-blue);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
}

.header-nav .btn-header:hover {
  color: #fff;
  background: #248de9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  transform: translateY(-1px);
}

.menu-open .menu-toggle span {
  transform: translateY(-1px) rotate(90deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3996ff);
  box-shadow: 0 14px 30px rgba(23, 105, 255, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-dark:hover {
  background: #15223a;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(50, 213, 255, .18), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(23, 105, 255, .26), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #0e1a2d 48%, #13294a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.18));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: 704px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  gap: 58px;
  align-items: center;
  padding: 82px 0 76px;
}

.eyebrow,
.kicker,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  color: #8a4b00;
  background: var(--gold-soft);
}

.kicker {
  padding: 7px 10px;
  color: var(--blue-2);
  background: #eaf3ff;
}

.hero h1 {
  max-width: 660px;
  margin: 22px 0 20px;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: #dbe7f8;
  font-size: clamp(18px, 2vw, 22px);
}

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

.center-actions {
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: #d8e5f6;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.command-center {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)),
    rgba(4, 11, 22, .55);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.command-center::before,
.command-center::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
}

.command-center::before {
  width: 230px;
  height: 230px;
  right: -48px;
  top: -48px;
  background: rgba(50, 213, 255, .16);
}

.command-center::after {
  width: 160px;
  height: 160px;
  left: -36px;
  bottom: -28px;
  background: rgba(244, 163, 19, .18);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border-radius: 12px 12px 0 0;
  color: #b8c7dd;
  background: #0d1727;
  font-size: 13px;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 50%;
  background: #64748b;
}

.dot:first-child {
  background: #ff6363;
}

.dot:nth-child(2) {
  background: #f5b529;
}

.dot:nth-child(3) {
  background: #34d399;
}

.filter-grid,
.data-table,
.base-hero-metric,
.hero-filter,
.hero-result-panel {
  background: #fff;
}

.base-hero-metric {
  padding: 18px 16px;
  border-bottom: 1px solid #e7edf5;
}

.base-hero-metric small {
  display: block;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.base-hero-metric strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

.base-hero-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
}

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

.filter-grid div {
  min-height: 70px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #f8fafc;
}

.filter-grid small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-grid b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 16px;
}

.hero-filter {
  padding: 16px;
}

.hero-filter-grid {
  display: grid;
  grid-template-columns: 1fr .7fr 1.15fr;
  gap: 10px;
}

.hero-filter label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-filter input,
.hero-filter select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  color: var(--ink);
  background-color: #f8fafc;
  font: 900 16px/1.2 Poppins, system-ui, sans-serif;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.hero-filter select {
  padding-right: 46px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2308111f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-size: 14px 14px;
}

.hero-filter input:focus,
.hero-filter select:focus {
  border-color: var(--blue-2);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(32, 143, 231, .16);
}

.hero-filter-hint {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 12px;
}

.hero-filter-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 10px;
  color: #08111f;
  background: linear-gradient(135deg, var(--gold), #ffba2f);
  box-shadow: 0 14px 28px rgba(249, 160, 15, .22);
  font: 950 15px/1 Poppins, system-ui, sans-serif;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hero-filter-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 32px rgba(249, 160, 15, .26);
}

.hero-filter-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.hero-filter-status {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.hero-filter-status:empty {
  display: none;
}

.hero-filter-status.is-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.hero-filter-status.is-loading::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #d9e4f2;
  border-top-color: var(--blue-2);
  border-radius: 999px;
  animation: spin .75s linear infinite;
}

.hero-filter-status.is-error {
  color: #b42318;
}

.hero-result-empty {
  padding: 16px;
  color: var(--text);
  font-size: 14px;
}

.hero-result-panel {
  padding: 0 16px 16px;
}

.hero-result-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-result-summary,
.hero-result-cta {
  min-height: 116px;
  border-radius: 12px;
}

.hero-result-summary {
  padding: 15px 16px;
  color: #fff;
  background: radial-gradient(circle at 92% 16%, rgba(32, 143, 231, .32), transparent 38%), linear-gradient(135deg, #071225, #14223a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-result-summary small {
  display: block;
  color: #9dd9ff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.hero-result-summary strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: clamp(34px, 4vw, 46px);
  line-height: .95;
  letter-spacing: -.02em;
}

.hero-result-summary span {
  display: block;
  margin-top: 7px;
  color: #dbeafe;
  font-size: 13px;
  line-height: 1.35;
}

.hero-result-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid #dfe7f2;
  background: #f8fafc;
}

.hero-result-note {
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}

.data-table {
  padding: 0;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr .9fr;
  gap: 12px;
  padding: 13px 12px;
  border-bottom: 1px solid #e7edf5;
  color: #27364c;
  font-size: 13px;
}

.row.header {
  border-radius: 8px 8px 0 0;
  color: #64748b;
  background: #f1f5f9;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-result-cta:empty {
  display: none;
}

.export-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f62, var(--green));
  box-shadow: 0 14px 28px rgba(20, 185, 129, .24);
  font-weight: 950;
}

.export-link:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.04);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

.signal-grid div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid #edf1f7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 26px rgba(8, 17, 31, .04);
}

.signal-grid div::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #14b981, #0b8f63);
  box-shadow: 0 10px 22px rgba(20, 185, 129, .18);
  font-size: 15px;
  font-weight: 950;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  font-size: 18px;
}

.signal-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 86px 0;
  background: #fff;
}

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

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.final-cta h2 {
  margin: 14px 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section p,
.final-cta p {
  color: var(--text);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 104px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article,
.feature-grid article,
.audience-cards article,
.plan,
.faq details,
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
}

.steps span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 950;
}

.steps h3,
.feature-grid h3,
.audience-cards h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.steps p,
.feature-grid p,
.audience-cards p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

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

.feature-grid article {
  padding: 24px;
}

.case-section {
  background: #fff;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 33, 58, .96), rgba(15, 30, 53, .96)),
    #14213a;
  box-shadow: var(--shadow-md);
}

.case-copy h2,
.case-copy p {
  color: #fff;
}

.case-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

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

.case-flow article {
  min-height: 166px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}

.case-flow span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #14213a;
  background: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.case-flow strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.case-flow p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
  font-size: 13px;
}

.video-section {
  background: #fff;
}

.video-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 46px;
  align-items: center;
}

.video-frame {
  overflow: hidden;
  border: 1px solid #cad5e5;
  border-radius: 16px;
  background: #000;
  box-shadow: var(--shadow-md);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-under-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.video-under-cta .btn {
  min-width: 220px;
}

.proof-card {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--green);
}

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

.proof-card span {
  margin-top: 4px;
  color: var(--text);
  font-size: 15px;
}

.proof-section {
  background: linear-gradient(180deg, #fff, #f7f9fd);
}

.proof-grid {
  align-items: start;
}

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

.audience-cards article {
  padding: 22px;
}

.testimonials-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 105, 255, .08), transparent 30%),
    #fff;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 8px 18px rgba(244, 163, 19, .18);
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.testimonial-grid figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.pricing {
  background:
    radial-gradient(circle at 16% 8%, rgba(23, 105, 255, .08), transparent 27%),
    linear-gradient(180deg, #fff, #f5f8fc);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.plan.featured {
  border: 2px solid var(--blue);
  z-index: 1;
  transform: none;
  box-shadow: 0 26px 74px rgba(23, 105, 255, .18);
}

.badge {
  padding: 6px 10px;
  color: #8a4b00;
  background: var(--gold-soft);
}

.discount-chip {
  display: inline-flex;
  width: fit-content;
  margin: 4px 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f62, var(--green));
  box-shadow: 0 12px 24px rgba(20, 185, 129, .2);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .02em;
}

.plan h3 {
  margin: 18px 0 0;
  font-size: 25px;
}

.price {
  margin: 12px 0 6px;
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.price small {
  font-size: 18px;
}

.plan p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
}

.plan ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.plan li {
  color: var(--text);
  font-size: 15px;
}

.plan li::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
  margin-right: 8px;
}

.plan .btn {
  width: 100%;
  margin-top: 0;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  align-items: start;
}

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

.faq details {
  overflow: hidden;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 950;
}

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

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

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

.faq details p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
}

.final-cta {
  padding: 88px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(50, 213, 255, .16), transparent 34%),
    linear-gradient(135deg, #08111f, #13294a);
}

.final-cta h2 {
  max-width: 840px;
  margin-inline: auto;
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: #d9e6f8;
}

.site-footer {
  padding: 30px 0;
  color: #cbd7e8;
  background: #08111f;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-grid nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-grid a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1025px) {
  .header-inner {
    width: min(1200px, 90%);
    height: 68px;
    flex-wrap: wrap;
  }

  .logo {
    height: 68px;
    padding-right: 0;
  }

  .logo img {
    height: 28px;
  }

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

  .header-nav {
    display: none;
    width: 100%;
    height: auto;
    flex: 0 0 100%;
    padding: 6px 0 18px;
    background: var(--menu-blue);
    line-height: 1.2;
  }

  .menu-open .header-inner {
    height: auto;
  }

  .menu-open .header-nav {
    display: grid;
  }

  .header-nav > a:not(.login-link, .btn-header),
  .header-nav .login-link {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 13px 0;
    line-height: 1.2;
  }

  .header-nav .btn-header {
    width: 100%;
    height: 50px;
    margin: 8px 0 0;
  }

  .hero-grid,
  .split,
  .case-panel,
  .video-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    gap: 18px;
    align-items: start;
  }

  .hero-grid {
    min-height: 0;
    padding: 56px 0 64px;
  }

  .command-center {
    max-width: 680px;
    margin-inline: auto;
  }

  .section-copy {
    position: static;
  }

  .video-copy {
    display: contents;
  }

  .video-copy .kicker {
    order: 1;
  }

  .video-copy h2 {
    order: 2;
  }

  .video-copy > p {
    order: 3;
  }

  .video-media {
    order: 4;
    margin-top: 2px;
  }

  .video-copy .proof-card {
    order: 5;
    margin-top: 0;
  }

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

  .plan.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .lead {
    font-size: 18px;
  }

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

  .trust-row span {
    width: 100%;
  }

  .command-center {
    padding: 12px;
    border-radius: 14px;
  }

  .panel-head {
    flex-direction: column;
    gap: 8px;
  }

  .filter-grid,
  .hero-filter-grid,
  .hero-result-top,
  .signal-grid,
  .feature-grid,
  .case-flow,
  .testimonial-grid,
  .audience-cards,
  .plans {
    grid-template-columns: 1fr;
  }

  .case-panel {
    padding: 22px;
  }

  .case-section {
    padding-bottom: 36px;
  }

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

  .row.header {
    display: none;
  }

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

  .steps span {
    grid-row: auto;
  }

  .steps h3,
  .steps p {
    grid-column: auto;
  }

  .section {
    padding: 60px 0;
  }

  .video-section {
    padding: 34px 0 56px;
  }

  .video-grid {
    gap: 0;
  }

  .video-under-cta {
    margin-top: 12px;
    margin-bottom: 22px;
  }

  .video-copy .kicker {
    margin-bottom: 14px;
  }

  .video-copy h2 {
    margin: 0 0 12px;
  }

  .video-copy > p {
    margin: 0 0 18px;
  }

  .video-copy .proof-card {
    margin-top: 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .final-cta {
    padding: 64px 0;
  }
}
