:root {
  --ink: #102033;
  --muted: #66758a;
  --line: #dbe3ec;
  --paper: #ffffff;
  --soft: #f5f7f3;
  --navy: #17385f;
  --green: #2f725f;
  --gold: #b88a3b;
  --gold-dark: #936b2c;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 236, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 56px);
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 6vw, 84px) clamp(18px, 5vw, 64px) clamp(32px, 5vw, 64px);
  background:
    linear-gradient(118deg, rgba(245, 247, 243, 0.98) 0%, rgba(245, 247, 243, 0.96) 46%, rgba(23, 56, 95, 0.08) 100%),
    var(--soft);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding-bottom: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--navy);
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 30px;
  color: #3d4d61;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 18px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #245646);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(47, 114, 95, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.primary-button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.trust-note,
.privacy-note,
.fine-print {
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-note {
  margin: 0;
}

.hero-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #d8e0e7;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 32, 51, 0.18));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section,
.benefits-section,
.form-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 760px);
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

.intro-section h2,
.benefits-section h2,
.form-copy h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-section p {
  color: #2f3e51;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.intro-section .fine-print {
  max-width: 780px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.benefits-section {
  background: #f9faf7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.benefit-card {
  min-height: 236px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--gold-dark);
  background: #f5ecdc;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.84rem;
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: linear-gradient(180deg, #fff 0%, #f5f7f3 100%);
}

.form-copy {
  position: sticky;
  top: 104px;
}

.form-copy p {
  color: #3d4d61;
  font-size: 1.08rem;
}

.assurance-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: #3d4d61;
  list-style: none;
}

.assurance-list li {
  position: relative;
  padding-left: 28px;
}

.assurance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.lead-form {
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfd9e4;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(47, 114, 95, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.privacy-note {
  margin: 16px 0 0;
}

.thank-you {
  margin-top: 18px;
  padding: 16px;
  color: #174534;
  background: #eaf5ef;
  border: 1px solid #bee0cd;
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: #dce6ef;
  background: var(--navy);
  font-size: 0.92rem;
}

.site-footer p {
  max-width: 960px;
  margin: 0;
}

@media (max-width: 1120px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .intro-section,
  .section-heading,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    min-height: 360px;
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.8rem);
  }

  .hero-media {
    min-height: 300px;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .primary-button {
    width: 100%;
    padding-inline: 16px;
  }
}
