/* ==========================================================================
   Printability AI — Design System
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Palette: charcoal black, white, dark blue */
  --charcoal-950: #0a0d13;
  --charcoal-900: #0d1119;
  --charcoal-800: #141a24;
  --charcoal-700: #1c2431;
  --navy-900: #0a1a3c;
  --navy-800: #0f2557;
  --navy-700: #15316f;
  --blue-600: #1f4fd8;
  --blue-500: #2f66f0;
  --blue-400: #5c8bff;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --mist: #eaf1fb;
  --gray-100: #eef1f6;
  --gray-200: #dfe4ec;
  --gray-300: #c7cedb;
  --gray-500: #7a8496;
  --gray-600: #5b6472;
  --gray-700: #414a5a;
  --ink: #0d1119;

  --font-head: "Sora", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(10, 16, 30, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 16, 30, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 16, 30, 0.16);
  --shadow-card:
    0 1px 2px rgba(13, 17, 25, 0.03), 0 14px 32px rgba(13, 17, 25, 0.07);
  --shadow-card-hover:
    0 1px 2px rgba(13, 17, 25, 0.04), 0 22px 44px rgba(13, 17, 25, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--charcoal-950);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
svg {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}
[id] {
  scroll-margin-top: 100px;
}

.section-pad {
  padding: 92px 0;
}
@media (max-width: 900px) {
  .section-pad {
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .section-pad {
    padding: 48px 0;
  }
}

.bg-off {
  background: var(--off-white);
}
.bg-mist {
  background: linear-gradient(180deg, #e9f1fc 0%, #ffffff 100%);
}
.bg-charcoal {
  background: var(--charcoal-950);
  color: var(--white);
}
.bg-charcoal h1,
.bg-charcoal h2,
.bg-charcoal h3,
.bg-charcoal h4 {
  color: var(--white);
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue-600);
  display: inline-block;
}
.bg-charcoal .eyebrow {
  color: var(--blue-400);
}
.bg-charcoal .eyebrow::before {
  background: var(--blue-400);
}

h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
}
h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 700;
}
h3 {
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
}
h4 {
  font-size: 17px;
  font-weight: 600;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray-600);
  font-weight: 400;
}
.bg-charcoal .lead {
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 600px) {
  .lead {
    font-size: 16px;
    line-height: 1.55;
  }
}

.section-head {
  max-width: 680px;
  margin: 0 0 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  margin-top: 18px;
}
@media (max-width: 600px) {
  .section-head {
    margin-bottom: 32px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal-950);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-blue {
  background: var(--blue-600);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal-950);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--charcoal-950);
  transform: translateY(-2px);
}
.bg-charcoal .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.bg-charcoal .btn-outline:hover {
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal-950);
}
.btn-white:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 11px 22px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn[disabled]:hover {
  transform: none;
  box-shadow: none;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-row .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid rgba(13, 17, 25, 0.06);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(10, 16, 30, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--charcoal-950);
}
.brand img {
  height: 42px;
  width: auto;
}
.brand span em {
  font-style: normal;
  color: var(--blue-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal-950);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--blue-600);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-support {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.nav-support:hover {
  color: var(--charcoal-950);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal-950);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 600;
    background: var(--white);
    opacity: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 20px 18px;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s var(--ease),
      visibility 0s linear 0.3s;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.3s var(--ease),
      visibility 0s linear 0s;
  }
  .nav-links a {
    padding: 13px 4px;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-support {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-right {
    gap: 14px;
  }
  .nav-right .btn {
    padding: 11px 16px;
    font-size: 13.5px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  .nav-wrap {
    height: 68px;
  }
  .brand {
    font-size: 15px;
    gap: 8px;
  }
  .brand img {
    height: 28px;
  }
  .nav-right {
    gap: 6px;
  }
  .nav-right .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .nav-toggle {
    padding: 11px 6px;
    gap: 4px;
  }
  .nav-toggle span {
    width: 20px;
  }
  .nav-links {
    top: 68px;
    max-height: calc(100vh - 68px);
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }
  .nav-right .btn {
    padding: 7px 10px;
    font-size: 11.5px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 64px 0 44px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  margin-bottom: 22px;
}
.hero-copy .lead {
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hero-trust .dots {
  display: flex;
  gap: 8px;
}
.hero-trust .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  display: inline-block;
  opacity: 0.55;
}
.hero-trust .dots i:nth-child(1) {
  opacity: 1;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy .lead {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 40px 0 32px;
  }
  .hero-grid {
    gap: 36px;
  }
  .hero-copy h1 {
    margin-bottom: 16px;
  }
  .hero-copy .lead {
    margin-bottom: 26px;
  }
  .hero-trust {
    margin-top: 28px;
  }
}

/* Hero visual: layered mock illustration */
.hero-visual {
  position: relative;
  height: 460px;
}
.hv-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.hv-main {
  width: 88%;
  height: 340px;
  top: 30px;
  left: 0;
}
.hv-chip {
  width: 260px;
  bottom: 0;
  right: 0;
  padding: 20px;
}
.hv-badge {
  position: absolute;
  z-index: 5;
  top: 6px;
  right: 40px;
  background: var(--charcoal-950);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.hv-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d07f;
  display: inline-block;
}

.mock-topbar {
  height: 40px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}
.mock-topbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-300);
  display: inline-block;
}
.mock-body {
  padding: 22px;
  display: flex;
  gap: 20px;
  height: calc(100% - 40px);
}
.mock-side {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-side .bar {
  height: 10px;
  border-radius: 6px;
  background: var(--gray-100);
}
.mock-side .bar.active {
  background: var(--blue-500);
  width: 80%;
}
.mock-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-grid-vis {
  flex: 1;
  border-radius: var(--radius-md);
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(47, 102, 240, 0.18),
      transparent 55%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(15, 37, 87, 0.06) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(15, 37, 87, 0.06) 0 1px,
      transparent 1px 22px
    ),
    var(--off-white);
  position: relative;
  overflow: hidden;
}
.mock-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  animation: scan 3.2s ease-in-out infinite;
}
@keyframes scan {
  0% {
    top: 8%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    top: 88%;
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    top: 8%;
    opacity: 0;
  }
}
.mock-object {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-stats {
  display: flex;
  gap: 10px;
}
.mock-stat {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.mock-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--charcoal-950);
}
.mock-stat span {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
}

.hv-chip .ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(
    var(--blue-500) 0deg 313deg,
    var(--gray-100) 313deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hv-chip .ring::before {
  content: "87%";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--charcoal-950);
}
.hv-chip h4 {
  margin-bottom: 4px;
}
.hv-chip p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hero-visual {
    height: 360px;
  }
  .hv-main {
    height: 270px;
  }
  .hv-chip {
    width: 58%;
    max-width: 220px;
    padding: 16px;
  }
  .hv-chip .ring {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  .hv-chip .ring::before {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
  .hv-chip h4 {
    font-size: 15px;
  }
  .hv-chip p {
    font-size: 12px;
  }
  .hv-badge {
    right: 14px;
    top: 4px;
    padding: 8px 14px;
    font-size: 11.5px;
  }
  .mock-body {
    padding: 16px;
    gap: 14px;
  }
  .mock-object svg {
    width: 84px;
    height: 84px;
  }
  .mock-stat {
    padding: 8px 10px;
  }
  .mock-stat b {
    font-size: 14.5px;
  }
  .mock-stat span {
    font-size: 9.5px;
  }
}
@media (max-width: 420px) {
  .hero-visual {
    height: 320px;
  }
  .hv-main {
    width: 100%;
    height: 240px;
  }
  .mock-side {
    display: none;
  }
  .hv-chip {
    width: 62%;
  }
}

/* ==========================================================================
   Stat strip
   ========================================================================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.stat-strip .stat {
  background: var(--white);
  padding: 34px 30px;
}
.stat-strip .stat h3 {
  font-size: 30px;
  color: var(--blue-600);
  margin-bottom: 8px;
}
.stat-strip .stat p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 780px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .stat-strip .stat {
    padding: 26px 22px;
  }
}

/* ==========================================================================
   Radial wheel (solutions)
   ========================================================================== */
.wheel-section {
  padding: 96px 0 72px;
}
@media (max-width: 900px) {
  .wheel-section {
    padding: 64px 0 48px;
  }
}
@media (max-width: 600px) {
  .wheel-section {
    padding: 48px 0 40px;
  }
}
.wheel-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 640px;
  margin: 0 auto;
}
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: #aaaeb4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.wheel-center img {
  height: 34px;
}
.wheel-center span {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.wheel-ring {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1.5px dashed var(--gray-200);
}

.wheel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  --angle: 0deg;
  --radius: 260px;
  transform: rotate(var(--angle)) translate(var(--radius))
    rotate(calc(-1 * var(--angle)));
}
.wheel-card {
  width: 168px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.wheel-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-600);
}
.wheel-card .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--charcoal-950);
  transition: all 0.3s var(--ease);
}
.wheel-card:hover .ic {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--mist);
}
.wheel-card h4 {
  font-size: 14.5px;
  margin-bottom: 6px;
}
.wheel-card p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .wheel-wrap {
    display: none;
  }
  .wheel-fallback {
    display: grid !important;
  }
}
.wheel-fallback {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 540px) {
  .wheel-fallback {
    grid-template-columns: 1fr;
  }
}
.wheel-fallback .wheel-card {
  width: 100%;
}

/* ==========================================================================
   Split feature sections
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split.reverse .split-copy {
  order: 1;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.reverse .split-media,
  .split.reverse .split-copy {
    order: initial;
  }
}
@media (max-width: 480px) {
  .split {
    gap: 28px;
  }
}
.split-copy ul {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-copy ul li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.5;
}
.split-copy ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue-600);
}
.split-copy {
  margin-top: 0;
}
.split-copy .btn {
  margin-top: 30px;
}

.split-media {
  position: relative;
}
.panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel-header {
  height: 44px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}
.panel-header i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-300);
}
.panel-body {
  padding: 26px;
}
@media (max-width: 480px) {
  .panel-body {
    padding: 18px;
  }
  .risk-map {
    gap: 4px;
    margin-bottom: 16px;
  }
  .legend {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
}

.risk-map {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  margin-bottom: 20px;
}
.risk-map i {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--gray-100);
  display: block;
}
.risk-map i.low {
  background: #cfe8d8;
}
.risk-map i.mid {
  background: #ffe3a3;
}
.risk-map i.high {
  background: #ffb4b0;
}

.legend {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}
.legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--gray-600);
  font-weight: 600;
}
.legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.legend .low {
  background: #6fbf8e;
}
.legend .mid {
  background: #f2b53c;
}
.legend .high {
  background: #ef6a63;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--off-white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal-950);
}
.checklist .tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.tag.ok {
  background: #dcf3e4;
  color: #1c7a44;
}
.tag.warn {
  background: #fdecc8;
  color: #9a6a06;
}
.tag.risk {
  background: #fcdcd9;
  color: #b13c34;
}

/* ==========================================================================
   Steps / process
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 980px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.step-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--charcoal-950);
}
.step-card:hover::before {
  transform: scaleX(1);
}
@media (max-width: 600px) {
  .step-card {
    padding: 24px 22px;
  }
}
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--blue-600);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: block;
}
.step-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}
.step-card p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Feature grid (3 col cards)
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.feature-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px 30px 32px;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--charcoal-950);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card .fc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.feature-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1.5px solid var(--gray-200);
  background: var(--off-white);
  color: var(--charcoal-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.feature-card:hover .ic {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--mist);
}
.feature-card .fc-index {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray-300);
  padding-top: 4px;
}
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.feature-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.bg-charcoal .feature-card {
  background: var(--charcoal-800);
  border-color: var(--charcoal-700);
}
.bg-charcoal .feature-card:hover {
  border-color: var(--blue-500);
}
.bg-charcoal .feature-card p {
  color: rgba(255, 255, 255, 0.65);
}
.bg-charcoal .feature-card .ic {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--blue-400);
}
.bg-charcoal .feature-card:hover .ic {
  border-color: var(--blue-400);
  background: rgba(255, 255, 255, 0.08);
}
.bg-charcoal .feature-card .fc-index {
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--navy-900) 0%,
    var(--charcoal-950) 100%
  );
  border-radius: var(--radius-xl);
  padding: 76px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(47, 102, 240, 0.35),
    transparent 70%
  );
  top: -220px;
  right: -160px;
}
.cta-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-banner .btn-outline:hover {
  border-color: var(--white);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 17px;
}
.cta-banner .cta-row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .cta-banner {
    padding: 44px 24px;
  }
  .cta-banner p {
    margin-bottom: 26px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal-950);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding-top: 52px;
  }
  .footer-top {
    padding-bottom: 36px;
  }
}
.footer-brand .brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 18px;
}
.footer-brand .brand-badge img {
  height: 34px;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 22px;
}
.footer-brand .footer-connect {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 10%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  isolation: isolate;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

/* Subtle shine effect */
.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

/* Icon stays above the effect */
.footer-social a svg,
.footer-social a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease);
}

/* Hover */
.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px) scale(1.05);
}
/* Brand hover colours. X and TikTok are near black, which would vanish against
   the dark footer, so they invert to a light chip instead. */
.social-linkedin:hover {
  background: linear-gradient(135deg, #0a66c2, #084f9c);
  border-color: #0a66c2;
  box-shadow:
    0 10px 25px rgba(10, 102, 194, 0.35),
    0 0 0 4px rgba(10, 102, 194, 0.08);
}
.social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow:
    0 10px 25px rgba(24, 119, 242, 0.35),
    0 0 0 4px rgba(24, 119, 242, 0.08);
}
.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  border-color: #dc2743;
  box-shadow:
    0 10px 25px rgba(220, 39, 67, 0.35),
    0 0 0 4px rgba(220, 39, 67, 0.08);
}
.social-tiktok:hover {
  background: #fe2c55;
  border-color: #fe2c55;
  box-shadow:
    0 10px 25px rgba(254, 44, 85, 0.35),
    0 0 0 4px rgba(254, 44, 85, 0.08);
}
.social-x:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal-950);
  box-shadow:
    0 10px 25px rgba(255, 255, 255, 0.22),
    0 0 0 4px rgba(255, 255, 255, 0.10);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a:hover svg,
.footer-social a:hover i {
  transform: scale(1.1);
}

/* Keyboard accessibility */
.footer-social a:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 4px;
}

/* Optional: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .footer-social a,
  .footer-social a::before,
  .footer-social a svg,
  .footer-social a i {
    transition: none;
  }
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col a {
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: var(--white);
}
@media (max-width: 560px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0;
  }
}

/* ==========================================================================
   Inner page hero (Product / About / Contact / How it works)
   ========================================================================== */
.page-hero {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #e9f1fc 0%, #ffffff 100%);
  text-align: center;
}
.page-hero .eyebrow {
  justify-content: center;
}
.page-hero h1 {
  max-width: 760px;
  margin: 0 auto 20px;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .page-hero {
    padding: 36px 0 44px;
  }
  .page-hero h1 {
    margin-bottom: 14px;
  }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 22px;
  font-weight: 600;
}
.breadcrumb a:hover {
  color: var(--blue-600);
}

/* ==========================================================================
   Values / about
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.value-card {
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--charcoal-950);
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1.5px solid var(--gray-200);
  background: var(--off-white);
  color: var(--charcoal-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.value-card:hover .ic {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--mist);
}
@media (max-width: 600px) {
  .value-card {
    padding: 22px 20px;
  }
}
.value-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 42px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-600);
  z-index: 1;
}
.timeline-item .tag-date {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 480px) {
  .timeline::before {
    left: 12px;
  }
  .timeline-item {
    padding-left: 40px;
    margin-bottom: 32px;
  }
  .timeline-item::before {
    left: 4px;
    width: 16px;
    height: 16px;
  }
}

.quote-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  position: relative;
  border-left: 4px solid var(--blue-600);
}
.quote-block p {
  font-size: 21px;
  line-height: 1.55;
  color: var(--charcoal-950);
  font-family: var(--font-head);
  font-weight: 500;
}
.quote-block .who {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-block .who .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-600);
}
.quote-block .who span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}
@media (max-width: 640px) {
  .quote-block {
    padding: 32px;
  }
  .quote-block p {
    font-size: 18px;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
@media (max-width: 600px) {
  .faq-item {
    padding: 4px 18px;
  }
  .faq-item summary {
    font-size: 14.5px;
    gap: 14px;
  }
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-200);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal-950);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  position: relative;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--charcoal-950);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item summary .plus::before {
  width: 10px;
  height: 1.6px;
}
.faq-item summary .plus::after {
  width: 1.6px;
  height: 10px;
}
.faq-item[open] summary .plus {
  transform: rotate(135deg);
  border-color: var(--blue-600);
}
.faq-item[open] summary .plus::before,
.faq-item[open] summary .plus::after {
  background: var(--blue-600);
}
.faq-item .faq-a {
  padding: 0 0 22px;
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 640px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-info-card {
  background: var(--charcoal-950);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 46px 40px;
}
@media (max-width: 600px) {
  .contact-info-card {
    padding: 30px 26px;
  }
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 34px;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-row:first-of-type {
  border-top: none;
}
.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row b {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.contact-row span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 46px 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) {
  .form-card {
    padding: 26px 22px;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--charcoal-950);
}
.field input,
.field textarea,
.field select {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s;
  background: var(--white);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-500);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 16px;
  text-align: center;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helper */
.reveal-1 {
  transition-delay: 0.05s;
}
.reveal-2 {
  transition-delay: 0.12s;
}
.reveal-3 {
  transition-delay: 0.19s;
}
.reveal-4 {
  transition-delay: 0.26s;
}

/* ==========================================================================
   Misc
   ========================================================================== */
.divider-space {
  height: 90px;
}
@media (max-width: 900px) {
  .divider-space {
    height: 50px;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  color: var(--blue-600);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.badge-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-600);
}

.two-col-center {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .two-col-center {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.55;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-600);
  letter-spacing: 0 0.04em;
}

/* ==========================================================================
   Legal pages (Terms of Use / Privacy Policy)
   ========================================================================== */
.legal-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  color: var(--blue-600);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.legal-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-600);
}
.legal-intro {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--gray-700);
  padding: 26px 28px;
  background: var(--off-white);
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 48px;
}
.legal-toc {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-bottom: 52px;
}
.legal-toc h4 {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 34px;
  counter-reset: toc;
}
.legal-toc li {
  counter-increment: toc;
  margin-bottom: 11px;
  break-inside: avoid;
}
.legal-toc a {
  font-size: 14.5px;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.2s;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  color: var(--gray-300);
  margin-right: 10px;
}
.legal-toc a:hover {
  color: var(--blue-600);
}
@media (max-width: 600px) {
  .legal-toc {
    padding: 22px 20px;
  }
  .legal-toc ol {
    columns: 1;
  }
}

.legal-section {
  margin-bottom: 46px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gray-200);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.legal-section h2 .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.legal-section h3 {
  font-size: 16.5px;
  margin: 26px 0 10px;
}
.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 15px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  margin: 4px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.legal-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}
.legal-section a:not(.btn) {
  color: var(--blue-600);
  font-weight: 600;
  border-bottom: 1px solid rgba(31, 79, 216, 0.3);
  transition: border-color 0.2s;
}
.legal-section a:not(.btn):hover {
  border-bottom-color: var(--blue-600);
}
@media (max-width: 600px) {
  .legal-section {
    margin-bottom: 34px;
  }
  .legal-section h2 {
    font-size: 19px;
    gap: 10px;
  }
  .legal-section p,
  .legal-section ul li {
    font-size: 14.5px;
  }
  .legal-intro {
    padding: 20px 20px;
    font-size: 15px;
    margin-bottom: 34px;
  }
}

.legal-contact-card {
  margin-top: 56px;
  background: var(--charcoal-950);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  text-align: center;
}
.legal-contact-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.legal-contact-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
}
.legal-contact-card .rows {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.legal-contact-card .rows div {
  text-align: left;
}
.legal-contact-card .rows b {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
}
.legal-contact-card .rows span,
.legal-contact-card .rows a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.legal-contact-card .rows a:hover {
  color: var(--blue-400);
}
@media (max-width: 600px) {
  .legal-contact-card {
    padding: 32px 24px;
    margin-top: 40px;
  }
  .legal-contact-card .rows {
    gap: 22px;
    flex-direction: column;
    align-items: center;
  }
  .legal-contact-card .rows div {
    text-align: center;
  }
}

/* Legal pages sit closer to their hero than a standard content section */
.section-pad.legal-body {
  padding-top: 56px;
}
@media (max-width: 600px) {
  .section-pad.legal-body {
    padding-top: 36px;
  }
}

/* Honeypot: must stay off screen rather than display:none, so bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact form result message */
.form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}
.form-status.is-success {
  color: #1c7a44;
}
.form-status.is-error {
  color: #b13c34;
}
