:root {
  --blue: #002740;
  --teal: #038b9a;
  --ink: #152b36;
  --muted: #5d6a70;
  --line: #d7e4e7;
  --soft: #eaf4f6;
  --paper: #ffffff;
  --bg: #f7fafb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.button,
button {
  border: 0;
  background: var(--blue);
  color: white;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.button.secondary {
  background: var(--teal);
}

.button.ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--line);
}

.hero {
  background: var(--paper);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  font-weight: 800;
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  color: var(--blue);
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.18;
}

h3 {
  color: var(--blue);
  margin: 0 0 8px;
  font-size: 18px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  margin: 18px 0 0;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding-left: 26px;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 2px;
  top: 9px;
}

.cover {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 39, 64, 0.12);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

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

.quote {
  background: var(--soft);
  border: 1px solid #b9dde2;
  color: var(--blue);
  padding: 20px;
  border-radius: 8px;
  font-weight: 800;
}

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

label {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
}

.field {
  margin-bottom: 14px;
}

.hidden-field {
  display: none;
}

.fineprint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.band {
  background: var(--blue);
  color: white;
}

.band .section h2,
.band .section h3 {
  color: white;
}

.band .section p,
.band .section li {
  color: #dbe8ec;
}

.price {
  color: var(--blue);
  font-size: 44px;
  font-weight: 800;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 26px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

@media (max-width: 820px) {
  .hero-inner,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 42px;
  }

  h1 {
    font-size: 36px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

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

  .nav-links {
    flex-wrap: wrap;
  }
}
