/* ==========================================================================
   Silloh & Sivad — Design System & Styles
   Mobile-first. Custom CSS, no framework.
   ========================================================================== */

/* ---------- Design Tokens ------------------------------------------------ */
:root {
  /* Brand palette (from client brief) */
  --navy-900: #0b1f33;
  --navy-800: #0f2a43; /* primary */
  --navy-700: #16405f;
  --navy-600: #1e5178;
  --green-800: #244a2e;
  --green-700: #2f5d3a; /* secondary (hunter green) */
  --green-600: #3a7047;
  --gold-500: #c8a94b; /* accent */
  --gold-400: #d7bd6c;
  --gold-300: #e6d69b;

  --white: #ffffff;
  --offwhite: #f5f7fa;
  --paper: #eef2f6;

  /* Neutrals */
  --ink-900: #101820; /* body text */
  --ink-700: #35424f;
  --ink-500: #5b6673; /* muted */
  --line: #dde3ea;    /* borders */

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--offwhite);
  --text: var(--ink-900);
  --muted: var(--ink-500);
  --primary: var(--navy-800);
  --secondary: var(--green-700);
  --accent: var(--gold-500);

  /* Type scale (fluid, mobile-first) */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-900: clamp(2.1rem, 5vw + 1rem, 3.6rem);
  --fs-800: clamp(1.75rem, 3.5vw + 1rem, 2.75rem);
  --fs-700: clamp(1.45rem, 2vw + 1rem, 2rem);
  --fs-600: clamp(1.2rem, 1vw + 1rem, 1.5rem);
  --fs-500: 1.125rem;
  --fs-400: 1rem;
  --fs-300: 0.9375rem;
  --fs-200: 0.8125rem;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Radius / shadow */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 67, 0.08), 0 1px 3px rgba(15, 42, 67, 0.06);
  --shadow: 0 6px 18px rgba(15, 42, 67, 0.10);
  --shadow-lg: 0 18px 48px rgba(15, 42, 67, 0.16);

  --container: 1660px;
  --gutter: clamp(1.25rem, 3vw, 3rem);
  --header-h: 72px;
}

/* ---------- Reset / Base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy-900); margin: 0 0 var(--sp-4); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
h4 { font-size: var(--fs-500); }
p { margin: 0 0 var(--sp-4); }
a { color: var(--navy-700); text-decoration-color: rgba(22, 64, 95, 0.35); text-underline-offset: 3px; }
a:hover { color: var(--green-700); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }

/* ---------- Accessibility ------------------------------------------------ */
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--navy-800);
  color: #fff;
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ----------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-7); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: #eaf0f6; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #cdd8e4; }
.stack > * + * { margin-top: var(--sp-4); }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

.section-head { max-width: 46rem; margin: 0 auto var(--sp-7); text-align: center; }
.section-head p { color: var(--muted); font-size: var(--fs-500); margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-200);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--sp-3);
}
.section--navy .eyebrow { color: var(--gold-400); }

/* Grid */
.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-400);
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--accent {
  --btn-fg: var(--navy-900);
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 100%);
  box-shadow: 0 6px 18px -8px rgba(200, 169, 75, .75), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--accent:hover { background: linear-gradient(180deg, #e2ca79 0%, var(--gold-400) 100%); box-shadow: 0 10px 24px -8px rgba(200, 169, 75, .85), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn--green {
  --btn-fg: #fff;
  background: linear-gradient(180deg, var(--green-600) 0%, var(--green-700) 100%);
  box-shadow: 0 6px 18px -8px rgba(47, 93, 58, .7), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.btn--green:hover { background: linear-gradient(180deg, #3f7a4d 0%, var(--green-600) 100%); box-shadow: 0 10px 24px -8px rgba(47, 93, 58, .8), inset 0 1px 0 rgba(255, 255, 255, .16); }
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--navy-800); color: #fff; }
.btn--on-navy { background: #fff; color: var(--navy-900); }
.btn--on-navy.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--on-navy.btn--ghost:hover { background: #fff; color: var(--navy-900); }
.btn--lg { padding: 1rem 1.85rem; font-size: var(--fs-500); }
.btn--block { display: flex; width: 100%; }
.btn svg { width: 1.1em; height: 1.1em; }
/* Arrow affordance on primary CTAs (inspired by reference site) */
.btn--accent::after, .btn--green::after {
  content: "";
  width: 1.05em; height: 1.05em; margin-left: .1rem; flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13.3 5.3 12 6.6l4.5 4.5H4v1.8h12.5L12 17.4l1.3 1.3 6.7-6.7z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13.3 5.3 12 6.6l4.5 4.5H4v1.8h12.5L12 17.4l1.3 1.3 6.7-6.7z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .15s ease;
}
.btn--accent:hover::after, .btn--green:hover::after { transform: translateX(4px); }

/* ---------- Cards -------------------------------------------------------- */
.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-6);
  box-shadow: 0 1px 2px rgba(15, 42, 67, .05), 0 10px 28px -14px rgba(15, 42, 67, .16);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
  overflow: hidden;
}
.card h3 { margin-bottom: var(--sp-2); }
.card p:last-child { margin-bottom: 0; }
/* Gold-to-green accent bar that draws in on hover */
.card--link::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card--link:hover::before { transform: scaleX(1); }
.card--link:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -18px rgba(15, 42, 67, .30); border-color: #e7d9ad; }

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
  border: 1px solid rgba(200, 169, 75, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 8px 18px -8px rgba(15, 42, 67, .55);
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge--green { background: linear-gradient(150deg, var(--green-800), var(--green-600)); color: #fff; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: var(--sp-4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-300);
  color: var(--green-700);
  text-decoration: none;
}
.card-link:hover { gap: .7rem; }

/* Feature list with check icons */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 1.35rem; height: 1.35rem;
  background: var(--green-700);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/0.95rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/0.95rem no-repeat;
}
.section--navy .check-list li::before { background: var(--gold-400); }

/* ---------- Trust badges ------------------------------------------------- */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  align-items: center;
  justify-content: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-300);
  color: var(--navy-900);
}
.trust-badge img { width: 64px; height: 64px; }
/* Wide horizontal credential badges */
.hero__trust img { height: 50px; width: auto; max-width: 100%; }
@media (max-width: 600px) {
  .hero__trust { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .hero__trust img { height: 44px; }
}
.badge-strip { gap: var(--sp-4) var(--sp-5); justify-content: center; }
.badge-strip img { height: 62px; width: auto; max-width: 100%; }
.section--navy .trust-badge { color: #fff; }

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0; margin: 0; list-style: none; }
.pill {
  display: inline-block;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: var(--fs-300);
  font-weight: 500;
  color: var(--ink-700);
}
.section--navy .pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #eaf0f6; }

/* ---------- Header / Nav ------------------------------------------------- */
.topbar {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #cdd8e4;
  font-size: var(--fs-200);
}
/* Slim brand ribbon at the very top of the page */
.topbar::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 28%, var(--green-600) 72%, var(--green-700) 100%);
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  padding-block: .4rem;
}
.topbar a { color: #eaf0f6; text-decoration: none; }
.topbar a:hover { color: var(--gold-400); }
.topbar__badges { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.topbar__badges span { display: inline-flex; align-items: center; gap: .35rem; }
.topbar__badges svg { width: 14px; height: 14px; color: var(--gold-400); }
.topbar__contact { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
/* Neat, centered stacking on small screens instead of ragged left-aligned wrapping */
@media (max-width: 720px) {
  .topbar__inner { flex-direction: column; align-items: center; justify-content: center; text-align: center; row-gap: .35rem; padding-block: .5rem; }
  .topbar__badges,
  .topbar__contact { width: 100%; justify-content: center; column-gap: var(--sp-4); row-gap: .2rem; }
  .topbar__contact { padding-top: .35rem; border-top: 1px solid rgba(255, 255, 255, .12); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -14px rgba(15, 42, 67, .28);
  border-bottom-color: transparent;
}
/* Header shares the same container width as page content, so the logo lines up
   with the hero and every section below it. */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); font-size: 1.15rem; line-height: 1.1; letter-spacing: -0.01em; }
.brand__name small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--green-700); }

.nav__toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  color: var(--navy-800);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

.nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links { display: flex; align-items: center; gap: var(--sp-1); list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block;
  padding: .6rem .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-300);
  color: var(--navy-800);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.nav__links a:hover { background: var(--paper); color: var(--green-700); }
.nav__links a[aria-current="page"] { color: var(--green-700); }
.nav__links a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--gold-500);
  border-radius: 2px; margin-top: 2px;
}
.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }

/* Mobile nav */
@media (max-width: 899px) {
  .nav__toggle { order: 3; }
  .nav__panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    z-index: 95;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: calc(var(--header-h) + var(--sp-4)) var(--sp-5) var(--sp-6);
    overflow-y: auto;
    /* Closed: fully removed from layout so it can't create horizontal overflow. */
    display: none;
    flex-direction: column;
    gap: var(--sp-5);
  }
  body.nav-open .nav__panel { display: flex; animation: navSlideIn .25s ease both; }
  body.nav-open::after {
    content: ""; position: fixed; inset: 0; z-index: 90;
    background: rgba(11, 31, 51, .5);
  }
  .nav__links { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
  .nav__links a { padding: .8rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; }
  .nav__cta .btn { width: 100%; }
}
@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__panel { display: flex !important; flex: 1; align-items: center; gap: var(--sp-5); transform: none !important; margin-left: var(--sp-7); }
  /* Links sit just right of the logo; CTA buttons stay far right */
  .nav__links { margin-right: auto; }
  .nav__backdrop { display: none; }
}
@keyframes navSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ---------- Hero (light, product-mockup style) -------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(820px 420px at 92% -8%, rgba(47, 93, 58, .12), transparent 60%),
    radial-gradient(680px 360px at -6% 4%, rgba(200, 169, 75, .12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--offwhite) 100%);
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 40V0h40' fill='none' stroke='%230f2a43' stroke-opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-7);
  padding-block: var(--sp-8);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; padding-block: var(--sp-9); }
}
.hero h1 { color: var(--navy-900); margin-bottom: var(--sp-4); }
.hero__lead { font-size: var(--fs-500); color: var(--ink-700); max-width: 42ch; }
.hero .eyebrow { color: var(--green-700); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-7); padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}
.hero__trust .trust-badge { color: var(--navy-900); }
.hero__media { position: relative; min-width: 0; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
/* Stop wide media from forcing grid/flex tracks past the viewport (mobile overflow fix) */
.hero__inner > *,
.split > * { min-width: 0; }
/* Floating status chips over the mockup */
.hero__chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .7rem .95rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--fs-200); color: var(--muted);
}
.hero__chip strong { font-family: var(--font-head); display: block; font-size: 1.05rem; line-height: 1.15; color: var(--navy-900); }
.hero__chip .tick { width: 34px; height: 34px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.hero__chip .tick svg { width: 18px; height: 18px; }
.hero__chip--tr { top: 24px; right: -8px; }
.hero__chip--br { bottom: -18px; left: -16px; }
@media (max-width: 560px) { .hero__chip { display: none; } }

/* Page hero (interior) */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #eaf0f6;
  padding-block: var(--sp-8);
}
.page-hero h1 { color: #fff; margin-bottom: var(--sp-3); }
.page-hero p { color: #cfdae7; font-size: var(--fs-500); max-width: 60ch; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--gold-400); }

/* Breadcrumbs */
.crumbs { font-size: var(--fs-200); margin-bottom: var(--sp-4); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; color: #b9c6d6; }
.crumbs a { color: #dfe8f1; text-decoration: none; }
.crumbs a:hover { color: var(--gold-400); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: #7f93a8; }

/* ---------- CTA band ----------------------------------------------------- */
.cta-band {
  background: linear-gradient(150deg, var(--green-800), var(--green-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dce9df; max-width: 52ch; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-5); }

/* ---------- Steps / process --------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: var(--sp-6); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-head);
  font-weight: 700;
  position: absolute; top: -6px; left: 0;
}
.step h3 { font-size: var(--fs-500); margin-top: var(--sp-3); }
.step p { font-size: var(--fs-300); color: var(--muted); margin: 0; }

/* ---------- Stats -------------------------------------------------------- */
.stats { display: grid; gap: var(--sp-5); text-align: center; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat strong { font-family: var(--font-head); font-size: var(--fs-800); color: var(--gold-400); display: block; }
.stat span { color: #cdd8e4; font-size: var(--fs-300); }

/* ---------- FAQ / Accordion --------------------------------------------- */
.accordion { display: grid; gap: var(--sp-3); max-width: 52rem; margin-inline: auto; }
.acc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.acc__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: var(--sp-5);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-500);
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.acc__q:hover { color: var(--green-700); }
.acc__icon { flex: 0 0 auto; width: 24px; height: 24px; transition: transform .2s ease; color: var(--green-700); }
.acc__q[aria-expanded="true"] .acc__icon { transform: rotate(45deg); }
.acc__panel { padding: 0 var(--sp-5); max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.acc__panel > div { padding-bottom: var(--sp-5); color: var(--ink-700); }
.acc__panel p:last-child { margin-bottom: 0; }

/* ---------- Forms -------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: var(--sp-5); }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-300); margin-bottom: var(--sp-2); color: var(--navy-900); }
.field .req { color: #b02a37; }
.field .hint { display: block; font-size: var(--fs-200); color: var(--muted); font-weight: 400; margin-top: 2px; }
.input, .select, .textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .75rem .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(22, 64, 95, .15);
}
.textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) { .field-row-2 { grid-template-columns: 1fr 1fr; } }
.checkbox { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-300); }
.checkbox input { margin-top: .28em; width: 1.1rem; height: 1.1rem; flex: 0 0 auto; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--fs-200); color: var(--muted); }
.form-alert {
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
  font-size: var(--fs-300);
  border: 1px solid;
}
.form-alert--ok { background: #eaf6ee; border-color: #b7dcc4; color: #1c5130; }
.form-alert--err { background: #fdecee; border-color: #f3c2c8; color: #8a1c26; }

/* ---------- Contact info list ------------------------------------------- */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-5); }
.info-list li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.info-list .ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: grid; place-items: center; background: var(--paper); color: var(--green-700);
}
.info-list .ic svg { width: 22px; height: 22px; }
.info-list strong { font-family: var(--font-head); display: block; color: var(--navy-900); }
.info-list a { color: var(--navy-700); font-weight: 600; text-decoration: none; }
.info-list a:hover { color: var(--green-700); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  position: relative;
  background:
    radial-gradient(760px 320px at 82% 0%, rgba(47, 93, 58, .18), transparent 62%),
    radial-gradient(620px 300px at 4% 8%, rgba(200, 169, 75, .08), transparent 60%),
    linear-gradient(180deg, #0c2338 0%, var(--navy-900) 100%);
  color: #b9c6d6;
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--fs-300);
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 28%, var(--green-600) 72%, var(--green-700) 100%);
}
.footer-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.site-footer h4 { position: relative; color: #fff; font-size: var(--fs-300); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--sp-5); padding-bottom: var(--sp-3); }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; border-radius: 2px; background: var(--gold-500); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }
.site-footer a { color: #cdd8e4; text-decoration: none; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #9fb0c2; max-width: 32ch; }
.footer-brand img {
  width: 216px;
  height: auto;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .55);
}
.footer-badges { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-5); align-items: flex-start; }
.footer-badges img { height: 48px; width: auto; max-width: 100%; }
.social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #eaf0f6;
}
.social a:hover { background: var(--gold-500); color: var(--navy-900); }
.social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  font-size: var(--fs-200);
  color: #8598ab;
}
.footer-bottom a { color: #8598ab; }

/* ---------- 404 ---------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: grid; place-items: center; text-align: center;
  padding-block: var(--sp-9);
}
.error-page .code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4rem, 18vw, 9rem);
  line-height: 1;
  color: var(--navy-800);
  letter-spacing: -0.03em;
}
.error-page .code span { color: var(--gold-500); }

/* ---------- Utilities ---------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: var(--fs-500); color: var(--ink-700); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
