:root {
  --color-bg: #ffffff;
  --color-surface: #f7f7f8;
  --color-surface-2: #ededef;
  --color-accent: #1a56db;
  --color-accent-hover: #1342b2;
  --color-accent-2: #c9a84c;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: rgba(0,0,0,0.09);
  --color-nav-bg: rgba(255,255,255,0.92);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --container-max: 1280px;
  --container-px: clamp(1.25rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =========================================
   SKIP LINK
   ========================================= */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  z-index: 99999;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: left var(--transition);
}

.skip-link:focus {
  left: 1rem;
  z-index: 9999;
}

/* =========================================
   FOCUS VISIBLE
   ========================================= */

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* =========================================
   CONTAINER
   ========================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background-color: var(--color-bg);
}

.section--alt {
  background-color: #0a1430;
}

.section__header {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem var(--container-px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  height: 2.5rem;
  width: auto;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
  margin-left: auto; /* always right-justified */
}

.nav__toggle:hover {
  background: var(--color-surface);
}

.nav__toggle-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav--open .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav--open .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav__item {
  list-style: none;
}

.nav--open .nav__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem var(--container-px) 1.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  gap: 0.25rem;
}

/* Mobile open state — dark text on white dropdown */
.nav--open .nav__menu .nav__link {
  color: #0a1430;
}
.nav--open .nav__menu .nav__link:hover {
  color: #1a5fd4;
  background: rgba(26,95,212,0.06);
}
.nav--open .nav__menu .nav__link--active {
  color: #1a5fd4;
  font-weight: 700;
}

.nav .nav__link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.625rem 0.5rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav .nav__link:hover {
  color: var(--color-accent);
  background: rgba(26, 86, 219, 0.08);
}

.nav .nav__link--active {
  color: var(--color-accent);
  font-weight: 700;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-accent);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    padding: 0;
    gap: 0.25rem;
  }

  .nav .nav__link {
    padding: 0.5rem 0.75rem;
  }
}

/* =========================================
   HERO
   ========================================= */

.hero {
  /* base hero styles — overridden by split layout rules below */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 52rem;
  padding: 0;
}

.hero__eyebrow {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffc83c;
  background: rgba(255,200,60,0.12);
  border: 1px solid rgba(255,200,60,0.35);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__content {
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.5);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   SERVICES
   ========================================= */

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

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

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

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

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

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(26, 86, 219, 0.1);
  border-radius: var(--radius);
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(26, 86, 219, 0.18);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.2;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

/* =========================================
   CLIENTS
   ========================================= */

.clients-section {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  background: var(--color-surface-2);
  overflow: hidden;
}

.clients-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}

.client-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.client-item img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
}

/* =========================================
   POSTS GRID
   ========================================= */

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

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

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.post-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.post-card:hover .post-card__img {
  transform: scale(1.03);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  gap: 0.625rem;
}

.post-card__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  letter-spacing: 0.03em;
  color: var(--color-text);
  line-height: 1.25;
}

.post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.5rem;
  transition: color var(--transition), gap var(--transition);
  text-decoration: none;
}

.post-card__link:hover {
  color: var(--color-accent-hover);
  gap: 0.625rem;
}

/* =========================================
   SINGLE POST
   ========================================= */

.post-header {
  background: linear-gradient(135deg, #111827 0%, #1f2d4e 100%);
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.post-header__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-2);
  margin-bottom: 1rem;
}

.post-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.post-header__meta {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.prose {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--container-px);
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--color-text);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.prose h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.prose a:hover {
  color: var(--color-accent-hover);
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.prose blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.prose img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
}

.prose code {
  background: var(--color-surface-2);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.prose pre {
  background: var(--color-text);
  color: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 2rem 0;
}

.prose pre code {
  background: none;
  padding: 0;
  font-size: 0.875rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2.5rem;
  transition: color var(--transition), gap var(--transition);
  text-decoration: none;
}

.back-link:hover {
  color: var(--color-accent-hover);
  gap: 0.75rem;
}

/* =========================================
   LIST PAGE HEADER
   ========================================= */

.page-header {
  background: linear-gradient(135deg, #111827 0%, #1f2d4e 100%);
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: #0b1120;
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(3rem, 7vw, 5.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-brand img {
  height: 2.75rem;
  width: auto;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.footer-brand__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 22rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav__title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc83c;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,200,60,0.3);
  font-weight: 700;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--transition), padding-left 0.15s ease;
  display: inline-block;
}

.footer-nav__link:hover {
  color: #fff;
  padding-left: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom__copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* =========================================
   UTILITY: VISUALLY HIDDEN
   ========================================= */

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

/* =========================================
   ACCENT BAR / DIVIDER

  background: var(--color-accent);
  margin-top: 1rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   THEME STYLES — snaplease custom theme
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS variables ───────────────────────────────────────────────── */
:root { --color-nav-bg: rgba(10, 20, 60, 0.72); }

/* ── Navigation ──────────────────────────────────────────────────── */
.nav {
  background: rgba(10, 20, 60, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav--scrolled { background: rgba(10, 20, 60, 0.97); box-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.nav__logo { color: #fff; font-size: 1.15rem; font-weight: 800; }
.nav .nav__link { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 600; }
.nav .nav__link:hover { color: #ffd966; background: rgba(255,255,255,0.15); border-radius: 4px; }
.nav .nav__link--active { color: #fff; border-bottom: 2px solid #ffc83c; padding-bottom: 2px; }
.nav__toggle-line { background: #fff; }
/* Mobile: override hover state so white lines stay visible (touch persists :hover) */
.nav__toggle:hover { background: rgba(255,255,255,0.15); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  padding: 0;
  background: none;
  position: relative;
  overflow: hidden;
}
.hero::before { content: none; }
/* Full-bleed photo hero with directional gradient overlay */
.hero__split {
  position: relative;
  min-height: 620px;
  background-color: #0a1430;
  display: flex;
  align-items: center;
}
/* <picture> fills the split absolutely — browser picks the right srcset size */
.hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero__split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(8,14,40,0.82) 0%,
    rgba(8,14,40,0.68) 30%,
    rgba(8,14,40,0.32) 58%,
    rgba(8,14,40,0.05) 80%,
    transparent 100%);
  z-index: 1;
}
.hero__left {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 7rem clamp(1.5rem, 4vw, 3rem) 4rem clamp(1.5rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__right { display: none; }
.hero__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
/* Legacy bg/overlay/inner/visual — keep so other references don't break */
.hero__bg { display: none; }
.hero__overlay { display: none; }
.hero__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; position: relative; z-index: 2; }
.hero__content { position: relative; z-index: 2; text-align: left; max-width: 52rem; padding: 0; }
.hero__visual { display: none; }
.hero__testimonial {
  background: rgba(8,16,50,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  min-width: 280px;
  max-width: 320px;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__cred-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
}
.hero__cred-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffc83c;
  line-height: 1;
  white-space: nowrap;
}
.hero__cred-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.hero__cred-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0;
}
.hero__cred-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffc83c;
  margin: 0 0 1rem;
}
.hero__step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0;
}
.hero__step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffc83c;
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
  width: 2rem;
}
.hero__step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero__step-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.hero__step-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,200,60,0.15);
  border: 1px solid rgba(255,200,60,0.45);
  color: #ffc83c;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  align-self: flex-start;
}
.hero__badge-icon { font-size: 1rem; }
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    align-self: auto;
  }
  .hero__testimonial {
    max-width: 100% !important;
    width: 100%;
  }
  .hero__content { text-align: left; }
  .hero__subtitle { max-width: 100%; margin-left: 0; }
  .hero__actions { justify-content: flex-start; flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}
.hero__eyebrow {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,200,60,0.22);
  border: 1px solid rgba(255,200,60,0.65);
  color: #ffc83c;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 900;
  text-shadow: 0 2px 24px rgba(8,16,50,0.85), 0 1px 4px rgba(0,0,0,0.6);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 52ch;
  margin-left: 0;
  text-shadow: 0 1px 8px rgba(8,16,50,0.5);
  opacity: 0.9;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }
.hero__mobile-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffc83c;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255,200,60,0.12);
  border: 1px solid rgba(255,200,60,0.35);
  border-radius: 2rem;
  padding: 0.4rem 0.875rem;
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__mobile-badge svg { width: 72px; height: 12px; flex-shrink: 0; }
@media (max-width: 768px) {
  .hero__mobile-badge { display: flex; }
}
.hero__mobile-steps {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.hero__mobile-step {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero__mobile-step strong {
  color: #ffc83c;
  font-weight: 800;
}
@media (max-width: 768px) {
  .hero__mobile-steps { display: flex; }
}
.btn--primary { background: #1a5fd4; border-color: #1a5fd4; color: #fff; font-weight: 700; padding: 0.75rem 1.75rem; font-size: 0.82rem; letter-spacing: 0.06em; box-shadow: 0 4px 16px rgba(26,95,212,0.4); }
.btn--primary:hover { background: #154cb8; transform: translateY(-2px); }
.btn--ghost { border: 2px solid rgba(255,255,255,0.85); color: #fff; background: rgba(255,255,255,0.15); padding: 0.75rem 1.75rem; font-size: 0.82rem; letter-spacing: 0.06em; font-weight: 700; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,0.28); border-color: #fff; }
@media (max-width: 480px) {
  .btn--ghost { background: #fff; color: #0a1430; border-color: transparent; font-weight: 700; }
  .btn--ghost:hover { background: #f0f4ff; }
}
.btn--ghost:hover { background: #fff; transform: translateY(-2px); }

/* ── Page Hero (internal pages) ──────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(135deg, #0a1430 0%, #0d2060 100%);
  padding: 7rem 0 3.5rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%; background-repeat: no-repeat;
  opacity: 0.55;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,16,50,0.88) 0%, rgba(10,24,76,0.60) 100%);
  z-index: 0;
}
.page-hero__content { position: relative; z-index: 1; text-align: left; }
.page-hero__eyebrow {
  display: inline-block;
  color: #ffc83c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.page-hero__subtitle { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 0.75rem; }

/* ── Person headshot (Karin Reilly + future team members) ── */
.person-photo {
  float: right;
  margin: 0 0 1.5rem 2rem;
  width: 240px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  object-fit: cover;
  shape-outside: border-box;
}
@media (max-width: 600px) {
  .person-photo { float: none; display: block; margin: 0 auto 1.5rem; width: 180px; }
}

/* ── Service/page cards ───────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}
/* ── Service Tiles ────────────────────────────────────────────── */
/* Solutions section (replaces service-tiles) */
.solutions-section { background: #f3f7ff; }
.solutions-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.solutions-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a5fd4;
  margin-bottom: 1rem;
}
.solutions-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0a1430;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.solutions-desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
}
.solutions-features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.solutions-features li {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
  padding-left: 1.5rem;
  position: relative;
}
.solutions-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #1a5fd4;
  border-radius: 50%;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2.5rem 2rem;
  border: 1px solid #dce6f7;
  border-top: 3px solid #1a5fd4;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  min-height: 280px;
  box-shadow: 0 2px 12px rgba(10,20,60,0.07);
}
.solution-card:hover {
  box-shadow: 0 8px 32px rgba(10,20,60,0.14);
  transform: translateY(-3px);
}
.solution-card__num {
  display: none;
}
.solution-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  background: #1a5fd4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.solution-card__icon-wrap svg { width: 1.375rem; height: 1.375rem; }
.solution-card:hover .solution-card__icon-wrap { background: #0a1430; }
.solution-card__icon { display: none; }
.solution-card__icon svg { width: 2.5rem; height: 2.5rem; stroke-width: 2; }
.solution-card__body { flex: 1; }
.solution-card__title { font-size: 1.05rem; font-weight: 700; color: #0a1430; margin-bottom: 0.5rem; line-height: 1.3; }
.solution-card__desc { font-size: 0.925rem; color: #4b5563; line-height: 1.6; }
.solution-card__cta { font-size: 0.82rem; font-weight: 700; color: #1a5fd4; letter-spacing: 0.04em; margin-top: auto; padding-top: 0.5rem; }
.solution-card__arrow { display: none; }
@media (max-width: 960px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .service-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .service-tiles { grid-template-columns: 1fr; }
}
.service-tile {
  background: #fff;
  border: 1px solid #dde3ee;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  transition: opacity 0.2s;
  opacity: 0;
}
.service-tile:hover {
  box-shadow: 0 8px 32px rgba(10,20,80,0.1);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-tile:hover::before { opacity: 1; }
.service-tile--1::before { background: linear-gradient(90deg, #1a5fd4, #4a9ef5); }
.service-tile--2::before { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.service-tile--3::before { background: linear-gradient(90deg, #2563eb, #93c5fd); }
.service-tile--4::before { background: linear-gradient(90deg, #3b82f6, #bfdbfe); }
.service-tile__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-tile__icon svg { width: 2rem; height: 2rem; }
.service-tile--1 .service-tile__icon { background: #1a5fd4; color: #fff; }
.service-tile--2 .service-tile__icon { background: #1d4ed8; color: #fff; }
.service-tile--3 .service-tile__icon { background: #2563eb; color: #fff; }
.service-tile--4 .service-tile__icon { background: #3b82f6; color: #fff; }
.service-tile__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1430;
  line-height: 1.3;
  margin: 0;
}
.service-tile__desc {
  font-size: 0.875rem;
  color: #5a6a8a;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.service-tile__cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: #1a5fd4;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.service-tile:hover .service-tile__cta {
  background: #154cb8;
}

.posts-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .posts-grid--4 { grid-template-columns: 1fr; }
}
.post-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(10,20,60,0.07);
  transition: box-shadow 0.22s, transform 0.22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.post-card:hover { box-shadow: 0 10px 32px rgba(10,20,60,0.14); transform: translateY(-3px); }
.post-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0a1430 0%, #1a5fd4 100%);
  flex-shrink: 0;
  transition: filter 0.2s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.post-card:hover .post-card__thumb { filter: brightness(1.12); }
.post-card__thumb-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  z-index: 0;
}
.post-card:hover .post-card__thumb-photo { transform: scale(1.06); }
.post-card__thumb-icon {
  width: 4rem; height: 4rem;
  color: rgba(255,255,255,0.95);
  stroke-width: 1.5;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
/* Gradient variants — fallback & color-grade overlays for photo differentiation */
.post-card__thumb--1 { background: linear-gradient(135deg, #0a1430 0%, #1a5fd4 100%); }
.post-card__thumb--2 { background: linear-gradient(135deg, #0c2d4a 0%, #0d7ab5 100%); }
.post-card__thumb--3 { background: linear-gradient(135deg, #0a2a14 0%, #1a8a46 100%); }
.post-card__thumb--4 { background: linear-gradient(135deg, #2a0a50 0%, #7a3fd4 100%); }
.post-card__thumb--5 { background: linear-gradient(135deg, #40100a 0%, #c44440 100%); }
.post-card__thumb--6 { background: linear-gradient(135deg, #3a2000 0%, #c47a10 100%); }
/* Color-grade overlay per card to differentiate industrial photos */
.post-card__thumb--1::before { content: ''; position: absolute; inset: 0; background: rgba(10,40,140,0.28); z-index: 1; pointer-events: none; }
.post-card__thumb--2::before { content: ''; position: absolute; inset: 0; background: rgba(10,80,100,0.28); z-index: 1; pointer-events: none; }
.post-card__thumb--3::before { content: ''; position: absolute; inset: 0; background: rgba(20,90,40,0.28); z-index: 1; pointer-events: none; }
.post-card__thumb--4::before { content: ''; position: absolute; inset: 0; background: rgba(70,20,110,0.28); z-index: 1; pointer-events: none; }
.post-card__link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.25rem 1.25rem; position: relative; z-index: 2; pointer-events: none; }
.post-card__title { font-size: 1.05rem; font-weight: 700; color: #0a1430; margin-bottom: 0.75rem; line-height: 1.35; }
.post-card__excerpt { color: #4a5568; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.2rem; flex: 1; }
.post-card__link { color: #1a5fd4; font-weight: 700; font-size: 0.8rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.25rem; letter-spacing: 0.06em; pointer-events: auto; }
.post-card__date { display: none; }

/* ── Section headers ─────────────────────────────────────────────── */
.section__title { font-size: 2rem; font-weight: 800; color: #0a1430; letter-spacing: -0.01em; }
.section { padding-top: clamp(2.5rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.section__subtitle { font-size: 1rem; color: #555; max-width: 58ch; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ── Mobile overrides ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 0; }
  .hero__split { min-height: 100vh; background-position: center 30%; }
  .hero__split::before { background: rgba(8,14,40,0.52); }
  .hero__left {
    background: none;
    padding: 5rem 1.25rem 3rem;
    min-height: 100vh;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .hero__eyebrow { display: inline-block; max-width: 100%; white-space: nowrap; }
  .hero__title { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero__subtitle { text-align: center; }
  .hero__actions { justify-content: center; flex-direction: row; flex-wrap: wrap; gap: 1rem; align-items: center; }
  .hero__steps { flex-direction: column; gap: 0.5rem; align-items: center; }
  .page-hero { padding: 6rem 0 2.5rem; }
  .page-hero__content { text-align: center; }
}
@media (max-width: 767px) {
  .nav--open .nav__menu {
    background: #0a1440;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav--open .nav__menu .nav__link { color: rgba(255,255,255,0.9); padding: 0.875rem 1rem; border-radius: 6px; }
  .nav--open .nav__menu .nav__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
  .nav--open .nav__menu .nav__link--active { color: #ffc83c; }
}

/* ── Stats section ────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #1a5fd4 0%, #0a3a8e 100%);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
}
.stat-item__icon { width: 1.75rem; height: 1.75rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.stat-item__number { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.stat-item__label { font-size: 0.75rem; letter-spacing: 0.1em; font-weight: 600; color: rgba(255,255,255,0.9); text-transform: uppercase; margin-top: 0.35rem; }
.stat-divider { width: 1px; height: 4rem; background: rgba(255,255,255,0.25); align-self: center; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
.stat-card__label { display: none; }
.stat-card__icon { display: none; }
.stat-card__icon svg { display: none; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card { padding: 1.25rem 0.75rem; }
  .stat-card__number { font-size: 2.2rem; }
}

/* ── Why Choose section ──────────────────────────────────────────── */
.intro-section { text-align: center; max-width: 780px; margin: 0 auto; }
.intro-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #0a1430; margin-bottom: 1.25rem; }
.intro-section p { font-size: 1.1rem; color: #374151; line-height: 1.7; max-width: 60ch; margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}
.why-card__icon { width: 5rem; height: 5rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; background: rgba(255,200,60,0.2); border-radius: 16px; padding: 1rem; color: #ffc83c; }
.why-card__icon svg { width: 100%; height: 100%; stroke-width: 2; }
.why-card:nth-child(1) .why-card__icon { background: rgba(255,200,60,0.2); color: #ffc83c; }
.why-card:nth-child(2) .why-card__icon { background: rgba(99,179,237,0.2); color: #63b3ed; }
.why-card:nth-child(3) .why-card__icon { background: rgba(104,211,145,0.2); color: #68d391; }
.why-card:nth-child(4) .why-card__icon { background: rgba(252,129,74,0.2); color: #fc814a; }
.why-card__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.why-card__text { font-size: 0.875rem; color: rgba(255,255,255,0.72); line-height: 1.6; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
/* Why section on dark background — override title/subtitle colors */
.why-section .section__title { color: #fff; }
.why-section .section__subtitle { color: rgba(255,255,255,0.72); }
/* Intro section — white background (overrides any inherited section--alt) */
.intro-section-wrap { background: #fff; }

/* ── Proof Section (split photo + content) ─────────────────────────── */
.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.proof-section__photo {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.proof-section__content {
  background: #0a1430;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc83c;
  margin-bottom: 1rem;
}
.proof-section__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.proof-section__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.proof-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.proof-section__list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.proof-section__check {
  color: #ffc83c;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .proof-section { grid-template-columns: 1fr; }
  .proof-section__photo { min-height: 240px; }
}
.home-testimonial {
  margin-top: 0;
  padding: 2.5rem 2.5rem 2rem 4rem;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border-left: 4px solid #ffc83c;
  color: #fff;
  position: relative;
  box-shadow: 0 4px 32px rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.home-testimonial__stars {
  display: block;
  width: 100px;
  height: 18px;
  margin-bottom: 1rem;
}
.home-testimonial::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: #ffc83c;
  opacity: 0.5;
  font-family: Georgia, serif;
  pointer-events: none;
}
.home-testimonial p { font-size: 1.1rem; font-style: italic; line-height: 1.7; color: rgba(255,255,255,0.88); margin-bottom: 1.25rem; }
.home-testimonial cite { font-size: 0.9rem; font-weight: 700; color: #fff; font-style: normal; }
.home-testimonial__author { display: flex; align-items: center; gap: 1rem; }
.home-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #ffc83c, #f59e0b);
  color: #0a1430; font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.05em;
}
.home-testimonial__meta { display: flex; flex-direction: column; gap: 0.2rem; }
.home-testimonial__name { font-size: 1rem; font-weight: 700; color: #fff; font-style: normal; }
.home-testimonial__company { font-size: 0.875rem; color: #ffc83c; font-weight: 500; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.5rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-grid--4 { grid-template-columns: 1fr; }
}


/* ── Process strip ──────────────────────────────────────────────── */
.process-strip {
  background: #ffd35c;
  padding: 1.5rem 0;
}
.process-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.process-step__num {
  font-size: 2rem;
  font-weight: 900;
  color: #0a1430;
  line-height: 1;
  flex-shrink: 0;
}
.process-step__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.process-step__text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1430;
}
.process-step__text span {
  font-size: 0.925rem;
  color: rgba(10,20,48,0.7);
}
.process-strip__arrow {
  font-size: 1.5rem;
  color: rgba(10,20,48,0.5);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .process-strip__inner { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 0 1.5rem; }
  .process-strip__arrow { transform: rotate(90deg); }
}

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: #0a1430;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 3px solid #ffc83c;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}
.cta-banner__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}
.cta-banner__phone:hover { color: #ffc83c; }
.btn--gold {
  background: #ffc83c;
  color: #0a1430;
  border: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.btn--gold:hover { background: #ffb800; transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
@media (max-width: 768px) {
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { width: 100%; }
  .btn--gold { width: 100%; justify-content: center; }
}

/* ── Testimonials section ────────────────────────────────────────── */
.testimonials-section { background: #0a1430; }
.testimonials-section .section__header .solutions-eyebrow { color: #ffc83c; }
.testimonials-section .section__title { color: #fff; }

/* ── Testimonials 3-col grid ────────────────────────────────────────── */
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Testimonials trust bar ──────────────────────────────────────────── */
.testimonials-trust { display: flex; align-items: center; gap: 0.75rem; justify-content: center; margin-top: 2rem; color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 500; }
.testimonials-trust svg { width: 1.2rem; height: 1.2rem; color: #ffc83c; flex-shrink: 0; }

/* ── Stats: 2×2 on mobile ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .stat-divider { display: none; }
}

/* ── CTA phone divider ──────────────────────────────────────────────── */
.cta-banner__actions { position: relative; padding-left: 2rem; }
.cta-banner__actions::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 3rem; width: 1px; background: rgba(255,255,255,0.2); }
@media (max-width: 768px) { .cta-banner__actions::before { display: none; } .cta-banner__actions { padding-left: 0; } }

/* ── Why section photo background ─────────────────────────────────────── */
.why-section { position: relative; background-size: cover; background-position: center; }
.why-section__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,14,45,0.88) 0%, rgba(10,20,60,0.92) 100%); }

/* ── Stat icons: thicker, more visible ─────────────────────────────────── */
.stat-item__icon { width: 2.25rem; height: 2.25rem; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; stroke-width: 2; }

/* ── Testimonial card depth ─────────────────────────────────────────────── */
.home-testimonial { box-shadow: 0 8px 32px rgba(0,0,0,0.28); }
.home-testimonial:nth-child(2) { background: rgba(255,255,255,0.10); transform: translateY(-6px); border-left-color: #fff; }
.home-testimonial:nth-child(3) { background: rgba(255,200,60,0.08); border-left-color: #ffc83c; }

/* ── Mobile ghost button: solid fill ──────────────────────────────────── */
.btn--ghost { border: 2px solid rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); }

/* ── Why section: light background ──────────────────────────────────────── */
.why-section { background: #fff; }
.why-card { background: #fff; border: 1px solid #dce6f7; border-top: 3px solid #1a5fd4; border-radius: 12px; box-shadow: 0 2px 12px rgba(10,20,60,0.07); }
.why-card__title { color: #0a1430; }
.why-card__text { color: #4b6080; }
.why-section .section__title { color: #0a1430; }
.why-section .section__subtitle { color: #4b6080; }
.why-card:nth-child(1) { border-top-color: #ffc83c; }
.why-card:nth-child(2) { border-top-color: #1a5fd4; }
.why-card:nth-child(3) { border-top-color: #68d391; }
.why-card:nth-child(4) { border-top-color: #fc814a; }
.why-card:nth-child(1) .why-card__icon { background: rgba(255,200,60,0.12); color: #b8860b; }
.why-card:nth-child(2) .why-card__icon { background: rgba(26,95,212,0.1); color: #1a5fd4; }
.why-card:nth-child(3) .why-card__icon { background: rgba(104,211,145,0.15); color: #276749; }
.why-card:nth-child(4) .why-card__icon { background: rgba(252,129,74,0.12); color: #c05621; }

/* ── Hero ghost button: always visible ──────────────────────────────────── */
.btn--ghost { border: 2px solid #fff !important; background: rgba(255,255,255,0.15) !important; color: #fff !important; }
.btn--ghost:hover { background: rgba(255,255,255,0.28) !important; }
@media (max-width: 480px) { .btn--ghost { background: rgba(255,255,255,0.2) !important; } }

/* ── Testimonial avatars ─────────────────────────────────────────────── */
.home-testimonial__author { display: flex; align-items: center; gap: 0.875rem; margin-top: 1.5rem; }
.home-testimonial__avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, #1a5fd4, #0a3a8e); color: #fff; font-size: 0.875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: 0.05em; }
.home-testimonial:nth-child(2) .home-testimonial__avatar { background: linear-gradient(135deg, #68d391, #276749); }
.home-testimonial:nth-child(3) .home-testimonial__avatar { background: linear-gradient(135deg, #fc814a, #c05621); }

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES NAV BAR
   ═══════════════════════════════════════════════════════════════════════ */
.services-nav-section {
  background: #0a1430;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.services-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.services-nav__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}
.services-nav__item:last-child { border-right: none; }
.services-nav__item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.services-nav__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffc83c;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.services-nav__label {
  font-size: 0.9rem;
  font-weight: 600;
  flex: 1;
}
.services-nav__arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.services-nav__item:hover .services-nav__arrow {
  opacity: 1;
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .services-nav { grid-template-columns: repeat(2, 1fr); }
  .services-nav__item:nth-child(2) { border-right: none; }
  .services-nav__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .services-nav__item:nth-child(3),
  .services-nav__item:nth-child(4) { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURE SPLIT SECTIONS
   ═══════════════════════════════════════════════════════════════════════ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }
.feature-split__photo {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.feature-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: #fff;
}
.feature-split__content--dark {
  background: #0a1430;
}
.feature-split__content--dark .feature-split__title { color: #fff; }
.feature-split__content--dark .feature-split__desc { color: rgba(255,255,255,0.75); }
.feature-split__content--dark .proof-section__list li { color: rgba(255,255,255,0.85); }
.feature-split__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0a1430;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.feature-split__desc {
  font-size: 1rem;
  color: #4b6080;
  line-height: 1.7;
  max-width: 42ch;
}
.feature-split__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Industry chips */
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.industry-chip {
  background: #eef3fb;
  color: #1a5fd4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-split--reverse { direction: ltr; }
  .feature-split__photo { min-height: 300px; order: -1; }
  .feature-split--reverse .feature-split__photo { order: -1; }
}

/* ═══════════════════════════════════════════════════
   STATS: hide icons; make numbers the visual anchor
   ═══════════════════════════════════════════════════ */
.stat-item__icon { display: none; }
.stat-item__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.stat-item__number::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: #ffc83c;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.stat-item__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS: featured middle card (navy section — lift with white glass)
   ═══════════════════════════════════════════════════ */
.home-testimonial:nth-child(2) {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
  border-left-color: #ffc83c;
}
.home-testimonial:nth-child(2)::before { color: #ffc83c; opacity: 0.5; }
.home-testimonial:nth-child(2) p { color: rgba(255,255,255,0.92); }
.home-testimonial:nth-child(2) .home-testimonial__name { color: #fff; }
.home-testimonial:nth-child(2) .home-testimonial__company { color: #ffc83c; }
.home-testimonial:nth-child(2) cite { color: #fff; }

/* ═══════════════════════════════════════════════════
   INDUSTRY CHIPS: larger, solid blue, white text
   ═══════════════════════════════════════════════════ */
.industry-chip {
  background: #1a5fd4;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.45rem 1.1rem;
}
.industry-chip:last-child {
  background: transparent;
  color: #0a3a8e;
  border: 1.5px solid #1a5fd4;
}

/* ═══════════════════════════════════════════════════
   MOBILE HERO — full rewrite for ≤768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Shorter hero, centered image crop */
  .hero__split {
    min-height: 520px;
    align-items: flex-end;
  }
  .hero__photo { object-position: center center; }

  /* Lighter overlay — image visible, text still readable via text-shadow */
  .hero__split::before {
    background: linear-gradient(
      to bottom,
      rgba(8,14,40,0.55) 0%,
      rgba(8,14,40,0.45) 35%,
      rgba(8,14,40,0.70) 65%,
      rgba(8,14,40,0.85) 100%
    );
  }

  /* Flush padding — no huge left indent on mobile */
  .hero__left {
    padding: 4rem 1.25rem 2.5rem;
    max-width: 100%;
    width: 100%;
  }

  /* Scale title down so it doesn't overflow */
  .hero__title {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    max-width: 100%;
  }

  /* Buttons stack vertically, full-width on mobile */
  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Ghost btn — solid on mobile for tappability */
  .hero__actions .btn--ghost {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.85);
    color: #fff;
  }
}

@media (max-width: 480px) {
  .hero__split {
    min-height: 460px;
  }
  .hero__photo { object-position: 60% center; }
  .hero__left {
    padding: 4.5rem 1rem 2rem;
  }
  .hero__title {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }
  .hero__eyebrow {
    font-size: 0.72rem;
    padding: 0.3rem 0.875rem;
  }
}

/* ── iPhone / Mobile polish pass ───────────────────────────────── */

/* Hero: tighter line-height so the title reads as a block, not a wall */
@media (max-width: 768px) {
  .hero__title {
    line-height: 1.22;
  }
  .hero__subtitle {
    line-height: 1.55;
    font-size: 0.94rem;
  }
}

/* Process strip: horizontal scrollable row on small screens —
   removes the 355px tall column stack and turns it into a snappy
   swipeable row ~100px tall */
@media (max-width: 640px) {
  .process-strip {
    padding: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* subtle scroll hint */
    scrollbar-width: none;
  }
  .process-strip::-webkit-scrollbar { display: none; }
  .process-strip__inner {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 0.625rem;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1.25rem;
    width: max-content;
    min-width: 100%;
  }
  .process-step {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    min-width: 80px;
    max-width: 96px;
    text-align: center;
  }
  .process-step__num {
    font-size: 1.4rem;
  }
  .process-step__text strong {
    font-size: 0.78rem;
    font-weight: 700;
  }
  /* Hide description sub-text — too cramped on 390px */
  .process-step__text span {
    display: none;
  }
  .process-strip__arrow {
    font-size: 1rem;
    transform: none !important;
    color: rgba(10,20,48,0.4);
    min-width: 16px;
    text-align: center;
  }
}

/* Stats grid: 2×2 grid on mobile — even cell widths.
   Use minmax(0,1fr) so content can't widen one track more than the other */
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .stat-item {
    padding: 1.25rem 0.5rem;
    min-width: 0;
  }
  .stat-item__number {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
  }
  .stat-item__label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
}

/* Feature splits: stack text above image, not below — better flow */
@media (max-width: 640px) {
  .feature-split--reverse .feature-split__content {
    order: -1;
  }
}

/* Internal page hero: tighten title size and subtitle on mobile */
@media (max-width: 640px) {
  .page-hero {
    min-height: 260px;
    padding-top: 5rem;
    padding-bottom: 1.5rem;
  }
  .page-hero__title {
    font-size: clamp(1.4rem, 7vw, 2rem);
    line-height: 1.2;
  }
  .page-hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    /* Clamp to 3 lines to prevent subtitle from dominating the hero */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Prose (internal pages): comfortable reading on small screens */
@media (max-width: 640px) {
  .prose {
    padding: 1.5rem 1.25rem 2rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .prose h2 { font-size: 1.3rem; }
  .prose h3 { font-size: 1.1rem; }
}

/* CTA banner: stack vertical on mobile, full-width button */
@media (max-width: 640px) {
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .cta-banner .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Testimonials: remove awkward side padding on small screens */
@media (max-width: 640px) {
  .home-testimonial {
    padding: 1.25rem 1rem;
  }
  .home-testimonial p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ── 404 Page ─────────────────────────────────────────────────── */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404__inner {
  max-width: 600px;
  padding: 4rem 1.5rem;
}
.error-404__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}
.error-404__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}
.error-404__message {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0 0 2rem;
}
