:root {
  --navy-900: #112a52;
  --blue-700: #2456a6;
  --blue-500: #3a78d6;
  --blue-100: #dbe8fb;
  --blue-050: #f0f5fd;
  --mint-500: #3fae8f;
  --mint-050: #e9f7f1;
  --ink: #15233d;
  --slate: #4c5a72;
  --line: #e3e9f3;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --shadow: 0 16px 46px rgba(36, 86, 166, 0.10);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.66;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1.1em; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Spectral", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand img { width: 31px; height: 31px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a { color: var(--slate); font-weight: 500; font-size: 0.96rem; }
.nav-cta {
  background: var(--blue-700);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav-cta:hover { background: var(--navy-900); text-decoration: none; }

/* Hero */
.hero {
  background:
    radial-gradient(760px 380px at 88% 0%, rgba(63, 174, 143, 0.14), transparent 62%),
    linear-gradient(180deg, var(--blue-050), #ffffff 72%);
  padding: 88px 0 78px;
  border-bottom: 1px solid var(--line);
}
.hero .wrap { max-width: 740px; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: #fff;
  border: 1px solid var(--blue-100);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 22px;
}
.hero p.lead { font-size: 1.2rem; color: var(--slate); max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--blue-700); color: #fff; }
.btn-primary:hover { background: var(--navy-900); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--blue-700); border-color: var(--blue-100); }
.btn-ghost:hover { background: var(--blue-050); text-decoration: none; }

/* Sections */
section { padding: 78px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 660px; margin-bottom: 46px; }
.section-head .eyebrow { background: var(--blue-050); }

/* Steps / what we do */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.step .num {
  counter-increment: step;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Spectral", serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: 1rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.values {
  display: grid;
  gap: 16px;
}
.value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.value .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint-050);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value .dot svg { width: 20px; height: 20px; stroke: var(--mint-500); }
.value h4 { font-family: "Inter", sans-serif; font-size: 1.02rem; color: var(--ink); margin: 0 0 3px; font-weight: 700; }
.value p { margin: 0; font-size: 0.95rem; }

/* SMS program */
.sms { background: linear-gradient(180deg, #ffffff, var(--blue-050)); }
.sms-card {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: 18px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.sms-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.sms-list li {
  position: relative;
  padding: 16px 18px 16px 50px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1.01rem;
}
.sms-list li::before {
  content: "";
  position: absolute;
  left: 18px; top: 19px;
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--blue-700);
}
.sms-list li strong { color: var(--ink); display: block; margin-bottom: 2px; }
.kw { font-weight: 700; color: var(--blue-700); }

/* Form */
.optin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 7px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg-soft);
}
.field input:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(58, 120, 214, 0.15);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: 11px;
  padding: 15px 16px;
  margin-bottom: 20px;
}
.consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--blue-700); }
.consent label { font-size: 0.86rem; line-height: 1.5; color: var(--slate); }
.form-box .btn-primary { width: 100%; text-align: center; }
.form-note { font-size: 0.82rem; color: #7a87a0; margin: 14px 0 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue-500);
  padding: 28px 30px;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { margin-bottom: 0; }
.contact-card address { font-style: normal; color: var(--slate); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: #aebfdc;
  padding: 56px 0 34px;
  font-size: 0.95rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Spectral", Georgia, serif;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 600;
}
.footer-brand img { width: 29px; height: 29px; }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: #aebfdc; }
.footer-links a:hover { color: #fff; }
.footer-legal { padding-top: 24px; line-height: 1.7; }
.footer-legal p { margin: 0 0 6px; }

/* Legal */
.legal { max-width: 800px; margin: 0 auto; padding: 60px 28px 80px; }
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: #7a87a0; font-size: 0.9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.38rem; margin-top: 40px; }
.legal h3 { font-size: 1.08rem; margin-top: 26px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal .back { display: inline-block; margin-bottom: 30px; font-weight: 600; }
.entity-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 40px;
}
.entity-block p { margin: 0 0 4px; }
.entity-block strong { color: var(--ink); }

/* Responsive */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .optin { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  section { padding: 58px 0; }
  .sms-card, .form-box { padding: 30px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
