:root {
  --navy: #0f2a43;
  --navy-deep: #0a1f33;
  --red: #d12f3a;
  --red-dark: #b3242e;
  --ink: #16202b;
  --muted: #5b6b7a;
  --line: #e3e9ef;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --gold: #f0c14b;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(15, 42, 67, 0.06);
  --shadow-md: 0 18px 50px rgba(15, 42, 67, 0.14);
  --max: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(209, 47, 58, 0.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-weight: 900; font-size: 1.35rem; letter-spacing: -0.5px; }
.brand-mark { color: var(--navy); }
.brand-accent { color: var(--red); margin-left: 4px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; color: var(--navy); font-size: .98rem; }
.nav a:hover { color: var(--red); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 10px 20px; border-radius: 999px; }
.nav-cta:hover { background: var(--navy-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(209, 47, 58, 0.12), transparent 60%),
    linear-gradient(160deg, #0f2a43 0%, #163a5c 55%, #0f2a43 100%);
  color: #fff; padding: 84px 0 96px; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; font-weight: 900; letter-spacing: -1px; }
.hero .hl { color: #fff; border-bottom: 4px solid var(--red); padding-bottom: 2px; }
.lede { margin-top: 22px; font-size: 1.15rem; color: #d6e2ee; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-row li { font-size: .92rem; color: #b9c9d8; }
.trust-row strong { display: block; font-size: 1.5rem; color: #fff; font-weight: 800; }

.hero-photo { position: relative; justify-self: center; }
.photo-frame {
  width: min(360px, 78vw); aspect-ratio: 1 / 1; border-radius: 24px; overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.12); box-shadow: var(--shadow-md);
  background: #0a1f33;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-badge {
  position: absolute; left: -18px; bottom: 26px; background: #fff; color: var(--navy);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-md); border-left: 5px solid var(--red);
}
.badge-name { display: block; font-weight: 900; font-size: 1.1rem; }
.badge-role { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head .eyebrow { color: var(--red); }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.6px; color: var(--navy); }
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }
.section-sub.light { color: #cfe0ee; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfdbe6; }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.why-copy .eyebrow { color: var(--red); }
.why-copy h2 { text-align: left; }
.checklist { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--muted); }
.checklist li strong { color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}
.why-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat-num { display: block; font-size: 2.2rem; font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { display: block; margin-top: 8px; color: var(--muted); font-size: .9rem; font-weight: 600; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.quote::before {
  content: "“"; position: absolute; top: 6px; left: 18px; font-size: 4rem; line-height: 1;
  color: var(--red); opacity: .22; font-family: Georgia, serif;
}
.quote blockquote { font-size: 1.02rem; color: var(--ink); position: relative; }
.quote figcaption { margin-top: 16px; font-weight: 700; color: var(--navy); font-size: .92rem; }

/* ---------- CTA / Quote ---------- */
.section-cta { background: linear-gradient(160deg, #0f2a43, #163a5c); color: #fff; }
.quote-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.quote-copy h2 { color: #fff; text-align: left; }
.contact-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.contact-list li { font-size: 1.05rem; color: #dce7f1; }
.contact-list a:hover { color: var(--gold); }

.quote-form {
  background: #fff; color: var(--ink); border-radius: 18px; padding: 30px;
  box-shadow: var(--shadow-md); display: grid; gap: 16px;
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .85rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(209, 47, 58, 0.15);
}
.field textarea { resize: vertical; }
.form-note { font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: #1d8a4e; font-weight: 600; }
.form-note.err { color: var(--red); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b9c9d8; padding: 48px 0; text-align: center; }
.brand-footer { font-size: 1.5rem; display: inline-block; }
.brand-footer .brand-mark { color: #fff; }
.footer-tag { margin: 14px 0 18px; color: #d6e2ee; font-size: 1.05rem; }
.footer-legal { font-size: .82rem; color: #7c93a8; max-width: 640px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .why-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .why-copy h2, .quote-copy h2 { text-align: center; }
  .why-copy .eyebrow, .quote-copy .eyebrow { text-align: center; }
}
@media (max-width: 620px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
}
