/* ============================================================
   Daniels Solutions — Brand System
   Trust • Competency • Customer Service
   Tampa, FL · Licensed Nationwide
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Brand */
  --navy: #0a3d62;
  --navy-deep: #062a45;
  --navy-soft: #14507a;
  --blue: #1e6091;
  --blue-light: #3a8fb7;
  --blue-pale: #e8f1f8;
  --gold: #c89968;
  --gold-soft: #e2c79e;

  /* Surface */
  --white: #ffffff;
  --surface: #f7f9fb;
  --surface-warm: #eef3f8;

  /* Ink */
  --ink: #0a1929;
  --ink-soft: #4b5b6f;
  --ink-mute: #7a8a9c;
  --line: #dde4ec;
  --line-soft: #ebf0f5;

  /* Type */
  --font-display: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale */
  --container: 1240px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ---- Reset ---- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.018em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.2vw, 64px); font-weight: 500; }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; font-weight: 600; }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--blue-light); }

.lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

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

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

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }

.btn-tel {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
  font-variant-numeric: tabular-nums;
}
.btn-tel:hover { border-color: var(--navy); background: var(--blue-pale); }

.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.logo-mark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo-mark span {
  background: var(--navy);
  border-radius: 50%;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.logo-text .tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Logo negative (dark BG) */
.logo-negative .logo-mark span { background: var(--blue-light); }
.logo-negative .logo-text .wordmark { color: var(--white); }
.logo-negative .logo-text .tagline { color: rgba(255,255,255,0.55); }

/* Big logo for footer / hero use */
.logo-lg .logo-mark { width: 44px; height: 44px; gap: 4px; }
.logo-lg .logo-text .wordmark { font-size: 26px; }
.logo-lg .logo-text .tagline { font-size: 10px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--navy-deep);
  color: var(--blue-pale);
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.announce a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.announce .sep { color: rgba(255,255,255,0.3); }
.announce .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: 1px;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,199,158,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(226,199,158,0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.15s;
}
.nav-tel:hover { border-color: var(--navy); background: var(--blue-pale); }
.nav-tel svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-tel-label { display: none; }
  .nav-tel { padding: 8px 10px; }
  .nav-cta .btn { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  z-index: 49;
  padding: 32px 28px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 84px 0 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero h1 {
  margin: 14px 0 24px;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--blue);
}
.hero-image-wrap {
  position: relative;
}
.hero-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: -32px;
  bottom: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 12px 40px -16px rgba(10, 25, 41, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-card-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
  font-weight: 500;
}
.hero-card-label {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero-card-label strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-pattern {
  position: absolute;
  top: 40px;
  right: -60px;
  width: 360px;
  height: 360px;
  opacity: 0.08;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--navy) 2px, transparent 2.5px);
  background-size: 22px 22px;
  z-index: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-item strong { color: var(--ink); font-weight: 600; }
.trust-item svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--white);
  padding: 96px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  padding: 42px 32px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat-num span { color: var(--blue-light); }
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.stat-sub {
  font-size: 13px;
  color: var(--ink-mute);
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section-sm { padding: 80px 0; }
.section-surface { background: var(--surface); }
.section-navy {
  background: var(--navy-deep);
  color: var(--blue-pale);
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
  color: var(--white);
}
.section-navy .lead { color: rgba(232, 241, 248, 0.75); }
.section-navy .eyebrow { color: var(--blue-light); }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 + .lead,
.section-head h2 + p {
  margin-top: 22px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -24px rgba(10, 61, 98, 0.25);
  border-color: var(--blue-light);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-mute);
  font-feature-settings: "tnum";
}
.pillar h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.pillar-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-reverse > .split-text { order: 2; }
.split-text h2 { margin-bottom: 20px; }
.checklist { margin: 28px 0 32px; }
.checklist li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231e6091'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-3.5-3.5a1 1 0 011.4-1.4L9 11.6l6.3-6.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.section-navy .checklist li {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.1);
}
.section-navy .checklist li::before {
  background: rgba(58, 143, 183, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%233a8fb7'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-3.5-3.5a1 1 0 011.4-1.4L9 11.6l6.3-6.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.split-image {
  aspect-ratio: 5/6;
  border-radius: var(--radius);
  overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

.split-image-stack { position: relative; aspect-ratio: 5/6; }
.split-image-stack .stack-1 {
  position: absolute;
  inset: 0 30% 25% 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.split-image-stack .stack-2 {
  position: absolute;
  inset: 35% 0 0 30%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid var(--white);
}
.split-image-stack .stack-1 img,
.split-image-stack .stack-2 img {
  width: 100%; height: 100%; object-fit: cover;
}
.section-surface .split-image-stack .stack-2 { border-color: var(--surface); }
.section-navy .split-image-stack .stack-2 { border-color: var(--navy-deep); }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-reverse > .split-text { order: 0; }
}

/* ============================================================
   SERVICES (bordered grid on dark)
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.service {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.service:last-child { border-right: none; }
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.service h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}
.service p {
  color: rgba(232, 241, 248, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
  .service { border-right: none; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.reviews-rating-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
}
.reviews-rating-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  font-weight: 500;
}
.reviews-rating-label {
  font-size: 12px;
  color: var(--ink-soft);
}
.reviews-rating-label a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ----- Reviews carousel ----- */
.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: stretch;
}
.reviews-track {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review {
  scroll-snap-align: start;
  min-height: 100%;
}
.reviews-nav {
  grid-row: 1 / 2;
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  z-index: 2;
}
.reviews-nav:hover { background: var(--surface-warm); border-color: var(--ink-soft); }
.reviews-nav:disabled { opacity: 0.35; cursor: default; }
.reviews-nav svg { width: 20px; height: 20px; }
.reviews-nav--prev { grid-column: 1 / 2; }
.reviews-nav--next { grid-column: 3 / 4; }
.reviews-dots {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.reviews-dot:hover { background: var(--ink-mute); }
.reviews-dot[aria-current="true"] {
  background: var(--blue);
  transform: scale(1.3);
}
@media (max-width: 880px) {
  .reviews-carousel { grid-template-columns: 36px 1fr 36px; gap: 8px; }
  .reviews-track { grid-auto-columns: 100%; gap: 16px; }
  .reviews-nav { width: 36px; height: 36px; }
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
  margin-bottom: 16px;
}
.review-stars svg { width: 16px; height: 16px; }
.review-quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy-deep);
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.review-role {
  font-size: 12px;
  color: var(--ink-mute);
}
.reviews-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 84px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(58, 143, 183, 0.3) 1.5px, transparent 2px);
  background-size: 26px 26px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 50% at 20% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 20% 50%, black 0%, transparent 70%);
}
.cta-block > * { position: relative; }
.cta-block h2 {
  color: var(--white);
  margin: 0 auto 18px;
  max-width: 740px;
}
.cta-block p {
  color: rgba(232, 241, 248, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 18px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--surface);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-header h1 {
  font-size: clamp(40px, 5vw, 56px);
  margin-top: 14px;
  margin-bottom: 18px;
}
.page-header-meta {
  font-size: 14px;
  color: var(--ink-soft);
}
.breadcrumb {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin: 0 8px; }

@media (max-width: 720px) {
  .page-header-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: var(--blue-pale);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(232, 241, 248, 0.7);
  margin: 20px 0 24px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: var(--blue-pale);
}
.footer-socials a:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-light);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(232, 241, 248, 0.7);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-nap {
  font-style: normal;
  font-size: 14px;
  color: rgba(232, 241, 248, 0.7);
  line-height: 1.7;
}
.footer-nap strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 13px;
}
.footer-nap a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(232, 241, 248, 0.55);
}
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOLUTIONS PAGE - SERVICE CARDS
   ============================================================ */
.solution-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 24px;
  scroll-margin-top: 100px;
}
.solution-card-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 8px;
}
.solution-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}
.solution-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.solution-card-list { display: grid; gap: 14px; }
.solution-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.solution-card-list li svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .solution-card { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
}

/* ============================================================
   ABOUT / BIO
   ============================================================ */
.bio {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.bio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.bio-photo {
  aspect-ratio: 4/5;
  background: var(--surface-warm);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo-placeholder {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mute);
  text-align: center;
  padding: 24px;
  background-image:
    linear-gradient(135deg, var(--line-soft) 25%, transparent 25%),
    linear-gradient(225deg, var(--line-soft) 25%, transparent 25%),
    linear-gradient(45deg, var(--line-soft) 25%, transparent 25%),
    linear-gradient(315deg, var(--line-soft) 25%, var(--surface-warm) 25%);
  background-size: 16px 16px;
  background-position: 8px 0, 8px 0, 0 0, 0 0;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.bio-photo-placeholder span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 4px;
}
.bio-meta {
  padding: 24px;
  border-top: 1px solid var(--line);
}
.bio-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line-soft);
}
.bio-meta-row:last-child { border-bottom: none; }
.bio-meta-row span:first-child { color: var(--ink-mute); }
.bio-meta-row span:last-child { color: var(--ink); font-weight: 500; }

.bio-text h2 { margin-bottom: 16px; }
.bio-text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.65;
}
.bio-text .pullquote {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
  color: var(--navy-deep);
  border-left: 3px solid var(--blue);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
  font-style: italic;
}
.bio-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .bio { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   TEAM BIOS — Chris + Shawn stacked, alternating photo side
   ============================================================ */
.team-bios {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.team-bio {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-bio-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-bio-head .solution-card-tag {
  align-self: flex-start;
}
.team-bio-head h3 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0;
}
.team-bio-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}
.team-bio-photo {
  width: 220px;
  aspect-ratio: 4 / 5;
  background: var(--surface-warm);
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.team-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.team-bio-meta {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 0;
}
.team-bio-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-bio-body .solution-card-tag {
  align-self: flex-start;
  margin-bottom: 2px;
}
.team-bio-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.team-bio-body .pullquote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--navy-deep);
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 18px;
  margin: 6px 0;
  font-style: italic;
}
.team-bio-body .bio-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 720px) {
  .team-bio { padding: 24px; gap: 20px; }
  .team-bio-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-bio-photo {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
  .team-bio-head h3 { font-size: 26px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.12);
}
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.form-status--success {
  background: var(--blue-pale);
  color: var(--navy);
  border: 1px solid #c8dcef;
}
.form-status--error {
  background: #fdf0ed;
  color: #8a2a1a;
  border: 1px solid #f4c5bc;
}
.bot-field-wrapper { position: absolute; left: -9999px; top: -9999px; visibility: hidden; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-top: 12px;
}
.form-note strong { color: var(--ink-soft); }

.contact-aside h3 { margin-bottom: 24px; font-size: 22px; }
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--blue-pale);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.contact-item-value a:hover { color: var(--blue); }
.contact-item-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 28px;
  aspect-ratio: 16/10;
  background: var(--surface);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.resource:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(10, 61, 98, 0.2);
}
.resource-img {
  aspect-ratio: 16/9;
  background: var(--blue-pale);
  position: relative;
  overflow: hidden;
}
.resource-img img { width: 100%; height: 100%; object-fit: cover; }
.resource-body { padding: 24px; }
.resource-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: inline-block;
}
.resource h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.resource p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.resource-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.resource-link:hover { color: var(--navy); }
@media (max-width: 880px) {
  .resource-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.legal-body h2 {
  font-size: 22px;
  margin: 40px 0 14px;
}
.legal-body p, .legal-body li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal-body ul { padding-left: 18px; list-style: disc; }
.legal-body strong { color: var(--ink); }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.dotgrid-bg {
  background-image: radial-gradient(circle, var(--line) 1.5px, transparent 1.8px);
  background-size: 22px 22px;
}
