:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --ink: #132433;
  --ink-soft: #465a69;
  --muted: #6d7f8d;
  --line: #dbe5eb;
  --line-strong: #bfccd5;
  --teal: #12a7b7;
  --teal-dark: #087989;
  --amber: #ffad33;
  --navy: #0d1f2c;
  --shadow: 0 18px 48px rgba(21, 43, 59, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

section {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(191, 204, 213, 0.78);
  background: rgba(245, 248, 251, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-logo-wrap {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(13, 31, 44, 0.18);
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  padding: 0 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  padding: 58px 0 64px;
  background: linear-gradient(180deg, #eef5f8 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: 4rem;
}

h2 {
  max-width: 620px;
  font-size: 2.35rem;
}

.lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.credential {
  max-width: 560px;
  margin: 20px 0 0;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #06141d;
  background: linear-gradient(135deg, #31d5df, var(--amber));
  box-shadow: 0 16px 34px rgba(18, 167, 183, 0.18);
}

.button.secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--surface);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(13, 31, 44, 0.08);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.simple-list {
  display: grid;
  gap: 12px;
}

.simple-list p {
  margin: 0;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px 18px;
  color: var(--ink-soft);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(21, 43, 59, 0.06);
}

.soft-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
  padding: 18px 18px 18px 76px;
  counter-increment: step;
}

.steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06141d;
  background: var(--amber);
  content: counter(step);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 3px;
  color: var(--ink-soft);
}

.contact {
  background: var(--bg);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  gap: 42px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-box p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
  padding: 18px;
}

.contact-link span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-link strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.18rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 900px) {
  .section-pad {
    padding: 58px 0;
  }

  .hero-grid,
  .split-section,
  .contact-box {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1100px);
  }

  .nav {
    min-height: 68px;
  }

  .brand-logo-wrap {
    width: 46px;
    height: 46px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    padding: 36px 0 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .lead,
  .credential,
  .contact-box p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 16 / 9;
  }

  .simple-list p,
  .contact-link {
    padding: 15px;
  }

  .contact-box {
    padding: 22px;
  }
}

@media (max-width: 390px) {
  .brand-text small {
    display: none;
  }

  h1 {
    font-size: 2.24rem;
  }
}
