:root {
  --navy: #071b33;
  --navy-2: #0c2a4d;
  --blue: #1683ff;
  --blue-2: #0b65d8;
  --ink: #182233;
  --muted: #617086;
  --line: #dce5ef;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 27, 51, 0.12);
  --shadow-strong: 0 28px 70px rgba(7, 27, 51, 0.18);
  --shadow-blue: 0 22px 48px rgba(22, 131, 255, 0.22);
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(22, 131, 255, 0.08), transparent 34rem),
    var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; color: var(--navy); line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.45rem, 5vw, 4.85rem); }
h2 { font-size: clamp(2rem, 3vw, 3.15rem); }
h3 { font-size: 1.16rem; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.section-pad { padding: 88px 0; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.steps article:nth-child(2), .service-grid article:nth-child(2) { transition-delay: 0.06s; }
.steps article:nth-child(3), .service-grid article:nth-child(3) { transition-delay: 0.12s; }
.steps article:nth-child(4), .service-grid article:nth-child(4) { transition-delay: 0.18s; }
.steps article:nth-child(5), .service-grid article:nth-child(5) { transition-delay: 0.24s; }
.steps article:nth-child(6), .service-grid article:nth-child(6) { transition-delay: 0.3s; }
.service-grid article:nth-child(7) { transition-delay: 0.36s; }
.service-grid article:nth-child(8) { transition-delay: 0.42s; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 239, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(7, 27, 51, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  letter-spacing: 0;
  box-shadow: 0 12px 22px rgba(7, 27, 51, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand:hover .brand-mark { transform: rotate(-3deg) scale(1.04); box-shadow: var(--shadow-blue); }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.95rem;
  color: #33445c;
}
.primary-nav a {
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding: 8px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: right 0.2s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus::after { right: 0; }
.primary-nav a:hover, .primary-nav a:focus { color: var(--blue-2); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::before, .btn:focus::before { transform: translateX(120%); }
.btn:hover, .btn:focus { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), #0c72e8); color: var(--white); box-shadow: 0 12px 26px rgba(22, 131, 255, 0.26); }
.btn-primary:hover, .btn-primary:focus { background: var(--blue-2); }
.btn-secondary { background: rgba(255, 255, 255, 0.94); color: var(--navy); border-color: rgba(255, 255, 255, 0.42); }
.btn-secondary:hover, .btn-secondary:focus { box-shadow: 0 14px 32px rgba(7, 27, 51, 0.14); }
.btn-large { min-height: 54px; padding: 15px 22px; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 131, 255, 0.34), transparent 21rem),
    radial-gradient(circle at 16% 82%, rgba(129, 189, 255, 0.18), transparent 22rem),
    linear-gradient(120deg, rgba(7, 27, 51, 0.98), rgba(12, 42, 77, 0.92));
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% 42%;
  height: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: rotate(-9deg);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: softPulse 7s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: center;
}
.hero h1, .hero h2 { color: var(--white); }
.hero h1 {
  text-wrap: balance;
  text-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}
.hero-text {
  max-width: 670px;
  color: #dbe8f7;
  font-size: 1.2rem;
}
.eyebrow {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.hero .eyebrow { color: #81bdff; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 760px;
}
.trust-strip span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #eef6ff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.trust-strip span:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 189, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.profile-panel {
  position: relative;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(22, 131, 255, 0.4)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  animation: floatPanel 6s ease-in-out infinite;
}
.profile-panel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 18px;
  background: rgba(22, 131, 255, 0.14);
  filter: blur(24px);
}
.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.panel-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.status-pill {
  padding: 7px 9px;
  border-radius: 99px;
  background: #e8f3ff;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(22, 131, 255, 0.12);
}
.mini-map {
  position: relative;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 131, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(22, 131, 255, 0.1) 1px, transparent 1px),
    #eef6ff;
  background-size: 38px 38px;
  box-shadow: inset 0 0 0 1px rgba(22, 131, 255, 0.08);
}
.route {
  position: absolute;
  left: 16%;
  right: 18%;
  top: 53%;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), #6cb5ff);
  transform: rotate(-18deg);
  box-shadow: 0 0 22px rgba(22, 131, 255, 0.48);
  animation: routeGlow 2.8s ease-in-out infinite;
}
.pin {
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 7px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
  box-shadow: 0 10px 18px rgba(7, 27, 51, 0.18);
  animation: pinBounce 3.2s ease-in-out infinite;
}
.pin-one { left: 15%; top: 58%; }
.pin-two { right: 22%; top: 30%; animation-delay: 0.55s; }
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.check-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}
.check-list i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
}
.check-list i::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  left: 4px;
  top: 5px;
}

.two-col, .pricing-grid, .audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}
.problem, .included, .comparison, .audit-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 252, 0.95)),
    var(--soft);
}
.pill-grid, .why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill-grid span, .why-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pill-grid span:hover, .why-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 131, 255, 0.28);
  box-shadow: var(--shadow);
}
.solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 46px;
  padding: 42px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 14%, rgba(22, 131, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, var(--navy), #0a2748);
  color: #dce9f7;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  pointer-events: none;
}
.solution-card h2, .solution-card h3 { color: var(--white); }
.access-box {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.access-box:hover { transform: translateY(-4px); border-color: rgba(129, 189, 255, 0.36); }
.icon-lock {
  display: block;
  width: 34px;
  height: 26px;
  margin-bottom: 16px;
  border: 4px solid #81bdff;
  border-radius: 6px;
  position: relative;
}
.icon-lock::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -21px;
  width: 16px;
  height: 18px;
  border: 4px solid #81bdff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.steps, .service-grid, .compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps article, .service-grid article, .compare-grid article, .price-card, .lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.steps article::before, .service-grid article::before, .compare-grid article::before, .price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #81bdff);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.steps article:hover, .service-grid article:hover, .compare-grid article:hover, .price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 131, 255, 0.26);
  box-shadow: var(--shadow-strong);
}
.steps article:hover::before, .service-grid article:hover::before, .compare-grid article:hover::before, .price-card:hover::before {
  opacity: 1;
}
.steps article { padding: 24px; }
.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(22, 131, 255, 0.24);
}
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid article { padding: 24px; }
.service-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8f3ff, #f7fbff);
  position: relative;
  box-shadow: 0 12px 22px rgba(22, 131, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-grid article:hover .service-icon { transform: rotate(-3deg) scale(1.06); box-shadow: var(--shadow-blue); }
.service-icon::before, .service-icon::after { content: ""; position: absolute; background: var(--blue); }
.audit::before { width: 22px; height: 18px; left: 10px; top: 12px; border: 3px solid var(--blue); background: transparent; border-radius: 4px; }
.audit::after { width: 12px; height: 3px; left: 24px; top: 28px; transform: rotate(45deg); }
.write::before { width: 23px; height: 4px; left: 10px; top: 19px; transform: rotate(-35deg); }
.write::after { width: 7px; height: 7px; right: 8px; top: 11px; border-radius: 2px; }
.tools::before { width: 24px; height: 6px; left: 9px; top: 18px; transform: rotate(35deg); border-radius: 8px; }
.tools::after { width: 8px; height: 8px; left: 25px; top: 10px; border-radius: 50%; }
.posts::before { width: 22px; height: 24px; left: 10px; top: 9px; border-radius: 4px; }
.posts::after { width: 12px; height: 3px; left: 15px; top: 17px; box-shadow: 0 7px 0 var(--white); background: var(--white); }
.photos::before { width: 24px; height: 18px; left: 9px; top: 13px; border-radius: 4px; }
.photos::after { width: 7px; height: 7px; left: 15px; top: 17px; background: var(--white); border-radius: 50%; }
.reviews::before { width: 24px; height: 20px; left: 9px; top: 10px; border-radius: 4px; }
.reviews::after { width: 9px; height: 9px; left: 16px; top: 15px; background: var(--white); border-radius: 50%; }
.replies::before { width: 26px; height: 18px; left: 8px; top: 11px; border-radius: 6px; }
.replies::after { width: 10px; height: 10px; left: 12px; top: 24px; transform: rotate(45deg); }
.calendar::before { width: 24px; height: 24px; left: 9px; top: 9px; border-radius: 4px; }
.calendar::after { width: 24px; height: 4px; left: 9px; top: 15px; background: var(--white); }

.price-card {
  padding: 30px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, rgba(22, 131, 255, 0.5), rgba(7, 27, 51, 0.08)) border-box;
  border: 1px solid transparent;
}
.plan-name {
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}
.price {
  margin: 10px 0;
  color: var(--navy);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 12px 28px rgba(22, 131, 255, 0.11);
}
.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}
.no-contract { font-weight: 900; }
.price-card ul, .compare-grid ul {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}
.price-card li, .compare-grid li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
}
.price-card li::before, .compare-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}
.compare-grid { grid-template-columns: 1fr 1fr; }
.compare-grid article { padding: 28px; }
.compare-grid .after { border-color: rgba(22, 131, 255, 0.42); }
.compare-grid .after h3 { color: var(--blue-2); }

.audit-grid { align-items: center; }
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  box-shadow: var(--shadow-strong);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid #cdd9e6;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: 3px solid rgba(22, 131, 255, 0.18);
  border-color: var(--blue);
  box-shadow: 0 12px 22px rgba(22, 131, 255, 0.08);
  transform: translateY(-1px);
}
.lead-form .full, .lead-form button { grid-column: 1 / -1; }
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.form-note code {
  padding: 2px 5px;
  background: #e8f3ff;
  border-radius: 5px;
}

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
details:hover, details[open] {
  border-color: rgba(22, 131, 255, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style-position: outside;
}
details p { margin: 12px 0 0; color: var(--muted); }

.page-hero {
  background:
    radial-gradient(circle at 85% 0%, rgba(22, 131, 255, 0.16), transparent 22rem),
    var(--soft);
  padding-top: 110px;
  padding-bottom: 56px;
}
.legal-content {
  padding: 54px 0 90px;
}
.legal-content h2 {
  margin-top: 30px;
  font-size: 1.45rem;
}
.legal-updated {
  margin-top: 34px;
  color: var(--muted);
}

.site-footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(22, 131, 255, 0.2), transparent 24rem),
    var(--navy);
  color: #c6d5e6;
  padding: 42px 0 22px;
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes softPulse {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50% { opacity: 0.78; transform: scale(1.08); }
}

@keyframes routeGlow {
  0%, 100% { opacity: 0.86; }
  50% { opacity: 1; box-shadow: 0 0 34px rgba(22, 131, 255, 0.72); }
}

@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50% { transform: rotate(-45deg) translate(3px, -3px); }
}
.site-footer a { color: #eaf3ff; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus { color: #81bdff; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.footer-brand { color: var(--white); margin-bottom: 12px; }
.footer-brand .brand-mark { background: var(--blue); }
.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
}
.footer-cookie-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #eaf3ff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.footer-cookie-link:hover, .footer-cookie-link:focus {
  color: #81bdff;
}
.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(220, 229, 239, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, rgba(22, 131, 255, 0.45), rgba(7, 27, 51, 0.16)) border-box;
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.24);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}
.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions a {
  color: var(--blue-2);
  font-weight: 800;
  text-decoration: none;
}
.cookie-actions a:hover, .cookie-actions a:focus {
  text-decoration: underline;
}
.cookie-btn {
  min-height: 42px;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .primary-nav.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a { width: 100%; padding: 11px 8px; }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .two-col, .pricing-grid, .audit-grid, .solution-card {
    grid-template-columns: 1fr;
  }
  .service-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-card { padding: 30px; }
  .profile-panel { animation: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 62px 0; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.9rem; }
  .hero-actions, .trust-strip, .steps, .service-grid, .compare-grid, .lead-form {
    grid-template-columns: 1fr;
  }
  .hero-actions { display: grid; }
  .trust-strip { display: grid; }
  .profile-panel { padding: 18px; }
  .mini-map { height: 205px; }
  .lead-form .full, .lead-form button { grid-column: auto; }
  .price { font-size: 3.1rem; }
  .footer-grid { display: grid; }
  .site-footer nav { display: grid; }
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

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