/* AKTR SECURITY — Material Design 3 inspired system */
:root {
  --md-sys-color-primary: #1565c0;
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-primary-container: #d3e4ff;
  --md-sys-color-on-primary-container: #001c3a;
  --md-sys-color-secondary: #8b6914;
  --md-sys-color-on-secondary: #ffffff;
  --md-sys-color-secondary-container: #f5e0a0;
  --md-sys-color-on-secondary-container: #261900;
  --md-sys-color-tertiary: #4a6078;
  --md-sys-color-surface: #f4f7fb;
  --md-sys-color-surface-dim: #e6ebf2;
  --md-sys-color-surface-bright: #ffffff;
  --md-sys-color-surface-container: #eef2f7;
  --md-sys-color-surface-container-high: #e3e9f1;
  --md-sys-color-on-surface: #1a2330;
  --md-sys-color-on-surface-variant: #3f4a5a;
  --md-sys-color-outline: #6f7a8a;
  --md-sys-color-outline-variant: #c0c9d6;
  --md-sys-color-error: #ba1a1a;
  --md-sys-color-inverse-surface: #2a3340;
  --md-sys-color-inverse-on-surface: #edf1f7;

  --ink: var(--md-sys-color-on-surface);
  --muted: var(--md-sys-color-on-surface-variant);
  --accent: var(--md-sys-color-secondary);
  --brand: var(--md-sys-color-primary);
  --brand-deep: #0a3a75;
  --hero-overlay: linear-gradient(115deg, rgba(8, 32, 72, 0.94) 0%, rgba(21, 101, 192, 0.78) 48%, rgba(8, 32, 72, 0.62) 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --elev-1: 0 1px 2px rgba(26, 35, 48, 0.08), 0 1px 3px 1px rgba(26, 35, 48, 0.06);
  --elev-2: 0 1px 2px rgba(26, 35, 48, 0.1), 0 2px 6px 2px rgba(26, 35, 48, 0.08);
  --elev-3: 0 4px 8px 3px rgba(26, 35, 48, 0.1), 0 1px 3px rgba(26, 35, 48, 0.12);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 2.5rem));
  --header-h: 76px;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --ease-emphasized: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(184, 214, 255, 0.45), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(245, 224, 160, 0.28), transparent 50%),
    linear-gradient(180deg, #f5f8fc 0%, var(--md-sys-color-surface) 40%, #eef2f7 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(244, 247, 246, 0.86);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--md-sys-color-outline-variant);
  box-shadow: var(--elev-1);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(240px, 58vw);
}

.brand-logo-light {
  height: 48px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: var(--elev-1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--md-sys-color-surface-container-high);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle .material-symbols-outlined {
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--md-sys-color-on-surface-variant);
  font-weight: 560;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).is-active {
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn,
.site-nav .btn {
  --btn-bg: var(--brand);
  --btn-fg: #ffffff;
  color: #ffffff !important;
  background: var(--brand);
  padding: 0.7rem 1.35rem;
  box-shadow: var(--elev-1);
}

.nav-cta .btn:hover,
.site-nav .btn:hover {
  --btn-bg: #0d4a94;
  background: #0d4a94;
  color: #ffffff !important;
}

/* ——— Buttons ——— */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--md-sys-color-on-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--elev-1);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-1px);
  box-shadow: var(--elev-2);
}

.btn:active {
  transform: translateY(0);
}

.btn .material-symbols-outlined {
  font-size: 1.2rem;
}

.btn-secondary {
  --btn-bg: var(--md-sys-color-secondary-container);
  --btn-fg: var(--md-sys-color-on-secondary-container);
}

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  --btn-bg: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-tonal {
  --btn-bg: var(--md-sys-color-primary-container);
  --btn-fg: var(--md-sys-color-on-primary-container);
  box-shadow: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #0a2f5c;
  background-image:
    var(--hero-overlay),
    url("../img/hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-media img {
  display: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
  max-width: 40rem;
}

.hero .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-emphasized) 0.1s forwards;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-emphasized) 0.25s forwards;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  max-width: 36ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-emphasized) 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-emphasized) 0.55s forwards;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-head p {
  font-size: 1.1rem;
}

.surface-panel {
  background: var(--md-sys-color-surface-bright);
  border: 1px solid rgba(190, 201, 198, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-1);
}

/* Services grid — not card clutter: interaction tiles */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 210px;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--md-sys-color-surface-bright);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.service-tile-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--md-sys-color-surface-container-high);
}

.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.service-tile:hover .service-tile-media img {
  transform: scale(1.05);
}

.service-tile-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #c4a574);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--elev-2);
  border-color: var(--md-sys-color-outline-variant);
  color: inherit;
}

.service-tile:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.service-icon .material-symbols-outlined {
  font-size: 1.55rem;
}

.service-tile h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-tile p {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
}

.service-tile .link-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--brand);
}

/* Split / about */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1565c0;
  box-shadow: var(--elev-2);
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(21, 101, 192, 0.28), rgba(10, 47, 92, 0.45));
  pointer-events: none;
  z-index: 1;
}

.split-visual::after {
  content: "Trusted protection";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  height: auto;
  min-height: 72px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.stat {
  padding: 1rem 0.25rem 0;
  border-top: 2px solid var(--md-sys-color-primary-container);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Trust band */
.trust-band {
  background: linear-gradient(135deg, var(--brand-deep), #1565c0 55%, #1e5a96);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--elev-2);
}

.trust-band h2 {
  color: #fff;
  font-size: 1.7rem;
  margin: 0;
}

.trust-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0.5rem 0 0;
  font-size: 0.98rem;
}

.trust-item {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.75rem);
  background:
    radial-gradient(700px 280px at 90% 10%, rgba(196, 165, 116, 0.28), transparent 60%),
    linear-gradient(120deg, #0a2f5c 0%, #1565c0 50%, #1a4a7a 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  max-width: 42ch;
}

.cta-band .btn-secondary {
  --btn-bg: #f5e0a0;
  --btn-fg: #261900;
  color: #261900;
  background: #f5e0a0;
}

.cta-band .btn-secondary:hover {
  color: #261900;
  background: #ffe9b0;
}

.cta-band .btn-outline {
  --btn-fg: #ffffff;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(184, 214, 255, 0.35), transparent),
    linear-gradient(90deg, transparent, rgba(245, 224, 160, 0.18));
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.page-hero--media {
  position: relative;
  isolation: isolate;
  color: #fff;
  border-bottom: 0;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: #0a2f5c;
}

.page-hero--media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(8, 32, 72, 0.88) 0%, rgba(21, 101, 192, 0.62) 55%, rgba(8, 32, 72, 0.45) 100%),
    var(--page-hero-image) center / cover no-repeat;
}

.page-hero--media .eyebrow {
  color: #d3e4ff;
}

.page-hero--media h1,
.page-hero--media p {
  color: #fff;
}

.page-hero--media p {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero p {
  max-width: 52ch;
  font-size: 1.1rem;
  margin: 0;
}

.media-frame {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--md-sys-color-surface-container-high);
  box-shadow: var(--elev-1);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--portrait {
  aspect-ratio: 4 / 5;
  max-height: 420px;
}

.side-panel .media-frame {
  margin-bottom: 1.15rem;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-emphasized) 0.05s forwards;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

/* Content layout */
.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.prose {
  background: var(--md-sys-color-surface-bright);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(190, 201, 198, 0.5);
  box-shadow: var(--elev-1);
}

.prose h2 {
  margin-top: 1.75rem;
  font-size: 1.45rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.45rem;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--brand-deep), #1565c0);
  color: #fff;
  box-shadow: var(--elev-2);
}

.side-panel h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.side-panel p,
.side-panel a {
  color: rgba(255, 255, 255, 0.88);
}

.side-panel .btn {
  width: 100%;
  margin-top: 1rem;
}

.side-panel .btn-outline {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-list .material-symbols-outlined {
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface-container);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.18);
}

.form-note {
  font-size: 0.9rem;
  margin: 0;
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: #fdecea;
  color: #8a1c1c;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-error.is-visible {
  display: block;
}

/* Coverage chips */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface-variant);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3.5rem 0 1.75rem;
  background: #0f1c2e;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer .brand:hover {
  color: #fff;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-emphasized), transform 0.7s var(--ease-emphasized);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cookie notice */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--md-sys-color-inverse-surface);
  color: var(--md-sys-color-inverse-on-surface);
  box-shadow: var(--elev-3);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  color: inherit;
  font-size: 0.9rem;
}

.cookie-bar a {
  color: #d3e4ff;
}

.cookie-bar .btn {
  min-height: 40px;
  padding: 0.45rem 1rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .content-grid,
  .cta-band,
  .trust-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1rem;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 1.5rem, 1180px);
    --header-h: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--md-sys-color-outline-variant);
    box-shadow: var(--elev-2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .service-grid,
  .stat-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 4.5rem 0 3.25rem;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }
}
