/* Crawford Consultancy — shared design system (navy, gold, white, cream) */

:root {
  --navy: #1a1f2e;
  --navy-soft: #2c3347;
  --gold: #c8a96e;
  --gold-light: #dbb978;
  --gold-pale: #f5efe3;
  --white: #ffffff;
  --cream: #faf9f7;
  --text: #1a1f2e;
  --muted: #5c6578;
  --border: #e4e2dc;
  --shadow: 0 16px 40px rgba(26, 31, 46, 0.08);
  --r: 14px;

  /* Legacy aliases */
  --ink: var(--navy);
  --slate: var(--navy-soft);
  --mid: #4a5568;
  --stone: var(--gold);
  --stone-bright: var(--gold-light);
  --stone-l: var(--gold-pale);

  /* Light tile tints (navy / gold / white only) */
  --tile-cream: #faf9f7;
  --tile-gold: #f5efe3;
  --tile-gold-warm: #f8f2e6;
  --tile-gold-rich: #f0e8d8;
  --tile-navy-whisper: #f3f4f7;
  --tile-navy-soft: #eceef2;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Skip link & focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1001;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav-cta:focus-visible { outline-color: var(--navy); }

/* NAV — light sticky */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.nav-logo img,
.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--gold);
}
.nav-wordmark { white-space: nowrap; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .has-drop { position: relative; }
.nav-links .has-drop::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-links .has-drop:hover .dropdown,
.nav-links .has-drop:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 230px;
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--mid) !important;
  font-size: 0.84rem;
}
.dropdown a:hover {
  background: var(--gold-pale);
  color: var(--navy) !important;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 18px !important;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    transform: none;
    margin: 0;
    padding: 0 0 0 16px;
    border: none;
    box-shadow: none;
    min-width: auto;
    background: transparent;
  }
  .nav-links .dropdown a { padding: 10px 0; }
  .hamburger { display: block; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-wordmark { font-size: 0.85rem; }
}

/* Buttons */
.btn-primary,
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover,
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-soft); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Sections */
section { padding: 72px 24px; }
.section-inner,
.wrap { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
h2.section-title,
h2.title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub,
.lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
  font-size: 0.98rem;
}
.content-narrow { max-width: 720px; }
.content-stack {
  max-width: 720px;
  width: 100%;
}
.section-inner.content-narrow { max-width: 1140px; }
.band-gold-pale { background: var(--gold-pale); }
.band-cream { background: var(--cream); }
.band-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-gold-pale { background: var(--gold-pale); }
.why-us .section-sub { margin-bottom: 48px; }

/* Homepage hero */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.eyebrow,
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--navy);
}
.hero h1 span,
.hero h1 em {
  background: linear-gradient(transparent 60%, var(--gold-pale) 60%);
  font-style: normal;
}
.hero-lead,
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 52ch;
}
.hero-tagline {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}
.hero-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero panel */
.hero-panel,
.hero-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--r);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-panel::before,
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-panel::after,
.hero-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.12);
}
.panel-label,
.hero-card-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
}
.panel-list { list-style: none; position: relative; display: grid; gap: 16px; }
.panel-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 4px;
}
.panel-list li:last-child { border-bottom: none; padding-bottom: 0; }
.panel-list strong { font-size: 0.95rem; font-weight: 700; }
.panel-list span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); line-height: 1.45; }
.service-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.service-pill:last-child { border-bottom: none; }
.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(200, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pill-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.pill-label { color: var(--white); font-size: 0.9rem; font-weight: 500; }
.pill-sub { color: rgba(255, 255, 255, 0.4); font-size: 0.78rem; }

/* Navy band / why strip */
.band-navy,
.why-strip {
  background: var(--navy);
  color: var(--white);
  padding: 48px 24px;
}
.band-inner,
.why-grid:not(.four-col) {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .band-inner,
  .why-grid:not(.four-col) { grid-template-columns: 1fr; }
}
.band-item,
.why-grid:not(.four-col) .why-item {
  background: transparent;
  border: none;
  padding: 0;
}
.band-item strong,
.why-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.band-item p,
.why-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Benefit split / about */
.benefit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .benefit-split { grid-template-columns: 1fr; } }
.benefit-split h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}
.benefit-split h2 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.about-text p {
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text p:last-child { margin-bottom: 0; }
.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
}

/* Why us 4 col */
.why-grid.four-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .why-grid.four-col { grid-template-columns: 1fr; } }
.why-grid.four-col .why-item {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-grid.four-col .why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why-grid.four-col .why-title { color: var(--navy); }
.why-grid.four-col .why-desc { color: var(--mid); }

/* Services grid / cards */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .services-header { grid-template-columns: 1fr; gap: 20px; } }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.svc,
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 36px 26px;
  box-shadow: 0 2px 12px rgba(26, 31, 46, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.svc.featured,
.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-top-color: var(--gold-light);
}
@media (min-width: 701px) { .svc.featured { grid-column: span 2; } }
.svc h3,
.service-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.svc.featured h3,
.service-card.featured .service-card-title { color: var(--white); }
.svc p,
.service-card-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
}
.svc.featured p,
.service-card.featured .service-card-desc { color: rgba(255, 255, 255, 0.65); }
.svc ul,
.service-card-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 6px;
}
.svc ul li,
.service-card-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.svc.featured ul li,
.service-card.featured .service-card-list li { color: rgba(255, 255, 255, 0.55); }
.svc ul li::before,
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 1.5; }
.service-card.featured .service-card-icon { background: rgba(200, 169, 110, 0.15); }
.service-card-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

/* Steps / process */
.steps,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .steps,
  .process-grid { grid-template-columns: 1fr; }
}
.step,
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step h3,
.step-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.step p,
.step-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
.process { background: var(--gold-pale); }
.process .section-title,
.process .section-label { color: var(--navy); }
.process .section-sub { color: var(--muted); }

/* Insights preview */
.insights-preview { background: var(--gold-pale); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; } }
.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(26, 31, 46, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.insight-meta {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.insight-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.insight-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}
.insight-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.insight-link:hover { color: var(--navy); }

/* Location */
.location-section { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 40px; } }
.location-map-block {
  background: var(--navy);
  border-radius: var(--r);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.location-map-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200, 169, 110, 0.15) 0%, transparent 55%);
}
.map-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.loc-tag {
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.25);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}
.loc-tag.primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}
.location-text p {
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.location-text strong { color: var(--navy); font-weight: 600; }
.location-text a { color: var(--gold); font-weight: 500; text-decoration: none; }
.location-text a:hover { text-decoration: underline; }

/* Contact */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info p { color: var(--mid); line-height: 1.75; margin-bottom: 32px; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.cd-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 3px;
}
.cd-value { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.cd-value a { color: var(--navy); text-decoration: none; }
.cd-value a:hover { color: var(--gold); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
}
#book-call, #send-message { scroll-margin-top: 96px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 0.76rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* CTA blocks */
.cta-wrap { padding: 0 24px 72px; }
.cta,
.faq-cta-box {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--r);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.cta h2,
.faq-cta-box h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.cta p,
.faq-cta-box p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 42ch;
  font-size: 0.92rem;
}
.faq-cta-box { flex-direction: column; align-items: flex-start; position: sticky; top: 88px; }
.faq-cta-box .btn-primary { width: 100%; justify-content: center; }
.cta-section {
  background: var(--navy);
  text-align: center;
}
.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255, 255, 255, 0.6); max-width: 560px; margin: 0 auto 28px; }
.cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-section .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Page hero — light inner pages */
.page-hero {
  background: var(--cream);
  padding: 48px 24px 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb a:hover { color: var(--navy); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p,
.page-hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.article-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 8px;
  border: 1px solid rgba(200, 169, 110, 0.35);
}

/* Prose */
.prose p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.96rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); }
.prose .service-page-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.prose .service-page-link:hover { color: var(--navy); }
.prose ul {
  list-style: none;
  margin: 16px 0 0;
}
.prose ul li {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.96rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.prose ul li:last-child { border-bottom: none; }
.prose ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* Value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  border-top: 3px solid var(--gold);
}
.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.92rem;
  margin: 0;
}

/* Areas covered */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.area-pill.main {
  background: var(--gold-pale);
  border-color: rgba(200, 169, 110, 0.4);
  font-weight: 600;
}
a.area-pill-link {
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
a.area-pill-link:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
}
.service-links {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}
.service-links li {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  color: var(--mid);
  font-size: 0.94rem;
  line-height: 1.65;
}
.service-links a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.service-links a:hover { color: var(--gold); }

/* Service blocks (services page) */
.service-block {
  padding: 48px 0 48px 24px;
  border-bottom: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  margin-left: -24px;
}
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-block:first-child { padding-top: 0; }
h3.service-name,
h3.section-subtitle {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.list-label { font-weight: 600; color: var(--navy); font-size: 0.92rem; margin: 8px 0 4px; }
.partner-note {
  margin-top: 28px;
  padding: 24px 26px;
  background: var(--gold-pale);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: var(--r);
  border-left: 4px solid var(--gold);
}
.partner-note p {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.94rem;
  margin-bottom: 0;
}
.partner-note ul {
  list-style: none;
  margin: 8px 0 0;
}
.partner-note ul li {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.94rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.partner-note ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* Article */
.article-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(26, 31, 46, 0.06);
}
@media (max-width: 560px) { .article-panel { padding: 28px 20px; } }
.article-prose p {
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-prose strong { color: var(--navy); font-weight: 600; }
.article-prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.article-prose a:hover { color: var(--gold); }
.article-prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  padding: 14px 0 14px 18px;
  border-top: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-pale) 0%, transparent 80%);
  border-radius: 0 8px 8px 0;
}
.article-prose h2:first-of-type { border-top: none; margin-top: 0; }
.article-prose ul {
  list-style: none;
  margin: 12px 0 20px;
  background: var(--gold-pale);
  border-radius: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(200, 169, 110, 0.2);
}
.article-prose ul li {
  color: var(--mid);
  line-height: 1.75;
  font-size: 0.96rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.article-prose ul li:last-child { border-bottom: none; }
.article-prose ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}
.answer-box {
  background: var(--gold-pale);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
  margin: 0 0 28px;
  border-radius: 0 12px 12px 0;
}
.answer-box > strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.answer-box p { margin: 0; color: var(--navy); line-height: 1.65; font-size: 0.98rem; }
.intro-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 20px 22px;
  margin: 0 0 28px;
  border-radius: 0 12px 12px 0;
}
.intro-box p { margin: 0; color: var(--navy); line-height: 1.7; font-size: 0.98rem; }
.calc-steps {
  background: var(--gold-pale);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 0 0 20px;
}
.calc-steps p { margin: 0 0 8px; color: var(--navy); font-size: 0.96rem; line-height: 1.6; }
.calc-steps p:last-child { margin-bottom: 0; }
.cost-table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(26, 31, 46, 0.04);
}
.cost-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.cost-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 18px;
  text-align: left;
}
.cost-table thead th:last-child { text-align: right; }
.cost-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
}
.cost-table tbody td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  font-weight: 500;
}
.cost-table tbody tr:nth-child(even) { background: var(--gold-pale); }
.cost-table tbody tr.total-row td {
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
  border-bottom: none;
}
.quote-pair { margin: 20px 0 28px; }
.quote-pair p { margin-bottom: 10px; color: var(--mid); }
.quote-pair p em { color: var(--navy); font-style: normal; font-weight: 600; }
.disclaimer {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cta-box {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: 12px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.cta-box h2 {
  font-size: 1.35rem;
  color: var(--white);
  margin: 0 0 12px;
  border: none;
  padding: 0;
  background: none;
}
.cta-box p { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; }
.cta-box a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  margin-bottom: 8px;
}
.cta-box a:hover { background: var(--gold-light); }
.cta-box a.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}
.cta-box a.ghost:hover { border-color: var(--gold); color: var(--gold); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 32px;
}
.back-link:hover { text-decoration: underline; }

/* Insights listing */
.insights-groups { display: flex; flex-direction: column; gap: 28px; }
.insight-group {
  background: var(--cream);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: var(--r);
  padding: 24px 24px 28px;
  box-shadow: 0 6px 24px rgba(26, 31, 46, 0.05);
  scroll-margin-top: 88px;
  border-top: 4px solid var(--gold);
}
.group-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: var(--gold-pale);
  color: var(--navy);
  border: 1px solid rgba(200, 169, 110, 0.35);
}
.group-empty {
  margin: 0;
  padding: 20px 22px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  background: var(--cream);
}
.group-empty a { color: var(--navy); font-weight: 500; text-decoration: underline; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--tile-cream);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(26, 31, 46, 0.06);
}
.blog-card::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--gold);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 169, 110, 0.4);
}
.blog-card-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-left: 4px solid var(--gold);
}
.blog-card .post-meta {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.blog-card .post-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(200, 169, 110, 0.3);
}
.blog-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card h2 a { color: var(--navy); text-decoration: none; }
.blog-card h2 a:hover { color: var(--gold); }
.blog-card .post-excerpt {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-card .post-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.blog-card .post-link:hover { color: var(--navy); }

.insight-group.sage .blog-card { background: var(--tile-cream); }
.insight-group.amber .blog-card { background: var(--tile-gold); }
.insight-group.blue .blog-card { background: var(--tile-navy-whisper); }

/* Pricing */
.pricing-stack { display: flex; flex-direction: column; gap: 40px; }
.pricing-card {
  background: var(--tile-cream);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: var(--r);
  padding: 40px 36px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(26, 31, 46, 0.06);
}
.pricing-card.card-sage { background: var(--tile-cream); }
.pricing-card.card-amber { background: var(--tile-gold); }
.pricing-card.featured {
  background: var(--tile-navy-whisper);
  border-color: rgba(26, 31, 46, 0.08);
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 28px rgba(26, 31, 46, 0.08);
}
.pricing-card.card-blue { background: var(--tile-navy-soft); }
.pricing-card.card-rose { background: var(--tile-gold-rich); }
.pricing-card.card-violet { background: var(--tile-gold-warm); }
.pricing-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}
.pricing-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.2;
}
.price-note { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.tagline {
  font-size: 0.94rem;
  color: var(--mid);
  margin-top: 12px;
  max-width: 620px;
  line-height: 1.7;
}
.subsection-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 28px 0 14px;
}
.check-item { margin-bottom: 18px; }
.check-item strong,
.check-item .check-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.check-item p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}
.retainer-pricing-panel {
  margin-top: 16px;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.retainer-pricing-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  background: var(--gold-pale);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.retainer-pricing-head span:last-child { text-align: right; }
.retainer-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.retainer-pricing-row:last-child { border-bottom: none; }
.retainer-pricing-row:nth-child(even) { background: var(--cream); }
.retainer-pricing-row:hover { background: var(--gold-pale); }
.retainer-band { font-size: 0.92rem; color: var(--navy); font-weight: 500; }
.retainer-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  line-height: 1.3;
}
.retainer-price.is-quote { color: var(--navy); font-size: 1rem; }
.retainer-price small {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 560px) {
  .retainer-pricing-head { display: none; }
  .retainer-pricing-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 10px;
    margin: 0 10px 10px;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .retainer-pricing-panel { background: var(--gold-pale); padding: 10px 0 2px; box-shadow: none; }
  .retainer-band::before {
    content: 'Team size';
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .retainer-price { text-align: left; }
}

.cream-band { background: var(--cream); }

.pricing-card-head + .tagline { margin-top: 0; }
.pricing-card .tagline + .tagline { margin-top: 10px; }
.pricing-card .tagline {
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.7;
}
.pricing-card .price-note {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  color: var(--muted);
}
.pricing-card-head .price-tag + .price-note { margin-top: 8px; }
.pricing-card-head h3 + .price-note { margin-top: 4px; }
.price-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}
.subsection-title + .tagline { margin-top: 0; }
.subsection-title + .bullet-plain,
.subsection-title + .retainer-pricing-panel { margin-top: 0; }
.tagline + .subsection-title,
.bullet-plain + .subsection-title,
.pointer-note + .subsection-title,
.ideal-box + .subsection-title { margin-top: 28px; }

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-mark {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 2px;
}
.check-row > div { flex: 1; min-width: 0; }

.policy-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.policy-list li {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
  padding: 3px 0 3px 16px;
  position: relative;
}
.policy-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.bullet-plain {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.bullet-plain li {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}
.bullet-plain li:last-child { border-bottom: none; }
.bullet-plain li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
.bullet-plain.not-included li { color: var(--muted); }
.bullet-plain.not-included li::before {
  background: var(--muted);
  opacity: 0.45;
}

.pointer-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
}

.ideal-box {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}
.ideal-box h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
}
.ideal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ideal-list li {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
  padding: 4px 0 4px 16px;
  position: relative;
}
.ideal-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}

.cta-final {
  margin-top: 56px;
  padding: 40px 36px;
  background: var(--navy);
  border-radius: var(--r);
  text-align: center;
  color: var(--white);
}
.cta-final h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-final p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 12px;
}
.cta-final p:last-of-type { margin-bottom: 24px; }
.cta-final .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-final .btn-outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 560px) {
  .pricing-card { padding: 28px 22px; }
  .pricing-card h3 { font-size: 1.4rem; }
  .price-tag { font-size: 1.75rem; }
  .cta-final { padding: 32px 24px; }
}

/* FAQ */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0;
}
.faq-a.open { max-height: 400px; padding: 0 0 20px; }
.faq-a a { color: var(--gold); }

/* Recruitment page */
.intro-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-band .section-inner { max-width: 860px; text-align: center; }
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}
@media (max-width: 768px) { .path-grid { grid-template-columns: 1fr; } }
.path-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--gold);
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.path-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--gold);
}
.path-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.path-card p {
  color: var(--mid);
  line-height: 1.65;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.path-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}
.employers-section { background: var(--cream); }
.employers-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .employers-grid { grid-template-columns: 1fr; } }
.check-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(26, 31, 46, 0.04);
}
.check-panel h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 16px;
}
.check-panel .check-list li { border-left-color: var(--gold); }
.note-box {
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  margin: 24px 0;
}
.note-box p { margin: 0; color: var(--mid); font-size: 0.94rem; line-height: 1.7; }
.individuals-section { background: var(--gold-pale); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(26, 31, 46, 0.04);
}
.package-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  border-top-color: var(--gold-light);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 900px) {
  .package-card.featured { transform: none; order: -1; }
}
.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 20px;
}
.package-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  padding-right: 80px;
}
.package-card.featured h4 { color: var(--white); padding-right: 90px; }
.package-card .tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: 2.8em;
}
.package-card.featured .tagline { color: rgba(255, 255, 255, 0.5); }
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1;
}
.package-card.featured .package-price { color: var(--gold-light); }
.package-includes {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 12px;
}
.package-card.featured .package-includes { color: var(--gold); }
.package-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.package-list li {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.55;
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.package-card.featured .package-list li {
  color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
}
.final-cta { background: var(--navy); }
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 768px) { .final-cta-grid { grid-template-columns: 1fr; } }
.final-cta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 32px 28px;
}
.final-cta-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.final-cta-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.final-cta-card ul { list-style: none; margin: 0 0 20px; }
.final-cta-card ul li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  padding: 4px 0;
}

/* Footer — light cream */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-col h4 {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.78rem; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: var(--gold-pale);
  border: 1px solid rgba(200, 169, 110, 0.35);
  color: var(--navy);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
}
.cookie-banner.hidden { display: none; }
.cookie-banner a { color: var(--gold); }
.cookie-banner button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}
.cookie-banner button:hover { background: var(--gold-light); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}
.cookie-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Utilities */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.hero-actions,
.cta-inline { margin-top: 8px; }
