:root {
  --navy: #10263d;
  --navy-deep: #09192b;
  --gold: #d2a24b;
  --gold-soft: #f1d7a0;
  --slate: #5f7692;
  --slate-soft: #edf2f7;
  --text: #17212d;
  --white: #ffffff;
  --muted: #66788a;
  --border: rgba(16, 38, 61, 0.12);
  --shadow: 0 24px 64px rgba(9, 25, 43, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f9fc;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 12px 0;
  flex-wrap: wrap;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 25, 43, .94), rgba(22, 64, 110, .78)),
    radial-gradient(circle at top left, rgba(210,162,75,.25), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.12), transparent 26%);
  padding: 54px 0 68px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: start;
}
.hero-copy {
  color: var(--white);
  padding-top: 12px;
}
.hero-logo {
  width: min(460px, 100%);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  margin-bottom: 28px;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-soft);
}
.hero h1,
.inner-header h1,
.thankyou-card h1,
.section h2,
.compare-card h3,
.form-card h2,
.info-card h3,
.mini-card h3,
.site-footer h3 {
  margin: 0 0 14px;
  line-height: 1.05;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 900;
  max-width: 700px;
}
.hero-subheadline {
  font-size: 20px;
  max-width: 640px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
}
.tagline,
.footer-tagline,
.thankyou-tagline {
  font-size: 26px;
  font-style: italic;
  color: var(--gold-soft);
  margin: 0 0 20px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
}
.form-card {
  background: rgba(255,255,255,.98);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-size: 30px;
  color: var(--navy);
}
.field-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--navy);
}
input,
textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 16px;
  color: var(--text);
  background: #fff;
}
textarea { resize: vertical; min-height: 130px; }
.checkline {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: flex-start;
  gap: 14px;
  margin: 16px 0;
}
.checkline input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}
.checkline span {
  margin: 0;
  font-weight: 400;
  color: #29384b;
}
.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}
.cta-button {
  width: 100%;
  background: linear-gradient(135deg, #3bb36a, #6bcf70);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 18px;
  margin-top: 6px;
}
.secondary-button {
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  padding: 16px 28px;
  min-height: 56px;
}
.secondary-button.dark {
  background: var(--navy);
  color: var(--white);
}
.cta-button:hover,
.secondary-button:hover { transform: translateY(-1px); opacity: .96; }
.form-links {
  text-align: center;
  margin: 18px 0 0;
  font-weight: 700;
}
.form-links a { text-decoration: underline; }
.section { padding: 84px 0; }
.alt-bg { background: var(--slate-soft); }
.split-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 32px;
  align-items: center;
}
.align-start { align-items: start; }
.lead {
  font-size: 20px;
  color: #314052;
}
.feature-panel,
.info-card,
.mini-card,
.compare-card,
.prose-card,
.thankyou-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(16,38,61,.08);
  border-radius: 20px;
}
.feature-panel { padding: 26px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ca05a;
  font-weight: 900;
}
.center-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}
.center-heading.narrow { max-width: 760px; }
.section h2 {
  font-size: clamp(34px, 4.8vw, 54px);
  color: var(--navy);
}
.card-grid {
  display: grid;
  gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card,
.mini-card { padding: 28px; }
.info-card h3,
.mini-card h3,
.feature-panel h3,
.compare-card h3,
.site-footer h3 {
  font-size: 28px;
  color: var(--navy);
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  background: rgba(210,162,75,.18);
  color: var(--navy);
  margin-bottom: 18px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.compare-card { padding: 30px; }
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-card li {
  padding-left: 30px;
  margin-bottom: 14px;
  position: relative;
}
.compare-card.good li::before,
.compare-card.bad li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}
.compare-card.good li::before {
  content: "✓";
  color: #2da464;
}
.compare-card.bad li::before {
  content: "✕";
  color: #d9534f;
}
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-panel h2,
.light { color: var(--white); }
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.92);
  padding-top: 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr .8fr;
  gap: 28px;
}
.footer-logo,
.thankyou-logo { width: min(280px, 100%); border-radius: 14px; }
.site-footer a { color: rgba(255,255,255,.92); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 26px;
  padding: 18px 0;
  text-align: center;
  color: rgba(255,255,255,.76);
}
.inner-page { background: #f5f8fc; }
.inner-header {
  padding: 48px 0 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
}
.policy-wrap { padding: 42px 0 72px; }
.prose-card {
  padding: 34px;
  max-width: 900px;
}
.prose-card h2 {
  font-size: 28px;
  margin-top: 28px;
}
.thankyou-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.thankyou-wrap {
  width: min(760px, calc(100% - 32px));
}
.thankyou-card {
  text-align: center;
  padding: 38px;
}
.thankyou-card p { font-size: 19px; }
.thankyou-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 26px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .compare-grid,
  .footer-grid,
  .cta-panel,
  .three-up,
  .two-up {
    grid-template-columns: 1fr;
  }
  .cta-panel { align-items: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 34px; }
  .two-col { grid-template-columns: 1fr; }
  .form-card { padding: 22px; }
  .hero h1 { font-size: 40px; }
  .tagline, .footer-tagline, .thankyou-tagline { font-size: 22px; }
  .topbar-inner { gap: 8px; }
}


.consent-wrap {
  margin: 18px 0 8px;
  padding: 18px 18px 6px;
  border: 1px solid rgba(16, 38, 61, 0.12);
  border-radius: 16px;
  background: #f8fbff;
}

.consent-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkline {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 18px;
}

.checkline:last-child {
  margin-bottom: 8px;
}

.checkline input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.checkline span {
  margin: 0;
  font-weight: 400;
  color: #29384b;
  line-height: 1.6;
}

.consent-note {
  margin: 2px 0 0;
  font-size: 14px;
  color: #556577;
}


.hidden-netlify {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.consent-frequency {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}


.consent-frequency {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.consent-frequency-top,
.consent-frequency-inline,
.consent-frequency-bottom,
.submit-frequency {
  margin: 0 0 14px;
}

.consent-frequency-top {
  background: #eef5ff;
  border: 1px solid rgba(16, 38, 61, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
}

.consent-frequency-inline,
.consent-frequency-bottom,
.submit-frequency {
  text-align: left;
}

.submit-frequency {
  margin-top: 0;
}

.consent-frequency-after-first {
  margin: -4px 0 16px 36px;
  font-size: 15px;
  color: #1e3550;
}
.consent-frequency-after-first strong {
  font-weight: 800;
}
