:root {
  --navy: #050b1a;
  --navy-mid: #0a1730;
  --navy-soft: #101f3d;
  --blue: #2e5eea;
  --blue-light: #5b8cff;
  --red: #d0392b;
  --red-light: #ef5a4a;
  --silver: #c7ccd6;
  --white: #ffffff;
  --text-muted: #9aa4bd;
  --text-on-light: #1a2236;
  --text-muted-on-light: #5b6472;
  --border-soft: rgba(255, 255, 255, 0.09);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(5, 11, 26, 0.35);
  --max-width: 1120px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

h3 {
  font-size: 18px;
}

p {
  margin: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1f3fae);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 94, 234, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  border-color: var(--blue-light);
}

.btn-small {
  padding: 9px 16px;
  font-size: 13px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 11, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
}

.brand-icon {
  width: 30px;
  height: auto;
}

.brand-name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.main-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
}

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

.hero {
  padding: 84px 0 60px;
  background:
    radial-gradient(circle at 15% 0%, rgba(46, 94, 234, 0.22), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(208, 57, 43, 0.16), transparent 50%);
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(360px, 80vw);
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 760px;
}

.hero-sub {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 16.5px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badges {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--silver);
  text-transform: uppercase;
}

.leaf-icon {
  width: 15px;
  height: 15px;
  color: var(--red-light);
  flex-shrink: 0;
}

/* ---------- Strip ---------- */

.strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--navy-mid);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 24px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.strip-item strong {
  font-size: 15px;
  color: var(--blue-light);
}

.strip-item span {
  font-size: 12.5px;
  color: var(--text-muted);
}

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

.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--navy-mid);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}

.section-head p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15.5px;
}

.section-footnote {
  text-align: center;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-style: italic;
}

/* ---------- Feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--navy-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- Pill list ---------- */

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: var(--navy-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Professional Independence ---------- */

.independence-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.independence p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15.5px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-size: 15px;
}

.check-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(208, 57, 43, 0.18);
  color: var(--red-light);
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Proof strip ---------- */

.proof {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.proof-inner {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

.proof-inner strong {
  color: var(--white);
}

/* ---------- CTA / contact ---------- */

.cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 94, 234, 0.18), transparent 60%);
}

.cta-inner {
  max-width: 620px;
  text-align: center;
}

.cta-inner p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15.5px;
}

.contact-form {
  margin-top: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--border-soft);
  background: var(--navy-soft);
  color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 6px;
}

.form-status {
  font-size: 13.5px;
  color: var(--blue-light);
}

.cta-direct {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.cta-direct a {
  color: var(--blue-light);
  font-weight: 600;
}

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

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.footer-icon {
  width: 22px;
  height: auto;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12.5px;
}

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

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .independence-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border-soft);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner .btn-small {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
