/* =============================================================================
   Huella Cero — main stylesheet (plain CSS, no build tools)
   Layout uses ONE breakpoint (768px) plus fluid clamp() type and auto-fit
   grids, so everything is responsive without stacked media queries.
   ============================================================================= */

/* ---- Design tokens -------------------------------------------------------- */
:root {
  --navy-900: #0b1424; /* primary nav / page background */
  --navy-950: #011c4b; /* hero gradient end */
  --navy-glow: #002870; /* nav shadow / glow */
  --card-grad-end: #2a4d8a; /* broker card gradient end */
  --blue: #4da3ff; /* buttons + fingerprint circle */
  --green: #12b76a; /* accent / badges */
  --danger: #ff0000; /* exposed cross */
  --danger-bg: #5e2e2e; /* cross background */
  --ink: #101828; /* dark text on light section */
  --light: #f7f9fb; /* light section background */

  --font-display: "Haas Grot Disp Trial", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1720px;
}

/* ---- Reset / base --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

::selection {
  background: var(--blue);
  color: var(--navy-900);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 6px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #3f97f7;
  color: #fff;
}
.btn-outline {
  border-color: rgba(77, 163, 255, 0.7);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(77, 163, 255, 0.1);
}
.btn-ghost {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}
.btn-ghost:hover {
  color: #fff;
}
.btn-dark {
  background: #0b1424;
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-2px);
  background: #060d1a;
  color: #fff;
}

/* ---- Header --------------------------------------------------------------- */
/* Solid navy bar with the exact #002870 drop shadow, shown by default
   (not only on scroll) and on every page. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px 0 var(--navy-glow);
  transition: transform 0.3s ease;
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.brand img {
  max-height: 40px;
  width: auto;
}

.nav-primary .menu,
.mobile-panel .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-primary {
  display: none;
}
.header-actions {
  display: none;
}
.nav-primary .menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-primary a {
  font-size: 16px;
  color: #ffffff;
}
.nav-primary a:hover {
  color: #fff;
}

.header-actions {
  align-items: center;
  gap: 16px;
}

/* ---- Burger + mobile menu ------------------------------------------------- */
.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
body.menu-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  height: 100dvh;
  width: 82%;
  max-width: 360px;
  background: var(--navy-950);
  padding: 96px 28px 40px;
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.3s ease,
    visibility 0.3s ease;
  box-shadow: -20px 0 50px -20px var(--navy-glow);
}
body.menu-open .mobile-panel {
  transform: translateX(0);
  visibility: visible;
}
.mobile-panel .menu {
  display: flex;
  flex-direction: column;
}
.mobile-panel .menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}
.mobile-panel .menu a:hover {
  color: var(--blue);
}
.mobile-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-actions .btn {
  width: 100%;
}
.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-close:hover {
  color: #fff;
}

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 160px 0 70px;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  flex: 1 1 0;
  min-width: 0;
}
.radar {
  flex: 1 1 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(18, 183, 106, 0.4);
  border-radius: 999px;
  padding: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--green);
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(2.5rem, 1.4rem + 4vw, 4.74rem);
  line-height: 1.05;
  max-width: 41rem;
}
.hero .lead {
  margin-top: 20px;
  max-width: 28rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Radar ---------------------------------------------------------------- */
.radar {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
/* Dashed orbit rings (PNG) that slowly rotate in opposite directions. */
.radar-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
/* Ellipse 9 (425px) = outer, Ellipse 8 (340px ≈ 80%) = inner.
   Both tick clockwise 4 times (like a clock hand), then snap back to reset. */
.radar-orbit--lg {
  width: 100%;
  height: 100%;
  animation: radar-tick 7s infinite;
}
.radar-orbit--sm {
  width: 80%;
  height: 80%;
  animation: radar-tick 7s infinite;
}
@keyframes radar-tick {
  0%,
  18% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  20%,
  38% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  40%,
  58% {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  60%,
  78% {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  80%,
  92% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* Dashed connector lines pointing from a node toward the centre. */
.radar-line {
  position: absolute;
  opacity: 0.6;
  pointer-events: none;
}
.radar-line--acxiom {
  top: 11%;
  left: 50%;
  height: 16%;
  width: auto;
  transform: translateX(-50%);
}
.radar-line--intelli {
  top: 73%;
  left: 50%;
  height: 16%;
  width: auto;
  transform: translateX(-50%);
}
.radar-line--radaris {
  top: 25%;
  left: 27%;
  height: 14%;
  width: auto;
}

.radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Soft dark halo that sits behind the disc. */
.radar-shade {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 27, 53, 0.95) 45%,
    rgba(13, 27, 53, 0) 72%
  );
}
/* Pulses that "pop" outward from the centre around the fingerprint. */
.radar-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 163, 255, 0.28) 0%,
    rgba(77, 163, 255, 0) 70%
  );
  transform: translate(-50%, -50%) scale(0.55);
  opacity: 0;
  animation: radar-pop 3.6s ease-out infinite;
}
.radar-pulse:nth-child(2) {
  animation-delay: 1.2s;
}
.radar-pulse:nth-child(3) {
  animation-delay: 2.4s;
}
@keyframes radar-pop {
  0% {
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 0.85;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
.radar-disc {
  position: relative;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 70px -6px var(--blue);
}
.radar-disc img {
  width: 46%;
  height: 46%;
  object-fit: contain;
}
@media (prefers-reduced-motion: reduce) {
  .radar-orbit,
  .radar-pulse {
    animation: none;
  }
}

.radar-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.radar-node .pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #525151;
  border: 1px solid #c9c9c9;
}
.radar-node.exposed .pin {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--danger);
  background: var(--danger-bg);
  border: 1.5px solid var(--danger);
}
.radar-node .node-label {
  font-size: 12px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
}
.radar-node.exposed .node-label {
  color: rgba(255, 0, 0, 0.9);
}

.radar-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 100px;
  padding: 5px 17px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.6);
}
.radar-chip .chip-ico {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ---- Trust row ------------------------------------------------------------ */
.trust-row {
  margin-top: 130px;
  padding-top: 32px;
  border-top: 1px solid #e4e7ec;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-item .ico {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.trust-item .ico img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ---- The Problem ---------------------------------------------------------- */
.problem {
  background: var(--light);
  color: #475467;
  padding: 80px 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.problem .eyebrow {
  display: block;
  width: 163px;
  height: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--green);
}
.problem h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(2.25rem, 1.4rem + 3.4vw, 4.74rem);
  line-height: 1.02;
}
.problem p {
  margin-top: 20px;
  max-width: 34.84rem;
  font-size: 16px;
  color: #101828;
}
.problem .stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
}
.problem .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  line-height: 1;
}
.problem .stat-label {
  font-size: 14px;
  color: #101828;
}

.problem-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.broker-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(
    135deg,
    var(--navy-900) 0%,
    var(--card-grad-end) 100%
  );
  transition: transform 0.2s ease;
}
.broker-card:hover {
  transform: translateY(-4px);
}
.broker-card .ico {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.broker-card .ico img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.broker-card h3 {
  margin-top: 24px;
  font-size: 18px;
  color: #fff;
}
.broker-card .sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.broker-card--more {
  justify-content: flex-start;
  border: 2px solid rgba(18, 183, 106, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f0fbf6 100%);
}
.broker-card--more h3 {
  margin-top: 0;
  color: var(--green);
}
.broker-card--more .sub {
  color: #667085;
}

/* ---- How It Works --------------------------------------------------------- */
.howitworks {
  background: var(--navy-900);
  padding: 88px 0;
}
.howitworks .eyebrow {
  display: block;
  width: 163px;
  height: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--green);
}
.howitworks-title {
  margin-top: 14px;
  font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.75rem);
  line-height: 1.04;
  max-width: 18ch;
}
.steps-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step-num {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c9c9c9, rgba(201, 201, 201, 0.2));
}
.step-title {
  margin-top: 24px;
  font-size: 20px;
  color: #fff;
}
.step-body {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32ch;
}

/* ---- Pricing -------------------------------------------------------------- */
.pricing {
  background: var(--light);
  color: #475467;
  padding: 96px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.pricing .eyebrow {
  display: block;
  width: 163px;
  height: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--green);
}
.pricing h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2.25rem, 1.4rem + 3vw, 4rem);
  line-height: 1.04;
  max-width: 30rem;
}
.pricing p {
  margin-top: 18px;
  max-width: 30rem;
  font-size: 16px;
  color: #667085;
}
.pricing .btn-dark {
  margin-top: 28px;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  padding: 28px 32px;
}
.plan-card--recommended {
  border: 2px solid #4da3ff;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: #4da3ff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 30px;
  border-radius: 999px;
  border: 1px solid #0b1424;
}
.plan-name {
  display: block;
  font-size: 15px;
  color: #667085;
}
.plan-amount {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
}
.plan-per {
  font-size: 14px;
  font-weight: 500;
  color: #98a2b3;
}
.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #344054;
}
.plan-features svg {
  color: var(--green);
  flex: none;
}

/* ---- CTA ------------------------------------------------------------------ */
.cta {
  background: var(--navy-900);
  padding: 110px 0;
}
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.5rem);
  line-height: 1.08;
  max-width: 55rem;
}
.word-rotator {
  display: block;
  height: 1.15em;
  line-height: 1.15;
  overflow: hidden;
}
.word-roll {
  display: flex;
  flex-direction: column;
  animation: word-roll 5s ease-in-out infinite;
}
.word-roll span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
  color: var(--blue);
}
@keyframes word-roll {
  0%,
  42% {
    transform: translateY(0);
  }
  50%,
  92% {
    transform: translateY(-1.15em);
  }
  100% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .word-roll {
    animation: none;
  }
}

.cta-lead {
  margin-top: 22px;
  max-width: 34rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.cta-form {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0 20px;
  width: 100%;
  max-width: 360px;
}
.cta-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cta-field input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}
.cta-field svg {
  color: rgba(255, 255, 255, 0.6);
}
.cta-field:focus-within {
  border-color: var(--blue);
}

/* ---- FAQ ------------------------------------------------------------------ */
.faq {
  background: var(--light);
  padding: 96px 0;
}
.faq .eyebrow {
  display: block;
  width: 163px;
  height: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--green);
}
.faq-title {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2.25rem, 1.4rem + 3.2vw, 4rem);
  line-height: 1.02;
}
.faq-lead {
  margin-top: 14px;
  font-size: 16px;
  color: #667085;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
/* 1st & 3rd tabs — black left, bluish right */
.faq-item:nth-child(odd) {
  background:
    linear-gradient(90deg, #0b1424 0%, #1e3d74 100%) padding-box,
    linear-gradient(90deg, #042e5b 0%, #4da3ff 100%) border-box;
}
/* 2nd & 4th tabs — bluish left, black right */
.faq-item:nth-child(even) {
  background:
    linear-gradient(90deg, #142f5f 0%, #0b1424 100%) padding-box,
    linear-gradient(90deg, #007bff 0%, #0b1424 100%) border-box;
  box-shadow: 0 0 12px 0 #61adff;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  color: #fff;
}
.faq-icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
/* Vertical bar collapses upward into the horizontal bar -> minus. */
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}
.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -150%) rotate(90deg) scaleX(0);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 32px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}
.faq-item.is-open .faq-a > p {
  padding: 0 32px 28px;
}

/* ---- Generic content (pages/posts) --------------------------------------- */
.content-section {
  padding: 130px 0 80px;
}
.post-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.entry-title {
  color: #fff;
}
.entry-title a {
  color: #fff;
}
.entry-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 16px;
}
.entry-content p {
  color: rgba(255, 255, 255, 0.75);
}
.page-header {
  margin-bottom: 16px;
}
.pagination a,
.pagination .current {
  color: var(--blue);
  margin-right: 12px;
}

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}
.footer-brand {
  max-width: 20rem;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p {
  margin: 0;
}

/* =============================================================================
   The ONE breakpoint — everything below is mobile-first (single column +
   burger menu); this query switches to the desktop layout at 1024px.
   ============================================================================= */
@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }

  .hero {
    padding: 180px 0 96px;
  }
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .hero-copy {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .radar {
    flex: 1 1 50%;
    max-width: 30%;
  }

  .problem {
    padding: 112px 0;
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .howitworks {
    padding: 5rem 0 15rem;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .pricing {
    padding: 9rem 0 9rem 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Desktop nav + actions visible, burger hidden. */
  .nav-primary {
    display: block;
  }
  .header-actions {
    display: flex;
  }
  .burger {
    display: none;
  }
}

/* =============================================================================
   Sign-up / Get Started page (standalone auth layout)
   ============================================================================= */
.signup-page {
  background: var(--navy-900);
}

.signup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #e4e7ec;
}
.signup-bar .brand {
  color: var(--navy-900);
}
.signup-bar .brand img {
  max-height: 36px;
  width: auto;
}
.signup-bar-aside {
  margin: 0;
  font-size: 14px;
  color: #667085;
}
.signup-bar-aside a {
  color: var(--navy-900);
  font-weight: 700;
}

.signup {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 73px);
}

/* ---- Left brand panel ----------------------------------------------------- */
.signup-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  background: var(--navy-900);
  padding: 48px 24px;
}
.signup-graphic {
  width: 100%;
  max-width: 280px;
  margin: 24px auto 0;
}
.signup-graphic img {
  width: 100%;
  height: auto;
}

.signup-aside-copy h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2rem);
  line-height: 1.15;
  max-width: 14ch;
}
.signup-aside-copy p {
  margin-top: 16px;
  max-width: 30ch;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.signup-trust {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.signup-trust li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.signup-trust .ico {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}
header.site-header {
  padding-top: 15px;
  padding-bottom: 15px;
}
.signup-trust .ico img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.signup-trust .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.signup-trust strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.signup-trust small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Right form panel ----------------------------------------------------- */
.signup-main {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
}
.signup-form-wrap {
  width: 100%;
  max-width: 453px;
}
.signup-form-head {
  text-align: center;
}
.signup-form-head h1 {
  color: #0b1424;
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
}
.signup-form-head p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #667085;
}

.signup-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: block;
}
.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid #e4e7ec;
  border-radius: 15px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: #0b1424;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.signup-form input:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.15);
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475467;
}
.field-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  flex: none;
}
.field-check a {
  color: var(--green);
  font-weight: 600;
}

.signup-submit {
  width: 100%;
  height: 52px;
  margin-top: 4px;
  background: #4da3ff;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 10px 25px -10px rgba(77, 163, 255, 0.6);
}
.signup-submit:hover {
  transform: translateY(-2px);
  background: #3f97f7;
}

.signup-form-foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e4e7ec;
  text-align: center;
}
.signup-form-foot p {
  margin: 0;
  font-size: 14px;
  color: #667085;
}
.signup-form-foot p a {
  color: #0b1424;
  font-weight: 700;
}
.signup-secure {
  margin-top: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #98a2b3;
}
.signup-secure svg {
  color: #98a2b3;
}

@media (min-width: 900px) {
  .signup {
    grid-template-columns: 1fr 1.4fr;
  }
  .signup-aside {
    padding: 64px 56px;
  }
}

/* =============================================================================
   Pricing page
   ============================================================================= */
.pricing-page {
  background: #fff;
  color: #475467;
  padding: 140px 0 90px;
}
.pp-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.pp-head .eyebrow {
  display: block;
  width: 163px;
  height: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--green);
  text-align: center;
}
.pp-head h1 {
  margin-top: 12px;
  color: #0b1424;
  font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.5rem);
  line-height: 1.05;
}
.pp-head p {
  margin-top: 14px;
  font-size: 16px;
  color: #667085;
}

.pp-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.pp-card {
  position: relative;
  width: 374px;
  max-width: 100%;
  min-height: 485px;
  background: #fff;
  border: 1px solid #475467;
  border-radius: 18px;
  padding: 32px;
}
.pp-card--featured {
  background: #0b1424;
  border-color: #0b1424;
  color: rgba(255, 255, 255, 0.8);
}
.pp-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #4da3ff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 0 15px 0 16px;
}
.pp-name {
  font-size: 16px;
  color: #475467;
}
.pp-card--featured .pp-name {
  color: rgba(255, 255, 255, 0.75);
}
.pp-price {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #0b1424;
}
.pp-card--featured .pp-price {
  color: #fff;
}
.pp-price span {
  font-size: 15px;
  font-weight: 500;
  color: #98a2b3;
}
.pp-meta {
  margin: 16px 0 0;
  font-size: 14px;
  color: #667085;
}
.pp-card--featured .pp-meta {
  color: rgba(255, 255, 255, 0.6);
}
.pp-dot {
  margin: 0 4px;
}

.pp-btn {
  width: 100%;
  margin-top: 22px;
}

.pp-rule {
  margin: 28px 0 20px;
  border: 0;
  border-top: 1px solid #e4e7ec;
}
.pp-card--featured .pp-rule {
  border-top-color: #e4e7ec;
}
.pp-included {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #98a2b3;
}
.pp-card--featured .pp-included {
  color: rgba(255, 255, 255, 0.55);
}
.pp-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #475467;
}
.pp-card--featured .pp-features li {
  color: rgba(255, 255, 255, 0.7);
}
.pp-check {
  flex: none;
  color: var(--green);
}

.pp-banner {
  margin: 32px auto 0;
  width: 907px;
  max-width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--green);
  background: rgba(18, 183, 106, 0.05);
  border-radius: 12px;
  padding: 9px 24px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #12b76a;
}
.pp-banner .pp-banner-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: none;
}
.pp-banner strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--green);
}

@media (min-width: 860px) {
  .pp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================================================
   Pricing page — Trust / Brokers / Guarantee sections
   ============================================================================= */
.trust-section {
  background: #e4e7ec;
  padding: 8rem 0;
}
.ts-head {
  text-align: center;
  margin: 0 auto;
}
.ts-head h2 {
  color: #0b1424;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem);
  line-height: 1.05;
}
.ts-head p {
  margin-top: 14px;
  font-size: 16px;
  color: #101828;
}

.ts-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.ts-card {
  width: 285px;
  max-width: 100%;
  min-height: 246px;
  background: #f8fafc;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  padding: 28px 24px;
}
.ts-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e4e7ec;
}
.ts-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.ts-card h3 {
  margin-top: 22px;
  font-size: 18px;
  color: #0b1424;
}
.ts-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
}

.brokers-section {
  background: #fff;
  padding: 8rem 0;
}
.bs-head {
  text-align: center;
  margin: 0 auto;
}
.bs-head h2 {
  color: #0b1424;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem);
  line-height: 1.05;
}
.bs-count {
  color: var(--blue);
}
.bs-head p {
  margin-top: 14px;
  font-size: 16px;
  color: #101828;
}

.bs-chips {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.bs-chip {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 15px;
  color: #000000;
  background: #fff;
}
.bs-chip--more {
  background: #e9ebef;
  color: #000000;
}

.guarantee {
  background: linear-gradient(315deg, #2a4d8a 0%, #0b1424 55%);
  padding: 90px 0;
}
.guarantee-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guarantee-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.guarantee-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.guarantee h2 {
  margin-top: 22px;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem);
  line-height: 1.05;
}
.guarantee p {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}
.guarantee .btn {
  margin-top: 32px;
}
.guarantee-fine {
  margin-top: 18px !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================================================
   Profile setup wizard (page-setup-profile.php)
   ============================================================================= */
.wizard-page {
  background: #fff;
}

.signup-bar .secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(18, 183, 106, 0.5);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.wizard {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 70px);
}

/* ---- Sidebar -------------------------------------------------------------- */
.wiz-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background: #f7f9fb;
  border-right: 1px solid #eef1f5;
  padding: 36px 28px;
}
.wiz-aside-top h2 {
  color: #0b1424;
  font-size: 20px;
}
.wiz-aside-top > p {
  margin-top: 8px;
  font-size: 13px;
  color: #667085;
}

.wiz-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wiz-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.wiz-step-mark {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eef1f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiz-step-num {
  font-size: 13px;
  font-weight: 700;
  color: #667085;
}
.wiz-step-check {
  display: none;
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.wiz-step-label {
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}

.wiz-step.is-active {
  background: #0b1424;
  border-color: #4da3ff;
}
.wiz-step.is-active .wiz-step-mark {
  background: #fff;
}
.wiz-step.is-active .wiz-step-num {
  color: #0b1424;
}
.wiz-step.is-active .wiz-step-label {
  color: #fff;
}

.wiz-step.is-done .wiz-step-mark {
  background: var(--green);
}
.wiz-step.is-done .wiz-step-num {
  display: none;
}
.wiz-step.is-done .wiz-step-check {
  display: block;
}

.wiz-note {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  padding: 18px;
}
.wiz-note svg {
  flex: none;
  color: #98a2b3;
  margin-top: 2px;
}
.wiz-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #667085;
}
.wiz-note strong {
  color: #0b1424;
}

/* ---- Main panels ---------------------------------------------------------- */
.wiz-main {
  padding: 40px 24px 64px;
}
.wiz-panel {
  display: none;
  max-width: 760px;
}
.wiz-panel.is-active {
  display: block;
  animation: wiz-fade 0.25s ease;
}
@keyframes wiz-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.wiz-eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.wiz-panel h1 {
  margin-top: 6px;
  color: #0b1424;
  font-size: clamp(1.9rem, 1.3rem + 2vw, 2.75rem);
}
.wiz-sub {
  margin-top: 10px;
  font-size: 15px;
  color: #475467;
}

.wiz-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.wiz-fields--2 {
  grid-template-columns: 1fr;
}
.wiz-fields--address {
  grid-template-columns: 1fr;
}
.wiz-main .field {
  margin-top: 22px;
}
.wiz-fields .field {
  margin-top: 0;
}
.field--dob {
  max-width: 387px;
}
.wiz-main .btn-primary {
  width: 200px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid #4da3ff;
  border-radius: 100px;
  background: #4da3ff;
  color: #fff;
}

.wiz-main input[type="text"],
.wiz-main input[type="email"],
.wiz-main input[type="tel"],
.wiz-main input[type="date"] {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: #0b1424;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.wiz-main input:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.15);
}
.wiz-hint {
  margin-top: 12px;
  font-size: 13px;
  color: #98a2b3;
  max-width: 40ch;
}

.wiz-group-title {
  margin-top: 30px;
  color: #0b1424;
  font-size: 16px;
}
.wiz-group-sub {
  margin-top: 6px;
  font-size: 13px;
  color: #667085;
}

.repeat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.repeat-row input {
  flex: 1;
}
.repeat-remove {
  flex: none;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 1;
  color: #98a2b3;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.repeat-remove:hover {
  color: #475467;
}

.add-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.add-link span {
  font-size: 16px;
}

.wiz-tip {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid #f79009;
  background: #fffaf0;
  border-radius: 12px;
  padding: 16px 18px;
}
.wiz-tip .wiz-tip-ico {
  flex: none;
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-top: 1px;
}
.wiz-tip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #f79009;
}

.wiz-rule {
  margin: 32px 0 22px;
  border: 0;
  border-top: 1px solid #e4e7ec;
}
.wiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wiz-nav--end {
  justify-content: flex-end;
}
.wiz-back {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #344054;
}
.wiz-back:hover {
  color: #0b1424;
}

/* ---- Review --------------------------------------------------------------- */
.review-card {
  margin-top: 16px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  padding: 20px 22px;
  background: #fff;
}
.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card h3 {
  color: #0b1424;
  font-size: 16px;
}
.review-edit {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.review-card ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-card li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: #475467;
}
.review-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 11px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

@media (min-width: 880px) {
  .wizard {
    grid-template-columns: 320px 1fr;
  }
  .wiz-aside {
    padding: 40px 28px;
  }
  .wiz-main {
    padding: 48px 150px 72px 56px;
  }
  .wiz-fields--2 {
    grid-template-columns: 1fr 1fr;
  }
  .wiz-fields--address {
    grid-template-columns: 220px 180px;
    justify-content: start;
  }
}

/* =============================================================================
   User dashboard (page-dashboard.php)
   ============================================================================= */
.dashboard-page {
  background: #f4f5f7;
}

.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: #fff;
  border-bottom: 1px solid #e4e7ec;
}
.dash-bar .brand {
  color: #0b1424;
}
.dash-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.dash-bell {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dash-bell img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.dash-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #0b1424;
}
.dash-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.dash {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

/* ---- Header row ----------------------------------------------------------- */
.dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.dash-hi {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}
.dash-head h1 {
  margin: 4px 0 0;
  color: #0b1424;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2rem);
}
.dash-meta {
  margin: 6px 0 0;
  font-size: 13px;
  color: #667085;
}
.dash-pill-active {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(18, 183, 106, 0.5);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

/* ---- Privacy score -------------------------------------------------------- */
.score-card {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  background: linear-gradient(105deg, #0b1424 0%, #1c3563 100%);
  border-radius: 16px;
  padding: 26px 28px;
}
.score-left {
  flex: 1;
  min-width: 240px;
}
.score-title {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.score-num {
  margin: 8px 0 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: #fff;
}
.score-num span:not(.score-trend) {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.score-trend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #6ee7a8;
  background: rgba(18, 183, 106, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
}
.score-bar {
  margin-top: 16px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.score-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #12b76a, #6ee7a8);
}
.score-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.score-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 130px;
}
.score-stats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.sc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.sc-badge--danger {
  background: #f04438;
}

/* ---- Stat cards ----------------------------------------------------------- */
.stat-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: 14px;
  padding: 20px;
}
.stat-label {
  margin: 0;
  font-size: 13px;
  color: #667085;
}
.stat-num {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: #0b1424;
}
.stat-num--green {
  color: var(--green);
}
.stat-num--orange {
  color: #f79009;
}
.stat-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: #98a2b3;
}

/* ---- Alert ---------------------------------------------------------------- */
.dash-alert {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border: 1px solid #fec84b;
  background: #fffaf0;
  border-radius: 14px;
  padding: 18px 22px;
}
.dash-alert-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #b54708;
}
.dash-alert-title svg {
  color: #f79009;
}
.dash-alert-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: #b54708;
}
.dash-resolve {
  flex: none;
  display: inline-flex;
  align-items: center;
  background: #f79009;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
}
.dash-resolve:hover {
  background: #e07c00;
  color: #fff;
}

/* ---- Removal cases -------------------------------------------------------- */
.cases {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: 16px;
  overflow: hidden;
}
.cases-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #0b1424;
  padding: 18px 22px;
}
.cases-head h2 {
  color: #fff;
  font-size: 17px;
}
.cases-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cases-filter {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.cases-filter:hover {
  color: #fff;
}
.cases-filter.is-active {
  background: var(--blue);
  color: #fff;
}

.case-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.case-row {
  display: grid;
  grid-template-columns: 1.4fr auto 2fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid #f0f1f4;
  color: inherit;
  transition: background 0.15s ease;
}
.case-list li:first-child .case-row {
  border-top: 0;
}
.case-row:hover {
  background: #f7f9fb;
}
.case-name strong {
  display: block;
  font-size: 14px;
  color: #0b1424;
}
.case-name small {
  font-size: 12px;
  color: #98a2b3;
}
.case-id {
  font-size: 11px;
  font-weight: 600;
  color: #667085;
  background: #f2f4f7;
  border-radius: 6px;
  padding: 4px 8px;
}
.case-progress {
  display: flex;
  align-items: center;
}
.cp-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e4e7ec;
}
.cp-dot:not(:first-child) {
  margin-left: 34px;
}
.cp-dot:not(:first-child)::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 34px;
  height: 2px;
  transform: translateY(-50%);
  background: #e4e7ec;
}
.cp-dot.is-done {
  background: #12b76a;
}
.cp-dot.is-done::before {
  background: #12b76a;
}

.case-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.case-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.case-status--removed {
  color: #12b76a;
  background: #e7f7ee;
}
.case-status--progress {
  color: #12b76a;
  background: #e7f7ee;
}
.case-status--contacted {
  color: #7a5af8;
  background: #efeafe;
}
.case-status--reviewing {
  color: #667085;
  background: #f2f4f7;
}
.case-status--attention {
  color: #f79009;
  background: #fff4e5;
}
.case-date {
  font-size: 12px;
  color: #98a2b3;
  white-space: nowrap;
}

/* ---- Activity sidebar ----------------------------------------------------- */
.dash-side {
  display: flex;
  flex-direction: column;
}
.side-title {
  color: #0b1424;
  font-size: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9ebef;
}
.activity {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.activity-item {
  display: flex;
  gap: 14px;
}
.activity-ico {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
}
.activity-ico svg {
  width: 18px;
  height: 18px;
}
.activity-ico--check {
  background: #e7f7ee;
  color: #12b76a;
}
.activity-ico--refresh {
  background: #e7f7ee;
  color: #12b76a;
}
.activity-ico--doc {
  background: #f2f4f7;
  color: #667085;
}
.activity-ico--warn {
  background: #fff4e5;
  color: #f79009;
}
.activity-time {
  margin: 0;
  font-size: 12px;
  color: #98a2b3;
}
.activity-title {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #0b1424;
}
.activity-body {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #667085;
}

.plan-card-side {
  margin-top: 28px;
  border: 1px solid #e9ebef;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.plan-side-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0b1424;
}
.plan-side-body {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #667085;
}
.plan-side-flag {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

@media (min-width: 600px) {
  .stat-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1040px) {
  .dash {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

/* =============================================================================
   Case details page (page-case-details.php)
   ============================================================================= */
.case-page {
  background: #f4f5f7;
}

.dash-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dash-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #475467;
}
.dash-back:hover {
  color: #0b1424;
}

.case {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

/* ---- Hero + progress ------------------------------------------------------ */
.case-hero {
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: 18px;
  padding: 30px 32px;
}
.case-hero-id {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #667085;
}
.case-hero h1 {
  margin: 6px 0 0;
  color: #0b1424;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.5rem);
}
.case-hero-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #667085;
}
a.case-tag:hover {
  color: #0b1424;
}

.case-progress-title {
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #475467;
}
.case-steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.case-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.case-step-line {
  position: absolute;
  top: 17px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #e4e7ec;
}
.case-step.is-done .case-step-line,
.case-step.is-active .case-step-line {
  background: #12b76a;
}
.case-step-mark {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4e7ec;
  color: #fff;
}
.case-step-mark svg {
  width: 18px;
  height: 18px;
}
.case-step.is-done .case-step-mark {
  background: #12b76a;
}
.case-step.is-active .case-step-mark {
  background: #1c3563;
  box-shadow: 0 0 0 4px rgba(28, 53, 99, 0.18);
}
.case-step.is-active .case-step-mark svg {
  animation: case-spin 1.2s linear infinite;
}
@keyframes case-spin {
  to {
    transform: rotate(360deg);
  }
}
.case-step.is-todo .case-step-mark {
  background: #e4e7ec;
}
.case-step.is-todo .case-step-mark::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #98a2b3;
}
.case-step-label {
  font-size: 12px;
  color: #667085;
  max-width: 12ch;
}
.case-step.is-active .case-step-label,
.case-step.is-done .case-step-label {
  color: #344054;
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .case-step.is-active .case-step-mark svg {
    animation: none;
  }
}

/* ---- Grid + panels -------------------------------------------------------- */
.case-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.case-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.panel {
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: 16px;
  padding: 22px 24px;
}
.panel--muted {
  background: #f7f9fb;
}
.panel-title {
  color: #0b1424;
  font-size: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef1f5;
}

.case-note {
  padding-top: 16px;
}
.case-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #475467;
}
.case-note-meta {
  margin-top: 14px !important;
  font-size: 12px;
  color: #98a2b3 !important;
}

.case-activity {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-activity li {
  display: flex;
  gap: 14px;
}
.ca-ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
}
.ca-ico svg {
  width: 16px;
  height: 16px;
}
.ca-ico--check {
  background: #e7f7ee;
  color: #12b76a;
}
.ca-ico--doc {
  background: #eef4ff;
  color: #4da3ff;
}
.ca-ico--clock {
  background: #f2f4f7;
  color: #98a2b3;
}
.ca-head {
  margin: 0;
  font-size: 13px;
  color: #0b1424;
}
.ca-head strong {
  font-weight: 700;
}
.ca-head span {
  color: #98a2b3;
  font-weight: 500;
}
.ca-body {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #667085;
}

.case-files {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-files li {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  padding: 14px 16px;
}
.cf-ico {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
  color: #667085;
}
.cf-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cf-meta strong {
  font-size: 14px;
  color: #0b1424;
  word-break: break-all;
}
.cf-meta small {
  font-size: 12px;
  color: #98a2b3;
}
.cf-dl {
  flex: none;
  color: #667085;
}
.cf-dl:hover {
  color: #0b1424;
}

/* ---- Right column --------------------------------------------------------- */
.case-info {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-info dt {
  font-size: 12px;
  color: #98a2b3;
}
.case-info dd {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #0b1424;
}

.case-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.case-chip {
  font-size: 13px;
  color: #344054;
  background: #f2f4f7;
  border-radius: 8px;
  padding: 7px 12px;
}

.case-help {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #667085;
}
.case-help-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

@media (min-width: 980px) {
  .case-grid {
    grid-template-columns: 1.7fr 1fr;
  }
}
.wiz-fields.wiz-fields--2 {
  padding-top: 26px;
}

/* =============================================================================
   Mobile radar (≤600px) — shrink the radar and its chips so the green
   "Removed Today" / "Exposure Monitored" pills don't overlap the dial.
   ============================================================================= */
@media (max-width: 600px) {
  .radar {
    max-width: 340px;
  }
  .radar-chip {
    height: auto;
    gap: 5px;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 16px;
  }
  .radar-chip .chip-ico {
    width: 12px;
    height: 12px;
  }
  .radar-node .node-label {
    font-size: 10px;
  }
  .radar-node .pin {
    width: 24px;
    height: 24px;
  }
  .radar-node.exposed .pin {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* =============================================================================
   Very small devices (≤360px) — scale down type & padding so nothing feels
   cramped on the smallest phones. Layout/structure stays the same.
   ============================================================================= */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  /* Hero */
  .hero {
    padding: 130px 0 48px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .lead {
    font-size: 14px;
  }
  .badge {
    padding: 7px 12px;
    font-size: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section headings */
  .problem h2,
  .pricing h2,
  .faq-title,
  .howitworks-title,
  .cta-title {
    font-size: 1.75rem;
  }
  .eyebrow {
    font-size: 20px !important;
    width: auto !important;
  }

  /* Generic section padding */
  .problem,
  .howitworks,
  .pricing,
  .faq,
  .guarantee,
  .cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* Cards full-width on tiny screens */
  .pp-card,
  .ts-card {
    width: 100%;
  }

  /* Wizard */
  .wiz-main {
    padding: 28px 16px 48px;
  }
  .wiz-panel h1 {
    font-size: 1.75rem;
  }
  .signup-bar .secure-pill {
    font-size: 11px;
    padding: 6px 10px;
  }
}
