:root {
  --blue: #082744;
  --blue-2: #123a5b;
  --orange: #e87500;
  --orange-dark: #c76000;
  --cream: #f7f1e8;
  --cream-2: #fbf8f1;
  --white: #ffffff;
  --text: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --green: #557c65;
  --rose: #b86b5f;
  --shadow: 0 18px 42px rgba(8, 39, 68, 0.10);
  --soft-shadow: 0 10px 24px rgba(8, 39, 68, 0.08);
  --radius: 8px;
  --header-height: 78px;
  color-scheme: light;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream-2);
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

p {
  margin-bottom: 18px;
  hyphens: none;
}

h1,
h2,
h3,
.display {
  color: var(--blue);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.7vw, 4.65rem);
  max-width: 920px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.22rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 7px;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 220, 207, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  min-width: 242px;
  display: inline-grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.15;
}

.brand-claim {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
}

.site-nav a,
.mobile-menu a {
  color: var(--blue);
  font-weight: 780;
  text-decoration: none;
}

.site-nav a {
  padding: 10px 8px;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--cream);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.button,
button.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 7px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(232, 117, 0, 0.16);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  outline: none;
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--blue);
  background: transparent;
  border-color: rgba(8, 39, 68, 0.26);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-light {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--blue);
  background: var(--cream);
  border-color: var(--cream);
}

.menu-button {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: var(--blue);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  position: absolute;
  left: 0;
}

.menu-button i::before {
  top: -6px;
}

.menu-button i::after {
  top: 6px;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding: 16px 0 22px;
}

.mobile-menu a {
  padding: 11px 0;
}

main:focus {
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #fffaf3 100%);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 54%;
  background: linear-gradient(90deg, rgba(85, 124, 101, 0.12), rgba(184, 107, 95, 0.08));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(380px, 1.07fr);
  gap: 42px;
  align-items: center;
  padding: 48px 0 42px;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  padding: 8px 10px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
}

.intro-text,
.hero-intro {
  color: var(--blue);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 510px;
  border-radius: 8px;
}

.hero-visual img,
.page-hero-image img,
.image-card img,
.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  min-height: 510px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(340px, calc(100% - 44px));
  padding: 18px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.hero-note strong {
  display: block;
  margin-bottom: 5px;
}

.hero-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

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

.trust-grid span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 820;
  text-align: center;
}

.trust-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.section {
  padding: 88px 0;
  background: var(--cream-2);
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

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

.section-blue h2,
.section-blue h3,
.section-blue .eyebrow,
.section-blue .intro-text {
  color: var(--white);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child,
.text-flow p:last-child {
  margin-bottom: 0;
}

.two-column,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: start;
}

.split {
  align-items: center;
}

.page-hero {
  background: var(--cream);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0;
}

.page-hero-image {
  height: min(48vw, 520px);
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.intro-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
}

.intro-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 999px;
  content: "";
}

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

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

.card,
.entry-card,
.feature-card,
.form-card,
.contact-card,
.faq-card,
.link-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.card,
.entry-card,
.feature-card,
.contact-card,
.faq-card,
.link-card {
  padding: 24px;
}

.link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(232, 117, 0, 0.5);
  outline: none;
  transform: translateY(-1px);
}

.entry-card {
  display: grid;
  align-content: start;
  min-height: 100%;
}

.entry-card .button {
  justify-self: start;
  margin-top: 8px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
  content: "";
}

.feature-card.rose::before {
  background: var(--rose);
}

.feature-card.orange::before {
  background: var(--orange);
}

.marker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.marker.orange {
  background: var(--orange);
}

.marker.rose {
  background: var(--rose);
}

.image-card,
.wide-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-image {
  min-height: 420px;
}

.note-box,
.soft-box,
.blue-box {
  padding: 24px;
  border-radius: 8px;
}

.note-box {
  background: var(--cream);
  border: 1px solid var(--line);
}

.soft-box {
  background: rgba(85, 124, 101, 0.10);
  border: 1px solid rgba(85, 124, 101, 0.22);
}

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

.blue-box h2,
.blue-box h3 {
  color: var(--white);
}

.blue-box p {
  color: rgba(255, 255, 255, 0.82);
}

.steps-grid {
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.compact-list,
.tag-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.compact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  margin: 0;
  padding: 7px 10px;
  color: var(--blue);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
}

.form-card {
  padding: 28px;
}

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

.field,
.field-full,
.checkbox-group {
  display: grid;
  gap: 7px;
}

.field-full,
.checkbox-group {
  grid-column: 1 / -1;
}

label,
.label {
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 850;
}

.hint {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #d7ccbe;
  border-radius: 6px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(232, 117, 0, 0.18);
}

[aria-invalid="true"] {
  border-color: #b42318;
  outline: 3px solid rgba(180, 35, 24, 0.12);
}

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

.check-option,
.privacy-row {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
}

.check-option input,
.privacy-row input {
  width: 18px;
  min-height: 18px;
  margin: 0.18em 0 0;
  accent-color: var(--orange);
}

.privacy-row {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 2px 0 0;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.fineprint {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: start;
}

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

.contact-list a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(8, 39, 68, 0.05);
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  content: "+";
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

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

.breadcrumb {
  padding: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
}

.site-footer {
  padding: 52px 0 90px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 30px;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.mobile-cta-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 8px;
  background: rgba(8, 39, 68, 0.96);
  box-shadow: 0 -10px 24px rgba(8, 39, 68, 0.18);
}

.mobile-cta-bar a {
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta-bar a:last-child {
  background: var(--green);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible,
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .site-nav,
  .header-actions .button-small {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
  }
}

@media (max-width: 1460px) {
  .phone-link {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 16px;
    padding-bottom: 70px;
  }

  .container {
    width: min(100% - 30px, 720px);
  }

  .brand {
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-claim {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .two-column,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-grid {
    min-height: auto;
    padding: 38px 0 32px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual,
  .hero-visual img,
  .page-hero-image {
    min-height: 320px;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .page-hero-grid {
    padding: 36px 0;
  }

  .section {
    padding: 58px 0;
  }

  .trust-grid,
  .card-grid,
  .feature-grid,
  .benefit-grid,
  .steps-grid,
  .link-grid,
  .two-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid span {
    min-height: 54px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .image-card,
  .wide-image {
    min-height: 300px;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .container {
    width: min(100% - 24px, 440px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .menu-button span {
    display: none;
  }

  .hero-actions,
  .section-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
  }

  .hero .button {
    padding-inline: 10px;
    font-size: 0.94rem;
  }

  .card,
  .entry-card,
  .feature-card,
  .form-card,
  .contact-card,
  .faq-card,
  .link-card,
  .note-box,
  .soft-box,
  .blue-box,
  .step-card {
    padding: 20px;
  }

  .hero-visual,
  .hero-visual img,
  .page-hero-image,
  .image-card,
  .wide-image {
    min-height: 255px;
  }

  .tag-list li {
    font-size: 0.88rem;
  }
}
