/* =====================================================================
   H&J Business Solutions — site styles
   Tokens live on :root. Change colours and fonts there; everything
   else derives from them.
   ===================================================================== */

:root {
  /* Brand */
  --navy-950: #071125;
  --navy-900: #0a1730;
  --navy-800: #10224a;
  --navy-700: #163266;
  /* Accent blues, taken from the logo: sky highlight through royal to the wordmark blue */
  --blue-300: #8dc6f7;
  --blue-400: #4f8df7;
  --blue-500: #2f6fe0;
  --blue-600: #2451c4;
  --blue-700: #1f3fa6;
  --green-500: #22c55e;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-800: #92400e;

  /* Wordmark colours: sampled from the supplied logo, and a light version for dark backgrounds */
  --brand-deep: #1f2f6d;
  --brand-on-dark: #bfd3ff;

  /* Neutrals */
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-2: #cbd5e1;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --on-dark: #e2e8f0;
  --on-dark-muted: #94a3b8;
  --danger: #dc2626;

  /* Type */
  --font-head: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1160px;
  --gutter: 16px;
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, 0.25);
  --shadow-lg: 0 30px 60px -20px rgba(7, 17, 37, 0.45);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 24px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus { left: 8px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

/* Inline SVG icons (referenced from the sprite at the top of each page) */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }
.btn-lg { padding: 15px 24px; font-size: 16px; }

.btn-primary { background: var(--blue-400); color: var(--navy-950); }
.btn-primary:hover { background: var(--blue-300); }

.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); }

.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); }

.btn-outline { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--navy-900); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

/* Logo: the supplied circles mark (assets/logo-mark.png) with the wordmark set as text beside it */
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 46px; width: auto; flex: none; }
.brand-name {
  font-family: "Poppins", var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 4px; }
}
.nav > a:not(.btn) {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav > a:not(.btn):hover { background: var(--surface-2); color: var(--ink); }
.nav > a[aria-current="page"] { color: var(--blue-700); font-weight: 600; }
.nav .btn { margin-left: 10px; }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-x { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-x { display: block; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.mobile-nav.is-open { display: block; }
.mobile-nav .container {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  padding-bottom: 16px;
}
.mobile-nav a:not(.btn) {
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
}
.mobile-nav a:not(.btn):hover { background: var(--surface-2); }
.mobile-nav a[aria-current="page"] { color: var(--blue-700); font-weight: 600; }
.mobile-nav .btn { margin-top: 8px; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }

/* ---------- Dark surfaces (hero, page heads) ---------- */
.dark-surface {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(79, 141, 247, 0.32), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(22, 50, 102, 0.9), transparent 60%),
    var(--navy-900);
}
.dark-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 75%);
}
.dark-surface > .container { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-300);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.on-light .eyebrow, .section .eyebrow { color: var(--blue-700); }

/* ---------- Hero ---------- */
.hero-inner {
  display: grid;
  gap: 44px;
  padding-top: 60px;
  padding-bottom: 72px;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    padding-top: 96px;
    padding-bottom: 116px;
  }
}
.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 700;
  color: #fff;
}
.hero .lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--on-dark);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-proof {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 30px;
  max-width: 52ch;
  font-size: 14px;
  color: var(--on-dark-muted);
}
.hero-proof .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--blue-400); }

.hero-visual { position: relative; padding: 24px 0 58px; }
.hero-visual .mock-toast {
  position: absolute;
  left: -14px;
  bottom: 0;
  animation: float 6s ease-in-out infinite;
}
.hero-visual .mock-pill {
  position: absolute;
  right: -10px;
  top: 4px;
  animation: float 7s ease-in-out infinite reverse;
}
@media (max-width: 959px) {
  .hero-visual { padding: 0; }
  .hero-visual .mock-toast,
  .hero-visual .mock-pill {
    position: static;
    margin-top: 14px;
    animation: none;
  }
  .hero-visual .mock-pill { display: inline-flex; }
}
@keyframes float {
  50% { transform: translateY(-6px); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-white { background: var(--surface); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 12px; }
.section-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--on-dark-muted); }
.section-dark .eyebrow { color: var(--blue-300); }

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 40px;
}
.section-head-row .section-head { margin-bottom: 0; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 20px; }
@media (min-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.card h3 { font-size: 1.15rem; margin: 16px 0 8px; }
.card p { margin: 0; font-size: 15px; color: var(--ink-2); }
.card-static:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--line); }

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--blue-700);
  background: linear-gradient(135deg, rgba(47, 111, 224, 0.18), rgba(47, 111, 224, 0.06));
  border: 1px solid rgba(47, 111, 224, 0.25);
}
.icon-badge .icon { width: 22px; height: 22px; }

/* ---------- Trust strip ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.strip-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
.strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip-spacer { flex: 1; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.chip-dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--on-dark);
}

/* ---------- Kicker label (cards, asides) ---------- */
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
}

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 20px; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding: 26px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-700);
}
.step .icon-badge { margin-top: 14px; }
.step h3 { margin: 14px 0 8px; font-size: 1.1rem; }
.step p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ---------- Feature list (dark) ---------- */
.features { display: grid; gap: 28px; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; } }
.feature { display: flex; gap: 18px; }
.feature .icon-badge {
  flex: none;
  color: var(--blue-300);
  background: rgba(79, 141, 247, 0.12);
  border-color: rgba(79, 141, 247, 0.25);
}
.feature h3 { margin: 6px 0 6px; font-size: 1.1rem; color: #fff; }
.feature p { margin: 0; font-size: 15px; color: var(--on-dark-muted); }

/* ---------- CTA band ---------- */
.cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800) 70%);
}
@media (min-width: 900px) { .cta { grid-template-columns: 1.4fr auto; } }
.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.cta h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; }
.cta p { max-width: 54ch; margin: 0; color: rgba(255, 255, 255, 0.86); }
.cta .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 28px;
  background: var(--navy-950);
  color: var(--on-dark-muted);
  font-size: 14px;
}
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer-brand .brand-name { color: var(--brand-on-dark); }
.footer-brand p { margin: 16px 0 0; max-width: 34ch; }
.site-footer h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--blue-400); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

/* ---------- Page head (inner pages) ---------- */
.page-head { padding: clamp(48px, 7vw, 88px) 0; }
.page-head h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}
.page-head p {
  max-width: 60ch;
  margin: 0;
  font-size: 1.15rem;
  color: var(--on-dark);
}

.subnav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav a {
  flex: none;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.subnav a:hover { border-color: var(--blue-500); color: var(--blue-700); }

/* ---------- Services page ---------- */
.service {
  display: grid;
  gap: 28px;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
@media (min-width: 900px) {
  .service { grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
  .service.flip > .service-text { order: 2; }
}
.service:last-of-type { border-bottom: 0; }
.service h2 { margin-top: 12px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.service .service-text > p { font-size: 1.05rem; color: var(--ink-2); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
}
.checklist .icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--blue-600);
}

.example {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.example h3 { margin: 6px 0 8px; font-size: 1.05rem; }
.example p { margin: 0; font-size: 15px; color: var(--ink-2); }
.example + .example { margin-top: 16px; }

/* Bulleted list used in the "good fit if" panels */
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-2);
}
.plain-list li { position: relative; padding-left: 18px; }
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ---------- About page ---------- */
.prose { max-width: 70ch; font-size: 1.05rem; color: var(--ink-2); }
.prose p { margin-bottom: 1.2em; }
.prose strong { color: var(--ink); }

.family .card.is-current {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 111, 224, 0.15);
}
.family .card h3 { margin-top: 12px; }
.family .kicker { display: block; }

.team .card { text-align: center; }
.avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--navy-700));
  color: #fff;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
}
.team .card h3 { margin: 0 0 4px; }
.team .role { display: block; margin-bottom: 12px; font-size: 14px; color: var(--blue-700); font-weight: 600; }

.two-col { display: grid; gap: 32px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; } }

.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; align-content: start; }
.field label { font-size: 14px; font-weight: 600; }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 111, 224, 0.2);
}
.field textarea { min-height: 150px; resize: vertical; }
.field .hint { font-size: 13px; color: var(--muted); }
.field.is-invalid input,
.field.is-invalid textarea { border-color: var(--danger); }
.field .error { display: none; font-size: 13px; color: #b91c1c; }
.field.is-invalid .error { display: block; }
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
.form-foot .note { font-size: 13px; color: var(--muted); }
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
}
.form-status.is-visible { display: block; }
.form-status.ok { background: #dbeafe; color: #1e3a8a; border: 1px solid #bfdbfe; }
.form-status.info { background: var(--amber-100); color: var(--amber-800); border: 1px solid #fde68a; }

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.contact-card + .contact-card { margin-top: 20px; }
.contact-card h3 { margin: 0 0 18px; font-size: 1.05rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list b {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a { font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--blue-700); }
.contact-list span { color: var(--ink-2); }

.next-steps {
  counter-reset: n;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.next-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.next-steps li::before {
  counter-increment: n;
  content: counter(n);
  display: grid;
  place-items: center;
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--blue-400);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
}

.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-size: 22px;
  line-height: 1;
  color: var(--blue-700);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 16px; color: var(--ink-2); }

/* ---------- Product mockups (pure CSS) ---------- */
.mock { color: var(--ink); font-family: var(--font-body); }

.mock-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.mock-bar em {
  margin-left: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
}
.mock-head strong { display: block; font-family: var(--font-head); font-size: 14px; }
.mock-head small { font-size: 12px; color: var(--muted); }
.mock-kpis { display: flex; gap: 6px; }
.mock-kpis span {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--surface-2);
  font-size: 10px;
  line-height: 1.2;
  color: var(--muted);
}
.mock-kpis b { font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.mock-kpis .warn { background: var(--amber-100); color: var(--amber-800); }
.mock-kpis .warn b { color: var(--amber-800); }

/* Status list + mini chart (systems-overview mockup) */
.mock-list { display: grid; gap: 6px; padding: 4px 16px 12px; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--surface-2);
  font-size: 12px;
}
.mock-row .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; }
.mock-row .dot.ok { background: var(--green-500); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
.mock-row .dot.warn { background: var(--amber-500); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2); }
.mock-row span { flex: 1; font-weight: 600; color: var(--ink); }
.mock-row em { font-style: normal; color: var(--muted); white-space: nowrap; }
.mock-row em.warn { color: var(--amber-800); font-weight: 600; }
.mock-bars-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 16px 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.mock-bars { display: flex; align-items: flex-end; gap: 4px; height: 44px; padding: 0 16px 16px; box-sizing: content-box; }
.mock-bars i { flex: 1; border-radius: 3px 3px 0 0; background: #dbeafe; }
.mock-bars i.hi { background: var(--blue-500); }

.mock-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.mock-check {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-400);
  color: var(--navy-950);
}
.mock-check .icon { width: 18px; height: 18px; stroke-width: 2.5; }
.mock-toast strong { display: block; font-family: var(--font-head); font-size: 13px; }
.mock-toast small { font-size: 12px; color: var(--muted); white-space: nowrap; }
@media (max-width: 959px) { .mock-toast small { white-space: normal; } }

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.mock-pill .icon { width: 16px; height: 16px; color: var(--blue-600); }
.mock-pill small { font-weight: 500; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible,
.no-js .reveal { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
