/* Cyber Essentials Leeds — page-specific styles
   Built on Aurora Tech Support design tokens. */
@import url('./colors_and_type.css');

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Generic helpers ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--aurora-red);
  display: inline-block;
}
.eyebrow.on-dark { color: rgba(255,255,255,0.7); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--aurora-red); color: #fff;
  border: none; border-radius: 999px;
  padding: 15px 28px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-standard);
  text-decoration: none;
}
.btn-primary:hover { background: var(--aurora-red-hover); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-1);
  border: 1.5px solid var(--fg-1);
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600; font-size: 15px;
  transition: background var(--dur-base) var(--ease-standard);
}
.btn-secondary:hover { background: var(--aurora-slate-100); }

.phone-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--fg-1);
  font-size: 15px;
}
.phone-link svg { width: 16px; height: 16px; color: var(--aurora-red); }
.phone-link.on-dark { color: #fff; }

/* ---------- HERO ---------- */
.ce-hero {
  position: relative;
  background: var(--aurora-white);
  border-bottom: 1px solid var(--border-1);
  padding: 88px 0 96px;
  overflow: hidden;
}
.ce-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('./brand-pattern-tile.png');
  background-size: 160px auto;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
}
.ce-hero .wrap { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-breadcrumb {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-breadcrumb a { color: var(--fg-3); transition: color var(--dur-fast) var(--ease-standard); }
.hero-breadcrumb a:hover { color: var(--aurora-red); }
.hero-breadcrumb .sep { color: var(--fg-4); }
.hero-breadcrumb [aria-current="page"] { color: var(--fg-1); font-weight: 600; }

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--fg-1);
  margin: 0 0 24px;
  text-wrap: balance;
  text-transform: uppercase;
}
.hero-h1 .red { color: var(--aurora-red); }

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
}
.hero-trust .ti {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust .ti-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--fg-1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-trust .ti-k {
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-top: 6px;
}

/* Hero badge card */
.hero-badge-stack { position: relative; }
.hero-badge-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-brand-card);
  text-align: center;
}
.hero-badge-stack::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--aurora-charcoal);
  border-radius: 14px;
  background-image: url('./brand-pattern-tile.png');
  background-size: 110px auto;
  background-repeat: repeat;
}
.cert-badge {
  width: 168px;
  height: 168px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, #fff 60%, transparent 62%),
    conic-gradient(from -90deg, var(--aurora-red) 0 100%);
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--border-1);
}
.cert-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid var(--aurora-red);
}
.cert-badge-inner {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--aurora-charcoal);
  line-height: 0.95;
}
.cert-badge-inner .cb-cyber {
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--aurora-red);
  display: block;
}
.cert-badge-inner .cb-essentials {
  font-size: 30px;
  letter-spacing: -0.01em;
  display: block;
  margin-top: 4px;
}
.cert-badge-inner .cb-tick {
  display: block;
  width: 28px;
  height: 28px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: var(--aurora-red);
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--font-body);
}

.hero-badge-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 22px;
  margin-top: 4px;
  border-top: 1px solid var(--border-1);
  text-align: left;
}
.hero-badge-meta .m-k {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-badge-meta .m-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.hero-badge-meta .m-v small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--fg-3);
  display: block;
  letter-spacing: 0;
  margin-top: 2px;
}

/* ---------- Generic section ---------- */
.sec { padding: 104px 0; }
.sec.tight { padding: 80px 0; }
.sec-head {
  max-width: 760px;
  margin: 0 0 56px;
}
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--fg-1);
  margin: 0 0 18px;
  text-wrap: balance;
}
.sec-h2.on-dark { color: #fff; }
.sec-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 680px;
  margin: 0;
}
.sec-lede.on-dark { color: rgba(255,255,255,0.78); }
.sec-head.center .sec-lede { margin: 0 auto; }

/* ---------- What is CE — split block ---------- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.what-left .sec-h2 { margin-bottom: 24px; }
.what-left p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.what-left p strong { color: var(--fg-1); font-weight: 700; }
.what-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
}
.what-meta .wm {
  padding-right: 24px;
}
.what-meta .wm + .wm {
  padding-left: 24px;
  padding-right: 0;
  border-left: 1px solid var(--border-1);
}
.what-meta .wm-k {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 700;
  margin: 0 0 8px;
}
.what-meta .wm-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}

/* Levels card stack */
.levels-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.lvl-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.lvl-card.is-plus {
  background: var(--aurora-charcoal);
  border-color: transparent;
  color: #fff;
}
.lvl-tier {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--aurora-red);
  min-width: 44px;
}
.lvl-card.is-plus .lvl-tier { color: var(--aurora-red); }
.lvl-body .lvl-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  margin: 0 0 4px;
}
.lvl-card.is-plus .lvl-body .lvl-t { color: #fff; }
.lvl-body .lvl-s {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
}
.lvl-card.is-plus .lvl-body .lvl-s { color: rgba(255,255,255,0.78); }
.lvl-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--aurora-red-soft);
  color: var(--aurora-red);
  white-space: nowrap;
}
.lvl-card.is-plus .lvl-tag {
  background: rgba(200,22,29,0.18);
  color: #fff;
}

/* ---------- 5 controls grid ---------- */
.bg-bone { background: var(--aurora-bone); }
.controls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: 12px;
  overflow: hidden;
}
.ctrl {
  background: #fff;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.ctrl-n {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--aurora-red);
  margin-bottom: 4px;
}
.ctrl-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--aurora-red-soft);
  color: var(--aurora-red);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.ctrl-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.ctrl-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  margin: 0;
}
.ctrl-b {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

/* ---------- Process / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.step {
  padding: 36px 28px 32px;
  position: relative;
  border-left: 1px solid var(--border-1);
}
.step:first-child { border-left: none; }
.step-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--aurora-red);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  margin: 0 0 8px;
}
.step-b {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.step-meta {
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- Why Leeds — local angle ---------- */
.local {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.local-left .sec-h2 { margin-bottom: 22px; }
.local-left p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 18px;
}
.local-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.local-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-2);
}
.local-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--aurora-red);
}
.local-list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.local-right {
  background: var(--aurora-charcoal);
  color: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.local-right::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('./brand-pattern-tile.png');
  background-size: 130px auto;
  opacity: 0.5;
  pointer-events: none;
}
.local-right > * { position: relative; }
.lr-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.lr-pin svg { width: 14px; height: 14px; color: var(--aurora-red); }
.lr-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.lr-p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 24px;
}
.lr-meta {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lr-meta .mk {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-bottom: 6px;
}
.lr-meta .mv {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--aurora-charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.stats-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('./brand-pattern-tile.png');
  background-size: 140px auto;
  opacity: 0.45;
  pointer-events: none;
}
.stats-strip .wrap { position: relative; }
.stats-strip-head { max-width: 580px; margin: 0 0 44px; }
.stats-strip-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-row .st {
  padding: 24px 28px 0 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stats-row .st:first-child {
  padding-left: 0;
  border-left: none;
}
.stats-row .st-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 5.2vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stats-row .st-n em { font-style: normal; color: var(--aurora-red); }
.stats-row .st-k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 10px;
}
.stats-row .st-b {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  max-width: 220px;
  margin-top: 8px;
}

/* ---------- Pricing card row ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pr {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
}
.pr.is-recommended {
  border-color: var(--aurora-red);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pr.is-recommended::after {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--aurora-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.pr-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0 0 4px;
}
.pr-s {
  font-size: 13.5px;
  color: var(--fg-3);
  margin: 0 0 20px;
}
.pr-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 4px;
}
.pr-price small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-3);
  margin-left: 2px;
  letter-spacing: 0;
}
.pr-from {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 22px;
}
.pr ul {
  list-style: none;
  padding: 22px 0 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pr ul li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-2);
  padding-left: 26px;
  position: relative;
}
.pr ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--aurora-red);
}
.pr ul li::after {
  content: "";
  position: absolute;
  left: 3px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Testimonial ---------- */
.testi {
  background: var(--aurora-bone);
  padding: 96px 0;
}
.testi blockquote {
  margin: 0;
  max-width: 920px;
}
.testi-q {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.7;
  color: var(--aurora-red);
  margin-bottom: 18px;
  display: block;
}
.testi-t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 32px;
  text-wrap: balance;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-1);
}
.testi-who .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--aurora-slate-200);
  color: var(--fg-2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.testi-who .who-n {
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-1);
}
.testi-who .who-o {
  font-size: 13.5px;
  color: var(--fg-3);
  margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border-1);
}
details.faq-item {
  border-bottom: 1px solid var(--border-1);
  padding: 0;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  transition: color var(--dur-fast) var(--ease-standard);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--aurora-red); }
details.faq-item .faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  display: grid;
  place-items: center;
  color: var(--fg-1);
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard);
  position: relative;
}
details.faq-item .faq-icon::before,
details.faq-item .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
details.faq-item .faq-icon::before { width: 12px; height: 2px; }
details.faq-item .faq-icon::after { width: 2px; height: 12px; transition: transform var(--dur-base) var(--ease-standard); }
details.faq-item[open] .faq-icon {
  background: var(--aurora-red);
  border-color: var(--aurora-red);
  color: #fff;
}
details.faq-item[open] .faq-icon::after { transform: scaleY(0); }
details.faq-item .faq-body {
  padding: 0 0 28px;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
}
details.faq-item .faq-body p { margin: 0 0 14px; }
details.faq-item .faq-body p:last-child { margin-bottom: 0; }
details.faq-item .faq-body a { color: var(--aurora-red); font-weight: 600; }
details.faq-item .faq-body a:hover { text-decoration: underline; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--aurora-charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 104px 0;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('./brand-pattern-tile.png');
  background-size: 180px auto;
  opacity: 0.6;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(46,48,51,0.55) 70%, var(--aurora-charcoal) 100%);
  pointer-events: none;
}
.cta-banner .wrap { position: relative; text-align: center; }
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 26px;
  font-weight: 700;
}
.cta-eyebrow .ce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--status-ok);
  box-shadow: 0 0 0 3px rgba(43,168,74,0.22);
}
.cta-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 auto 22px;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 860px;
}
.cta-h em { font-style: normal; color: var(--aurora-red); }
.cta-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 36px;
}
.cta-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.btn-on-dark {
  background: #fff;
  color: var(--aurora-charcoal);
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--dur-base) var(--ease-standard);
}
.btn-on-dark:hover { background: var(--aurora-slate-100); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .what-grid { grid-template-columns: 1fr; gap: 48px; }
  .controls-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: none; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--border-1); }
  .local { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stats-row .st:nth-child(3) { padding-left: 0; border-left: none; }
  .pricing { grid-template-columns: 1fr; }
  .local-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 24px; }
  .sec { padding: 72px 0; }
  .ce-hero { padding: 64px 0 72px; }
  .hero-trust { grid-template-columns: 1fr; gap: 16px; }
  .controls-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none !important; border-top: 1px solid var(--border-1); }
  .step:first-child { border-top: none; }
  .stats-row { grid-template-columns: 1fr; gap: 24px; }
  .stats-row .st { padding: 0 !important; border-left: none !important; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn-primary { width: 100%; justify-content: center; }
  .testi-q { font-size: 72px; }
}
