/* ============================================================
   Iron Base Security – main.css
   Palette: Navy #1a2f5e · Amber #c8922a · Charcoal #2c3140
   Fonts: Montserrat (headings) · Inter (body) via Google Fonts
   Mobile-first responsive design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --navy:         #1a2f5e;
  --navy-dark:    #111f40;
  --navy-mid:     #243a72;
  --amber:        #c8922a;
  --amber-dark:   #a67522;
  --amber-light:  #f5e9d0;
  --text:         #2c3140;
  --text-mid:     #6b7280;
  --border:       #e5e7eb;
  --bg:           #f8f7f5;
  --white:        #ffffff;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.14);

  --nav-height: 88px;
  --container:  1200px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

/* Mobile padding for sticky CTA bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--amber);
}

ul {
  list-style: none;
}

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--amber);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
  font-family: var(--font-heading);
}

.skip-link:focus {
  top: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem,    5vw,  3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem,  3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem,  2.5vw, 1.4rem);  font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { max-width: 70ch; }
p + p { margin-top: 1rem; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 69px;
  width: auto;
}

@media (min-width: 900px) {
  .nav-logo img {
    height: 108px;
  }
}

/* Desktop nav – hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--bg);
  color: var(--navy);
}

.nav-links .nav-cta {
  margin-left: 0.75rem;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown > button:hover {
  background: var(--bg);
  color: var(--navy);
}

.nav-dropdown > button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.nav-dropdown > button .chevron {
  transition: transform 0.2s;
}

.nav-dropdown.open > button .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  overflow: hidden;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.25rem;
  color: var(--text);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--navy);
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--navy);
  transition: background 0.15s;
}

.nav-toggle:hover { background: var(--bg); }
.nav-toggle:focus-visible { outline: 3px solid var(--amber); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--white);
  z-index: 499;
  overflow-y: auto;
  padding: 1rem 5% 2rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a,
.mobile-menu .mob-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

.mobile-menu .mob-services-toggle svg {
  transition: transform 0.2s;
}

.mobile-menu .mob-services-toggle.open svg {
  transform: rotate(180deg);
}

.mob-sub-links {
  display: none;
  padding-left: 1rem;
  border-bottom: 1px solid var(--border);
}

.mob-sub-links.open {
  display: block;
}

.mob-sub-links a {
  font-size: 0.9375rem;
  color: var(--text-mid);
  border-bottom: none;
  padding: 0.625rem 0;
}

.mob-sub-links a:last-child {
  padding-bottom: 0.875rem;
}

.mob-cta-wrap {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Desktop nav shown */
@media (min-width: 900px) {
  :root { --nav-height: 132px; }
  .nav-links  { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ── Hero (home) ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

@media (min-width: 768px) {
  .hero { min-height: 640px; }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17,31,64,0.88) 35%, rgba(17,31,64,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 660px;
}

.eyebrow {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.125rem;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

@media (min-width: 768px) {
  .page-hero { min-height: 320px; }
}

.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17,31,64,0.88) 0%, rgba(17,31,64,0.65) 100%);
}

.page-hero .hero-content {
  padding: 3rem 0;
}

.page-hero .hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero .hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  max-width: 54ch;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-alt  { background: var(--bg); }
.section-navy { background: var(--navy-dark); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }

.section-label {
  display: inline-block;
  color: var(--amber);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.section-intro {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-intro h2 {
  margin-bottom: 0.75rem;
}

.section-intro p {
  color: var(--text-mid);
  font-size: 1.0625rem;
}

.section-navy .section-intro p { color: rgba(255,255,255,0.75); }

/* ── Grids ──────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .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 layout (image + text) ────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split.reverse .split-img { order: 2; }
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

/* ── Service cards ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { margin-bottom: 0.75rem; }

.card-body p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1.5rem;
  max-width: none;
}

/* ── Trust / feature cards ──────────────────────────────────── */
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
  color: var(--amber-dark);
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9125rem;
  color: var(--text-mid);
  max-width: none;
}

/* Badge placeholder row */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.badge-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-mid);
  font-style: italic;
  background: var(--bg);
}

/* ── Checklist ──────────────────────────────────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ── Process steps ──────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h4 { margin-bottom: 0.3rem; }
.step-body p  { color: var(--text-mid); font-size: 0.9375rem; max-width: none; }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.875rem;
}

.cta-banner .lead {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Course cards ───────────────────────────────────────────── */
.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.course-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--amber);
}

.course-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--amber-dark);
}

.course-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.course-awarding {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.75rem;
}

.course-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: none;
}

/* ── Contact layout ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
  }
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 47, 94, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1.125rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin-top: 0.3rem;
}

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 1.25rem;
  color: #065f46;
  font-weight: 500;
  margin-top: 1rem;
  max-width: none;
}

/* Contact info card */
.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.375rem;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(200,146,42,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 560px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.footer-brand-name span {
  color: var(--amber);
}

.footer-brand p {
  font-size: 0.9125rem;
  line-height: 1.75;
  max-width: 28ch;
}

.footer-nap {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  line-height: 1.8;
  font-style: normal;
}

.footer-col-heading {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9125rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* ── Cookie banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #0d1930;
  color: var(--white);
  padding: 1.125rem 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  max-width: 72ch;
}

.cookie-banner p a {
  color: var(--amber);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Sit above sticky CTA on mobile */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 60px;
  }
}

/* ── Sticky mobile CTA bar ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 700;
  display: flex;
}

.sticky-cta .cta-call,
.sticky-cta .cta-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9375rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter 0.15s;
}

.sticky-cta .cta-call {
  background: var(--navy);
  color: var(--white);
}

.sticky-cta .cta-wa {
  background: #25d366;
  color: var(--white);
}

.sticky-cta .cta-call:hover,
.sticky-cta .cta-wa:hover {
  filter: brightness(0.88);
  color: var(--white);
}

/* Hide on desktop */
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ── About page specifics ───────────────────────────────────── */
.founder-quote {
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 1.25rem;
}

.value-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.value-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 8px;
}

.value-item p {
  font-size: 0.9375rem;
  max-width: none;
}

/* ── Legal / Privacy pages ──────────────────────────────────── */
.legal-content {
  max-width: 740px;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 2.5rem 0 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.625rem;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  max-width: none;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  color: var(--text);
}

/* ── 404 page ───────────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 5rem 0;
}

.not-found-inner {
  max-width: 480px;
  margin: 0 auto;
}

.not-found .big-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  opacity: 0.1;
  margin-bottom: -1rem;
}

.not-found h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.not-found p {
  color: var(--text-mid);
  margin: 0 auto 2rem;
  max-width: none;
}

/* ── Testimonial placeholder ────────────────────────────────── */
.testimonial-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-mid);
  font-style: italic;
  background: var(--bg);
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-amber  { color: var(--amber) !important; }
.text-navy   { color: var(--navy)  !important; }
.text-mid    { color: var(--text-mid); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem;   }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem;   }
.mt-5 { margin-top: 3rem;   }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
