@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --navy: #0a3d62;
  --navy-deep: #081f30;
  --teal: #00adb5;
  --coral: #ff6a3d;
  --paper: #f6f8fa;
  --ink: #101c26;
  --ink-soft: #4a5a66;
  --line: #dfe6ea;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Poppins', 'Source Sans 3', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--navy-deep);
}

p { margin: 0 0 1.1em 0; max-width: 62ch; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

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

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand img { width: 40px; height: 40px; border-radius: 9px; }

.brand:hover { text-decoration: none; }

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.98rem;
}

.site-nav a:hover { color: var(--navy-deep); text-decoration: none; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--teal) 100%);
  color: #fff;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  max-width: 14ch;
}

.hero p.lede {
  color: #d7e7ec;
  font-size: 1.2rem;
  max-width: 42ch;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: #eaf6f7;
}

.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: min(280px, 100%);
  border-radius: 46px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.02rem;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-primary:hover { background: #e85a2c; text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  margin-left: 14px;
}
.btn-ghost:hover { border-color: #fff; text-decoration: none; }

/* ---------- Sections ---------- */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 64px);
}

.section-head { max-width: 56ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* Alternating feature rows, not identical cards */

.feature-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child { border-bottom: 1px solid var(--line); }

.feature-glyph {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
}

.feature-row h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature-row p { color: var(--ink-soft); margin: 0; }

/* CTA band */

.cta-band {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
}
.cta-band .section { padding-top: 60px; padding-bottom: 70px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe3e8; margin-left: auto; margin-right: auto; }

/* ---------- Simple content pages (support/privacy) ---------- */

.page-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 56px clamp(20px, 5vw, 64px) 60px;
}
.page-hero-inner { max-width: 780px; margin: 0 auto; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.page-hero p { color: #d7e7ec; font-size: 1.1rem; margin: 0; }

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 50px clamp(20px, 5vw, 64px) 90px;
}

.content h2 {
  font-size: 1.35rem;
  margin-top: 2em;
}
.content h2:first-child { margin-top: 0; }

.content ul { padding-left: 22px; color: var(--ink-soft); }
.content li { margin-bottom: 0.5em; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); margin: 0; }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 28px 0 8px;
}
.contact-card p { margin: 0; }
.contact-card .label { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 4px; }
.contact-card .value { font-weight: 600; font-size: 1.1rem; color: var(--navy-deep); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px clamp(20px, 5vw, 64px);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner .brand { font-size: 1.05rem; }
.footer-inner .brand img { width: 28px; height: 28px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.footer-links a:hover { color: var(--navy-deep); text-decoration: none; }
.copyright { color: #8a99a3; font-size: 0.88rem; width: 100%; margin-top: 8px; }

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-art { order: -1; }
  .hero-art img { width: 170px; }
  .site-nav { gap: 18px; }
  .feature-row { grid-template-columns: 56px 1fr; }
  .feature-glyph { width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
