:root {
  color-scheme: light;
  --navy: #062b5f;
  --navy-dark: #031a3b;
  --navy-soft: #eef5fb;
  --green: #64b82e;
  --green-dark: #3f8f1e;
  --ink: #132238;
  --muted: #5d6c7c;
  --line: #dce7f2;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 43, 95, 0.12);
  --shadow-soft: 0 10px 26px rgba(6, 43, 95, 0.08);
  --radius: 18px;
  --max: 1160px;
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main,
.site-header,
.site-footer,
.hero,
.section {
  overflow-x: clip;
}

.header-inner,
.hero-grid,
.card-grid,
.steps,
.two-column,
.contact-grid,
.trust-strip,
.cta-row,
.hero-copy,
.hero-panel,
.card,
.info-block,
.step,
.contact-card,
.contact-form {
  min-width: 0;
}


:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(6, 43, 95, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 210px;
  text-decoration: none;
}

.brand img {
  width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  opacity: 0;
}

.site-nav {
  display: none;
  position: absolute;
  top: 92px;
  left: 16px;
  right: 16px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--navy-soft);
  color: var(--green-dark);
}

.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  padding: 56px 0 64px;
  background:
    linear-gradient(135deg, rgba(6, 43, 95, 0.08), rgba(100, 184, 46, 0.08)),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.page-hero-compact {
  padding: 46px 0 54px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.05;
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.16;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lede {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-panel {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(6, 43, 95, 0.12);
}

.button-primary {
  background: var(--green);
  color: #09213c;
}

.button-primary:hover {
  background: #74c83d;
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

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

.section {
  padding: 60px 0;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid,
.steps,
.two-column,
.contact-grid,
.trust-strip {
  display: grid;
  gap: 18px;
}

.card,
.trust-strip div,
.info-block,
.step,
.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.trust-strip div,
.info-block,
.step,
.contact-card {
  padding: 24px;
}

.card p,
.info-block p,
.contact-card p {
  color: var(--muted);
  margin: 0;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
}

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

.check-list li {
  position: relative;
  min-height: 52px;
  padding: 14px 16px 14px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  padding: 14px 0;
}

details p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  gap: 20px;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin: 10px 0 0;
  color: #d9e9f9;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8c8d8;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

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

.legal-copy {
  max-width: 860px;
  color: var(--muted);
}

.legal-copy h2 {
  margin-top: 28px;
  font-size: 1.45rem;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 44px 0 28px;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.footer-brand img {
  width: 210px;
  max-height: 70px;
  object-fit: contain;
  padding: 8px;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand p,
.footer-contact p,
.disclaimer,
.copyright {
  color: #d9e9f9;
  margin: 12px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: #91d765;
}

.disclaimer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.93rem;
}

.copyright {
  font-size: 0.9rem;
}

@media (max-width: 699px) {
  .header-inner {
    min-height: 76px;
  }

  .brand {
    max-width: 168px;
  }

  .brand img {
    width: 158px;
    max-height: 52px;
  }

  .site-nav {
    top: 78px;
  }

  .hero {
    padding: 44px 0 52px;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .lede {
    font-size: 1.04rem;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero-panel {
    padding: 12px;
  }

  .hero-panel img {
    max-height: 230px;
  }
}

@media (min-width: 700px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .card-grid,
  .steps,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .split-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full,
  .form-note,
  .contact-form .button {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 92px;
  }

  .brand {
    max-width: 230px;
  }

  .brand img {
    width: 220px;
    max-height: 68px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 11px;
    font-size: 0.91rem;
    white-space: nowrap;
  }

  .hero {
    padding: 72px 0 82px;
  }

  .page-hero-compact {
    padding: 58px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .disclaimer,
  .copyright {
    grid-column: 1 / -1;
  }
}


/* Desktop polish layer */
@media (min-width: 1100px) {
  .site-header {
    background: rgba(255, 255, 255, 0.99);
  }

  .header-inner {
    width: min(100% - 64px, 1220px);
    min-height: 96px;
  }

  .brand {
    max-width: 260px;
  }

  .brand img {
    width: 238px;
    max-height: 76px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    padding: 11px 13px;
    border-radius: 999px;
    font-size: 0.95rem;
  }

  .site-nav a[href="contact.html"] {
    background: var(--green);
    color: #082041;
    box-shadow: 0 10px 22px rgba(100, 184, 46, 0.22);
  }

  .section-inner {
    width: min(100% - 64px, 1220px);
  }

  .hero {
    padding: 78px 0 88px;
    background:
      radial-gradient(circle at 84% 18%, rgba(100, 184, 46, 0.20), transparent 28%),
      linear-gradient(135deg, #f6fbff 0%, #eef6fb 48%, #f8fff4 100%);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
    gap: 56px;
  }

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

  h1 {
    font-size: 4rem;
    line-height: 1.02;
    max-width: 640px;
  }

  .lede {
    max-width: 620px;
    font-size: 1.18rem;
    line-height: 1.65;
  }

  .hero-panel {
    max-width: 520px;
    justify-self: end;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(6, 43, 95, 0.14);
  }

  .hero-panel img {
    max-height: 280px;
  }

  .button {
    min-height: 54px;
    padding: 15px 24px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card,
  .trust-strip div,
  .info-block,
  .step,
  .contact-card {
    padding: 28px;
    border-radius: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-grid .card {
    padding: 24px;
  }

  .product-grid h3 {
    font-size: 1.08rem;
  }

  .product-grid p {
    font-size: 0.96rem;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 36px;
  }

  .cta-band .cta-row {
    margin-top: 0;
    justify-content: flex-end;
  }

  .footer-inner {
    width: min(100% - 64px, 1220px);
  }
}

@media (min-width: 1300px) {
  h1 {
    font-size: 4.35rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.88fr);
  }
}
