/* RichDzik Investments - Premium Corporate Styles */
/* Primary: #0B1B4B | Accent: #E11B22 | Neutrals: #F7F9FC, #E7ECF3, #0F172A */

:root {
  --primary: #0B1B4B;
  --primary-light: #152a6b;
  --accent: #E11B22;
  --accent-hover: #c9181f;
  --neutral-bg: #F7F9FC;
  --neutral-border: #E7ECF3;
  --text: #0F172A;
  --text-muted: #475569;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(11, 27, 75, 0.08);
  --shadow-hover: 0 12px 40px rgba(11, 27, 75, 0.12);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#request { scroll-margin-top: 5.5rem; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; color: var(--primary); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-top: 0; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--text); }
.text-muted { color: var(--text-muted); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section--alt { background: var(--neutral-bg); }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { max-width: 560px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Navigation */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.nav__logo { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
  border-radius: var(--radius-sm);
}
.nav__links a:hover { color: var(--accent); background: var(--neutral-bg); }
.nav__links a.active { color: var(--accent); font-weight: 600; }
.nav__cta { margin-left: 0.5rem; }
.nav__cta .btn { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Mobile menu */
.nav__toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; color: var(--primary); }
.nav__toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-border);
    padding: 1rem;
    gap: 0;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 0.75rem 1rem; width: 100%; }
  .nav__cta { margin-left: 0; margin-top: 0.5rem; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d2563 100%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/358319/pexels-photo-358319.jpeg?auto=compress&cs=tinysrgb&w=1920&q=75') center/cover no-repeat;
  opacity: 0.22;
  z-index: 1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(11,27,75,0.2) 50%, transparent 100%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px),
    linear-gradient(135deg, rgba(11, 27, 75, 0.88) 0%, rgba(11, 27, 75, 0.75) 50%, rgba(13, 37, 99, 0.85) 100%);
  z-index: 2;
}
.hero .container { position: relative; z-index: 3; }
.hero__content { max-width: 640px; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero__sub { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; line-height: 1.6; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__ctas .btn--accent { margin-right: 0; }
.hero__ctas .btn--outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero__ctas .btn--outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ---------- Homepage (premium layout) ---------- */
.home-page main { padding-top: 0; }
.home-page .container { max-width: 72rem; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) {
  .home-page .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* HomeHero: 2-col, trust chips, stronger hierarchy */
.home-hero {
  min-height: auto;
  padding: 6rem 0 4rem;
}
@media (min-width: 768px) {
  .home-hero { padding: 7rem 0 5rem; }
}
.home-hero .hero__bg::before {
  background: url('https://images.pexels.com/photos/2219024/pexels-photo-2219024.jpeg?auto=compress&cs=tinysrgb&w=1920&q=70') center/cover no-repeat;
  opacity: 0.18;
}
.home-hero .hero__bg::after {
  background: linear-gradient(135deg, rgba(7, 26, 51, 0.92) 0%, rgba(11, 37, 80, 0.9) 50%, rgba(14, 47, 94, 0.92) 100%);
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .home-hero__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.home-hero__content { max-width: none; }
.home-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.home-hero h1 .line2 { display: block; font-size: 0.85em; opacity: 0.95; }
.home-hero__sub {
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
}
.home-hero__chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
}
.home-hero__ctas { margin-top: 0; }
.home-hero__ctas .btn { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.home-hero__ctas .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.2); }
.home-hero__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral-bg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  aspect-ratio: 16 / 10;
}
.home-hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* WhoWeAreSplit (reuse split-section pattern) */
.who-we-are-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .who-we-are-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.who-we-are-split__text h2 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 600; margin: 0 0 0.75rem; }
.who-we-are-split__text .lead { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 1rem; }
.who-we-are-split__text ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--text-muted); }
.who-we-are-split__text ul li { margin-bottom: 0.35rem; }
.who-we-are-split__media {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral-bg);
  box-shadow: 0 10px 40px rgba(11, 27, 75, 0.1);
}
.who-we-are-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.who-we-are-split__text .capability-link { color: var(--accent); font-weight: 600; }
.who-we-are-split__text .capability-link:hover { text-decoration: underline; }

/* TrustStrip (stats) - reuse stats-row */
.home-trust-strip .stats-row { margin: 0; }

/* Home Core Capabilities: premium cards */
.home-capabilities .capability-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.home-capabilities .capability-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(11, 27, 75, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-capabilities .capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 27, 75, 0.1);
}
.home-capabilities .capability-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(225, 27, 34, 0.1);
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.home-capabilities .capability-card__icon svg { width: 24px; height: 24px; }
.home-capabilities .capability-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.home-capabilities .capability-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }
.home-capabilities .capability-card .capability-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}
.home-capabilities .capability-card .capability-link:hover { gap: 0.5rem; }

/* Mid-page CTA band (same as About cta-band) */
.home-cta-band { margin: 0; }

/* Projects grid on home: case-study style */
.home-projects .project-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.home-projects .project-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 27, 75, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}
.home-projects .project-card:hover { color: inherit; transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11, 27, 75, 0.12); }
.home-projects .project-card__img-wrap {
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}
.home-projects .project-card:hover .project-card__img { transform: scale(1.05); }
.home-projects .project-card__tag {
  background: rgba(11, 27, 75, 0.8);
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
}
.home-projects .project-card__body { padding: 1.25rem 1.5rem; }
.home-projects .project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.home-projects .project-card__footer span { display: inline-flex; align-items: center; gap: 0.25rem; }
.home-projects .project-card:hover .project-card__footer { color: var(--accent-hover); }
.home-projects .view-all-wrap { text-align: center; margin-top: 2rem; }
.home-projects .view-all-wrap .btn { border-radius: 12px; padding: 0.75rem 1.5rem; }

/* Section spacing (home) */
.home-page .section { padding: 4rem 0; }
@media (min-width: 768px) {
  .home-page .section { padding: 5rem 0; }
}

/* Pre-footer CTA */
.pre-footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d2563 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pre-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px);
  pointer-events: none;
}
.pre-footer-cta .container { position: relative; z-index: 1; }
.pre-footer-cta h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; margin: 0 0 0.5rem; }
.pre-footer-cta p { color: rgba(255,255,255,0.9); margin: 0 0 1.5rem; }
.pre-footer-cta .btn--accent { background: var(--white); color: var(--primary); }
.pre-footer-cta .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); transform: translateY(-2px); }

/* Reveal animation placeholder */
/* Scroll reveal: hidden until in view (JS adds .is-visible). No-JS fallback: show all so prod never shows blank sections. */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
html.no-js .reveal { opacity: 1; transform: translateY(0); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 27, 75, 0.15);
}
.card h3 { margin-top: 0; margin-bottom: 0.5rem; }
.card p { margin-bottom: 0; font-size: 0.9375rem; }

/* Capability pillars */
.capability-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.capability-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.capability-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--neutral-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.capability-card__icon svg { width: 28px; height: 28px; }

/* Project grid */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.project-card {
  background: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.project-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--neutral-bg);
}
.project-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 27, 75, 0.15) 0%, rgba(11, 27, 75, 0.35) 100%);
  pointer-events: none;
}
.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card__img { transform: scale(1.05); }
.project-card__tags {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(11, 27, 75, 0.85);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.project-card__hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: 1;
}
.project-card:hover .project-card__hover-line { transform: scaleX(1); }

.project-card__body { padding: 1.5rem; }
.project-card__body .project-card__tags { position: static; margin-bottom: 0.75rem; }
.project-card__body .project-card__tag { color: var(--primary); background: var(--neutral-bg); }
.project-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.project-card p { font-size: 0.9375rem; margin-bottom: 0.75rem; color: var(--text-muted); }
.project-card__list { margin: 0; padding-left: 1.25rem; font-size: 0.875rem; color: var(--text-muted); }
.project-card__list li { margin-bottom: 0.25rem; }
.project-card a.external::after { content: ' ↗'; font-size: 0.75em; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.industry-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.industry-item strong { display: block; color: var(--primary); margin-bottom: 0.25rem; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; counter-reset: step; }
.process-step {
  position: relative;
  padding-left: 3rem;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.process-step p { font-size: 0.9375rem; margin: 0; color: var(--text-muted); }

/* Partner CTA */
.partner-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  color: var(--white);
}
.partner-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.partner-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.partner-cta .btn--accent { background: var(--white); color: var(--primary); }
.partner-cta .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); }

/* Contact strip */
.contact-strip {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}
.contact-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; }
.contact-strip p { margin: 0; color: rgba(255,255,255,0.9); }
.contact-strip .btn--accent { background: var(--white); color: var(--primary); }
.contact-strip .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); }

/* Footer */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__brand p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin-top: 0.5rem; }
.footer h4 { color: var(--white); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
}

/* Page header */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.9); margin: 0; }

/* Services list (legacy) */
.service-list { max-width: 720px; margin: 0 auto; }
.service-list h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.service-list ul { margin: 0 0 1rem; padding-left: 1.25rem; color: var(--text-muted); }
.service-list li { margin-bottom: 0.25rem; }

/* ---------- Services page (premium tabbed layout) ---------- */
.services-page main { padding-top: 0; }
.services-page .container { max-width: 72rem; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) {
  .services-page .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.services-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d2563 100%);
  color: var(--white);
  padding: 5rem 0 3rem;
  text-align: center;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px),
    repeating-linear-gradient(0deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px);
  pointer-events: none;
}
.services-hero .container { position: relative; z-index: 1; }
.services-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.75);
}
.services-breadcrumb a { color: rgba(255,255,255,0.9); }
.services-breadcrumb a:hover { color: var(--white); }
.services-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.services-hero .services-hero__sub { color: rgba(255,255,255,0.9); margin: 0; font-size: 1.125rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.services-content { padding: 2.5rem 0 4rem; background: var(--neutral-bg); }
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.services-tab {
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--neutral-border);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.services-tab:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.services-tab:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-left: none; }
.services-tab:hover { color: var(--primary); background: var(--neutral-bg); }
.services-tab.is-active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}
.services-panel { display: none; }
.services-panel.is-active { display: block; }

.services-section-title { margin-bottom: 2rem; }
.services-section-title h2 { margin-bottom: 0.5rem; }
.services-section-title p { margin: 0; color: var(--text-muted); max-width: 640px; }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .service-cards-grid { grid-template-columns: 1fr; }
  .services-tab:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .services-tab:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); border-left: 1px solid var(--neutral-border); border-top: none; }
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 24px rgba(11, 27, 75, 0.06);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 27, 75, 0.12);
  border-color: rgba(11, 27, 75, 0.12);
}
.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--neutral-bg);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__body { padding: 1.5rem 1.75rem; }
.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--primary);
}
.service-card__body h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.service-card__summary { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 1rem; line-height: 1.5; }
.service-card__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.service-card__body ul li { margin-bottom: 0.35rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
}
.service-card__link:hover { color: var(--accent-hover); text-decoration: underline; }

/* Selected Projects strip (services page) */
.selected-projects-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--neutral-border);
  margin-top: 2rem;
}
.selected-projects-strip h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.selected-projects-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.selected-projects-scroll::-webkit-scrollbar { height: 6px; }
.selected-projects-scroll::-webkit-scrollbar-track { background: var(--neutral-bg); border-radius: 3px; }
.selected-projects-scroll::-webkit-scrollbar-thumb { background: var(--neutral-border); border-radius: 3px; }
.selected-project-mini {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.selected-project-mini:hover { box-shadow: var(--shadow-hover); }
.selected-project-mini a { display: block; color: inherit; }
.selected-project-mini a:hover { color: var(--accent); }
.selected-project-mini__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--neutral-bg);
}
.selected-project-mini__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.selected-project-mini__body { padding: 0.75rem 1rem; }
.selected-project-mini__body strong { font-size: 0.9375rem; color: var(--primary); display: block; margin-bottom: 0.35rem; }
.selected-project-mini__tags { font-size: 0.75rem; color: var(--text-muted); }

/* Services CTA card (navy) */
.services-cta-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  margin-top: 2rem;
  border: none;
  box-shadow: 0 8px 32px rgba(11, 27, 75, 0.2);
}
.services-cta-card h3 { color: var(--white); margin: 0 0 0.5rem; }
.services-cta-card p { color: rgba(255,255,255,0.9); margin: 0 0 1.25rem; }
.services-cta-card .btn--accent { background: var(--white); color: var(--primary); }
.services-cta-card .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); }

/* About (legacy) */
.about-intro { max-width: 720px; margin: 0 auto 2rem; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.about-card { padding: 1.5rem; background: var(--neutral-bg); border-radius: var(--radius); }

/* ---------- About page (premium layout) ---------- */
.about-page main { padding-top: 0; }
.about-page .container { max-width: 72rem; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) {
  .about-page .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* AboutHero */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d2563 100%);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px),
    repeating-linear-gradient(0deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px);
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.about-hero__sub { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin: 0 0 1.5rem; }
.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.about-hero__chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12);
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
}
.about-hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.about-hero__ctas .btn--accent { background: var(--white); color: var(--primary); }
.about-hero__ctas .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); }
.about-hero__ctas .btn--outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.about-hero__ctas .btn--outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* Section titles on About page */
.about-section__title { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 600; margin: 0 0 1.5rem; color: var(--primary); }

/* SplitSection (Company Profile) */
.about-section { padding: 4rem 0; }
@media (min-width: 768px) {
  .about-section { padding: 5rem 0; }
}
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.split-section__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 600;
  margin: 0 0 1rem;
}
.split-section__text .lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.split-section__text ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.split-section__text ul li { margin-bottom: 0.35rem; }
.split-section__text .compact { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }
.split-section__media {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral-bg);
  box-shadow: 0 10px 40px rgba(11, 27, 75, 0.1);
}
.split-section__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* StatsRow */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stats-row__item {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stats-row__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 27, 75, 0.08);
}
.stats-row__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.35rem; }
.stats-row__value { font-weight: 600; font-size: 1rem; color: var(--primary); margin: 0; }

/* CapabilityGrid (What We Do) */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .capability-grid { grid-template-columns: repeat(4, 1fr); }
}
.capability-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.capability-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 27, 75, 0.08);
}
.capability-card__icon { width: 40px; height: 40px; margin-bottom: 1rem; color: var(--primary); }
.capability-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.capability-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 0.75rem; line-height: 1.5; }
.capability-card a { font-size: 0.875rem; font-weight: 600; color: var(--accent); }
.capability-card a:hover { text-decoration: underline; }

/* ProcessSteps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--neutral-border);
    z-index: 0;
  }
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .process-step { flex-direction: column; align-items: center; text-align: center; padding: 0; }
}
.process-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .process-step__num { margin-bottom: 0.75rem; }
}
.process-step__title { font-weight: 600; font-size: 1rem; margin: 0 0 0.25rem; color: var(--primary); }
.process-step__desc { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Partners strip */
.partners-strip { padding: 3rem 0; background: var(--neutral-bg); }
.partners-strip h3 { font-size: 1.125rem; margin-bottom: 1.25rem; text-align: center; }
.partners-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.partners-badge {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(11, 27, 75, 0.04);
}
.partners-badge:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(11, 27, 75, 0.08); }

/* CTA band (above footer) */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d2563 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; margin: 0 0 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0 0 1.5rem; }
.cta-band__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta-band .btn--accent { background: var(--white); color: var(--primary); }
.cta-band .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); }
.cta-band .btn--outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-band .btn--outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* Contact form */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 27, 75, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.form-error { color: var(--accent); font-size: 0.875rem; margin-top: 0.25rem; }
.contact-fallback { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--neutral-border); }
.contact-fallback p { margin-bottom: 0.5rem; font-size: 0.9375rem; }

/* ---------- Contact page (premium layout) ---------- */
.contact-page main { padding-top: 0; }
.contact-page .container { max-width: 72rem; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 768px) {
  .contact-page .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ContactHero */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d2563 100%);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-hero { padding: 6rem 0 4rem; }
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px),
    repeating-linear-gradient(0deg, transparent 0, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px);
  pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero h1 { color: var(--white); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 0.5rem; }
.contact-hero__sub { color: rgba(255,255,255,0.9); margin: 0 0 1rem; font-size: 1.125rem; }
.contact-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.contact-hero__chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
}

/* Contact body: two-column */
.contact-body { padding: 4rem 0; }
@media (min-width: 768px) { .contact-body { padding: 5rem 0; } }
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-split { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
}

/* ContactFormCard */
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 27, 75, 0.06);
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form-card { padding: 2.5rem; } }
.contact-form-card h2 { font-size: 1.5rem; font-weight: 600; margin: 0 0 0.5rem; }
.contact-form-card .form-intro { color: var(--text-muted); margin: 0 0 1.5rem; font-size: 0.9375rem; line-height: 1.55; }
.contact-form-card .form-group { margin-bottom: 1.25rem; }
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--neutral-border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(225, 27, 34, 0.2);
}
.contact-form-card textarea { min-height: 140px; resize: vertical; }
.contact-form-card select { cursor: pointer; appearance: auto; }
.contact-form-card .form-actions { margin-top: 1.5rem; }
.contact-form-card .form-actions .btn { min-height: 3rem; padding: 0.75rem 1.5rem; border-radius: 12px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.contact-form-card .form-actions .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225, 27, 34, 0.25); }
.contact-form-card .form-secondary-link { display: block; margin-top: 1rem; font-size: 0.9375rem; color: var(--accent); font-weight: 500; }
.contact-form-card .form-secondary-link:hover { text-decoration: underline; }
.contact-form-card .form-privacy { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }
.contact-form-card .radio-group { margin: 0.75rem 0 1rem; }
.contact-form-card .radio-group legend { font-weight: 600; font-size: 0.9375rem; color: var(--primary); margin-bottom: 0.5rem; }
.contact-form-card .radio-options { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact-form-card .radio-options label { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; margin: 0; cursor: pointer; }
.contact-form-card .radio-options input[type="radio"] { width: auto; min-height: auto; accent-color: var(--accent); }

/* QuickContactCards */
.quick-contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.quick-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 27, 75, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quick-contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11, 27, 75, 0.1); color: var(--primary); }
.quick-contact-card__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--neutral-bg); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.quick-contact-card__icon svg { width: 22px; height: 22px; }
.quick-contact-card__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.2rem; }
.quick-contact-card__value { font-weight: 600; font-size: 0.9375rem; color: var(--primary); }

/* LocationCard */
.location-card {
  padding: 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 27, 75, 0.06);
  margin-top: 1rem;
}
.location-card h3 { font-size: 1rem; font-weight: 600; margin: 0 0 0.5rem; }
.location-card p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }
.location-card__map-placeholder {
  margin-top: 1rem;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--neutral-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  border: 1px dashed var(--neutral-border);
}
.location-card__map-placeholder svg { width: 32px; height: 32px; color: var(--primary); opacity: 0.6; flex-shrink: 0; }

/* CapabilityDownloadCard */
.capability-download-card {
  margin-top: 1rem;
  padding: 1.5rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(11, 27, 75, 0.2);
  border: none;
}
.capability-download-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin: 0 0 0.5rem; }
.capability-download-card p { color: rgba(255,255,255,0.9); margin: 0 0 1rem; font-size: 0.9375rem; line-height: 1.5; }
.capability-download-card .btn--accent { background: var(--white); color: var(--primary); }
.capability-download-card .btn--accent:hover { background: var(--neutral-bg); color: var(--primary); transform: translateY(-2px); }
.capability-download-card .form-secondary-link { color: rgba(255,255,255,0.95); margin-top: 0.75rem; }
.capability-download-card .form-secondary-link:hover { color: var(--white); }

/* WhatToInclude */
.what-to-include { padding: 3rem 0; background: var(--neutral-bg); }
.what-to-include h2 { font-size: 1.375rem; font-weight: 600; margin: 0 0 1.5rem; text-align: center; }
.what-to-include__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .what-to-include__grid { grid-template-columns: repeat(3, 1fr); }
}
.what-to-include__item {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: box-shadow var(--transition);
}
.what-to-include__item:hover { box-shadow: 0 8px 24px rgba(11, 27, 75, 0.08); }
.what-to-include__item strong { color: var(--primary); font-size: 0.9375rem; display: block; margin-bottom: 0.35rem; }
.what-to-include__item p { margin: 0; font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--neutral-border); padding: 1rem 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item h4 { margin: 0 0 0.5rem; font-size: 1rem; }
.faq-item p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); }

/* HSQ */
.hsq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.hsq-item { text-align: center; padding: 1.5rem; background: var(--neutral-bg); border-radius: var(--radius); }
.hsq-item strong { color: var(--primary); display: block; margin-bottom: 0.5rem; }

/* Thank you page */
.thank-you { text-align: center; padding: 4rem 2rem; }
.thank-you h1 { margin-bottom: 1rem; }
.thank-you p { max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
