/*
Theme Name: Luxano Labs 3.0
Theme URI: https://luxanolabs.com
Author: Abdallah Dirie
Author URI: https://luxanolabs.com
Description: Light, boutique-consultancy redesign of the Luxano Labs marketing site.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxano-labs
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --bg: #FAFAF8;
  --bg-grey: #F2F4F7;
  --bg-card: #FFFFFF;
  --bg-dark: #0F1E3D;

  --navy: #0F1E3D;
  --navy-soft: #1A2B4A;
  --text: #0F1E3D;
  --muted: #5B6779;
  --faint: #98A1AE;

  --accent: #2D70B8;
  --accent-strong: #1E5A9C;

  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  --icon-blue: #DBEAFE;
  --icon-blue-dot: #2563EB;
  --icon-green: #D1FAE5;
  --icon-green-dot: #10B981;
  --icon-coral: #FECACA;
  --icon-coral-dot: #DC2626;
  --icon-lavender: #EDE9FE;
  --icon-lavender-dot: #7C3AED;

  --radius: 10px;
  --radius-sm: 6px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; gap: 24px;
}
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-brand img { height: 60px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  padding: 6px 0; position: relative; transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.is-current { color: var(--navy); }
.nav-links a.is-current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--navy);
}

.nav-cta {
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--navy-soft); }

/* Hamburger button (mobile only) */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.nav-burger:hover { background: var(--bg-grey); }
.nav-burger:focus { outline: none; }
.nav-burger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.burger-line {
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] .burger-top { transform: translateY(5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .burger-mid { opacity: 0; }
.nav-burger[aria-expanded="true"] .burger-bot { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile-only { display: none; }

/* Dropdown menu (desktop only) */
.has-submenu { position: relative; }
.nav-submenu-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-chevron { transition: transform .2s; opacity: 0.7; }
.has-submenu:hover .nav-chevron,
.has-submenu:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-submenu {
  position: absolute;
  top: 100%; left: -16px;
  margin-top: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(15, 30, 61, 0.08);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events: none;
  z-index: 60;
}
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-submenu li { display: block; }
.nav-submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-submenu a:hover { color: var(--navy); background: var(--bg-grey); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-size: 15px; font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-grey); }
.btn-light-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-light-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* ============================================================
   SHARED SECTION ATOMS
   ============================================================ */
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy); font-weight: 700;
  margin-top: 12px;
}
.section-title em, .section-title .italic {
  font-style: normal;
  color: var(--accent);
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 540px; margin-top: 16px; line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
#hero { padding: 72px 0 96px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: start;
}
.hero-left h1 {
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; color: var(--navy);
  margin-top: 18px;
}
.hero-left h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 480px;
  margin-top: 22px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 26px;
}
.stat-card-wide { grid-column: 1 / -1; }
.stat-val {
  font-size: 38px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1;
}
.stat-val span { color: var(--accent); }
.stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.trusted-card {
  grid-column: 1 / -1;
  background: var(--bg-grey); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px;
}
.trusted-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.trusted-logos {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.trusted-logos span { white-space: nowrap; }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--bg-grey);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 44px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 16px rgba(15, 30, 61, 0.04);
}
.service-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon::after {
  content: ''; width: 10px; height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}
.service-icon.icon-blue { background: var(--icon-blue); color: var(--icon-blue-dot); }
.service-icon.icon-green { background: var(--icon-green); color: var(--icon-green-dot); }
.service-icon.icon-coral { background: var(--icon-coral); color: var(--icon-coral-dot); }
.service-icon.icon-lavender { background: var(--icon-lavender); color: var(--icon-lavender-dot); }
.service-card h3 {
  font-size: 19px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; line-height: 1.65;
  color: var(--muted); flex-grow: 1;
}
.service-link {
  margin-top: 20px;
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.service-link:hover { gap: 10px; color: var(--accent-strong); }

/* ============================================================
   WHY LUXANO
   ============================================================ */
#why { padding: 96px 0; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}
.why-left .section-sub { max-width: 380px; margin-bottom: 32px; }
.why-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.feature-row { display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; }
.feature-icon {
  width: 36px; height: 36px;
  background: var(--icon-blue); color: var(--icon-blue-dot);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon::after {
  content: ''; width: 8px; height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}
.feature-row h3 {
  font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feature-row p {
  font-size: 14px; line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
#cta {
  background: var(--navy);
  padding: 64px 0;
}
.cta-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.cta-inner h2 {
  font-size: clamp(28px, 3vw, 36px); font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 8px;
}
.cta-inner p {
  font-size: 15px; color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050F19;
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 56px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
}

/* Nuke any border, outline, shadow, or hr coming from anywhere - core,
   plugin inline CSS, cached versions, etc. */
.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
  border: 0 !important;
  border-image: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}
.site-footer hr { display: none !important; }

.footer-top {
  display: grid; grid-template-columns: 1.25fr 2fr;
  gap: 72px; align-items: stretch;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-height: 100%;
}
.footer-brand .footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-brand .footer-logo img {
  height: 44px; width: auto; display: block;
  filter: brightness(0) invert(1);
}
.footer-copy {
  margin-top: auto;
  font-size: 13px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.50);
}

.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h3.footer-heading {
  font-size: 13px; font-weight: 600;
  color: #fff; letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255, 255, 255, 0.65);
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: #fff; }
.footer-icon { opacity: 0.75; transition: opacity .2s; }
.footer-col a:hover .footer-icon { opacity: 1; }

/* Mobile-only social row + mobile-only bottom copyright (hidden on desktop) */
.footer-social-mobile, .footer-copy-mobile { display: none; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE - TABLET (<= 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner, .cta-inner, .footer-inner { padding-left: 24px; padding-right: 24px; }
  .wrap { padding: 0 24px; }

  #hero { padding: 56px 0 72px; }
  .hero-grid { gap: 40px; }

  #services, #why { padding: 72px 0; }
  .why-grid { gap: 40px; }
}

/* ============================================================
   FOOTER - iPad portrait (721px-1024px)
   Brand block (logo + social icons + copyright) on the left,
   Company + Services side-by-side on the right. Connect hidden.
   ============================================================ */
@media (min-width: 721px) and (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1.4fr; gap: 56px; }
  .footer-col-connect { display: none; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Stack logo + social row + copyright tightly under the logo */
  .footer-brand { justify-content: flex-start; }
  .footer-brand > .footer-copy { margin-top: 0; }

  .footer-social-mobile {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 4px 0 20px;
  }
  .footer-social-mobile a {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 38px; height: 38px;
    color: rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
  }
  .footer-social-mobile a:hover,
  .footer-social-mobile a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
  }
}

/* ============================================================
   RESPONSIVE - MOBILE (<= 720px)
   ============================================================ */
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }

  .nav-brand img { height: 48px; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-mobile-only { display: block; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 20px;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 30, 61, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 49;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links > li { display: block; }
  .nav-links > li > a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
  }
  .nav-links a.is-current::after { display: none; }

  /* Services submenu becomes an inline list on mobile */
  .has-submenu .nav-chevron { display: none; }
  .nav-submenu {
    position: static;
    list-style: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    pointer-events: auto;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu a {
    padding: 8px 0;
    font-size: 14px;
  }

  /* "Book a call" button inside the mobile drawer */
  .nav-mobile-cta {
    margin-top: 14px;
    padding: 14px 18px !important;
    background: var(--navy);
    color: #fff !important;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
    border-bottom: 0 !important;
  }
  .nav-mobile-cta:hover { background: var(--navy-soft); }

  #hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .hero-left h1 { font-size: clamp(34px, 9vw, 44px); }
  .trusted-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trusted-label { border-right: none; padding-right: 0; padding-bottom: 0; }

  #services, #why { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .service-card { padding: 26px 24px; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-list { gap: 24px; }

  #cta { padding: 48px 0; }
  .cta-inner { grid-template-columns: 1fr; }

  .site-footer { padding: 56px 0 32px; }

  /* Hide the Connect column on mobile - icons move under the logo instead */
  .footer-col-connect { display: none; }

  /* Hide the desktop copyright (under the logo) - shows at the bottom on mobile */
  .footer-brand > .footer-copy { display: none; }

  /* Company + Services side-by-side on mobile */
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Horizontal social icons under the logo */
  .footer-social-mobile {
    display: flex;
    gap: 14px;
    list-style: none;
    margin-top: 18px;
  }
  .footer-social-mobile a {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 38px; height: 38px;
    color: rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
  }
  .footer-social-mobile a:hover,
  .footer-social-mobile a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
  }

  /* Copyright pinned at the bottom of the footer */
  .footer-copy-mobile {
    display: block;
    margin-top: 36px;
    font-size: 13px; line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
  }
}

@media (max-width: 420px) {
  .hero-right { grid-template-columns: 1fr; }
  .stat-card-wide { grid-column: auto; }
}

/* ============================================================
   SERVICE PAGES - shared layout for the four service templates
   ============================================================ */
.service-page { /* no top padding; sticky nav handles spacing */ }

/* Hero */
.svc-hero { padding: 64px 0 80px; }
.svc-hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: start;
}
.svc-hero-title {
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; color: var(--navy);
  margin-top: 18px;
}
.svc-hero-title em {
  font-style: normal;
  color: var(--accent);
}
.svc-hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 540px;
  margin-top: 22px;
}
.svc-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.svc-pill {
  padding: 7px 14px; border: 1px solid var(--border);
  border-radius: 999px; font-size: 13px; color: var(--muted);
  background: var(--bg-card);
}
.svc-hero-side {
  display: grid; gap: 12px;
  background: var(--bg-grey); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.svc-hero-side h2 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.svc-outcome-card {
  padding: 18px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.svc-outcome-card h4 {
  font-size: 15px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.svc-outcome-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* Capabilities */
.svc-capabilities {
  padding: 80px 0;
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-capabilities-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 56px; margin-top: 40px; align-items: start;
}
.svc-bullets { list-style: none; }
.svc-bullets li {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 22px 1fr; gap: 14px;
  font-size: 15px; line-height: 1.55; color: var(--text);
}
.svc-bullets li:first-child { border-top: 1px solid var(--border); }
.svc-bullets li::before {
  content: ''; align-self: center;
  width: 18px; height: 18px;
  background: var(--icon-blue); color: var(--icon-blue-dot);
  border-radius: 5px;
  background-image:
    linear-gradient(45deg, transparent 47%, currentColor 47%, currentColor 53%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, currentColor 47%, currentColor 53%, transparent 53%);
  background-size: 10px 10px; background-position: center; background-repeat: no-repeat;
}
.svc-sidecards { display: flex; flex-direction: column; gap: 14px; }
.svc-sidecards .svc-outcome-card { padding: 22px 24px; }
.svc-sidecards .svc-outcome-card h4 { font-size: 16px; }

/* Process */
.svc-process { padding: 80px 0; }
.svc-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 44px;
}
.svc-step {
  padding: 26px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.svc-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--icon-blue); color: var(--icon-blue-dot);
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.svc-step h3 {
  font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.svc-step-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.svc-step p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* Engagements */
.svc-engagements {
  padding: 80px 0;
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-engagements-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.svc-engagement-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.svc-engagement-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 16px rgba(15,30,61,0.04);
}
.svc-engagement-card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc-engagement-card p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* FAQ */
.svc-faq { padding: 80px 0; }
.svc-faq-list { margin-top: 36px; max-width: 820px; }
.svc-faq-item {
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.svc-faq-item:first-child { border-top: 1px solid var(--border); }
.svc-faq-q {
  font-size: 17px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.svc-faq-a { font-size: 14.5px; line-height: 1.7; color: var(--muted); }

/* Related services - shown on every service page before the CTA strip */
.svc-related { padding: 80px 0; }
.svc-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.svc-related-card {
  display: flex; flex-direction: column;
  padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-related-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 16px rgba(15, 30, 61, 0.04);
  transform: translateY(-2px);
}
.svc-related-card h3 {
  font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc-related-card p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--muted); margin-bottom: 18px;
  flex-grow: 1;
}
.svc-related-link {
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.svc-related-card:hover .svc-related-link {
  gap: 10px; color: var(--accent-strong);
}

/* Service-page CTA strip (reuses #cta styling visually) */
.svc-cta-strip { background: var(--navy); padding: 64px 0; }
.svc-cta-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.svc-cta-inner h2 {
  font-size: clamp(28px, 3vw, 36px); font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 8px;
}
.svc-cta-inner p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Responsive */
@media (max-width: 1024px) {
  .svc-hero { padding: 56px 0 72px; }
  .svc-hero-grid { gap: 40px; }
  .svc-capabilities, .svc-process, .svc-engagements, .svc-faq { padding: 64px 0; }
  .svc-capabilities-grid { gap: 40px; }
  .svc-cta-inner { padding: 0 24px; }
}
@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-capabilities-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-engagements-grid { grid-template-columns: 1fr; }
  .svc-related-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .svc-hero { padding: 40px 0 56px; }
  .svc-hero-title { font-size: clamp(32px, 9vw, 42px); }
  .svc-capabilities, .svc-process, .svc-engagements, .svc-faq, .svc-related, .svc-cta-strip { padding: 48px 0; }
  .svc-process-grid { grid-template-columns: 1fr; }
  .svc-cta-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG - INDEX, ARCHIVE, SINGLE POST
   ============================================================ */
.blog-index-hero { padding: 64px 0 32px; }
.blog-index-title {
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; color: var(--navy);
  margin-top: 18px;
}
.blog-index-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 600px;
  margin-top: 18px;
}

.blog-list { padding: 32px 0 96px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex; flex-direction: column;
  padding: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 16px rgba(15, 30, 61, 0.06);
  transform: translateY(-2px);
}
.blog-card-cat {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.blog-card h2, .blog-card h3 {
  font-size: 20px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  line-height: 1.3; margin-bottom: 10px;
}
.blog-card p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--muted); margin-bottom: 20px;
  flex-grow: 1;
}
.blog-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.blog-card-foot time {
  font-size: 13px; color: var(--faint);
}
.blog-card-link {
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.blog-card:hover .blog-card-link { gap: 10px; color: var(--accent-strong); }

.blog-pagination {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 48px; justify-content: center;
}
.blog-pagination a, .blog-pagination span {
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: color .15s, border-color .15s, background .15s;
}
.blog-pagination a:hover {
  color: var(--navy); border-color: var(--border-strong);
}
.blog-pagination .current {
  color: #fff; background: var(--navy); border-color: var(--navy);
}
.blog-empty {
  text-align: center; padding: 48px 0;
  color: var(--muted); font-size: 15px;
}

/* Single post page */
.blog-post-hero { padding: 64px 0 32px; }
.blog-post-title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 700; color: var(--navy);
  margin-top: 18px; max-width: 820px;
}
.blog-post-meta {
  display: flex; gap: 12px; align-items: center;
  margin-top: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}
.blog-post-meta-sep { color: var(--border-strong); }

.blog-post-cover { padding: 0 32px 32px; max-width: 1180px; margin: 0 auto; }
.blog-post-cover-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.blog-post-body {
  padding: 16px 0 80px;
}
.blog-post-body-prose {
  max-width: 760px;
}
.blog-post-body p,
.blog-post-body ul,
.blog-post-body ol,
.blog-post-body blockquote {
  font-size: 17px; line-height: 1.75;
  color: var(--text); margin-bottom: 22px;
}
.blog-post-body h2 {
  font-size: 28px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.015em;
  margin-top: 48px; margin-bottom: 18px;
  line-height: 1.2;
  scroll-margin-top: 100px;
}
.blog-post-body h3 {
  font-size: 22px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.01em;
  margin-top: 36px; margin-bottom: 14px;
  line-height: 1.3;
  scroll-margin-top: 100px;
}
.blog-post-body h2:first-child,
.blog-post-body h3:first-child { margin-top: 0; }

.blog-post-body ul, .blog-post-body ol {
  padding-left: 24px;
}
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body li::marker { color: var(--accent); }

.blog-post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s;
}
.blog-post-body a:hover { color: var(--accent-strong); }

.blog-post-body strong { color: var(--navy); font-weight: 600; }

/* Closing CTA paragraph - last <p> of every post auto-emphasised */
.blog-post-body-prose > p:last-of-type {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--bg-grey);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--accent-strong);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
}

/* Sticky table of contents - desktop only, auto-populated by JS */
.blog-toc { display: none; }
.blog-toc-inner {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.blog-toc-heading {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.blog-toc-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  counter-reset: toc;
}
.blog-toc-list li { counter-increment: toc; }
.blog-toc-list a {
  display: block;
  font-size: 13.5px; line-height: 1.5;
  color: var(--muted);
  padding: 4px 0;
  transition: color .15s;
}
.blog-toc-list a:hover { color: var(--navy); }
.blog-toc-list a.is-active {
  color: var(--accent);
  font-weight: 500;
}

@media (min-width: 1100px) {
  .blog-post-body-layout {
    display: grid;
    grid-template-columns: 760px 1fr;
    gap: 56px;
    align-items: start;
  }
  .blog-toc {
    display: block;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
}

/* Quiet "Want help with this?" callout linking to matching service page */
.blog-service-link {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.blog-service-link-label {
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.blog-service-link a,
.blog-service-link a:hover {
  text-decoration: none;
}
.blog-service-link-cta {
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.blog-service-link-cta:hover {
  gap: 10px; color: var(--accent-strong);
}

.blog-post-body blockquote {
  padding: 16px 24px;
  border-left: 3px solid var(--accent);
  background: var(--bg-grey);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy);
  font-style: normal;
  margin: 28px 0;
}

.blog-post-body code {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Courier New', monospace;
  font-size: 0.9em;
  background: var(--bg-grey);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy);
}
.blog-post-body pre {
  background: var(--bg-dark);
  color: #E6E8EC;
  padding: 20px 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.6;
}
.blog-post-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

.blog-post-body img {
  max-width: 100%; height: auto;
  border-radius: var(--radius);
  margin: 28px 0;
}

.blog-post-body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.blog-post-tags {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.blog-tag {
  font-size: 13px; color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  transition: color .15s, border-color .15s;
}
.blog-tag:hover { color: var(--navy); border-color: var(--border-strong); }

/* Related posts on single page */
.blog-related {
  padding: 64px 0 80px;
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
}
.blog-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 36px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-related-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .blog-index-hero, .blog-post-hero { padding: 40px 0 24px; }
  .blog-list { padding: 24px 0 64px; }
  .blog-card { padding: 24px; }
  .blog-post-body { padding: 8px 0 56px; }
  .blog-post-body p, .blog-post-body ul, .blog-post-body ol {
    font-size: 16px;
  }
  .blog-post-body h2 { font-size: 24px; margin-top: 36px; }
  .blog-post-body h3 { font-size: 20px; margin-top: 28px; }
  .blog-related { padding: 48px 0 56px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { padding: 64px 0 24px; }
.about-hero-title {
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; color: var(--navy);
  margin-top: 18px;
}
.about-hero-title em {
  font-style: normal; color: var(--accent);
}
.about-hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 680px;
  margin-top: 18px;
}

.about-story { padding: 56px 0 80px; }
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; align-items: start;
}
.about-story-body p {
  font-size: 16px; line-height: 1.75;
  color: var(--text); margin-bottom: 18px;
}
.about-story-body p:last-child { margin-bottom: 0; }

.about-recent-work {
  margin-top: 28px !important;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14.5px !important;
  color: var(--muted) !important;
  line-height: 1.65 !important;
}

.about-principles {
  padding: 80px 0;
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-principles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 44px;
}
.about-principle {
  padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-principle-num {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--accent);
  margin-bottom: 14px;
}
.about-principle h3 {
  font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.about-principle p {
  font-size: 14.5px; line-height: 1.7; color: var(--muted);
}

.about-capabilities { padding: 80px 0; }
.about-capabilities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 44px;
}
.about-cap-card {
  display: block;
  padding: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.about-cap-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 16px rgba(15, 30, 61, 0.04);
  transform: translateY(-1px);
}
.about-cap-card h3 {
  font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.about-cap-card p {
  font-size: 14.5px; line-height: 1.65; color: var(--muted);
  margin-bottom: 16px;
}
.about-cap-link {
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.about-cap-card:hover .about-cap-link { gap: 10px; color: var(--accent-strong); }

.about-stats {
  padding: 56px 0 80px;
  border-top: 1px solid var(--border);
  background: var(--bg-grey);
}
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-stat {
  padding: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-stat-val {
  font-size: 36px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1;
}
.about-stat-val span { color: var(--accent); }
.about-stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}

.about-location { padding: 80px 0; }
.about-location-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
}
.about-location-card {
  padding: 28px;
  background: var(--bg-grey); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-location-card h3 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.about-location-address {
  font-style: normal;
  font-size: 15px; line-height: 1.65;
  color: var(--text);
  margin-bottom: 14px;
}
.about-location-link {
  display: block;
  font-size: 15px; font-weight: 500;
  color: var(--accent);
  padding: 4px 0;
  transition: color .2s;
}
.about-location-link:hover { color: var(--accent-strong); }

@media (max-width: 1024px) {
  .about-story { padding: 48px 0 64px; }
  .about-story-grid { gap: 40px; }
  .about-principles, .about-capabilities, .about-location { padding: 64px 0; }
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-principles-grid, .about-capabilities-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-location-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .about-hero { padding: 40px 0 16px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-stat { padding: 18px; }
  .about-stat-val { font-size: 28px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding: 64px 0 32px; }
.contact-hero-title {
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700; color: var(--navy);
  margin-top: 18px;
}
.contact-hero-title em {
  font-style: normal;
  color: var(--accent);
}
.contact-hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 540px;
  margin-top: 18px;
}

.contact-main { padding: 24px 0 96px; }
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.2fr;
  gap: 56px; align-items: start;
}

.contact-info {
  background: var(--bg-grey); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.contact-info-title {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.contact-list { list-style: none; }
.contact-list li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint);
}
.contact-list a {
  font-size: 15px; font-weight: 500;
  color: var(--accent);
  transition: color .2s;
}
.contact-list a:hover { color: var(--accent-strong); }

.contact-office { margin-top: 28px; }
.contact-office h3 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.contact-address {
  font-style: normal;
  font-size: 14.5px; line-height: 1.65;
  color: var(--text);
}
.contact-phone {
  display: inline-block; margin-top: 10px;
  font-size: 15px; font-weight: 500;
  color: var(--accent);
  transition: color .2s;
}
.contact-phone:hover { color: var(--accent-strong); }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.contact-form .form-row { margin-bottom: 18px; }
.contact-form .form-row-half {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 18px;
}
.contact-form .form-row-half > div { margin-bottom: 0; }
.contact-form label {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--navy); margin-bottom: 6px;
}
.form-optional { font-weight: 400; color: var(--faint); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit; font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(45, 112, 184, 0.12);
}
.contact-form .btn { margin-top: 4px; }
.form-fineprint {
  font-size: 12.5px; color: var(--faint);
  margin-top: 14px; line-height: 1.6;
}
.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

.contact-banner {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px; margin-bottom: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px; line-height: 1.55;
}
.contact-banner strong { font-weight: 600; color: var(--navy); }
.contact-banner-ok {
  background: var(--icon-green);
  border-color: var(--icon-green-dot);
  color: var(--navy);
}
.contact-banner-error {
  background: var(--icon-coral);
  border-color: var(--icon-coral-dot);
  color: var(--navy);
}
.contact-banner a { color: var(--accent); text-decoration: underline; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .contact-hero { padding: 40px 0 24px; }
  .contact-main { padding: 16px 0 64px; }
  .contact-form, .contact-info { padding: 24px; }
  .contact-form .form-row-half { grid-template-columns: 1fr; gap: 0; }
  .contact-form .form-row-half > div { margin-bottom: 18px; }
}
