:root {
  --ink: #071014;
  --muted: #5a6567;
  --deep: #0d3838;
  --deep-2: #143f36;
  --teal: #248d89;
  --mint: #a9d7c1;
  --cream: #f8f5ec;
  --paper: #fffefb;
  --gold: #d9ad48;
  --line: #d9ddd5;
  --shadow: 0 15px 35px rgba(17, 39, 34, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at right 22%, rgba(161, 206, 181, 0.35), transparent 25%),
    linear-gradient(90deg, #eef2ef 0, #fafbf7 16%, #fafbf7 84%, #eef5ef 100%);
  font-size: 14px;
}

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

.site-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 42px rgba(38, 75, 68, 0.08);
  overflow: hidden;
}

.promo {
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  color: #274840;
  font: 600 12px/1 Manrope, sans-serif;
  letter-spacing: 2px;
  white-space: nowrap;
}

.nav {
  height: 44px;
  padding: 0 max(24px, calc((100% - 910px) / 2));
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fffdf7;
  border-bottom: 1px solid #e5e5dc;
}

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

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: #0b1113;
  font: 800 12px/1.05 Manrope, sans-serif;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #415554;
  font: 600 7px/1 Manrope, sans-serif;
  letter-spacing: 1.8px;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  white-space: nowrap;
}

.nav nav a {
  color: #445150;
  font: 700 7px/1 Manrope, sans-serif;
  letter-spacing: 0.5px;
}

.nav-cta {
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: #162524;
  font: 800 9px/1 Manrope, sans-serif;
  letter-spacing: 2px;
  white-space: nowrap;
}

.hero {
  min-height: 548px;
  position: relative;
  background:
    radial-gradient(circle at 76% 48%, rgba(57, 133, 104, 0.72), transparent 44%),
    linear-gradient(135deg, #133435 0%, #123333 48%, #2a7958 100%);
  color: #fff;
}

.hero-inner {
  width: min(calc(100% - 48px), 910px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 438px;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  min-height: 505px;
}

.hero-copy { padding-top: 8px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font: 800 9px/1 Manrope, sans-serif;
  letter-spacing: 5px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(190, 221, 211, 0.35);
  border-radius: 4px;
  color: #c5dbd7;
  background: rgba(255, 255, 255, 0.07);
  font-size: 8px;
  letter-spacing: 3px;
}

.hero h1 {
  margin: 14px 0 23px;
  font: 800 56px/1.13 Manrope, sans-serif;
  letter-spacing: 0;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.45);
}

.hero p {
  width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font: 500 12px/1.62 Inter, sans-serif;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
}

.hero-actions a {
  height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  font: 700 10px/1 Manrope, sans-serif;
}

.phone {
  gap: 8px;
  padding: 0 12px 0 9px;
  background: #a8d5bf;
  color: #062c2b;
}

.phone span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b3334;
  color: #b9e0d2;
  font-size: 12px;
}

.more {
  padding: 0 15px;
  border: 1px solid rgba(227, 240, 237, 0.32);
  color: #fff;
}

.hero-visual {
  margin: 0;
  align-self: center;
}

.hero-visual img {
  display: block;
  width: 438px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #b7d7ce;
}

.slider-dots span:first-child { background: #b7d7ce; }

.trust-strip {
  height: 69px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #f4f0e7;
  border-bottom: 1px solid #deddd3;
  color: #2b8c88;
  text-align: center;
}

.trust-strip small {
  display: block;
  margin-bottom: 4px;
  color: #7b7e78;
  font: 500 8px/1 Inter, sans-serif;
}

.trust-strip b,
.trust-strip i {
  display: block;
  color: var(--teal);
  font: 400 38px/1 Manrope, sans-serif;
  font-style: normal;
}

.trust-strip b span {
  font-size: 14px;
  margin-left: 1px;
}

.section-pad {
  padding: 88px max(24px, calc((100% - 910px) / 2));
}

.about {
  min-height: 548px;
  display: grid;
  grid-template-columns: 354px 1fr;
  gap: 56px;
  align-items: start;
  background: #fcfaf3;
}

.about-image img {
  width: 354px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

h2 {
  margin: 0;
  font: 800 31px/1.04 Manrope, sans-serif;
  letter-spacing: 0;
}

.about-text {
  display: grid;
  grid-template-columns: 1fr 125px;
  gap: 26px;
  margin-top: 21px;
}

.about-text p {
  margin: 0;
  color: #586260;
  font: 500 12px/1.74 Inter, sans-serif;
}

.about-text aside {
  margin-top: -13px;
  color: #0d181a;
  font: 700 8px/1.32 Manrope, sans-serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-grid article {
  min-height: 59px;
  padding: 10px 13px;
  border: 1px solid #dfdfd7;
  border-radius: 3px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(26, 42, 38, 0.04);
}

.feature-grid strong {
  display: block;
  color: var(--teal);
  font: 800 9px/1.1 Manrope, sans-serif;
}

.feature-grid span {
  display: block;
  margin-top: 6px;
  color: #646f6c;
  font: 500 9px/1.18 Inter, sans-serif;
}

.benefits {
  background: var(--paper);
  text-align: center;
}

.centered { text-align: center; }

.benefits h2,
.conditions h2 {
  text-align: center;
  font-size: 30px;
}

.section-intro {
  width: 595px;
  max-width: 100%;
  margin: 13px auto 29px;
  color: #5f6767;
  font: 500 10px/1.8 Inter, sans-serif;
  letter-spacing: 1.1px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.benefit-grid article {
  height: 178px;
  padding: 18px 14px 20px;
  border-radius: 5px;
  background: #f8f4ed;
}

.line-icon {
  height: 54px;
  color: #000;
  font-size: 43px;
  line-height: 1;
}

.benefit-grid strong {
  display: block;
  min-height: 19px;
  color: var(--teal);
  font: 800 8px/1.18 Manrope, sans-serif;
}

.benefit-grid p {
  min-height: 39px;
  margin: 3px 0 10px;
  color: #273131;
  font: 500 11px/1.28 Inter, sans-serif;
}

.benefit-grid a,
.steps a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  background: var(--deep);
  color: #fff;
  font: 800 8px/1 Manrope, sans-serif;
}

.pricing {
  background: #f8f4ed;
}

.pricing > p:not(.eyebrow) {
  max-width: 444px;
  margin: 18px 0 18px;
  color: #606866;
  font: 500 12px/1.65 Inter, sans-serif;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.price-card {
  min-height: 182px;
  background: #fff;
  border: 1px solid #d8d8d0;
  box-shadow: 0 5px 14px rgba(24, 38, 36, 0.08);
}

.price-card header {
  height: 33px;
  display: flex;
  align-items: center;
  background: #2c8f8c;
  color: #fff;
}

.price-card header span {
  flex: 1;
  padding-left: 13px;
  font: 800 13px/1 Manrope, sans-serif;
}

.price-card header b {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--gold);
  color: #fff;
  font: 800 9px/1 Manrope, sans-serif;
  letter-spacing: 1px;
}

.price-card h3 {
  margin: 14px 13px 5px;
  font: 800 12px/1.2 Manrope, sans-serif;
}

.price {
  margin: 0 13px 9px;
  color: #2c9b96;
  font: 800 27px/1 Manrope, sans-serif;
}

.price del {
  margin-left: 7px;
  color: #8b8e88;
  font-size: 16px;
  font-weight: 400;
}

.price-card ul {
  margin: 0;
  padding: 0 13px 16px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 15px;
  margin-top: 9px;
  color: #68716f;
  font: 500 9px/1.2 Inter, sans-serif;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c9b96;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  width: 493px;
  margin: 20px auto 0;
}

.steps a {
  height: 25px;
  background: #318f8c;
  font-size: 9px;
}

.steps a:first-child { background: var(--deep); }

.conditions {
  background: var(--paper);
  text-align: center;
  padding-bottom: 66px;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 111px);
  justify-content: center;
  gap: 41px;
  margin-top: 29px;
}

.condition-grid div {
  text-align: center;
}

.condition-grid strong {
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #071014;
  font: 500 29px/1 Manrope, sans-serif;
}

.condition-grid small {
  font-size: 16px;
  margin-left: 1px;
}

.condition-grid span {
  color: #666c69;
  font: 700 9px/1.3 Manrope, sans-serif;
  letter-spacing: 2.5px;
}

.contact-band {
  background: #f8f4ed;
  padding-top: 40px;
  padding-bottom: 35px;
}

.contact-card {
  display: grid;
  grid-template-columns: 270px 190px 340px;
  gap: 28px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #d7dcd3;
  border-radius: 5px;
  box-shadow: 0 7px 22px rgba(28, 46, 42, 0.08);
}

.contact-copy {
  padding-left: 10px;
}

.contact-copy h2 {
  font-size: 24px;
  line-height: 1.15;
}

.contact-copy p:not(.eyebrow) {
  margin: 12px 0 67px;
  color: #68716e;
  font: 500 10px/1.6 Inter, sans-serif;
  letter-spacing: 1px;
}

.big-phone {
  height: 39px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 5px;
  background: #429c98;
  color: #fff;
  font: 800 17px/1 Manrope, sans-serif;
}

.contact-list {
  display: grid;
  gap: 9px;
}

.contact-list div {
  height: 44px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  border: 1px solid #e1dfd8;
  border-radius: 3px;
  background: #fbfaf5;
}

.contact-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-left: 10px;
  border-radius: 3px;
  background: #dceee8;
  color: #34938f;
  font-style: normal;
}

.contact-list span {
  padding-left: 10px;
  font: 800 10px/1.15 Manrope, sans-serif;
}

.contact-list small {
  display: block;
  margin-bottom: 2px;
  color: #87908b;
  font: 700 7px/1 Manrope, sans-serif;
  letter-spacing: 2.5px;
}

.map {
  width: 340px;
  height: auto;
  object-fit: cover;
}

footer {
  background: #082d2f;
  color: #fff;
}

.footer-main {
  min-height: 179px;
  display: grid;
  grid-template-columns: 1fr 120px 190px;
  gap: 70px;
  padding: 38px max(24px, calc((100% - 910px) / 2)) 30px;
}

.brand.dark strong,
.brand.dark small { color: #fff; }

.footer-brand p,
footer p,
footer a {
  color: rgba(255, 255, 255, 0.88);
  font: 500 10px/1.65 Inter, sans-serif;
}

.footer-brand p {
  margin: 20px 0 0;
}

footer h3 {
  margin: 0 0 17px;
  font: 800 10px/1 Manrope, sans-serif;
  letter-spacing: 4px;
}

footer a {
  display: block;
  margin: 6px 0;
}

footer p {
  margin: 0 0 8px;
}

.footer-bottom {
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(24px, calc((100% - 910px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font: 500 8px/1 Inter, sans-serif;
}

@media (max-width: 760px) {
  .site-shell {
    width: 100%;
  }

  .promo {
    height: auto;
    min-height: 34px;
    padding: 7px 14px;
    text-align: center;
    white-space: normal;
    letter-spacing: 1px;
    font-size: 10px;
    line-height: 1.35;
  }

  .nav {
    height: auto;
    padding: 12px 18px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand { min-width: 0; }

  .nav nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 3px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
    padding: 34px 20px 40px;
  }

  .hero-inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero p,
  .hero-visual img {
    width: 100%;
  }

  .hero-visual img {
    height: auto;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .trust-strip {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
    padding: 18px;
  }

  .section-pad {
    padding: 48px 20px;
  }

  .about,
  .about-text,
  .benefit-grid,
  .price-grid,
  .contact-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .map {
    width: 100%;
    height: auto;
  }

  .about-text aside {
    margin-top: 0;
    font-size: 11px;
  }

  .benefit-grid article {
    height: auto;
    min-height: 159px;
  }

  .steps {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .contact-copy p:not(.eyebrow) {
    margin-bottom: 22px;
  }

  .footer-main {
    gap: 28px;
    padding: 36px 20px;
  }

  .footer-bottom {
    height: auto;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
}
