:root {
  --blue: #082744;
  --blue-2: #12395d;
  --orange: #e87500;
  --cream: #f7f1e8;
  --ivory: #fffaf4;
  --mist: #eef5f4;
  --paper: #ffffff;
  --ink: #10233d;
  --muted: #5d6877;
  --line: #e5dccf;
  --gold: #c69245;
  --green: #557c65;
  --slate: #263747;
  --soft: #fbf8f3;
  --shadow: 0 18px 48px rgba(8, 39, 68, 0.11);
  --shadow-strong: 0 26px 70px rgba(8, 39, 68, 0.16);
  --radius: 8px;
  --header: 76px;
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--ivory) 0, #fff 420px);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

p {
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.7vw, 4.38rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

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

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

.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: #fff;
  background: var(--blue);
  border-radius: 4px;
  text-decoration: none;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 2px solid rgba(198, 146, 69, 0.68);
  border-radius: 6px;
  font-weight: 900;
}

.brand-name {
  display: block;
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

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

.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: 760;
  text-decoration: none;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(198, 146, 69, 0.16);
  outline: none;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 166px;
  padding: 13px 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 39, 68, 0.08);
}

.button:hover,
.button:focus-visible {
  background: var(--blue-2);
  border-color: var(--blue-2);
  outline: 3px solid rgba(232, 117, 0, 0.22);
  outline-offset: 2px;
}

.button-small {
  min-width: 0;
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.92rem;
}

.button-accent {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #c96300;
  border-color: #c96300;
}

.button-outline {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(8, 39, 68, 0.22);
}

.button-light {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(8, 39, 68, 0.24);
  border-radius: 5px;
  padding: 9px 12px;
  font-weight: 850;
  cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--blue);
  content: "";
}

.menu-button i {
  position: relative;
}

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

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

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

.mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding-block: 14px 20px;
}

.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: min(660px, calc(100svh - 88px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px) 0 clamp(44px, 5vw, 68px);
  background: var(--ivory);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.97) 0%, rgba(255, 250, 244, 0.91) 38%, rgba(255, 250, 244, 0.54) 66%, rgba(255, 250, 244, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(247, 241, 232, 0.74));
  content: "";
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

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

.hero-intro,
.intro-line {
  max-width: 760px;
  color: #344056;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.45;
}

.hero-copy p:not(.hero-intro) {
  max-width: 720px;
}

.badge,
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge {
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(198, 146, 69, 0.32);
  border-radius: 4px;
}

.hero .badge {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(8, 39, 68, 0.08);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(198, 146, 69, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(8, 39, 68, 0.07);
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.image-panel img,
.media-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-note {
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  width: min(342px, calc(100% - 32px));
  padding: 18px;
  color: #fff;
  background: rgba(8, 39, 68, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.trust-strip {
  border-top: 1px solid rgba(229, 220, 207, 0.8);
  border-bottom: 1px solid rgba(229, 220, 207, 0.8);
  background: #fff;
}

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

.trust-grid span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--blue);
  border-left: 1px solid var(--line);
  font-weight: 820;
  text-align: center;
}

.trust-grid span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding: clamp(58px, 8vw, 100px) 0;
  background: var(--paper);
}

.section-soft {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.section-warm {
  background: linear-gradient(180deg, var(--cream), var(--ivory));
}

.section-blue {
  color: var(--ink);
  background: linear-gradient(180deg, #eef5f4 0%, #f8fbfa 100%);
  border-top: 1px solid rgba(8, 39, 68, 0.08);
  border-bottom: 1px solid rgba(8, 39, 68, 0.08);
}

.section-slate {
  color: #fff;
  background: var(--slate);
}

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

.section-blue p,
.section-blue li,
.section-slate p,
.section-slate li {
  color: #344056;
}

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

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

.grid,
.card-grid,
.page-grid,
.metric-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.panel,
.form-card,
.mini-card,
.metric,
.notice {
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border: 1px solid rgba(229, 220, 207, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 39, 68, 0.06);
}

.card,
.panel,
.form-card {
  position: relative;
}

.card::before,
.panel::before,
.form-card::before {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(85, 124, 101, 0.55));
  border-radius: 0 0 999px 999px;
  content: "";
}

.section-blue .card {
  background: rgba(255, 255, 255, 0.96);
}

.section-soft .card,
.section-warm .card,
.section-soft .panel,
.section-warm .panel {
  background: rgba(255, 255, 255, 0.94);
}

.mini-card {
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.mini-card:hover,
.mini-card:focus-visible {
  border-color: rgba(232, 117, 0, 0.45);
  outline: none;
}

.card-number,
.marker {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--blue);
  background: rgba(198, 146, 69, 0.2);
  border-radius: 6px;
  font-weight: 900;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.metric {
  min-height: 148px;
}

.metric span {
  color: var(--muted);
  font-weight: 760;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid rgba(8, 39, 68, 0.12);
  font-weight: 660;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  border-radius: 50%;
  content: "";
}

.section-blue .feature-list li,
.section-slate .feature-list li {
  border-color: rgba(8, 39, 68, 0.13);
}

.image-panel {
  margin: 0;
}

.image-panel figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: clamp(50px, 7vw, 92px) 0;
  background:
    linear-gradient(100deg, rgba(255, 250, 244, 0.98), rgba(255, 250, 244, 0.78)),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(229, 220, 207, 0.82);
}

.page-hero p {
  max-width: 780px;
  color: #344056;
  font-size: 1.15rem;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  text-decoration: none;
}

.form-card {
  position: relative;
}

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

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

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

.field label {
  color: var(--blue);
  font-weight: 850;
}

.field small {
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(8, 39, 68, 0.2);
  border-radius: 5px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(232, 117, 0, 0.64);
  outline: 3px solid rgba(232, 117, 0, 0.14);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #354156;
  font-size: 0.94rem;
}

.checkbox-row input {
  margin-top: 5px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 760;
}

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

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

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 39, 68, 0.06);
}

.faq-list summary {
  padding: 18px 22px;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(232, 117, 0, 0.28);
  outline-offset: 3px;
}

.faq-list details > div {
  padding: 0 22px 20px;
  color: #354156;
}

.contact-box {
  display: grid;
  gap: 8px;
}

.contact-box a {
  font-weight: 850;
  text-decoration: none;
}

.legal-note {
  padding: 18px;
  color: #314056;
  background: linear-gradient(180deg, rgba(85, 124, 101, 0.1), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(85, 124, 101, 0.2);
  border-radius: 6px;
}

.cta-band {
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 39, 68, 0.98), rgba(18, 57, 93, 0.96)),
    var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
}

.mobile-cta {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, #082744, #071f36);
  padding: 42px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
}

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

.footer-links a,
.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

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

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

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

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

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.9) 62%, rgba(255, 250, 244, 0.72) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(247, 241, 232, 0.46));
  }

  .hero-bg {
    object-position: center top;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .card-grid,
  .page-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --header: 68px;
  }

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

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

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

  .brand-claim {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 9.8vw, 2.7rem);
  }

  .hero {
    padding: 34px 0 28px;
  }

  .hero-intro,
  .intro-line {
    font-size: 1.08rem;
  }

  .hero-proof {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .card-grid,
  .page-grid,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .button {
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
  }
}
