:root {
  color-scheme: light;
  --background: #f6f8fc;
  --surface: #ffffff;
  --surface-alt: #eef2fa;
  --text: #000000;
  --muted: #050e25;
  --border: #dde4f0;
  --primary: #1d4ed8;
  --primary-dark: #000000;
  --accent: #dc2626;
  --shadow: 0 20px 45px rgba(19, 27, 46, 0.08);
  --shadow-sm: 0 8px 20px rgba(19, 27, 46, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(37, 99, 235, 0.35), transparent),
    linear-gradient(160deg, #0b1220, #10214a 55%, #1d4ed8 130%);
  color: #ffffff;
  padding: 1.5rem 1.5rem 5.5rem;
}

.nav,
.hero-content,
.section {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-suffix {
  color: #7fa3f7;
}

.leaf {
  margin-left: 0.2em;
  font-size: 0.9em;
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  font-weight: 800;
}

.lead {
  margin: 1.5rem 0 0;
  font-size: 1.15rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 3rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fa3f7;
  flex-shrink: 0;
}

.section {
  padding: 5rem 1.5rem;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-heading .eyebrow {
  color: var(--primary);
}

.section h2,
.cta h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800;
}

.card-grid,
.feature-grid,
.benefits {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.feature,
.benefits > div,
.cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.card,
.feature,
.benefits > div {
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.feature:hover,
.benefits > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.card h3,
.feature h3,
.benefits strong {
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.benefits strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p,
.feature p,
.benefits p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta p {
  margin-bottom: 0;
}

.card-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.card-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
  opacity: 0.65;
}

.feature-step {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.cta {
  text-align: center;
  padding: 3.5rem 2rem;
}

.cta .eyebrow {
  color: var(--primary);
}

.cta h2 {
  color: #000000;
}

.cta-lead {
  max-width: 560px;
  margin: 1rem auto 0;
  color: #000000;
}

.cta .button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.28);
}

.cta .button-primary:hover,
.cta .button-primary:focus-visible {
  background: var(--primary-dark);
}

.contact-form {
  max-width: 620px;
  margin: 2.5rem auto 0;
  text-align: left;
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.25rem;
  align-items: start;
}

.form-field {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

.form-field input,
.form-field textarea {
  font: inherit;
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #000000;
}

.form-field textarea {
  height: auto;
  padding: 0.85rem 1rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit {
  justify-self: center;
  margin-top: 0.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: #000000;
  margin: 0;
}

.form-note a {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
}

.site-footer {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 4rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .cta {
    padding: 2.5rem 1.25rem;
  }

  .form-submit {
    width: 100%;
  }

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