/* Velocity Contracting LLC: multi-page facilities contractor site
   Palette: navy #0B1F3A + gold #F0B429. Mobile-first. Accessible contrast. */

:root {
  --navy-950: #061426;
  --navy-900: #0B1F3A;
  --navy-800: #123056;
  --navy-700: #1A3F6B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --accent: #F0B429;
  --accent-dark: #B8860B;
  --accent-soft: #FFF8E7;
  --accent-border: #F5E0A3;
  --focus: #2563EB;
  --ok: #166534;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --max: 72rem;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --shadow: 0 1px 2px rgba(6, 20, 38, 0.06), 0 8px 24px rgba(6, 20, 38, 0.06);
  --shadow-lg: 0 4px 6px rgba(6, 20, 38, 0.04), 0 16px 40px rgba(6, 20, 38, 0.1);
  --header-h: 4.25rem;

  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover { color: var(--navy-950); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(1.85rem, 4.5vw, 2.85rem); font-weight: 750; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 650; }
h4 { font-size: 1rem; font-weight: 650; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.logo:hover { color: inherit; }
.logo-mark svg { flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 1rem 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open { display: block; }

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 560;
  border-radius: var(--radius-sm);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--slate-100);
}

.site-nav a[aria-current="page"] {
  color: var(--navy-950);
  font-weight: 700;
}

.nav-cta {
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border-radius: 0.55rem;
  font-weight: 650;
  font-size: 0.975rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  font-family: inherit;
}

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

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--slate-200);
}
.btn-secondary:hover {
  border-color: var(--navy-800);
  color: var(--navy-950);
}

.btn-gold {
  background: var(--accent);
  color: var(--navy-950);
  border-color: var(--accent);
}
.btn-gold:hover {
  background: #e0a820;
  color: var(--navy-950);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

/* --- Sections --- */
.section { padding: 3.75rem 0; }

.section-header {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.section-header.wide { max-width: 48rem; }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section-intro {
  color: var(--slate-600);
  font-size: 1.05rem;
}

.section-muted {
  background: var(--slate-50);
  border-block: 1px solid var(--slate-200);
}

.section-navy {
  background: var(--navy-900);
  color: rgba(241, 245, 249, 0.9);
}
.section-navy h2,
.section-navy h3 { color: var(--white); }
.section-navy .eyebrow { color: var(--accent); }
.section-navy .section-intro { color: rgba(241, 245, 249, 0.78); }

/* --- Page hero (inner pages) --- */
.page-hero {
  background:
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--slate-100);
  padding: 2.75rem 0 3rem;
  border-bottom: 4px solid var(--accent);
}

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

.page-hero-lead {
  max-width: 40rem;
  font-size: 1.1rem;
  color: rgba(241, 245, 249, 0.88);
  margin: 0;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(241, 245, 249, 0.6);
}
.breadcrumb a {
  color: rgba(241, 245, 249, 0.75);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(241, 245, 249, 0.4);
}

/* --- Home hero --- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(240, 180, 41, 0.12), transparent 50%),
    linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  padding: 3rem 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}

.hero-copy { max-width: 40rem; }

.hero-lead {
  font-size: 1.12rem;
  color: var(--slate-600);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-visual {
  display: none;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 22rem;
  height: auto;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-900);
  color: rgba(241, 245, 249, 0.9);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-bar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 560;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-bar li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* --- Service cards --- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

a.service-card:hover {
  border-color: var(--navy-800);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p {
  color: var(--slate-600);
  font-size: 0.975rem;
  flex-grow: 1;
}

.service-card .card-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--navy-800);
}

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--navy-900);
  color: var(--accent);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-card-featured {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: var(--navy-800);
  color: var(--slate-100);
}
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(241, 245, 249, 0.88); }
.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}
.service-card-featured .card-link { color: var(--accent); }

.service-toc {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}

.service-toc a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  color: var(--navy-900);
}

.service-toc a:hover {
  border-color: var(--navy-800);
  background: var(--white);
}

.catalog-note {
  margin-top: 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  max-width: 46rem;
}

/* Audience / who we serve */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.audience-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  box-shadow: var(--shadow);
}

.audience-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.audience-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-600);
}

/* Why Velocity */
.why-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.why-num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 0.4rem;
  padding: 0.35rem 0.5rem;
}

.why-card h3 { margin-bottom: 0.35rem; }
.why-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.975rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--slate-100);
  padding: 3.25rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: rgba(241, 245, 249, 0.82);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* --- Deep service blocks (services.html) --- */
.service-detail {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--slate-200);
}
.service-detail:last-of-type { border-bottom: 0; }

.service-detail-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.service-detail h2 { margin-bottom: 0.35rem; }
.service-detail .naics {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-500);
  margin: 0;
}

.detail-cols {
  display: grid;
  gap: 1rem;
}

.detail-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.detail-box h3 {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.65rem;
}

.detail-box ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.detail-box li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--slate-600);
}

.detail-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--navy-800);
}

/* --- About --- */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-copy p { color: var(--slate-600); }

.facts-card {
  background: var(--navy-900);
  color: var(--slate-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.facts-card h3 {
  color: var(--white);
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.facts-card dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.facts-card dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.facts-card dd {
  margin: 0;
  font-size: 0.975rem;
  color: rgba(241, 245, 249, 0.92);
}

.facts-card a { color: var(--white); }
.facts-card a:hover { color: var(--accent); }

.leadership-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.leadership-card .role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.5rem;
}

.model-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.model-list li {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.model-list h3 { margin-bottom: 0.4rem; }
.model-list p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.975rem;
}

/* --- Contracting --- */
.process-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.process-steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  position: relative;
  padding-left: 4.25rem;
}

.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.15rem;
  top: 1.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 0.4rem;
  padding: 0.3rem 0.45rem;
}

.process-steps h3 { margin-bottom: 0.4rem; }
.process-steps p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.975rem;
}

.insurance-note {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.insurance-note h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.insurance-note p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.975rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.975rem;
  color: var(--slate-700);
}

.checklist li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  flex-shrink: 0;
}

/* --- Contact --- */
.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-tiles {
  display: grid;
  gap: 1rem;
}

.contact-tile {
  display: block;
  text-decoration: none;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.contact-tile:hover {
  border-color: var(--navy-800);
  box-shadow: var(--shadow);
  color: inherit;
}

.contact-tile-static { cursor: default; }

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.35rem;
}

.contact-value {
  display: block;
  font-weight: 650;
  color: var(--navy-900);
  font-size: 1.05rem;
  word-break: break-word;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.contact-form .form-intro {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy-900);
  background: var(--white);
}

.form-field textarea { min-height: 8rem; resize: vertical; }

.form-hint {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.75rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  font-size: 0.95rem;
}

.form-success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

.form-success h2 {
  color: var(--ok);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--slate-700);
  font-size: 0.975rem;
}

/* --- Privacy / prose --- */
.prose {
  max-width: 42rem;
}
.prose h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}
.prose p, .prose li { color: var(--slate-600); }
.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.prose li { margin-bottom: 0.4rem; }

/* --- 404 --- */
.error-page {
  text-align: center;
  padding: 5rem 0 6rem;
}
.error-page .code {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page .code span { color: var(--accent); }

/* --- Footer --- */
.site-footer {
  background: var(--navy-950);
  color: rgba(241, 245, 249, 0.78);
  padding: 2.75rem 0 2rem;
  font-size: 0.925rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.footer-brand p { margin: 0 0 0.4rem; }

.site-footer a {
  color: var(--slate-100);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a { font-weight: 500; }

.footer-bottom {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.5rem;
}

.footer-entity {
  font-size: 0.8rem;
  color: rgba(241, 245, 249, 0.55);
  margin: 0;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(241, 245, 249, 0.5);
}

/* --- Desktop --- */
@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .header-inner { gap: 1.5rem; }

  .site-nav {
    display: flex !important;
    position: static;
    align-items: center;
    gap: 0.35rem 0.75rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }

  .site-nav a {
    padding: 0.45rem 0.6rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: 0;
    width: auto;
    padding: 0.55rem 0.95rem;
    font-size: 0.875rem;
  }

  .hero { padding-top: 3.5rem; }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-visual { display: flex; }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
    gap: 2rem;
  }

  .detail-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

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

  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
