/* ============================================================
   Fulmen Solutions — Design System
   Palette sampled directly from the brand logo:
   Fulmen Blue #004E8E · Signal Blue #0088D2 · Charge Orange #FAAB4C
   ============================================================ */

:root {
  --ink: #0B1F33;
  --fulmen-blue: #004E8E;
  --signal-blue: #0088D2;
  --charge-orange: #FAAB4C;
  --slate: #313A41;
  --slate-60: #5A6570;
  --paper: #FBFCFD;
  --paper-dim: #F3F6F9;
  --blueprint: #E7EEF4;
  --blueprint-line: rgba(0, 78, 142, 0.14);
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  --container: 1200px;
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-card: 0 1px 2px rgba(11, 31, 51, 0.06), 0 8px 24px rgba(11, 31, 51, 0.06);
  --shadow-lift: 0 12px 32px rgba(11, 31, 51, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.75rem, 2.4vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }

p.lead {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  color: var(--slate-60);
}

a.link {
  color: var(--fulmen-blue);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
a.link:hover { border-color: currentColor; color: var(--signal-blue); }

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.visually-hidden-focusable:focus {
  left: 1rem !important;
  top: 1rem !important;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: clamp(3.5rem, 6vw, 6.5rem);
  position: relative;
}

.section--tint {
  background: var(--blueprint);
}

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }

/* Blueprint grid texture used behind tinted / ink sections */
.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.section--ink .blueprint-grid {
  background-image:
    linear-gradient(rgba(0, 136, 210, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 136, 210, 0.14) 1px, transparent 1px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fulmen-blue);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--charge-orange);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--signal-blue); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--fulmen-blue);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn--primary:hover {
  background: var(--signal-blue);
  box-shadow: 0 10px 24px rgba(0, 136, 210, 0.28);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(11, 31, 51, 0.18);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--fulmen-blue);
  color: var(--fulmen-blue);
  transform: translateY(-2px);
}

.section--ink .btn--ghost,
.cta-banner .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.section--ink .btn--ghost:hover,
.cta-banner .btn--ghost:hover {
  border-color: var(--signal-blue);
  color: var(--signal-blue);
}

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 253, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.nav.is-scrolled { box-shadow: 0 4px 20px rgba(11, 31, 51, 0.06); }

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand img { height: 52px; width: 52px; }
@media (max-width: 860px) {
  .nav__brand { font-size: 1.15rem; gap: 0.6rem; }
  .nav__brand img { height: 42px; width: 42px; }
}

/* Front page gets a dramatically oversized brand lockup on load,
   which settles to a compact size once the user scrolls past the hero. */
.is-home .nav__brand { font-size: 2.4rem; gap: 1.1rem; transition: font-size 0.3s var(--ease); }
.is-home .nav__brand img { height: 210px; width: 210px; transition: height 0.3s var(--ease), width 0.3s var(--ease); }
.is-home .nav.is-scrolled .nav__brand { font-size: 1.85rem; }
.is-home .nav.is-scrolled .nav__brand img { height: 70px; width: 70px; }
@media (max-width: 860px) {
  .is-home .nav__brand { font-size: 1.7rem; gap: 0.7rem; }
  .is-home .nav__brand img { height: 156px; width: 156px; }
  .is-home .nav.is-scrolled .nav__brand { font-size: 1.35rem; }
  .is-home .nav.is-scrolled .nav__brand img { height: 52px; width: 52px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding-block: 0.25rem;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--charge-orange);
  transition: right 0.25s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--fulmen-blue); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__mobile-cta { display: none; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s 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: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    top: var(--header-h, 76px);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h, 76px));
    height: calc(100dvh - var(--header-h, 76px));
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__actions .btn--ghost,
  .nav__actions .btn--primary { display: none; }
  .nav__mobile-cta {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* ---------- Hero (full-bleed video) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, 86vh);
  padding-block: clamp(6rem, 12vw, 8rem) clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
@media (max-width: 760px) {
  .hero { min-height: auto; padding-block: clamp(6.5rem, 20vw, 8rem) clamp(2.5rem, 8vw, 3.5rem); }
}

.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 640px; }

/* Generic two-column layout reused by About/Contact page sections */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero h1 span { color: var(--charge-orange); }
.hero__sub { margin-block: 1.25rem 2rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Full-bleed media layer sits behind the content */
.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero__fallback-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(56vw, 620px);
  height: auto;
  transition: opacity 0.6s ease;
}
.hero__visual .ring {
  fill: none;
  stroke: rgba(0, 136, 210, 0.22);
  stroke-width: 1.5;
  transform-origin: 200px 200px;
}
.hero__visual .ring--outer { stroke-dasharray: 4 12; animation: spin 44s linear infinite; }
.hero__visual .ring--inner { stroke-dasharray: 2 9; stroke: rgba(0, 136, 210, 0.35); animation: spin 32s linear infinite reverse; }
.hero__visual .bolt {
  fill: var(--signal-blue);
  filter: drop-shadow(0 0 20px rgba(0, 136, 210, 0.35));
  animation: pulse-bolt 3.2s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-bolt {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(0, 136, 210, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(250, 171, 76, 0.5)); }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero__video.is-ready { opacity: 1; }
.hero__visual.has-video .hero__fallback-svg { opacity: 0; }

/* Scrim so hero copy stays readable over any part of the video */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg,
    rgba(11, 31, 51, 0.92) 0%,
    rgba(11, 31, 51, 0.8) 30%,
    rgba(11, 31, 51, 0.45) 60%,
    rgba(11, 31, 51, 0.2) 100%);
}
@media (max-width: 760px) {
  .hero__overlay {
    background: linear-gradient(180deg,
      rgba(11, 31, 51, 0.75) 0%,
      rgba(11, 31, 51, 0.88) 55%,
      rgba(11, 31, 51, 0.95) 100%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }
.reveal-delay-4.is-visible { transition-delay: 0.4s; }

/* ---------- Trust badges ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(0, 78, 142, 0.2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--fulmen-blue);
  background: rgba(0, 78, 142, 0.05);
}
.trust-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--charge-orange); }
.section--ink .trust-chip {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Dossier cards (corner-bracket signature) ---------- */
.dossier-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11, 31, 51, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.dossier-card::before, .dossier-card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--charge-orange);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.dossier-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.dossier-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.dossier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0, 78, 142, 0.18);
}
.dossier-card:hover::before, .dossier-card:hover::after { opacity: 1; }

.dossier-card__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--blueprint);
  color: var(--fulmen-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.dossier-card__icon svg { width: 24px; height: 24px; }

.dossier-card h3 { margin-bottom: 0.6rem; }
.dossier-card p { color: var(--slate-60); font-size: 0.95rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ---------- Award Path (signature scroll animation) ---------- */
.award-path {
  position: relative;
  padding-top: 1rem;
}
.award-path svg { width: 100%; height: auto; overflow: visible; }
.award-path .path-line {
  fill: none;
  stroke: var(--signal-blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.8s var(--ease);
}
.award-path.is-visible .path-line { stroke-dashoffset: 0; }

.award-path .path-node {
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.award-path.is-visible .path-node { transform: scale(1); opacity: 1; }
.award-path.is-visible .path-node.n1 { transition-delay: 0.15s; }
.award-path.is-visible .path-node.n2 { transition-delay: 0.55s; }
.award-path.is-visible .path-node.n3 { transition-delay: 0.95s; }
.award-path.is-visible .path-node.n4 { transition-delay: 1.35s; }
.award-path.is-visible .path-node.n5 { transition-delay: 1.75s; }

.path-milestones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 760px) {
  .path-milestones { grid-template-columns: repeat(2, 1fr); text-align: left; }
}
.path-milestones .mono-tag { color: var(--fulmen-blue); display: block; margin-bottom: 0.3rem; }
.path-milestones h4 { font-family: var(--font-display); font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; }
.path-milestones p { font-size: 0.85rem; color: var(--slate-60); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3vw, 3rem);
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.stat .num .suffix { color: var(--charge-orange); font-size: 0.6em; }
.stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 0.35rem; }

/* ---------- Badges (certifications / IDs) ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: var(--blueprint);
  color: var(--fulmen-blue);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* ---------- Team ID cards ---------- */
.id-card {
  background: var(--white);
  border: 1px solid rgba(11,31,51,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.id-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.id-card__avatar {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fulmen-blue), var(--signal-blue));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  position: relative;
}
.id-card__avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(0,78,142,0.3);
  border-radius: 14px;
}
.id-card__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--fulmen-blue);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.id-card__name { margin-bottom: 0.6rem; }
.id-card__bio { font-size: 0.9rem; color: var(--slate-60); margin-bottom: 1rem; }
.id-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ---------- Timeline (About) ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--blueprint-line);
}
.timeline__item { position: relative; padding-bottom: 2.5rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.42rem;
  top: 0.2rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--charge-orange);
  box-shadow: 0 0 0 4px var(--paper);
}
.timeline__year { font-family: var(--font-mono); color: var(--fulmen-blue); font-size: 0.85rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 52ch; margin-inline: auto 1.5rem; margin-bottom: 2rem; }
.cta-banner__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-block: 3.5rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.5fr 0.9fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

.footer-services {
  column-gap: 1rem;
}
@media (min-width: 761px) {
  .footer-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer__brand { display: flex; align-items: center; gap: 0.7rem; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; }
.footer__brand img { height: 42px; width: 42px; }
.footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-mono); }
.footer li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer a:hover { color: var(--signal-blue); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.8rem;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(11,31,51,0.16);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--fulmen-blue);
  box-shadow: 0 0 0 3px rgba(0,78,142,0.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--slate-60); margin-top: 0.75rem; }
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(0,78,142,0.08);
  color: var(--fulmen-blue);
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.is-visible { display: block; }
.form-success.is-error { background: rgba(196, 62, 46, 0.08); color: #B23A2A; }

/* ---------- Blog ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.9rem; }
.post-card h3 { margin-bottom: 0.6rem; }
.post-card p { color: var(--slate-60); font-size: 0.92rem; flex-grow: 1; margin-bottom: 1rem; }

.article {
  max-width: 74ch;
  margin-inline: auto;
}
.article h2 { margin-top: 2.25rem; margin-bottom: 0.75rem; }
.article p { margin-bottom: 1.25rem; color: var(--slate); }
.article ul { margin-bottom: 1.25rem; }
.article li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; }
.article li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  background: var(--charge-orange);
}
.article blockquote {
  border-left: 3px solid var(--fulmen-blue);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

/* ---------- Service rows (Services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  scroll-margin-top: 90px;
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }
@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
}
.service-row__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--fulmen-blue);
  letter-spacing: 0.05em;
}
.service-row__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--blueprint);
  color: var(--fulmen-blue);
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.75rem;
}
.service-row__icon svg { width: 26px; height: 26px; }
.service-row h3 { margin-bottom: 0.75rem; }
.service-row > div:last-child > p { color: var(--slate-60); max-width: 62ch; margin-bottom: 1.25rem; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 1.5rem;
}
.check-grid li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--slate);
}
.check-grid li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.15rem;
  color: var(--charge-orange);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(11,31,51,0.1);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  gap: 1rem;
}
.faq-item__q .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,78,142,0.3);
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item__q .plus::before, .faq-item__q .plus::after {
  content: '';
  position: absolute;
  background: var(--fulmen-blue);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__q .plus::before { width: 10px; height: 2px; }
.faq-item__q .plus::after { width: 2px; height: 10px; transition: opacity 0.25s var(--ease); }
.faq-item.is-open .plus { background: var(--fulmen-blue); transform: rotate(180deg); }
.faq-item.is-open .plus::before, .faq-item.is-open .plus::after { background: var(--white); }
.faq-item.is-open .plus::after { opacity: 0; }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item__a p { padding-bottom: 1.25rem; color: var(--slate-60); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
}
.page-header .container { position: relative; }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 0.6rem; }
