:root {
  --blue: #0d5257;
  --blue-hover: #08454a;
  --navy: #0d5257;
  --navy-dim: #073c40;
  --sky: #da291c;
  --sky-hover: #bc2318;
  --sky-soft: #eaf3f2;
  --ink: #16233c;
  --muted: #5b6472;
  --border: #e3e7ee;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; color: var(--muted); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75em;
}
.center { text-align: center; }
.lede { font-size: 1.15rem; max-width: 640px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover { background: var(--sky-hover); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; flex-direction: column; font-family: var(--font-display); }
.logo strong { font-size: 1.15rem; color: var(--navy-dim); }
.logo span { font-size: .68rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; font-weight: 500; }
.nav-links a { color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.call-link { font-weight: 600; color: var(--navy-dim); }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  width: 42px; height: 42px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: #fff;
    flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--border);
    display: none; gap: 18px; }
  .nav-links.open { display: flex; }
  .call-link { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-dim) 0%, var(--navy) 55%, var(--blue) 100%);
  color: #fff;
  padding: 96px 0 80px;
}
.hero h1, .hero p { color: #fff; }
.hero .lede { color: #d8e4f5; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0; }
.hero-badges span {
  font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
}
.page-hero {
  background: linear-gradient(160deg, var(--navy-dim), var(--navy));
  color: #fff; padding: 72px 0 64px;
}
.page-hero h1, .page-hero p { color: #fff; }
.page-hero .lede { color: #d8e4f5; }

/* Trust bar */
.trust-bar { background: var(--sky-soft); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-bar .container { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy-dim); font-size: .95rem; }
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: none; }

/* Cards / grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; height: 100%;
}
.card h3 { margin-bottom: .4em; }
.card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.card ul li { color: var(--muted); font-size: .92rem; padding-left: 18px; position: relative; }
.card ul li::before { content: "—"; position: absolute; left: 0; color: var(--blue); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--sky-soft);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px;
}

/* Difference table */
.diff-table { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .diff-table { grid-template-columns: 1fr; } }
.diff-col { border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.diff-col.bad { background: var(--bg-alt); }
.diff-col.good { background: var(--sky-soft); border-color: var(--blue); }
.diff-col ul { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.diff-col li { padding-left: 26px; position: relative; color: var(--ink); }
.diff-col.bad li::before { content: "✕"; position: absolute; left: 0; color: var(--sky); font-weight: 700; }
.diff-col.good li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 8px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy-dim); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; margin-bottom: 16px;
}

/* CTA band */
.cta-band {
  background: var(--navy-dim); color: #fff; padding: 56px 0; text-align: center;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.cta-band .btn-outline:hover { border-color: #fff; }

/* Footer */
.site-footer { background: var(--navy-dim); color: #c3d9d7; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #cfd9ec; }
.site-footer a:hover { color: #fff; }
.site-footer ul li { margin-bottom: 8px; font-size: .92rem; }
.site-footer .brand { font-family: var(--font-display); color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #8fada9;
}

/* Contact page specifics */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-detail .card-icon { margin-bottom: 0; flex: none; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem;
}
.form-field textarea { resize: vertical; min-height: 120px; }

.badge-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pill { background: var(--sky-soft); color: var(--navy-dim); font-size: .82rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
