:root {
  --navy: #0e2842;
  --navy-900: #081f36;
  --accent: #5c8b68;
  --accent-dark: #3f6d4c;
  --accent-soft: #e8f2eb;
  --paper: #f7f8f5;
  --white: #ffffff;
  --ink: #172331;
  --muted: #627080;
  --line: #dfe6e2;
  --line-strong: #cad7cf;
  --success: #2f7657;
  --danger: #9c3d35;
  --shadow: 0 18px 48px rgba(14, 40, 66, 0.12);
  --shadow-soft: 0 10px 28px rgba(14, 40, 66, 0.08);
  --radius: 8px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.62;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

main,
section,
div,
article,
header,
footer,
nav,
figure,
form,
fieldset,
label,
p,
h1,
h2,
h3,
li,
span {
  min-width: 0;
}

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(92, 139, 104, 0.46);
}

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(223, 230, 226, 0.82);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(14, 40, 66, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 48px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}

.brand-roof {
  width: 44px;
  height: 14px;
  border-top: 4px solid #f07321;
  border-left: 4px solid #f07321;
  transform: rotate(24deg) skewX(-26deg);
}

.brand-mark strong {
  margin-top: -4px;
  font-size: 24px;
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  max-width: 230px;
  overflow: hidden;
  color: var(--navy);
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  max-width: 250px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  border-color: var(--accent);
}

.nav-contact {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.header-cta,
.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.button-secondary {
  border-color: rgba(14, 40, 66, 0.2);
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span[aria-hidden="true"] {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(135deg, rgba(232, 242, 235, 0.94), rgba(255, 255, 255, 0.95) 44%, rgba(240, 244, 239, 0.82)),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  min-height: 720px;
  padding: clamp(58px, 8vw, 96px) 0 clamp(44px, 7vw, 76px);
}

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

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  hyphens: none;
}

p,
li,
span,
label,
a,
button {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.15vw, 3rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.13rem;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #35455b;
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
}

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

.trustline {
  margin: 20px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.hero-visual,
.image-card {
  margin: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.image-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(92, 139, 104, 0.18);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  width: min(330px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.hero-visual figcaption strong {
  color: var(--navy);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  display: grid;
  gap: 4px;
  padding: 20px clamp(10px, 2vw, 24px);
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--navy);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.section:nth-of-type(even) {
  background: var(--paper);
}

.split-grid,
.media-grid,
.faq-grid,
.form-grid,
.contact-grid,
.guide-grid,
.final-grid {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.split-grid,
.form-grid,
.guide-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
}

.media-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.faq-grid {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.section-copy p,
.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 34px;
}

.centered {
  text-align: center;
}

.check-card,
.highlight-card,
.region-card,
.quote-card,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.check-card {
  padding: clamp(20px, 3vw, 30px);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 850;
}

.choice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #2d3d51;
  cursor: pointer;
}

.choice:first-of-type {
  border-top: 0;
}

.choice input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.check-result {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.check-result span {
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.check-result strong {
  color: var(--navy);
}

.check-result p {
  margin: 0;
  color: #435647;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.mini-card,
.profile-list article,
.day-flow li,
.step-list li,
.metrics-grid article,
.page-map a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.mini-card,
.profile-list article,
.day-flow li,
.metrics-grid article,
.page-map a {
  padding: 22px;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.feature-card p,
.mini-card p,
.profile-list p,
.day-flow p,
.quote-card p,
.region-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.profile-list,
.page-map {
  display: grid;
  gap: 14px;
}

.page-map a {
  color: var(--navy);
  font-weight: 800;
}

.page-map a:hover,
.page-map a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #314258;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.icon-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.highlight-card,
.region-card,
.quote-card {
  padding: clamp(22px, 3vw, 32px);
}

.highlight-card {
  border-color: rgba(92, 139, 104, 0.25);
  background: linear-gradient(135deg, var(--white), var(--accent-soft));
}

.day-flow,
.step-list,
.metrics-grid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-flow {
  grid-template-columns: repeat(4, 1fr);
}

.day-flow span,
.step-list strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-list li {
  display: grid;
  grid-template-columns: minmax(90px, 0.26fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid strong {
  display: block;
  color: var(--accent-dark);
  font-size: 2.3rem;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.contact-band,
.final-cta {
  padding: clamp(46px, 7vw, 76px) 0;
  background: var(--navy);
  color: var(--white);
}

.contact-band h2,
.contact-band .eyebrow,
.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.contact-band p,
.final-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.36fr) auto;
  align-items: center;
}

.final-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-style: normal;
}

.contact-card a,
.footer-contact a,
.contact-inline a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 18px 20px;
  border: 0;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 16px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item div {
  padding: 0 20px 20px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.field,
.field-grid {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(92, 139, 104, 0.13);
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 700;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.field-error,
.form-error {
  min-height: 1.35em;
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  padding: 46px 0;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(150px, 0.55fr));
  gap: 28px;
}

.footer-brand .brand-mark {
  color: var(--white);
}

.footer-brand .brand-copy strong,
.footer-grid h2 {
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid p {
  max-width: 320px;
  margin: 16px 0 0;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:hover {
  color: var(--white);
}

.mobile-sticky-cta {
  display: none;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(48px, 9vw, 96px) 0;
  background: linear-gradient(135deg, var(--accent-soft), var(--white));
}

.legal-box {
  max-width: 840px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-box h1 {
  margin-top: 28px;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
}

.legal-box p {
  color: var(--muted);
}

.legal-box a:not(.button) {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 0;
    max-height: calc(100svh - 94px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .split-grid,
  .media-grid,
  .faq-grid,
  .form-grid,
  .contact-grid,
  .guide-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

  .trust-grid,
  .feature-grid.three,
  .feature-grid.four,
  .feature-grid.six,
  .day-flow,
  .metrics-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .final-grid {
    align-items: start;
  }
}

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

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 70px;
    left: 12px;
    right: 12px;
  }

  .hero-grid {
    gap: 30px;
    padding: 46px 0 36px;
  }

  h1 {
    font-size: clamp(1.86rem, 9vw, 2.7rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.42rem, 7.2vw, 2.08rem);
    line-height: 1.12;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-visual figcaption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .trust-grid,
  .feature-grid.three,
  .feature-grid.four,
  .feature-grid.six,
  .day-flow,
  .metrics-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .step-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form {
    padding: 20px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: none;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font-weight: 900;
    box-shadow: var(--shadow);
  }

  body.show-sticky-cta .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 48px;
    height: 44px;
  }

  .brand-copy strong {
    max-width: 180px;
    font-size: 0.92rem;
  }

  .brand-copy {
    display: none;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .hero-lead,
  .section-copy p,
  .section-head p {
    font-size: 1rem;
  }

  .feature-card,
  .mini-card,
  .profile-list article,
  .day-flow li,
  .metrics-grid article,
  .page-map a {
    padding: 18px;
  }

  .check-card,
  .highlight-card,
  .region-card,
  .quote-card,
  .contact-form,
  .contact-card {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
