:root {
  --navy: #08233b;
  --navy-2: #0d304f;
  --green: #55751f;
  --green-accent: #78952f;
  --green-soft: #e9f0d9;
  --cream: #f6f2e8;
  --paper: #fffdf8;
  --ink: #142437;
  --muted: #566575;
  --line: rgba(8, 35, 59, .14);
  --shadow: 0 24px 60px rgba(6, 30, 51, .13);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green-accent);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 96px;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: white;
  color: var(--navy);
  font-weight: 850;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform .15s ease;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(8, 35, 59, .08);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -.03em;
}

.brandmark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(8, 35, 59, .18);
}

.brand small {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #38495b;
  font-size: 14px;
  font-weight: 750;
}

.navlinks > a:not(.pill) {
  padding-block: 12px;
}

.navlinks > a:not(.pill):hover {
  color: var(--green);
}

.pill,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pill {
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 22px rgba(8, 35, 59, .18);
}

.pill-short {
  display: none;
}

.hero {
  padding: 72px 0 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #314b0f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-accent);
}

h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  color: var(--navy);
  font-size: clamp(52px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.065em;
}

h1 span {
  display: block;
  color: var(--green-accent);
}

.lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: #425064;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 15px 20px;
  border-radius: 16px;
}

.btn.primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 13px 30px rgba(8, 35, 59, .19);
}

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

.pill:hover,
.btn:hover {
  transform: translateY(-2px);
}

.pill:hover,
.btn.primary:hover {
  background: var(--navy-2);
  box-shadow: 0 16px 32px rgba(8, 35, 59, .22);
}

.micro {
  max-width: 670px;
  margin-top: 16px;
  color: #556474;
  font-size: 13px;
  font-weight: 700;
}

.visual {
  position: relative;
}

.photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 38px;
  background: #d5dfcb;
  box-shadow: var(--shadow);
}

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

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 30, 51, .18));
}

.price-card {
  position: absolute;
  left: -34px;
  bottom: 42px;
  z-index: 3;
  padding: 18px 23px 17px;
  transform: rotate(-2deg);
  border: 7px solid white;
  border-radius: 28px;
  background: var(--navy);
  color: white;
  box-shadow: 0 20px 44px rgba(8, 35, 59, .26);
}

.price-card b {
  display: block;
  font-size: 64px;
  line-height: .9;
  letter-spacing: -.06em;
}

.price-card span {
  color: #dce8c6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mini-card {
  position: absolute;
  top: 42px;
  right: -18px;
  z-index: 3;
  padding: 15px 17px;
  border: 1px solid rgba(8, 35, 59, .1);
  border-radius: 22px;
  background: rgba(255, 253, 248, .97);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(6, 30, 51, .14);
}

.mini-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust {
  padding: 18px 0 78px;
}

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

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--navy);
}

.trust-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 950;
}

.trust-item b,
.trust-item small {
  display: block;
}

.trust-item b {
  font-size: 14px;
}

.trust-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

section {
  padding: 78px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  border-block: 1px solid rgba(8, 35, 59, .06);
  background: var(--cream);
}

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

.service {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(8, 35, 59, .08);
  border-radius: 22px;
  background: white;
  box-shadow: 0 8px 24px rgba(8, 35, 59, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(8, 35, 59, .08);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 15px;
  background: var(--green-soft);
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
}

.service p {
  margin: 7px 0 0;
  color: #596a7c;
  font-size: 14px;
}

.how-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: white;
  font-size: 20px;
  font-weight: 950;
}

.step h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 18px;
}

.step p {
  margin: 0;
  color: #5d6d7e;
}

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

.area {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eef3e3;
  color: #314b0f;
  font-size: 13px;
  font-weight: 850;
}

.offer-section {
  padding-block: 78px;
}

.offer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 42px;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.offer::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(120, 149, 47, .2);
}

.offer-copy,
.offer-price {
  position: relative;
  z-index: 1;
}

.offer .kicker {
  color: #d5e5b4;
}

.offer h2 {
  max-width: 580px;
  color: white;
  font-size: clamp(40px, 5vw, 58px);
}

.offer p {
  max-width: 620px;
  margin: 0;
  color: #d8e0e7;
  font-size: 17px;
}

.offer .offer-note {
  margin-top: 14px;
  color: #c3d0da;
  font-size: 13px;
}

.offer-price {
  color: #e8f1d5;
  font-size: clamp(76px, 9vw, 112px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.07em;
  text-align: right;
}

.offer-price small {
  display: block;
  margin-bottom: 15px;
  color: #d5e5b4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.faq-section {
  border-top: 1px solid rgba(8, 35, 59, .06);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

summary {
  position: relative;
  min-height: 62px;
  padding: 19px 50px 19px 18px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--green);
  font-size: 26px;
}

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

details p {
  margin: -2px 18px 20px;
  color: #586a7b;
}

.cta {
  padding: 34px 0 88px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 44px;
  border: 1px solid rgba(85, 117, 31, .2);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--green-soft), #f8f4e9 70%);
}

.cta h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 4.4vw, 56px);
}

.cta p {
  margin: 0;
  color: #566677;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

footer {
  padding: 38px 0;
  background: var(--navy);
  color: white;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  color: white;
}

.footer-brand small {
  color: #d5e5b4;
}

.footer-row p {
  margin: 8px 0 0;
  color: #c8d4dd;
  font-size: 13px;
}

.footer-row .copyright {
  margin-top: 4px;
  color: #9eb0bd;
  font-size: 11px;
}

.footer-contact {
  text-align: right;
}

.footer-phone {
  display: inline-block;
  min-height: 44px;
  padding-block: 9px;
  color: white;
  font-size: 21px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #d8e0e7;
  font-size: 13px;
  font-weight: 800;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .reveal.on {
  opacity: 1;
  transform: none;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, var(--cream), var(--paper));
}

.error-card {
  width: min(680px, 100%);
  padding: clamp(30px, 7vw, 68px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.error-brand {
  width: max-content;
}

.error-code {
  margin: 48px 0 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .2em;
}

.error-card h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 8vw, 72px);
}

.error-card > p:not(.error-code) {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .navlinks {
    gap: 16px;
  }

  .navlinks a[href="#faq"] {
    display: none;
  }

  .hero-grid {
    gap: 44px;
  }

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

@media (max-width: 900px) {
  .navlinks > a:not(.pill) {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

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

  .hero-grid {
    gap: 38px;
  }

  .photo {
    min-height: 610px;
  }

  .price-card {
    left: 18px;
    bottom: 20px;
  }

  .mini-card {
    top: 18px;
    right: 16px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .offer {
    grid-template-columns: 1fr;
  }

  .offer-price {
    text-align: left;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }

  [id] {
    scroll-margin-top: 82px;
  }

  .nav {
    min-height: 68px;
  }

  .brandmark {
    width: 40px;
    height: 40px;
  }

  .brand-copy {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  .pill {
    padding: 10px 15px;
    font-size: 13px;
  }

  .pill-wide {
    display: none;
  }

  .pill-short {
    display: inline;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(49px, 14.5vw, 58px);
  }

  .lead {
    font-size: 18px;
  }

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

  .btn {
    padding: 14px 12px;
  }

  .photo {
    min-height: 500px;
    border-radius: 28px;
  }

  .price-card {
    padding: 15px 19px;
    border-width: 5px;
  }

  .price-card b {
    font-size: 54px;
  }

  .mini-card {
    max-width: calc(100% - 32px);
    font-size: 13px;
  }

  .trust {
    padding-bottom: 58px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  section {
    padding: 58px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service {
    min-height: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    padding: 18px;
  }

  .service-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .service h3,
  .service p {
    grid-column: 2;
  }

  .service h3 {
    align-self: end;
  }

  .service p {
    align-self: start;
    margin-top: 3px;
  }

  .step {
    grid-template-columns: 46px 1fr;
    padding: 17px;
  }

  .num {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .offer {
    gap: 32px;
    padding: 30px;
  }

  .offer-price {
    font-size: 80px;
  }

  .cta-box {
    padding: 30px;
  }

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

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 340px) {
  .nav {
    gap: 10px;
  }

  .nav .brand {
    gap: 8px;
  }

  .nav .brandmark {
    width: 36px;
    height: 36px;
  }

  .nav .brand-copy {
    max-width: 92px;
    line-height: 1.1;
  }

  .nav .brand-copy small {
    display: none;
  }

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

  h1 {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
