:root {
  --blue: #0b4f9f;
  --blue-dark: #112f55;
  --red: #d7192a;
  --ink: #17212b;
  --muted: #61707f;
  --line: #dde5ed;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 47, 85, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; color: var(--blue-dark); letter-spacing: 0; }
h1 { font-size: clamp(2.35rem, 5vw, 4.9rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.25rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: .7rem 1rem;
  background: var(--blue-dark);
  color: var(--white);
  z-index: 20;
}
.skip-link:focus { left: 10px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.top-strip { background: var(--blue-dark); color: var(--white); font-size: .86rem; }
.top-strip__inner { min-height: 38px; display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.top-strip a, .top-strip span { opacity: .92; }
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 1.5rem; }
.site-logo img, .custom-logo { width: 210px; max-height: 64px; object-fit: contain; }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 1.35rem; }
.primary-nav a { font-weight: 700; color: var(--blue-dark); font-size: .95rem; }
.primary-nav a:hover { color: var(--red); }
.nav-quote, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1.05rem;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}
.nav-quote, .button--red { background: var(--red); color: var(--white); }
.button--ghost { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  margin-left: auto;
}
.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-dark);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(13, 43, 78, .94), rgba(11, 79, 159, .84)),
    radial-gradient(circle at 80% 20%, rgba(215, 25, 42, .35), transparent 28%),
    linear-gradient(90deg, #102f55, #0b4f9f);
  padding: clamp(3.2rem, 8vw, 7rem) 0 3.4rem;
}
.hero h1, .hero p, .hero .eyebrow { color: var(--white); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.hero__content > p { max-width: 690px; font-size: 1.1rem; color: rgba(255, 255, 255, .84); }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.5rem 0; }
.eyebrow { color: var(--red); font-weight: 800; text-transform: uppercase; font-size: .78rem; letter-spacing: 0; margin-bottom: .7rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .65rem; }
.trust-row span {
  display: inline-flex;
  padding: .48rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2);
  font-weight: 700;
  font-size: .9rem;
}
.quote-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.section { padding: clamp(3rem, 7vw, 5.6rem) 0; }
.section--tint { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 1.8rem; }
.card-grid, .frenchy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card, .sector-card, .content-card {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover, .sector-card:hover, .content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 79, 159, .28);
  box-shadow: var(--shadow);
}
.service-card__icon, .sector-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  margin-bottom: 1rem;
}
.service-card__more { color: var(--red); font-weight: 800; }
.content-card img { border-radius: 6px; margin-bottom: 1rem; aspect-ratio: 16 / 9; object-fit: cover; }
.content-card__type { display: inline-block; color: var(--red); font-size: .82rem; font-weight: 800; margin-bottom: .45rem; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.process { display: grid; gap: .8rem; }
.process div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.process strong { color: var(--red); font-size: 1.2rem; }
.process span { font-weight: 800; color: var(--blue-dark); }

.cta-band { padding: 2.4rem 0; background: var(--blue-dark); color: var(--white); }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.page-hero {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
  background: linear-gradient(120deg, #f2f6fb, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 760px; font-size: 1.05rem; }
.content-narrow { max-width: 820px; }
.content-narrow ul, .article-body ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.content-narrow li, .article-body li { list-style: disc; margin-bottom: .4rem; color: var(--muted); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 2rem; align-items: start; }
.article-aside { position: sticky; top: 112px; }
.breadcrumb ol { display: flex; gap: .45rem; flex-wrap: wrap; margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }
.breadcrumb li { list-style: none; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: #9aa8b5; }

.frenchy-form { display: grid; gap: .82rem; }
.frenchy-form h2 { font-size: 1.35rem; margin-bottom: .2rem; }
.frenchy-form label { display: grid; gap: .28rem; color: var(--blue-dark); font-weight: 800; font-size: .88rem; }
.frenchy-form input, .frenchy-form textarea, .frenchy-form select {
  width: 100%;
  min-height: 46px;
  padding: .72rem .8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
.frenchy-form textarea { min-height: 106px; resize: vertical; }
.frenchy-form button { cursor: pointer; }
.frenchy-form__status { min-height: 22px; font-weight: 700; color: var(--blue); }

.site-footer { background: #0d243d; color: var(--white); padding-top: 3rem; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer h2 { color: var(--white); font-size: 1rem; margin-bottom: .8rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 1.5rem; padding-bottom: 2rem; }
.footer-grid li { margin-bottom: .45rem; }
.footer-bottom {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1rem 0;
  font-size: .9rem;
}
.footer-bottom p { margin-right: auto; margin-bottom: 0; }

@media (max-width: 900px) {
  .top-strip__inner span { display: none; }
  .nav-shell { min-height: 70px; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 108px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: grid; gap: .8rem; }
  .nav-quote { display: none; }
  .hero__grid, .split, .article-layout { grid-template-columns: 1fr; }
  .quote-panel, .article-aside { position: static; }
  .card-grid, .frenchy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band__inner { display: grid; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1160px); }
  .top-strip__inner { gap: .7rem; font-size: .78rem; }
  .site-logo img, .custom-logo { width: 170px; }
  .hero { padding-top: 2.4rem; }
  .hero__actions .button { width: 100%; }
  .card-grid, .frenchy-grid, .footer-grid { grid-template-columns: 1fr; }
  .process div { grid-template-columns: 52px 1fr; }
}
