/* ==========================================================================
   MaxGuard — site stylesheet
   Hand-written replacement for the previous WordPress/Elementor build.
   Sections: fonts, tokens, reset, layout, header, buttons, components,
             page-specific blocks, footer, responsive.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (self-hosted variable subsets — no external requests)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-tight-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-tight-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy: #253053;
  --blue: #304cb2;
  --blue-light: #405ecb;
  --gold: #f0c14b;
  --gold-border: rgba(146, 121, 36, 0.5);
  --ink: #13242a;

  /* Surfaces */
  --white: #fff;
  --surface-alt: #f8f9fd;
  --surface-pricing: #f5f6fb;
  --surface-footer: #f2f8ff;

  /* Text */
  --text: var(--navy);
  --text-muted: rgba(37, 48, 83, 0.7);
  --text-soft: rgba(37, 48, 83, 0.8);
  --text-grey: #7a7a7a;
  --on-dark: #fff;
  --on-dark-muted: rgba(255, 255, 255, 0.7);

  /* Lines */
  --border: #bac2db;
  --border-soft: #d2dbe4;
  --border-faint: #d4d4d4;

  /* Type */
  --font-head: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  /* Metrics */
  --container: 1150px;
  --radius: 8px;
  --radius-lg: 10px;
  --header-h: 93px;

  /* Elevation */
  --shadow-card: 0 8px 40px -2px rgba(6, 12, 59, 0.07);
  --shadow-soft: 0 4px 4px rgba(168, 179, 216, 0.25);
  --shadow-hover: 0 0 26px 0 rgba(222, 222, 222, 0.5);
}

/* --------------------------------------------------------------------------
   3. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* Offset in-page anchors so the fixed header never covers a target heading. */
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}

h1 { font-size: 42px; line-height: 1.15; }
h2 { font-size: 34px; line-height: 1.375; }
h3 { font-size: 24px; line-height: 32px; }
h4 { font-size: 20px; line-height: 25px; }

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease, background-color .25s ease; }

img { max-width: 100%; height: auto; border: 0; }

ul, ol { margin: 0; padding: 0; }
ul { list-style: none; }

button { font: inherit; color: inherit; }

hr { border: 0; border-top: 1px solid var(--border-soft); margin: 40px 0; }

::selection { background: var(--blue); color: #fff; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 3px; }

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

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 100000;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 80px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--surface-alt); }
.section--blue { background: var(--blue); color: var(--on-dark); }
.section--blue h2, .section--blue h3 { color: var(--on-dark); }

.section__head { max-width: 780px; margin: 0 auto 50px; text-align: center; }
.section__head p { color: var(--text-muted); }
.section__head--left { margin-inline: 0; text-align: left; }

/* Gradient rule under a section heading (carried over from the old theme). */
.rule-heading { position: relative; padding-bottom: 35px; margin-bottom: 10px; }
.rule-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 114px;
  height: 4px;
  background: linear-gradient(243.85deg, var(--blue) 38.47%, var(--blue-light) 83.2%);
  border-radius: 2px;
}
.section__head--left .rule-heading::after { left: 0; transform: none; }

.lede { font-size: 18px; line-height: 30px; color: var(--text-muted); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* Two-column intro split with a vertical divider ("What's MaxGuard?"). */
.split { display: grid; grid-template-columns: 1.15fr 1fr; }
.split__main { padding-right: 44px; }
.split__main p { font-size: 16px; line-height: 31.5px; color: var(--text-muted); }
.split__side { border-left: 1px solid #e0e8f3; padding-left: 60px; }

/* Check-square bullet lists (capabilities, pricing features). */
.check-list li {
  position: relative;
  padding: 0 0 16px 30px;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1' y='1' width='14' height='14' rx='2.5' fill='none' stroke='%23304db1' stroke-width='1.5'/%3E%3Cpath d='M4.5 8.2 7 10.7l4.5-5' fill='none' stroke='%23304db1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9000;
  background: var(--white);
  padding: 15px 0;
  transition: padding .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck { padding: 10px 0; box-shadow: 0 2px 18px rgba(37, 48, 83, 0.14); }

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.site-logo { display: inline-flex; flex: 0 0 auto; }
.site-logo img { width: 210px; max-width: 100%; }

.nav__list { display: flex; align-items: center; }

.nav__link {
  position: relative;
  display: inline-block;
  padding: 12px 15px;
  font-size: 16px;
  color: var(--navy);
  white-space: nowrap;
}
.nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(37, 48, 83, 0.5);
}
.nav__item:first-child .nav__link::before { display: none; }
.nav__link:hover { font-weight: 700; }

/* Last nav item renders as the gold call-to-action. */
.nav__item--cta { margin-left: 50px; }
.nav__item--cta .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 13px 0 15px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.nav__item--cta .btn__chev { width: 26px; height: 26px; flex-basis: 26px; }
.nav__item--cta .btn__chev svg { width: 11px; height: 11px; }
.nav__item--cta .nav__link::before { display: none; }
.nav__item--cta .nav__link:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px; height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 30px; height: 3px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-backdrop { display: none; }

/* Push page content clear of the fixed header. */
.site-main { padding-top: var(--header-h); }
.site-main--flush { padding-top: var(--header-h); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 30px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn:active { transform: translateY(1px); }

/* Circular chevron that sits inside the button. */
.btn__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  flex: 0 0 30px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: inherit;
}
.btn__chev svg { width: 12px; height: 12px; fill: currentColor; }
.btn:hover .btn__chev { background: #fff; color: var(--ink); border-color: #fff; }

.btn--sm { padding: 12px 18px 12px 22px; font-size: 16px; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--gold); color: var(--ink); border-color: var(--gold-border); }
.btn--outline .btn__chev { background: var(--navy); border-color: var(--navy); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #00114a;
  /* Match the complete vertical color profile of the artwork's left edge. */
  background-image: linear-gradient(
    180deg,
    #0032c8 0%,
    #0034ce 13%,
    #0036ca 38%,
    #0031cc 63%,
    #002cbc 88%,
    #012aaa 100%
  );
  background-size: 100% 828px;
  background-position: top;
  background-repeat: no-repeat;
  color: var(--on-dark);
  padding: 145px 0 250px;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  /* Match the artwork's navy right edge, then feather it into the left-edge
     palette so the lower hero has no hard 50/50 seam. */
  background: linear-gradient(
    180deg,
    #011146 0%,
    #01145f 13%,
    #011149 25%,
    #00124a 50%,
    #00114a 75%,
    #011150 100%
  ) top / 100% 828px no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 36%, #000 64%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 36%, #000 64%, #000 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: min(100%, 1899px);
  height: auto;
  aspect-ratio: 1899 / 828;
  transform: translateX(-50%);
  pointer-events: none;
  background: url('../img/Home-banner-1.png') center / 100% 100% no-repeat;
  /*
   * Width-based sizing keeps the complete left, top, and right edges visible.
   * The source aspect ratio is preserved, the image is never upscaled beyond
   * its native width, and only its bottom may be clipped by the hero.
   */
}
@media (min-width: 768px) and (max-width: 1279px) {
  .hero {
    padding: 30px 0;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 49, 172, 0.82) 0%, rgba(0, 37, 132, 0.58) 55%, rgba(0, 16, 60, 0) 85%),
      url('../img/Home-banner-1.png') center / 100% 100% no-repeat;
  }
}
@media (min-width: 1280px) and (max-width: 1899px) {
  .hero { padding: 60px 0 80px; }
}
.hero__inner { max-width: 690px; position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 16, 68, 0.24);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p { color: var(--on-dark-muted); font-size: 16px; line-height: 29px; margin-bottom: 26px; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 13, 57, 0.18);
  color: #fff;
}
.hero .btn--outline:hover { border-color: var(--gold-border); background: var(--gold); color: var(--ink); }
.hero .hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  max-width: none;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}

/* Compact hero used by the interior/legal pages. */
/* Shared interior hero — deep navy field, twin radial glows, a masked
   engineering grid, and a diagonal hand-off into the white page below.
   Used by the legal/utility pages (.page-hero) and the blog (.blog-hero). */
.page-hero,
.blog-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 14%, rgba(83, 128, 255, 0.34), transparent 30%),
    radial-gradient(circle at 10% 86%, rgba(57, 209, 196, 0.15), transparent 27%),
    linear-gradient(118deg, #04112f 0%, #09265a 48%, #173f9f 100%);
}
.page-hero::before,
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(130% 105% at 50% 0%, #000 42%, transparent 88%);
  mask-image: radial-gradient(130% 105% at 50% 0%, #000 42%, transparent 88%);
}
.page-hero::after,
.blog-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: linear-gradient(176deg, transparent 49%, #fff 50%);
}

.page-hero { text-align: center; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.page-hero p {
  color: rgba(238, 244, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 700px;
}
/* Gradient hairline that anchors the centred heading. */
.page-hero .container::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 30px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #52e6b4, #8fb2ff);
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.card:hover { box-shadow: var(--shadow-card); border-color: #fff; transform: translateY(-2px); }
.card img { margin-bottom: 18px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 17px; line-height: 27px; }
.cloaking-software__summary {
  max-width: 900px;
  margin: 38px auto 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 29px;
  text-align: center;
}

/* Protection cards ("Stop abusive users"). */
.protection-section {
  position: relative;
  isolation: isolate;
  padding-bottom: 24px;
}
.protection-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 54px;
  background:
    radial-gradient(circle at 8% 18%, rgba(64, 94, 203, 0.11), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(240, 193, 75, 0.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 48%, #fbfcff 100%);
}
.protection-section__head {
  max-width: 850px;
  margin-bottom: 42px;
}
.protection-section__head p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 28px;
}
.protection-section .container { max-width: 1380px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(48, 76, 178, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.section-kicker--dark {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.protection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 1 calc(20% - 14.4px);
  min-width: 0;
  min-height: 380px;
  padding: 24px;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(250, 252, 255, 0.94));
  border: 1px solid rgba(48, 76, 178, 0.15);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(28, 48, 107, 0.07);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #6380e3 70%, var(--gold));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .35s ease;
}
.tile::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -72px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 94, 203, 0.1), rgba(64, 94, 203, 0) 68%);
  pointer-events: none;
}
.tile:hover {
  border-color: rgba(48, 76, 178, 0.28);
  box-shadow: 0 20px 46px rgba(28, 48, 107, 0.13);
  transform: translateY(-6px);
}
.tile:hover::before { transform: scaleX(1); }
.tile__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 22px;
}
.tile__icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(48, 76, 178, 0.12);
  border-radius: 20px;
  background: linear-gradient(145deg, #f3f7ff, #fff);
  box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(48, 76, 178, 0.09);
}
.tile__icon img {
  width: 64px;
  height: 57px;
  margin: 0;
  object-fit: contain;
}
.tile__index {
  color: rgba(48, 76, 178, 0.26);
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.tile h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 27px;
}
.tile p {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 22px;
}
.tile__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #33498e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.tile__tag::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(48, 76, 178, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

/* Three-step traffic decision flow. */
.process-section { padding-top: 110px; }
.process-grid { gap: 28px; counter-reset: process; }
.process-step {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 36px 30px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #dbe4f4;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(37, 48, 83, 0.07);
}
.process-step::after {
  content: "";
  position: absolute;
  inset: auto -44px -64px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 76, 178, 0.1), transparent 68%);
}
.process-step__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(48, 76, 178, 0.22);
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.process-step img { width: 132px; height: 118px; margin: 8px auto 24px; object-fit: contain; }
.process-step h3 { margin-bottom: 12px; font-size: 23px; line-height: 29px; }
.process-step p { margin: 0; color: var(--text-muted); font-size: 16px; line-height: 25px; }

/* Before-versus-after outcomes table. */
.comparison-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(64, 94, 203, 0.1), transparent 26%),
    linear-gradient(180deg, #f8faff 0%, #f3f6fc 100%);
}
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #d4deee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(37, 48, 83, 0.1);
  -webkit-overflow-scrolling: touch;
}
.outcome-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
}
.outcome-table th,
.outcome-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #e1e7f1;
  font-size: 15px;
  line-height: 23px;
  text-align: left;
  vertical-align: middle;
}
.outcome-table thead th {
  padding-block: 24px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
}
.outcome-table thead th:first-child { width: 20%; border-radius: 17px 0 0; }
.outcome-table thead th:last-child { border-radius: 0 17px 0 0; }
.outcome-table tbody th {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 750;
}
.outcome-table tbody td {
  position: relative;
  width: 40%;
  padding-left: 58px;
  color: var(--text-soft);
}
.outcome-table tbody .outcome-table__without { background: #fff8f8; }
.outcome-table tbody .outcome-table__with { background: #f4f8ff; color: #25386f; }
.outcome-table tbody td::before {
  position: absolute;
  top: 50%;
  left: 24px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 900;
}
.outcome-table tbody .outcome-table__without::before {
  content: "\00D7";
  background: rgba(190, 44, 57, 0.11);
  color: #b52e3a;
}
.outcome-table tbody .outcome-table__with::before {
  content: "\2713";
  background: rgba(48, 76, 178, 0.12);
  color: var(--blue);
}
.outcome-table tbody tr:last-child th,
.outcome-table tbody tr:last-child td { border-bottom: 0; }
.comparison-section__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 26px 30px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
}
.comparison-section__cta p {
  margin: 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}
.comparison-section__cta .btn { flex: 0 0 auto; }

/* Six-card Key Features section adapted to MaxGuard's product capabilities. */
.key-features-section {
  background:
    radial-gradient(circle at 94% 10%, rgba(64, 94, 203, 0.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.key-features-grid { gap: 28px; }
.key-feature-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 32px;
  border: 1px solid #d6e0f0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(37, 48, 83, 0.07);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.key-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #6c87e7 72%, var(--gold));
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .35s ease;
}
.key-feature-card:hover {
  border-color: rgba(48, 76, 178, 0.3);
  box-shadow: 0 22px 50px rgba(37, 48, 83, 0.13);
  transform: translateY(-5px);
}
.key-feature-card:hover::before { transform: scaleX(1); }
.key-feature-card__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border: 1px solid rgba(48, 76, 178, 0.13);
  border-radius: 20px;
  background: linear-gradient(145deg, #f1f5ff, #fff);
  box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(48, 76, 178, 0.08);
}
.key-feature-card__icon img {
  width: 58px;
  height: 58px;
  margin: 0;
  object-fit: contain;
}
.key-feature-card__label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.key-feature-card h3 {
  margin-bottom: 13px;
  font-size: 23px;
  line-height: 29px;
}
.key-feature-card p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 24px;
}
.key-feature-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #e3e9f3;
}
.key-feature-card li {
  position: relative;
  padding-left: 25px;
  color: #344778;
  font-size: 13px;
  font-weight: 650;
  line-height: 20px;
}
.key-feature-card li::before {
  content: "\2713";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(48, 76, 178, 0.11);
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}
.key-features__disclaimer {
  max-width: 960px;
  margin: 30px auto 0;
  color: rgba(37, 48, 83, 0.58);
  font-size: 12px;
  line-height: 19px;
  text-align: center;
}

/* Feature cards with the blue underline on hover. */
.feature {
  padding: 35px 25px;
  text-align: center;
  border-bottom: 6px solid transparent;
  border-radius: var(--radius-lg);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.feature:hover { box-shadow: var(--shadow-hover); border-bottom-color: var(--blue); }
.feature img { height: 68px; width: auto; margin-bottom: 20px; }
.feature h3 { font-size: 21px; line-height: 27px; margin-bottom: 16px; }
.feature p { font-size: 18px; line-height: 28px; color: var(--text-muted); margin: 0; }

/* Service cards — boxed on the grey band. */
.service {
  text-align: center;
  padding: 40px 30px 44px;
  background: #fff;
  border: 1px solid #cbd7ed;
  border-radius: var(--radius-lg);
  transition: box-shadow .3s ease;
}
.service:hover { box-shadow: var(--shadow-card); }
.service img { height: 68px; width: auto; margin-bottom: 22px; }
.service h3 { margin-bottom: 6px; }
.service__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .9;
  margin-top: 6px;
}
.service p { color: var(--text-grey); font-size: 17px; line-height: 27px; margin-top: 16px; }

/* --------------------------------------------------------------------------
   9. Stats / blue band
   -------------------------------------------------------------------------- */
.band { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.band__media img { display: block; margin-inline: auto; }
.band h2 { margin-bottom: 24px; }
.band p { color: #fff; font-size: 16px; line-height: 36.75px; }
.band .btn { margin-top: 12px; }

/* --------------------------------------------------------------------------
   10. Pricing
   -------------------------------------------------------------------------- */
.pricing { background: var(--surface-pricing); background-image: url('../img/cloud-computing-banner-background-smart-city-1-1.png'); background-size: cover; background-position: center; }
.pricing__group { margin-top: 60px; }
.pricing__group-title { text-align: center; margin-bottom: 10px; }
.pricing__group-copy {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }

.plan { display: flex; flex-direction: column; }
.plan__head {
  background: var(--blue);
  border-radius: 6px 6px 0 0;
  padding: 34px 24px 30px;
  text-align: center;
  color: #fff;
}
/* The shield medallion overlaps 42px up into the head; heads that carry an
   events line need extra clearance so the text is never hidden behind it. */
.plan__head:has(.plan__meta) { padding-bottom: 62px; }
.plan__name {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.29em;
  /* Nudge the block optically back to centre — tracking pads the right edge. */
  margin-right: -0.29em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}
.plan__price { display: block; font-family: var(--font-head); font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -0.01em; }
.plan__price sup { font-size: 20px; font-weight: 600; top: -0.95em; margin-right: 3px; }
.plan__price sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  bottom: 0.2em;
  margin-left: 5px;
}
.plan__meta {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-right: -0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.plan__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 0 0 6px 6px;
  padding: 46px 26px 28px;
  text-align: center;
}
.plan__icon {
  position: absolute;
  top: -42px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px; height: 65px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.plan__icon img { width: 28px; height: auto; }
.plan__features { flex: 1; margin-bottom: 26px; text-align: left; }
.plan__features li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-soft);
  text-wrap: pretty;
}
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1' y='1' width='14' height='14' rx='2.5' fill='none' stroke='rgba(37,48,83,0.8)' stroke-width='1.5'/%3E%3Cpath d='M4.5 8.2 7 10.7l4.5-5' fill='none' stroke='rgba(37,48,83,0.8)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.plan .btn { align-self: center; }

/* Compact text-only button used inside the pricing cards. */
.btn--plan {
  height: 40px;
  padding: 0 25px;
  font-size: 16px;
  border: 1px solid var(--navy);
}

/* Pricing intro copy is full-width and left-aligned on the source site. */
.pricing__intro { margin: 30px 0 50px; }
.pricing__intro p { font-size: 16px; line-height: 28px; color: var(--text-muted); }
.plan:hover .plan__icon img { opacity: .4; }

/* --------------------------------------------------------------------------
   11. Testimonials
   -------------------------------------------------------------------------- */
#Testimonials-section {
  background:
    radial-gradient(circle at 92% 14%, rgba(64, 94, 203, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.testimonial-showcase { position: relative; }
.testimonial-showcase__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin: -6px 0 20px;
}
.testimonial-showcase__status {
  min-width: 84px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: right;
}
.testimonial-showcase__controls {
  display: flex;
  gap: 9px;
}
.testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 46px;
  height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(48, 76, 178, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 22px -12px rgba(37, 48, 83, 0.38);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.testimonial-nav:hover:not(:disabled) {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.testimonial-nav--next {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.testimonial-nav--next:hover:not(:disabled) { background: var(--navy); }
.testimonial-nav--toggle {
  border-color: rgba(37, 48, 83, 0.16);
  color: var(--navy);
}
.testimonial-nav:focus-visible {
  outline: 3px solid rgba(48, 76, 178, 0.22);
  outline-offset: 3px;
}
.testimonial-nav:disabled {
  opacity: .34;
  cursor: default;
  box-shadow: none;
}
.testimonial-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.testimonial-nav span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
}
.testimonial-nav__play-icon { display: none; }
.testimonial-nav--toggle.is-paused .testimonial-nav__pause-icon { display: none; }
.testimonial-nav--toggle.is-paused .testimonial-nav__play-icon { display: block; }
.testimonials {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 4px 2px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials::-webkit-scrollbar { display: none; }
.testimonials:focus-visible {
  outline: 3px solid rgba(48, 76, 178, 0.18);
  outline-offset: 4px;
  border-radius: 16px;
}
.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #edf1f9;
  border-radius: 14px;
  padding: 30px 28px 26px;
  box-shadow: 0 10px 30px -14px rgba(37, 48, 83, 0.14);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
  scroll-snap-align: start;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -14px rgba(37, 48, 83, 0.22); }
/* Oversized decorative quote mark tucked behind the top-right corner. */
.testimonial::after {
  content: "\201D";
  position: absolute;
  top: -6px; right: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px;
  line-height: 1;
  color: rgba(48, 76, 178, 0.09);
  pointer-events: none;
}
.testimonial__stars { display: block; width: 84px; height: auto; margin-bottom: 16px; }
.testimonial blockquote { flex: 1; margin: 0 0 20px; font-size: 15px; line-height: 26px; color: var(--text-muted); }
.testimonial figcaption { border-top: 1px solid #edf1f9; padding-top: 16px; }
.testimonial figcaption h4 { margin-bottom: 2px; font-size: 17px; line-height: 22px; }
.testimonial__role { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 400; line-height: 21px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   12. Contact form
   -------------------------------------------------------------------------- */
.contact__intro { margin: 30px 0 50px; text-align: left; }
.contact__intro p { color: var(--text-muted); font-size: 16px; line-height: 28px; }

.form { max-width: 1010px; margin-inline: auto; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.form__row--full { grid-column: 1 / -1; }

/* The source form is placeholder-driven; labels exist for screen readers only. */
.field > label {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.field { position: relative; }
.field .req { color: #c0392b; }

.form__terms-head { margin: 6px 0 10px; font-size: 16px; font-weight: 700; color: var(--navy); }

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(214, 229, 244, 0.1);
  border: 1px solid var(--border);
  border-radius: 5px;
  appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 55px; }
.field textarea { min-height: 250px; resize: vertical; line-height: 26px; }

.field select {
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath fill='%23253053' d='M1.4 0 7 5.6 12.6 0 14 1.4 7 8.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}

.field ::placeholder { color: rgba(37, 48, 83, 0.6); opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: #7c8ece;
  box-shadow: 0 0 0 3px rgba(48, 76, 178, 0.12);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field__error { display: none; margin-top: 6px; font-size: 14px; color: #c0392b; }
.field.has-error .field__error { display: block; }

/* CSP-safe utility classes for the small, one-off layout adjustments used in
   static pages. Keeping these declarations here lets production retain a
   strict style-src policy without allowing inline CSS. */
.u-m-0 { margin: 0; }
.u-mb-0 { margin-bottom: 0; }
.u-mt-0 { margin-top: 0; }
.u-mt-26 { margin-top: 26px; }
.u-mt-28 { margin-top: 28px; }
.u-mt-36 { margin-top: 36px; }
.u-mt-40 { margin-top: 40px; }
.u-pt-20 { padding-top: 20px; }
.u-text-center { text-align: center; }
.u-max-w-none { max-width: none; }
.u-link { color: var(--blue); text-decoration: underline; }

.field--check { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 12px; }
.field--check .form__terms-head { flex: 0 0 100%; }
.field--check input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; appearance: auto; }
/* The checkbox's own label stays visible (it is the consent sentence). */
.field--check > label {
  position: static !important;
  width: auto; height: auto;
  margin: 0; clip: auto; overflow: visible; white-space: normal;
  font-size: 15px; font-weight: 400; line-height: 24px; color: var(--text-muted);
}
.field--check a { color: var(--blue); text-decoration: underline; }

/* Honeypot — hidden from people, visible to naive bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__actions { margin-top: 34px; text-align: center; }
.form__note { display: block; margin-top: 16px; font-size: 14px; color: var(--text-muted); }

.form__status { margin-top: 24px; padding: 16px 20px; border-radius: var(--radius); font-size: 16px; display: none; }
.form__status.is-visible { display: block; }
.form__status--ok { background: #e8f6ee; border: 1px solid #9dd3b4; color: #1c6b3f; }
.form__status--err { background: #fdecea; border: 1px solid #f0b1aa; color: #a02c22; }

.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* --------------------------------------------------------------------------
   13. Legal / long-form pages
   -------------------------------------------------------------------------- */
.legal { padding: 70px 0 90px; }
.legal__body { max-width: 860px; margin-inline: auto; }
.legal__body h2 {
  font-size: 26px;
  line-height: 34px;
  margin: 46px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 20px; line-height: 28px; margin: 30px 0 12px; }
.legal__body p { font-size: 17px; line-height: 30px; color: var(--text-soft); }
.legal__body ul, .legal__body ol { margin: 0 0 20px 22px; }
.legal__body ul { list-style: disc; }
.legal__body ol { list-style: decimal; }
.legal__body li { margin-bottom: 10px; font-size: 17px; line-height: 30px; color: var(--text-soft); }
.legal__body a { color: var(--blue); text-decoration: underline; }
.legal__body strong { color: var(--navy); }
.legal__body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.legal__body th, .legal__body td { border: 1px solid var(--border-soft); padding: 12px 14px; text-align: left; font-size: 16px; }

.legal__toc {
  background: var(--surface-alt);
  border: 1px solid #e6ebf5;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 44px;
}
.legal__toc h2 { font-size: 18px; margin: 0 0 14px; padding: 0; border: 0; }
.legal__toc ol { margin: 0 0 0 20px; list-style: decimal; }
.legal__toc li { margin-bottom: 6px; font-size: 16px; line-height: 24px; }
.legal__toc a { color: var(--blue); }
.legal__toc a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 900px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border-faint); border-radius: 6px; margin-bottom: 18px; overflow: hidden; background: #fff; }
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: var(--navy);
  background: none;
  border: 0;
  cursor: pointer;
}
.faq__q:hover { color: var(--blue); }
.faq__q[aria-expanded="true"] { color: var(--blue); }
.faq__icon { flex: 0 0 16px; margin-top: 6px; transition: transform .25s ease; }
.faq__icon svg { width: 14px; height: 14px; fill: currentColor; display: block; }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(90deg); }
.faq__a { padding: 0 24px 22px 54px; }
.faq__a[hidden] { display: none; }
.faq__a p { font-size: 17px; line-height: 30px; color: var(--text-soft); }
.faq__a ul { margin: 0 0 14px; }
.faq__a ul li { position: relative; padding-left: 14px; margin-bottom: 8px; font-size: 17px; line-height: 30px; color: var(--text-soft); }
.faq__a ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 6px; height: 1px; background: rgba(37, 48, 83, 0.7); }
.faq__a ol { margin: 0 0 14px 20px; list-style: decimal; }
.faq__a a { color: var(--blue); text-decoration: underline; }

/* --------------------------------------------------------------------------
   15. Comparison page
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 20px; }
.compare-table { width: 100%; min-width: 900px; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td {
  padding: 8px 12px;
  border: 1px solid rgba(48, 75, 178, 0.36);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-align: center;
}
.compare-table thead th { background: rgba(48, 75, 178, 0.36); font-weight: 700; padding: 30px 10px; text-align: left; }
.compare-table tbody th { font-weight: 400; text-align: left; }
.compare-table td img { display: inline-block; width: 30px; height: 30px; vertical-align: middle; }
.compare-table__notes p { font-size: 15px; line-height: 24px; color: var(--text-soft); margin-bottom: 4px; }

/* Compare hero — full banner image with an oversized centered heading. */
.page-hero--banner {
  background: var(--blue) url('../img/Privacy-page-banner-1.jpg') center / cover no-repeat;
  padding: 60px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
  text-align: center;
}
.page-hero--banner h1 { font-size: 68px; line-height: 1; color: #fff; }

/* Section heads on the compare page carry no gradient rule. */
.plain-head { text-align: center; margin-bottom: 40px; }
.plain-head h2 { margin-bottom: 10px; }
.plain-head p { color: var(--text-muted); font-size: 16px; line-height: 24px; margin: 0; }

/* "Why Cloaking Matters" — white cards, illustration beside the copy. */
.why-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
}
.why-card img { width: 111px; flex: 0 0 111px; height: auto; }
.why-card h3 { font-size: 24px; line-height: 30px; margin-bottom: 8px; }
.why-card p { font-size: 18px; line-height: 28px; color: var(--text-muted); margin: 0; }

/* Bordered icon-top cards ("Why Choose", "What Sets Apart"). */
.icon-card {
  text-align: center;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid #cbd7ed;
  border-radius: var(--radius-lg);
}
.icon-card img { height: 62px; width: auto; margin-bottom: 18px; }
.icon-card h3 { font-size: 20px; line-height: 26px; margin-bottom: 10px; }
.icon-card p { font-size: 15px; line-height: 23px; color: var(--text-muted); margin: 0; }
.icon-card--lg img { height: 81px; }

/* Centered flex row so a 5-card set breaks 3 + 2 like the source. */
.card-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.card-row .icon-card { flex: 0 1 calc(33.333% - 16px); }

/* "Key Features Explained" panel. */
.kf-panel {
  background: var(--surface-alt);
  border-radius: 20px;
  padding: 40px;
}
.kf-panel h2 { text-align: left; margin-bottom: 24px; }
.kf-panel .check-list li { font-size: 16px; line-height: 24px; padding-bottom: 10px; }
.kf-panel .btn { margin-top: 24px; }

/* Customer success cards. */
.success-card {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.success-card blockquote { margin: 0 0 16px; font-size: 18px; line-height: 24px; color: var(--text-grey); }
.success-card figcaption { display: flex; align-items: center; gap: 10px; }
.success-card figcaption img { width: 36px; height: 36px; border-radius: 50%; }
.success-card h4 { font-size: 16px; line-height: 20px; margin: 0; }
.success-card .testimonial__role { font-size: 14px; line-height: 18px; color: #54595f; }

/* Tinted FAQ variant used on the compare page. */
.faq--tint .faq__item { background: #f3f6fb; }
.faq--tint .faq__q { font-size: 21px; padding: 16px 20px; }
.faq--tint .faq__a { padding: 0 20px 16px 54px; }
.faq--tint .faq__a p { font-size: 16px; line-height: 26px; }

/* Closing call-to-action banner. */
.cta-banner {
  position: relative;
  background: url('../img/cta-banner.jpg') center / cover no-repeat;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: rgba(4, 24, 97, 0.7); }
.cta-banner > .container { position: relative; }
.cta-banner h2 { color: #fff; font-size: 40px; margin-bottom: 10px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); font-size: 16px; margin-bottom: 28px; }

/* Product comparison redesign. */
.compare-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 42%, rgba(76, 116, 255, 0.05), transparent 26%),
    #fff;
}
.compare-hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  padding: 92px 0 82px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(83, 128, 255, 0.34), transparent 28%),
    radial-gradient(circle at 95% 82%, rgba(57, 209, 196, 0.16), transparent 22%),
    linear-gradient(118deg, #04112f 0%, #09265a 48%, #173f9f 100%);
}
.compare-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
}
.compare-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: linear-gradient(176deg, transparent 49%, #fff 50%);
}
.compare-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: 70px;
}
.compare-hero__content { position: relative; z-index: 2; padding-bottom: 24px; }
.compare-eyebrow,
.compare-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.compare-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a9c4ff;
}
.compare-eyebrow span {
  width: 28px;
  height: 1px;
  background: #77a1ff;
}
.compare-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}
.compare-hero h1 em {
  display: block;
  color: #8fb2ff;
  font-style: normal;
}
.compare-hero__lede {
  max-width: 620px;
  margin: 27px 0 0;
  color: rgba(238, 244, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}
.compare-hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.compare-text-link {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.compare-text-link span { display: inline-block; margin-left: 7px; transition: transform 0.2s ease; }
.compare-text-link:hover { color: #b7ccff; }
.compare-text-link:hover span { transform: translateX(4px); }
.compare-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 570px;
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.compare-hero__proof li { padding-right: 18px; }
.compare-hero__proof li + li { padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.15); }
.compare-hero__proof strong,
.compare-hero__proof span { display: block; }
.compare-hero__proof strong { color: #fff; font-size: 15px; }
.compare-hero__proof span { margin-top: 3px; color: rgba(222, 233, 255, 0.62); font-size: 12px; }
.compare-hero__visual { position: relative; min-height: 540px; }
.compare-dashboard {
  position: absolute;
  top: 42px;
  left: 20px;
  width: min(100%, 610px);
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 36px 90px rgba(0, 8, 34, 0.52);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.compare-dashboard__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-dashboard__bar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.36); }
.compare-dashboard__bar strong { margin-left: auto; font-weight: 700; }
.compare-dashboard img { width: 100%; height: auto; border-radius: 14px; }
.compare-float-card {
  position: absolute;
  z-index: 3;
  min-width: 205px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(5, 22, 62, 0.78);
  box-shadow: 0 18px 42px rgba(0, 8, 35, 0.35);
  backdrop-filter: blur(12px);
}
.compare-float-card strong,
.compare-float-card small { display: block; }
.compare-float-card strong { color: #fff; font-size: 13px; }
.compare-float-card small { margin-top: 4px; color: rgba(225, 235, 255, 0.66); font-size: 10px; }
.compare-float-card--top { top: 12px; right: -8px; }
.compare-float-card--bottom { right: 8px; bottom: 42px; }
.compare-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #52e6b4;
  box-shadow: 0 0 0 6px rgba(82, 230, 180, 0.12);
}
.compare-hero__orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.compare-hero__orb--one { top: 0; right: 20px; width: 280px; height: 280px; border: 1px solid rgba(145, 177, 255, 0.2); }
.compare-hero__orb--two { right: 110px; bottom: 0; width: 130px; height: 130px; background: rgba(69, 208, 196, 0.08); }
.compare-trustbar {
  padding: 12px 0 30px;
  background: #fff;
}
.compare-trustbar .container {
  display: flex;
  align-items: center;
  gap: 34px;
}
.compare-trustbar p {
  flex: 0 0 auto;
  margin: 0;
  color: #8792aa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-brand-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.compare-brand-list span { color: #55617a; font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.compare-section-head { max-width: 850px; margin: 0 auto 52px; text-align: center; }
.compare-section-head--left { max-width: 780px; margin-left: 0; text-align: left; }
.compare-section-head h2 { margin-bottom: 18px; font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; letter-spacing: -0.035em; }
.compare-section-head p:not(.compare-kicker) { max-width: 720px; margin: 0 auto; color: var(--text-muted); font-size: 17px; line-height: 1.75; }
.compare-section-head--left p:not(.compare-kicker) { margin-left: 0; }
.compare-verdict { padding-top: 94px; }
.compare-verdict__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 24px; }
.compare-verdict__lead,
.compare-verdict__points {
  border: 1px solid #dce5f5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 65px rgba(29, 61, 128, 0.08);
}
.compare-verdict__lead {
  position: relative;
  min-height: 470px;
  padding: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 100%, rgba(55, 99, 218, 0.24), transparent 40%),
    linear-gradient(145deg, #071b45, #123785);
}
.compare-verdict__lead::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.025), 0 0 0 100px rgba(255, 255, 255, 0.018);
}
.compare-card-index { color: #8fb2ff; font-family: var(--font-head); font-size: 13px; font-weight: 800; }
.compare-verdict__lead h3 { position: relative; z-index: 1; max-width: 530px; margin: 66px 0 18px; color: #fff; font-size: 34px; line-height: 1.14; letter-spacing: -0.025em; }
.compare-verdict__lead p { position: relative; z-index: 1; max-width: 520px; color: rgba(230, 238, 255, 0.74); font-size: 16px; line-height: 1.7; }
.compare-arrow-link { position: absolute; left: 44px; bottom: 40px; z-index: 2; color: #fff; font-weight: 800; }
.compare-arrow-link span { margin-left: 8px; }
.compare-verdict__points { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.compare-verdict__points article { display: flex; gap: 18px; padding: 34px 28px; }
.compare-verdict__points article:nth-child(odd) { border-right: 1px solid #e3eaf6; }
.compare-verdict__points article:nth-child(-n+2) { border-bottom: 1px solid #e3eaf6; }
.compare-verdict__points article > span { color: #7f91b5; font-family: var(--font-head); font-size: 11px; font-weight: 800; }
.compare-verdict__points h3 { margin-bottom: 8px; font-size: 20px; }
.compare-verdict__points p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.compare-landscape { position: relative; }
.compare-landscape__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.landscape-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid #dce5f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.landscape-card:hover { transform: translateY(-4px); border-color: #9db5e8; box-shadow: 0 20px 44px rgba(33, 66, 134, 0.1); }
.landscape-card--featured {
  grid-row: span 2;
  min-height: 598px;
  padding: 34px;
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 90%, rgba(103, 150, 255, 0.35), transparent 34%),
    linear-gradient(150deg, #071b45, #173f9f);
}
.landscape-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.landscape-card__top strong { color: var(--blue); font-size: 14px; }
.landscape-card--featured .landscape-card__top strong { color: #a9c2ff; }
.landscape-card__tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #617296;
  background: #edf2fb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.landscape-card--featured .landscape-card__tag { color: #dfe8ff; background: rgba(255, 255, 255, 0.1); }
.landscape-card h3 { margin: 58px 0 13px; font-size: 24px; line-height: 1.18; }
.landscape-card--featured h3 { max-width: 430px; margin-top: 145px; color: #fff; font-size: 38px; }
.landscape-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.landscape-card--featured p { color: rgba(229, 237, 255, 0.75); font-size: 16px; }
.landscape-card ul { margin: 32px 0 0; }
.landscape-card li { position: relative; margin-top: 14px; padding-left: 22px; color: rgba(238, 243, 255, 0.88); font-size: 14px; }
.landscape-card li::before { content: "✓"; position: absolute; left: 0; color: #65dfbd; font-weight: 800; }
.compare-matrix-section { padding-bottom: 96px; }
.compare-legend { display: flex; justify-content: center; gap: 25px; margin: -22px 0 24px; color: #66738e; font-size: 12px; }
.compare-legend span { display: inline-flex; align-items: center; gap: 7px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot--included { background: #1da77b; }
.status-dot--partial { background: #d68b19; }
.status-dot--verify { background: #9ba6ba; }
.compare-scroll-hint { display: none; margin: 0 0 12px; color: #6d7b97; font-size: 12px; }
.comparison-shell {
  overflow: hidden;
  border: 1px solid #d9e3f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(34, 64, 127, 0.11);
}
.comparison-shell .table-scroll { margin: 0; }
.compare-table {
  min-width: 1220px;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table th,
.compare-table td {
  min-width: 132px;
  padding: 18px 14px;
  color: #263554;
  border: 0;
  border-right: 1px solid #e7edf6;
  border-bottom: 1px solid #e7edf6;
  background: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  height: 92px;
  padding: 19px 12px;
  color: #fff;
  background: #0a204e;
  font-family: var(--font-head);
  font-size: 13px;
  text-align: center;
}
.compare-table thead th:first-child,
.compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 280px;
  max-width: 280px;
  text-align: left;
}
.compare-table thead th:first-child { z-index: 4; padding-left: 22px; background: #071a40; }
.compare-table tbody th { padding: 18px 22px; background: #fbfcff; }
.compare-table tbody th strong,
.compare-table tbody th small { display: block; }
.compare-table tbody th strong { color: #122548; font-size: 13px; }
.compare-table tbody th small { margin-top: 5px; color: #7b879c; font-size: 10px; font-weight: 500; line-height: 1.45; }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr th:last-child,
.compare-table tr td:last-child { border-right: 0; }
.compare-table .compare-table__maxguard { background: #eef4ff; box-shadow: inset 1px 0 #bfd0f2, inset -1px 0 #bfd0f2; }
.compare-table thead .compare-table__maxguard {
  color: #fff;
  background: linear-gradient(155deg, #365cd1, #173f9f);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.15), inset -1px 0 rgba(255, 255, 255, 0.15);
}
.compare-table thead .compare-table__maxguard span {
  display: block;
  width: max-content;
  margin: 0 auto 7px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #dfe9ff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.status--included { color: #087758; background: #e6f7f1; }
.status--partial { color: #915909; background: #fff2d9; }
.status--verify { color: #68748a; background: #edf0f5; }
.compare-methodology {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 50px;
  margin-top: 22px;
  padding: 30px 34px;
  border: 1px solid #dce5f3;
  border-radius: 18px;
  background: #f8faff;
}
.compare-methodology h3 { margin: 0; font-size: 23px; }
.compare-methodology > div > p:not(.compare-kicker) { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.compare-methodology .compare-sources { margin-top: 9px; }
.compare-sources a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.compare-advantage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compare-advantage__grid article {
  position: relative;
  min-height: 280px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid #dde5f2;
  border-radius: 18px;
  background: #fff;
}
.compare-advantage__grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid #dbe5f8;
  border-radius: 50%;
}
.compare-advantage__grid span { color: #6784c9; font-family: var(--font-head); font-size: 11px; font-weight: 800; }
.compare-advantage__grid h3 { margin: 72px 0 12px; font-size: 24px; line-height: 1.17; }
.compare-advantage__grid p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.compare-chooser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compare-chooser__grid article {
  padding: 30px;
  border: 1px solid #dbe4f2;
  border-radius: 20px;
  background: #fff;
}
.compare-chooser__grid article:first-child { color: #fff; border-color: transparent; background: linear-gradient(150deg, #071b45, #173f9f); box-shadow: 0 24px 60px rgba(26, 61, 140, 0.22); }
.compare-chooser__label { margin: 0 0 58px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.compare-chooser__grid article:first-child .compare-chooser__label { color: #9ab9ff; }
.compare-chooser__grid h3 { min-height: 88px; margin-bottom: 25px; font-size: 25px; line-height: 1.18; }
.compare-chooser__grid article:first-child h3 { color: #fff; }
.compare-chooser__grid ul { margin: 0; }
.compare-chooser__grid li { position: relative; margin-top: 13px; padding-left: 20px; color: var(--text-muted); font-size: 13px; line-height: 1.5; }
.compare-chooser__grid li::before { content: "→"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.compare-chooser__grid article:first-child li { color: rgba(232, 239, 255, 0.78); }
.compare-chooser__grid article:first-child li::before { color: #7fe0c4; }
.compare-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 24px;
  padding: 28px 32px;
  border: 1px solid #dbe4f2;
  border-radius: 18px;
  background: #f5f8fe;
}
.compare-bottom-line p { max-width: 780px; margin: 0; color: #364765; font-size: 14px; line-height: 1.65; }
.compare-bottom-line p span { display: block; margin-bottom: 5px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.compare-bottom-line .btn { flex: 0 0 auto; }
.compare-faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 90px; align-items: start; }
.compare-faq-layout > div:first-child { position: sticky; top: 120px; }
.compare-faq-layout h2 { margin-bottom: 18px; font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; }
.compare-faq-layout > div:first-child > p:not(.compare-kicker) { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.compare-faq { max-width: none; }
.compare-faq .faq__item { margin-bottom: 12px; border-color: #dce5f3; border-radius: 14px; }
.compare-faq .faq__q { padding: 22px 23px; font-size: 17px; }
.compare-cta {
  padding: 74px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 50%, rgba(91, 135, 255, 0.28), transparent 27%),
    linear-gradient(120deg, #06173d, #12357f);
}
.compare-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.compare-cta .compare-kicker { color: #9ab9ff; }
.compare-cta h2 { margin: 0 0 12px; color: #fff; font-size: 46px; line-height: 1.05; letter-spacing: -0.03em; }
.compare-cta p:not(.compare-kicker) { margin: 0; color: rgba(230, 238, 255, 0.72); font-size: 16px; }
.compare-cta .btn { flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--surface-footer); }
.site-footer__top {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  padding: 80px 0 50px;
  border-bottom: 1px solid var(--border-soft);
}
.site-footer__brand img { width: 150px; margin-bottom: 12px; }
.site-footer__brand p { font-size: 16px; line-height: 30px; color: var(--text-muted); max-width: 340px; }
.site-footer__nav { padding-left: 60px; }
.site-footer__nav h2 { font-size: 20px; color: var(--blue); margin-bottom: 20px; }
.site-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 20px; }
.site-footer__links a { font-size: 16px; line-height: 24px; color: var(--text-muted); }
.site-footer__links a:hover { color: var(--blue); text-decoration: underline; }
.site-footer__bottom { padding: 34px 0; text-align: center; }
.site-footer__bottom p { font-size: 15px; color: rgba(37, 48, 83, 0.75); margin: 0; }

/* Back-to-top */
.to-top {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, background-color .3s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--navy); }
.to-top svg { width: 16px; height: 16px; fill: currentColor; }

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --header-h: 82px; }

  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .testimonial { flex-basis: calc((100% - 24px) / 2); }
  .nav__link { padding: 12px 14px; font-size: 15px; }
  .nav__item--cta { margin-left: 14px; }
  .site-logo img { width: 170px; }
}

@media (max-width: 900px) {
  .band { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__nav { padding-left: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__main { padding-right: 0; }
  .split__side { border-left: 0; padding-left: 0; margin-top: 44px; }
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 9500;
    width: 300px;
    max-width: 86vw;
    padding: 90px 24px 30px;
    background: #fff;
    box-shadow: -8px 0 30px rgba(37, 48, 83, 0.18);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }

  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__item { width: 100%; }
  .nav__link { display: block; padding: 14px 4px; text-align: center; }
  .nav__link::before { display: none; }
  .nav__item--cta { margin: 14px 0 0; }
  .nav__item--cta .nav__link { justify-content: center; max-width: 200px; margin-inline: auto; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9400;
    background: rgba(19, 36, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

  body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  /* Keep the toggle above the open panel. */
  .nav-toggle { position: relative; z-index: 9600; }
}

@media (max-width: 767px) {
  body { font-size: 17px; }
  h1 { font-size: 32px; }
  h2 { font-size: 27px; line-height: 1.3; }
  h3 { font-size: 21px; line-height: 29px; }

  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .comparison-section__cta { align-items: flex-start; flex-direction: column; padding: 24px; }
  .key-feature-card { min-height: 0; padding: 28px 24px; }
  .hero {
    padding: 70px 0;
  }
  .hero__inner { max-width: none; }
  .page-hero { padding: 48px 0 74px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 16px; line-height: 27px; }
  .page-hero .container::after { margin-top: 24px; }

  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .testimonial { flex-basis: 100%; }
  .plans { row-gap: 56px; }

  .form__grid { grid-template-columns: 1fr; }
  .site-footer__links { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { padding: 56px 0 40px; }

  .legal { padding: 46px 0 60px; }
  .legal__body h2 { font-size: 22px; line-height: 30px; margin-top: 34px; }

  .btn { font-size: 16px; padding: 14px 18px 14px 24px; }
}

@media (max-width: 960px) {
  .tile { flex-basis: calc(50% - 12px); }
  .card-row .icon-card { flex-basis: calc(50% - 12px); }
  .page-hero--banner h1 { font-size: 44px; line-height: 1.1; }
}

@media (max-width: 600px) {
  .protection-section { padding-bottom: 8px; }
  .protection-section::before { bottom: 34px; }
  .protection-section__head { margin-bottom: 34px; }
  .protection-section__head p { font-size: 16px; line-height: 26px; }
  .tile { flex-basis: 100%; min-height: 0; padding: 24px; }
  .card-row .icon-card { flex-basis: 100%; }
  .testimonial-showcase__bar { justify-content: space-between; gap: 12px; }
  .testimonial-showcase__status { min-width: 74px; text-align: left; }
  .testimonial-nav { width: 44px; min-width: 44px; height: 44px; padding: 0; }
  .testimonial-nav span { display: none; }
  .why-card { flex-direction: column; text-align: center; }
  .why-card img { flex-basis: auto; }
  .kf-panel { padding: 28px 20px; }
  .page-hero--banner { min-height: 300px; }
  .page-hero--banner h1 { font-size: 32px; }
  .cta-banner h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .threat { flex-direction: column; gap: 16px; }
  .threat img { flex-basis: auto; }
}

@media (max-width: 420px) {
  .site-footer__links { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .compare-hero__grid { grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr); gap: 35px; }
  .compare-float-card--top { right: 0; }
  .compare-landscape__grid { grid-template-columns: repeat(2, 1fr); }
  .landscape-card--featured { grid-row: span 2; }
}

@media (max-width: 960px) {
  .compare-hero { min-height: auto; padding: 72px 0 100px; }
  .compare-hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .compare-hero__content { max-width: 720px; padding-bottom: 0; }
  .compare-hero__visual { width: min(100%, 720px); min-height: 590px; margin: 0 auto; }
  .compare-dashboard { left: 50%; width: 88%; transform: translateX(-50%) perspective(1200px) rotateY(-3deg) rotateX(2deg); }
  .compare-float-card--top { right: 2%; }
  .compare-float-card--bottom { right: 4%; }
  .compare-trustbar .container { align-items: flex-start; flex-direction: column; gap: 17px; }
  .compare-brand-list { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .compare-brand-list span { flex: 0 0 calc(33.333% - 16px); }
  .compare-verdict__grid,
  .compare-faq-layout { grid-template-columns: 1fr; }
  .compare-faq-layout { gap: 42px; }
  .compare-faq-layout > div:first-child { position: static; max-width: 600px; }
  .compare-advantage__grid { grid-template-columns: repeat(2, 1fr); }
  .compare-chooser__grid { grid-template-columns: 1fr; }
  .compare-chooser__grid h3 { min-height: 0; }
  .compare-chooser__label { margin-bottom: 30px; }
  .compare-bottom-line,
  .compare-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767px) {
  .compare-hero { padding-top: 58px; }
  .compare-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .compare-hero__lede { font-size: 16px; }
  .compare-hero__visual { min-height: 500px; }
  .compare-dashboard { top: 34px; width: 92%; }
  .compare-float-card--top { top: 4px; }
  .compare-float-card--bottom { bottom: 25px; }
  .compare-section-head { margin-bottom: 38px; }
  .compare-section-head h2 { font-size: 38px; }
  .compare-verdict { padding-top: 62px; }
  .compare-verdict__lead { min-height: 430px; padding: 32px; }
  .compare-verdict__lead h3 { margin-top: 55px; font-size: 29px; }
  .compare-arrow-link { left: 32px; bottom: 32px; }
  .compare-verdict__points { grid-template-columns: 1fr; }
  .compare-verdict__points article:nth-child(odd) { border-right: 0; }
  .compare-verdict__points article:nth-child(-n+3) { border-bottom: 1px solid #e3eaf6; }
  .compare-landscape__grid,
  .compare-advantage__grid { grid-template-columns: 1fr; }
  .landscape-card,
  .landscape-card--featured { grid-row: auto; min-height: 0; }
  .landscape-card--featured { padding: 30px; }
  .landscape-card h3,
  .landscape-card--featured h3 { margin-top: 65px; }
  .compare-legend { justify-content: flex-start; flex-wrap: wrap; gap: 10px 18px; }
  .compare-scroll-hint { display: block; }
  .compare-methodology { grid-template-columns: 1fr; gap: 20px; padding: 26px; }
  .compare-bottom-line { padding: 25px; }
  .compare-faq-layout h2 { font-size: 38px; }
  .compare-cta { padding: 58px 0; }
  .compare-cta h2 { font-size: 38px; }
}

@media (max-width: 520px) {
  .compare-hero { padding-bottom: 85px; }
  .compare-hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .compare-hero__proof { gap: 0; }
  .compare-hero__proof li { padding-right: 9px; }
  .compare-hero__proof li + li { padding-left: 9px; }
  .compare-hero__proof strong { font-size: 13px; }
  .compare-hero__proof span { font-size: 10px; }
  .compare-hero__visual { min-height: 360px; }
  .compare-dashboard { top: 25px; width: 100%; padding: 7px; border-radius: 16px; }
  .compare-dashboard__bar { height: 27px; }
  .compare-dashboard img { border-radius: 10px; }
  .compare-float-card { min-width: 168px; padding: 12px 13px; }
  .compare-float-card--top { top: 0; right: -5px; }
  .compare-float-card--bottom { right: -5px; bottom: 2px; }
  .compare-brand-list span { flex-basis: calc(50% - 12px); }
  .compare-verdict__lead { min-height: 470px; }
  .compare-verdict__lead h3 { font-size: 27px; }
  .compare-advantage__grid article { min-height: 250px; }
  .compare-chooser__grid article { padding: 25px; }
  .compare-table thead th:first-child,
  .compare-table tbody th { min-width: 190px; max-width: 190px; }
}

/* --------------------------------------------------------------------------
   18. Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .testimonials { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .site-footer, .to-top, .nav, .nav-toggle { display: none !important; }
  .site-main { padding-top: 0; }
  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; }
}

/* --------------------------------------------------------------------------
   19. Blog
   -------------------------------------------------------------------------- */

/* ---- Blog hero ----
   The deep navy field, grid, and diagonal slice are defined once alongside
   .page-hero in section 7. Only the blog-specific parts live here. */
.blog-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.blog-hero h1 {
  color: #fff;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.blog-hero__lede {
  color: rgba(238, 244, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 660px;
}
.blog-hero--index { text-align: center; }
.blog-hero--index .blog-hero__inner { margin-inline: auto; }
.blog-hero--index .blog-hero__lede { margin-inline: auto; }
/* Hairline accent that anchors the centred index heading. */
.blog-hero--index .blog-hero__inner::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 30px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #52e6b4, #8fb2ff);
}

/* Breadcrumb / back link inside the hero. */
.blog-crumbs { margin-bottom: 20px; font-size: 13px; letter-spacing: .02em; }
.blog-crumbs a { color: rgba(222, 233, 255, 0.72); text-decoration: none; }
.blog-crumbs a:hover { color: #fff; text-decoration: underline; }
.blog-crumbs span { color: rgba(222, 233, 255, 0.34); margin: 0 9px; }

/* Byline / date / reading time. */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  color: rgba(222, 233, 255, 0.68);
}
.blog-meta__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(143, 178, 255, 0.7); }
/* Category sits last in the meta row and carries the accent colour. */
.blog-meta__tag { color: #8fb2ff; font-weight: 600; }

/* ---- Index listing ---- */
.blog-list { padding: 72px 0 90px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7ecf7;
  border-radius: 14px;
  padding: 28px 26px 24px;
  box-shadow: 0 10px 30px -18px rgba(37, 48, 83, 0.22);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -20px rgba(37, 48, 83, 0.3); border-color: #d8e1f4; }
.blog-card__tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(48, 76, 178, 0.16);
  border-radius: 999px;
  background: rgba(48, 76, 178, 0.06);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.blog-card__title { font-size: 21px; line-height: 28px; margin-bottom: 12px; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt { flex: 1; font-size: 15px; line-height: 25px; color: var(--text-muted); margin-bottom: 20px; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #eef1f8;
  font-size: 13px;
  color: var(--text-muted);
}

/* Lead article spans the row, in the same deep palette as the hero. */
.blog-card--featured {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 40px 38px;
  border-color: rgba(143, 178, 255, 0.22);
  background:
    radial-gradient(circle at 88% 12%, rgba(83, 128, 255, 0.36), transparent 34%),
    radial-gradient(circle at 6% 92%, rgba(57, 209, 196, 0.14), transparent 30%),
    linear-gradient(118deg, #04112f 0%, #09265a 52%, #173f9f 100%);
  box-shadow: 0 22px 50px -26px rgba(4, 17, 47, 0.75);
  color: #fff;
}
.blog-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(120% 110% at 12% 0%, #000 40%, transparent 86%);
  mask-image: radial-gradient(120% 110% at 12% 0%, #000 40%, transparent 86%);
}
.blog-card--featured:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -26px rgba(4, 17, 47, 0.85); border-color: rgba(143, 178, 255, 0.38); }
.blog-card--featured .blog-card__tag {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.blog-card--featured .blog-card__title { font-size: 30px; line-height: 38px; color: #fff; }
.blog-card--featured .blog-card__title a { color: #fff; }
.blog-card--featured .blog-card__title a:hover { color: rgba(255, 255, 255, 0.82); }
.blog-card--featured .blog-card__excerpt { color: rgba(238, 244, 255, 0.78); font-size: 16px; line-height: 27px; margin-bottom: 0; }
.blog-card--featured .blog-card__meta { border-top-color: rgba(255, 255, 255, 0.16); margin-top: 20px; padding-top: 16px; color: rgba(222, 233, 255, 0.66); }
.blog-card__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

/* ---- Article body ---- */
.article { padding: 64px 0 84px; }
.article__body { max-width: 780px; margin-inline: auto; }
.article__body > p:first-of-type { font-size: 19px; line-height: 32px; color: var(--text); }
.article__body h2 {
  font-size: 27px;
  line-height: 35px;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.article__body h3 { font-size: 20px; line-height: 28px; margin: 32px 0 12px; }
.article__body p { font-size: 17px; line-height: 31px; color: var(--text-soft); margin-bottom: 22px; }
.article__body ul, .article__body ol { margin: 0 0 24px 22px; }
.article__body ul { list-style: disc; }
.article__body ol { list-style: decimal; }
.article__body li { margin-bottom: 10px; font-size: 17px; line-height: 30px; color: var(--text-soft); }
.article__body li > strong { color: var(--navy); }
.article__body a { color: var(--blue); text-decoration: underline; }
/* Buttons inside the article flow are not body links. */
.article__body .btn { color: var(--ink); text-decoration: none; }
.article__body .btn:hover { color: #fff; }
.article__body strong { color: var(--navy); }
.article__body table { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.article__body th, .article__body td { border: 1px solid var(--border-soft); padding: 12px 14px; text-align: left; font-size: 16px; line-height: 25px; }
.article__body thead th { background: var(--surface-alt); font-family: var(--font-head); color: var(--navy); }

/* Contents box. */
.article__toc {
  background: var(--surface-alt);
  border: 1px solid #e6ebf5;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 42px;
}
.article__toc h2 { font-size: 14px; margin: 0 0 12px; padding: 0; border: 0; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.article__toc ol { margin: 0 0 0 18px; list-style: decimal; }
.article__toc li { margin-bottom: 6px; font-size: 15px; line-height: 23px; }
.article__toc a { color: var(--navy); text-decoration: none; }
.article__toc a:hover { color: var(--blue); text-decoration: underline; }

/* Pull-out note. */
.blog-callout {
  margin: 30px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--surface-alt);
}
.blog-callout__label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-callout p { margin-bottom: 0; font-size: 16px; line-height: 28px; }
.blog-callout p + p { margin-top: 12px; }

/* Takeaway summary. */
.blog-takeaways {
  margin: 36px 0;
  padding: 26px 30px;
  border: 1px solid #e2e8f6;
  border-radius: var(--radius-lg);
  background: #fff;
}
.blog-takeaways h2 { font-size: 18px; margin: 0 0 14px; padding: 0; border: 0; }
.blog-takeaways ul { margin: 0 0 0 20px; }
.blog-takeaways li { font-size: 16px; line-height: 27px; margin-bottom: 8px; }

/* End-of-article call to action. */
.article-cta {
  margin-top: 52px;
  padding: 34px 36px;
  border-radius: 14px;
  background: linear-gradient(243.85deg, var(--blue) 20%, var(--blue-light) 100%);
  color: #fff;
  text-align: center;
}
.article-cta h2 { color: #fff; font-size: 26px; line-height: 34px; margin: 0 0 10px; padding: 0; border: 0; }
.article-cta p { color: rgba(255, 255, 255, 0.85); font-size: 16px; line-height: 27px; margin: 0 auto 22px; max-width: 560px; }

/* Related reading. */
.article-related { padding: 0 0 90px; }
.article-related__head { max-width: 780px; margin: 0 auto 24px; }
.article-related__head h2 { font-size: 22px; }
.article-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---- Blog responsive ---- */
@media (max-width: 1000px) {
  .blog-grid, .article-related__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 767px) {
  .blog-hero { padding: 48px 0 74px; }
  .page-hero::before,
  .blog-hero::before { background-size: 42px 42px; }
  .page-hero::after,
  .blog-hero::after { height: 46px; }
  .blog-hero h1 { font-size: 28px; }
  .blog-hero__lede { font-size: 16px; line-height: 27px; }
  .blog-hero--index .blog-hero__inner::after { margin-top: 24px; }
  .blog-list { padding: 48px 0 62px; }
  .blog-grid, .article-related__grid { grid-template-columns: 1fr; }
  .blog-card--featured { padding: 28px 24px; }
  .blog-card--featured .blog-card__title { font-size: 24px; line-height: 32px; }
  .article { padding: 44px 0 60px; }
  .article__body > p:first-of-type { font-size: 17px; line-height: 29px; }
  .article__body h2 { font-size: 22px; line-height: 30px; margin-top: 36px; }
  .article-cta { padding: 28px 22px; }
  .article-cta h2 { font-size: 22px; line-height: 30px; }
  .article-related { padding-bottom: 60px; }
}
