/* ============================================================
   OFFICE CARE INC. — SHARED STYLESHEET
   Light editorial theme. Edit tokens in :root to restyle the
   entire site at once.
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --navy:        #013E74;
  --navy-deep:   #012B52;
  --red:         #E9292C;
  --red-dark:    #C81F22;
  --blue-soft:   #99D2EF;

  /* Light theme surfaces */
  --white:       #FFFFFF;
  --paper:       #F8FAFC;   /* soft off-white */
  --mist:        #EAF3FA;   /* light-blue band (derived from brand blue) */
  --mist-deep:   #DCEBF6;

  /* Ink / text */
  --ink:         #14233A;   /* body text — soft navy-black */
  --ink-strong:  #013E74;   /* headings */
  --ink-muted:   #5B6B7E;   /* secondary text */
  --ink-faint:   #8A98A8;

  /* Lines */
  --line:        #E4EAF1;
  --line-strong: #D2DCE7;

  /* Type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    10px;
  --radius-sm: 6px;

  /* Shadow — soft, premium */
  --shadow-sm: 0 1px 2px rgba(1,43,82,0.04), 0 2px 8px rgba(1,43,82,0.05);
  --shadow-md: 0 8px 24px rgba(1,43,82,0.08), 0 2px 6px rgba(1,43,82,0.05);
  --shadow-lg: 0 24px 60px rgba(1,43,82,0.12), 0 8px 20px rgba(1,43,82,0.06);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink-strong);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

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

::selection { background: rgba(233,41,44,0.14); color: var(--ink-strong); }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 6px; border: 3px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6.5rem 0; }
.section--tight { padding: 4.5rem 0; }
.bg-paper { background: var(--paper); }
.bg-mist  { background: var(--mist); }
.bg-navy  { background: var(--navy); color: #EAF1F8; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 1.6rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.bg-navy .eyebrow { color: var(--blue-soft); }
.bg-navy .eyebrow::before,
.bg-navy .eyebrow::after { background: var(--blue-soft); }

/* Section heading scale */
.h-display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
}
.h-section {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}
.h-sub {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 500;
}

em.accent { font-style: italic; color: var(--navy); }
.bg-navy em.accent { color: var(--blue-soft); }

.lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink-muted);
  font-weight: 400;
}

.muted { color: var(--ink-muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), box-shadow 0.22s var(--ease),
              transform 0.18s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(233,41,44,0.18);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(233,41,44,0.26);
}

.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.bg-navy .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.bg-navy .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn-lg { padding: 1.1rem 2.3rem; font-size: 1rem; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.link-arrow:hover { color: var(--red); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.94);
}

/* Homepage: header hides over the hero, then slides in once the hero logo
   scrolls out of view (toggled by JS via .nav-revealed). */
.site-header.nav-autohide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.site-header.nav-autohide.nav-revealed {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .nav { height: 66px; }

.nav-logo img { height: 42px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .nav-logo img { height: 38px; }

.nav-logo-text {
  display: none;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-logo-text span { color: var(--red); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--navy); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy);
  transition: color 0.2s var(--ease);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }
.nav-phone:hover { color: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn { margin-top: 1.5rem; font-size: 1.05rem; }

/* ============================================================
   MEDIA / IMAGE PLACEHOLDERS
   Drop a real image at the referenced path and it replaces the
   placeholder automatically. The caption documents the intended shot.
   ============================================================ */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mist) 0%, var(--mist-deep) 100%);
  box-shadow: var(--shadow-md);
}
.media::after {
  /* placeholder label, hidden once a real <img> covers it */
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0.5;
  z-index: 0;
}
.media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;                       /* hidden until confirmed loaded */
  transition: opacity 0.5s var(--ease);
}
.media img.loaded { opacity: 1; }   /* set via JS on successful load */

.media video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-tall   { aspect-ratio: 4 / 5; }
.media-wide   { aspect-ratio: 16 / 10; }
.media-square { aspect-ratio: 1 / 1; }
.media-hero   { aspect-ratio: 5 / 6; }

/* decorative corner accent on media */
.media-accent::before {
  content: '';
  position: absolute;
  z-index: 2;
  left: -1px; bottom: -1px;
  width: 38%; height: 5px;
  background: var(--red);
  border-radius: 0 4px 0 var(--radius);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }
.reveal.d6 { transition-delay: 0.48s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-soft-bg {
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, var(--mist) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--navy); }
.hero-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 30rem;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}
.hero-trust-divider { width: 1px; height: 34px; background: var(--line-strong); }

/* ---- Full-bleed video hero ---- */
.hero--video {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video,
.hero-video-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(1,30,58,0.60) 0%, rgba(1,30,58,0.46) 45%, rgba(1,30,58,0.68) 100%),
    radial-gradient(ellipse 75% 60% at 50% 48%, rgba(1,30,58,0.10) 0%, rgba(1,30,58,0.45) 100%);
}
.hero--video .hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.hero--video .hero-content > * { margin-left: auto; margin-right: auto; }
.hero--video .hero-lead { margin-left: auto; margin-right: auto; }
.hero--video .eyebrow { justify-content: center; }
.hero--video .hero-actions { justify-content: center; }
.hero--video .hero-trust { justify-content: center; }
.hero-logo { display: block; height: 124px; width: auto; margin: 0 auto 1.9rem; filter: drop-shadow(0 3px 16px rgba(0,0,0,0.38)); }
@media (max-width: 560px) { .hero-logo { height: 78px; margin-bottom: 1.25rem; } }
.hero--video .eyebrow { color: var(--blue-soft); }
.hero--video .eyebrow::before,
.hero--video .eyebrow::after { background: var(--blue-soft); }
.hero--video .hero-title { color: #fff; }
.hero--video .hero-title em { color: var(--blue-soft); font-style: italic; }
.hero--video .hero-lead { color: rgba(255,255,255,0.88); }
.hero--video .hero-trust { border-top-color: rgba(255,255,255,0.22); }
.hero--video .hero-trust-num { color: #fff; }
.hero--video .hero-trust-label { color: rgba(255,255,255,0.72); }
.hero--video .hero-trust-divider { background: rgba(255,255,255,0.25); }
.hero--video .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero--video .btn-outline:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.12); }

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.cred-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.cred-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
.cred-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cred-item {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.cred-item svg { width: 18px; height: 18px; color: var(--red); }

/* ============================================================
   SECTION HEADER (centered)
   ============================================================ */
.section-head {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head p { margin-top: 1rem; }

.section-head--left {
  text-align: left;
  margin-left: 0;
}
.section-head--left .eyebrow { justify-content: flex-start; }

/* ============================================================
   ALTERNATING FEATURE ROW
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 6rem; }
.feature-row.reverse .feature-media { order: 2; }
.feature-text h2 { margin-bottom: 1.2rem; }
.feature-text p { color: var(--ink-muted); margin-bottom: 1.2rem; }
.feature-list { list-style: none; margin: 1.5rem 0; display: grid; gap: 0.85rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: var(--ink);
}
.feature-list svg {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background 0.3s var(--ease);
}
.svc-icon svg { width: 24px; height: 24px; color: var(--navy); }
.svc-card:hover .svc-icon { background: var(--red); }
.svc-card:hover .svc-icon svg { color: #fff; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.95rem; color: var(--ink-muted); margin-bottom: 1.3rem; flex-grow: 1; }

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.2);
}
.bg-navy .stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.bg-navy .stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--blue-soft);
  margin-top: 0.6rem;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ind-grid--wide { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .ind-grid--wide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .ind-grid--wide { grid-template-columns: 1fr; } }
.ind-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.ind-item:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.ind-item svg { width: 22px; height: 22px; color: var(--navy); flex-shrink: 0; }
.ind-item span { font-weight: 600; font-size: 0.95rem; color: var(--ink-strong); }
.ind-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   WHY / VALUE CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.1em;
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.why-icon svg { width: 25px; height: 25px; color: var(--navy); transition: color 0.3s var(--ease); }
.why-card:hover .why-icon { background: var(--red); }
.why-card:hover .why-icon svg { color: #fff; }
.why-card h3 { font-size: 1.4rem; margin: 1rem 0 0.7rem; }
.why-card p { color: var(--ink-muted); font-size: 0.97rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 1.1rem; }
.testi-stars svg { width: 18px; height: 18px; color: #F5A623; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-strong);
  font-weight: 400;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.testi-name { font-weight: 600; font-size: 0.92rem; color: var(--ink-strong); }
.testi-role { font-size: 0.82rem; color: var(--ink-muted); }
.testi-source {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.5rem; font-size: 0.78rem; color: var(--ink-faint);
}
.testi-source svg { width: 14px; height: 14px; }

/* ============================================================
   QUOTE / TRUST BANNER
   ============================================================ */
.quote-banner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-banner .mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--blue-soft);
  opacity: 0.5;
}
.quote-banner blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 1rem 0 1.6rem;
}
.quote-banner cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  border-radius: 18px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(153,210,239,0.16) 0%, transparent 65%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: var(--blue-soft); font-size: 1.12rem; max-width: 38rem; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); }
.cta-band .btn-outline:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.12); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: #B9CBDD;
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display:inline-block; margin-bottom: 1.4rem; }
.footer-logo img { height: 58px; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; color: #9FB4C9; max-width: 22rem; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: #9FB4C9; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.9rem; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--blue-soft); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #B9CBDD;
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: #7E94AB;
}
.footer-bottom a { color: #7E94AB; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-strong);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--red); }
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1,62,116,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg { display: none; color: var(--red); font-size: 0.8rem; margin-top: 0.35rem; }
.field.invalid input, .field.invalid textarea { border-color: var(--red); }
.field.invalid .error-msg { display: block; }
.form-note { font-size: 0.82rem; color: var(--ink-muted); margin-top: 0.5rem; }
.form-error {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 500;
  text-align: center;
  margin-top: 0.9rem;
}
.form-error a { color: var(--red); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--red); margin: 0 auto 1rem; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1rem; }
.page-hero p { max-width: 40rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media-wrap { max-width: 460px; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse .feature-media { order: 0; }
  .card-grid, .why-grid, .testi-grid, .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .stat:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }
  .card-grid, .why-grid, .testi-grid, .ind-grid, .stat-band { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .hero-trust-divider { display: none; }
  .form-card { padding: 1.5rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
