/* Site theme: tokens, reset, typography, and shared controls. */

:root {
  --orange: #F47B20;
  --orange-dark: #d96a10;
  --navy: #0F2B5B;
  --text: #1a1a2e;
  --muted: #555;
  --white: #fff;
  --border: #e0e8f0;
  --radius: 10px;
  --nav-h: 68px;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.section-eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-desc {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-header-center {
  margin-bottom: 52px;
  text-align: center;
}

.section-header-center .section-desc { margin: 0 auto; }

.section-header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.view-all-link:hover { color: var(--orange); }

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  padding: 14px 24px;
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 13px 20px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-quote {
  display: block;
  padding: 13px 20px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-quote-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-quote-navy:hover {
  background: #0a1f47;
  transform: translateY(-1px);
}

.btn-quote-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-quote-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.check-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e6f9ee;
}

.check-icon svg { color: #16a34a; }

.flash {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.flash-ok { background: rgba(34,197,94,0.15); color: #15803d; }
.flash-err { background: rgba(239,68,68,0.15); color: #b91c1c; }

@media (max-width: 680px) {
  :root { --nav-h: 60px; }
}
