:root {
  --green: #006a4e;
  --green-dark: #00513c;
  --green-soft: #e6f3ee;
  --mint: #cfe8df;
  --gold: #c9902c;
  --ink: #071426;
  --muted: #5b6874;
  --line: #e9eeec;
  --bg: #fbfaf7;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(13, 46, 38, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: radial-gradient(circle at 55% 12%, rgba(0, 106, 78, 0.07), transparent 25rem), var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.topbar {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1848px, calc(100% - 200px));
  margin: 28px auto 0;
  position: relative;
  z-index: 5;
}
.brand {
  display: grid;
  line-height: 1;
  letter-spacing: 0.04em;
}
.brand-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.16em;
  margin-left: 58px;
}
.brand strong { font-size: 27px; font-weight: 800; letter-spacing: 0.06em; }
.brand small { font-size: 9px; font-weight: 800; letter-spacing: 0.22em; text-align: center; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
  font-size: 13px;
  font-weight: 800;
}
.phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.phone svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50%;
}
.phone span { display: grid; }
.phone small { color: var(--muted); font-size: 11px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
}

.section {
  width: min(1848px, calc(100% - 200px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  column-gap: 48px;
  min-height: 650px;
  padding-top: 96px;
}
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.label {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: clamp(44px, 4.4vw, 58px);
  line-height: 1.07;
  letter-spacing: 0;
}
.hero-copy > p:not(.label) {
  max-width: 470px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 28px rgba(0, 92, 67, 0.2);
}
.btn-white { color: var(--ink); background: white; }

.hero-photo {
  position: absolute;
  top: 56px;
  left: 34%;
  right: 270px;
  bottom: 42px;
  z-index: 1;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(251,250,247,0.98) 0%, rgba(251,250,247,0.2) 18%, rgba(251,250,247,0) 45%),
    url("assets/hero-quality.png") center / cover no-repeat;
}

@media (min-width: 1101px) and (max-width: 1700px) {
  .hero-photo {
    background:
      linear-gradient(90deg, rgba(251,250,247,0.98) 0%, rgba(251,250,247,0.2) 18%, rgba(251,250,247,0) 45%),
      url("assets/hero-quality.png") right center / cover no-repeat;
  }
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 480px;
  margin-top: 34px;
  padding: 22px 18px;
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}
.benefits article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 94px;
  padding: 0 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.benefits svg { color: var(--green); width: 34px; height: 34px; stroke-width: 1.8; }

.calc-card {
  position: relative;
  z-index: 3;
  grid-column: 2;
  justify-self: end;
  align-self: start;
  width: 430px;
  margin-top: -40px;
  padding: 26px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 20px 70px rgba(7, 20, 38, 0.12);
}
.calc-card h2 {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.1;
}
.calc-card form { display: grid; gap: 12px; }
.calc-label:first-of-type {
  grid-column: 1 / -1;
}
.calc-label { font-weight: 800; font-size: 13px; }
.service-option {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}
.service-option input, .time-option input { position: absolute; opacity: 0; }
.service-option.active {
  color: white;
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.service-option b { display: block; margin-bottom: 5px; font-size: 14px; }
.service-option small { color: inherit; opacity: .88; font-weight: 700; }
.hours-row {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}
.hours-row span { font-size: 13px; font-weight: 800; }
.hours-stepper {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 14px;
}
.hours-stepper b {
  text-align: center;
  font-size: 18px;
}
.round-minus,
.round-plus {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.round-minus:focus-visible,
.round-plus:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.round-minus:disabled,
.round-plus:disabled {
  cursor: default;
  opacity: .35;
}
.round-minus::before,
.round-plus::before,
.round-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.round-plus::after {
  width: 2px;
  height: 17px;
}
.time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.time-option {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 15px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}
.time-option.active { border-color: var(--green); background: #eef8f4; }
.time-option svg { color: var(--gold); }
.time-option small { color: var(--muted); font-size: 11px; }
.calc-submit {
  display: none;
  justify-content: center;
  margin-top: 8px;
  padding: 13px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 800;
}

@media (min-width: 701px) {
  .calc-card form {
    grid-template-columns: 1fr;
  }
}

.certificate {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 18px;
  padding: 32px 36px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}
.cert-copy h2 {
  max-width: 430px;
  font-size: 38px;
  line-height: 1.15;
}
.cert-copy p:not(.gold-label) {
  max-width: 430px;
  font-size: 16px;
}
.gold-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}
.cert-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
  max-width: 380px;
  margin: -54px 0 0 320px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}
.cert-list li { display: flex; gap: 8px; }
.cert-list svg { width: 16px; color: var(--green); }
.certificate img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.work-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}
.work-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 16px;
}
.work-card h3 svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 8px;
}
.work-card h4 { margin: 18px 0 8px; font-size: 14px; }
.work-card ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12.4px;
}
.work-card li { position: relative; padding-left: 20px; }
.work-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.big-checks { gap: 14px !important; font-size: 14px !important; }
.recommend {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin: 30px 0 18px;
  padding: 20px;
  border-radius: 12px;
  background: #f4eee6;
}
.recommend svg { color: var(--green); }
.recommend p { margin: 0; color: var(--muted); font-size: 13px; }
.card-note {
  display: flex;
  gap: 10px;
  margin: 26px 0 0;
  padding: 16px;
  border-radius: 9px;
  background: #f6f6f4;
  color: var(--muted);
  font-size: 12px;
}
.card-note svg { flex: 0 0 auto; color: var(--green); }

.plans { padding-top: 34px; }
.plans h2, .faq h2, .reviews h2 {
  margin-bottom: 22px;
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.plan {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 270px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.plan h3 { margin: 0; font-size: 25px; }
.plan p { margin: -10px 0 0; font-weight: 800; }
.plan ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.plan li::before { content: "✓ "; color: var(--green); font-weight: 800; }
.plan b { font-size: 26px; }
.plan small { font-size: 13px; }
.choose {
  align-self: end;
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.plan.popular {
  transform: none;
}
.plan.popular span {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  color: white;
  background: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .plan:hover {
    color: white;
    border-color: var(--green);
    background: linear-gradient(135deg, #007d5d, #004c39);
    box-shadow: 0 24px 70px rgba(0, 81, 60, 0.18);
    transform: translateY(-8px) scale(1.03);
  }
  .plan:hover li::before { color: white; }
  .plan:hover .choose {
    color: var(--ink);
    background: white;
  }
}

.faq { padding-top: 48px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(13, 46, 38, 0.05);
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "⌄"; }
details[open] summary::after { content: "⌃"; }
details p { margin: 0; padding: 0 24px 18px; color: var(--muted); }

.reviews { padding: 56px 0 42px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}
.review-grid div { color: var(--gold); font-size: 18px; letter-spacing: .18em; }
.review-grid p { min-height: 56px; font-size: 13px; }
.dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}
.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8dedb;
}
.dots span:first-child { background: var(--green); }

.footer-cta {
  display: grid;
  grid-template-columns: 1fr 300px 300px;
  align-items: center;
  gap: 40px;
  width: min(1848px, calc(100% - 200px));
  margin: 0 auto;
  padding: 38px 46px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
}
.footer-cta h2 { margin-bottom: 8px; font-size: 30px; }
.footer-cta p { margin: 0; font-size: 16px; }
.footer-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-social a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  font-weight: 800;
}
.footer-social small { grid-column: 2; font-weight: 600; opacity: .9; }
.copyright {
  display: flex;
  justify-content: space-between;
  width: min(1030px, calc(100% - 64px));
  margin: 16px auto 24px;
  color: #9aa3a0;
  font-size: 12px;
}

.page-main {
  padding: 70px 0 88px;
}
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .75fr);
  gap: 42px;
  align-items: center;
  width: min(1400px, calc(100% - 96px));
  margin: 0 auto 34px;
  padding: 46px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4vw, 64px);
}
.page-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}
.page-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}
.page-section {
  width: min(1400px, calc(100% - 96px));
  margin: 22px auto 0;
}
.page-section h2 {
  margin-bottom: 22px;
  text-transform: uppercase;
  font-size: 24px;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.content-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 20px;
}
.info-card h3 svg,
.page-list svg {
  color: var(--green);
}
.page-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-list li {
  display: flex;
  gap: 10px;
}
.page-price {
  display: grid;
  gap: 12px;
  min-height: 250px;
  color: var(--ink);
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.page-price strong {
  margin-top: auto;
  font-size: 30px;
}

@media (hover: hover) and (pointer: fine) {
  .page-price:hover {
    color: white;
    border-color: var(--green);
    background: linear-gradient(135deg, #007d5d, #004c39);
    box-shadow: 0 24px 70px rgba(0, 81, 60, 0.18);
    transform: translateY(-8px) scale(1.03);
  }
  .page-price:hover .page-list svg { color: white; }
  .page-price:hover .choose {
    color: var(--ink);
    background: white;
  }
}
.page-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.contact-line svg {
  color: var(--green);
}

@media (max-width: 1100px) {
  .topbar { grid-template-columns: auto 1fr auto; }
  .nav, .phone { display: none; }
  .menu-toggle { display: grid; place-items: center; justify-self: end; }
  .nav.is-open {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav.is-open a { padding: 12px; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; }
  .hero-photo {
    position: relative;
    inset: auto;
    height: 520px;
    margin: 30px 0 18px;
    background: url("assets/hero-quality.png") right center / 176% auto no-repeat;
  }
  .calc-card {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }
  .certificate, .cards-3, .faq-grid, .review-grid, .footer-cta, .page-hero, .content-grid, .content-grid.two, .page-faq, .contact-panel { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-list { margin: 18px 0 0; }
  .plan.is-selected,
  .page-price.is-selected {
    color: white;
    border-color: var(--green);
    background: linear-gradient(135deg, #007d5d, #004c39);
    box-shadow: 0 18px 45px rgba(0, 81, 60, 0.18);
  }
  .plan.is-selected li::before { color: white; }
  .page-price.is-selected .page-list svg { color: white; }
  .plan.is-selected .choose,
  .page-price.is-selected .choose {
    color: var(--ink);
    background: white;
  }
}

@media (max-width: 700px) {
  .section, .topbar, .footer-cta, .copyright, .page-hero, .page-section { width: min(100% - 28px, 1190px); }
  .topbar {
    grid-template-columns: 1fr auto;
    margin-top: 18px;
  }
  .brand {
    width: max-content;
    justify-items: center;
  }
  .brand-stars {
    display: inline;
    margin-left: 0;
    font-size: 14px;
  }
  .brand strong { font-size: 21px; }
  .brand small {
    display: block;
    font-size: 7px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 35px);
    line-height: 1.12;
  }
  .hero-copy > p:not(.label) { font-size: 16px; }
  .btn, .hero-copy .btn { width: 100%; }
  .benefits { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }
  .cert-list { grid-template-columns: 1fr; width: 100%; }
  .benefits { padding: 14px; }
  .benefits article { min-height: 84px; }
  .hero-photo {
    height: 430px;
    background-size: 176% auto;
    background-position: right center;
  }
  .calc-card { padding: 20px; }
  .calc-card form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-option {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }
  .service-option b {
    font-size: 13px;
  }
  .service-option small {
    font-size: 11px;
  }
  .hours-row,
  .calc-label:not(:first-of-type),
  .time-grid,
  .calc-submit {
    grid-column: 1 / -1;
  }
  .certificate { padding: 22px; }
  .certificate img { height: auto; }
  .cards-3 { gap: 12px; }
  .plan {
    min-height: auto;
    padding: 16px 14px;
    gap: 9px;
  }
  .plan h3 {
    font-size: 20px;
  }
  .plan p,
  .plan ul {
    font-size: 11px;
  }
  .plan b {
    font-size: 20px;
  }
  .plan small {
    display: block;
    font-size: 10px;
  }
  .choose {
    min-height: 40px;
    font-size: 12px;
  }
  .plan.popular span {
    position: static;
    justify-self: start;
    order: -1;
    font-size: 9px;
  }
  .plan.popular { transform: none; }
  .footer-social { grid-template-columns: 1fr; }
  .copyright { display: grid; gap: 8px; }
  .page-main { padding: 34px 0 58px; }
  .page-hero { padding: 22px; }
  .page-hero img { height: 260px; }
  .content-grid,
  .content-grid.two,
  .page-faq,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .info-card {
    padding: 16px 14px;
  }
  .info-card h3 {
    font-size: 16px;
  }
  .page-list,
  .info-card p,
  .page-price p,
  .page-price li {
    font-size: 12px;
  }
  .page-price strong {
    font-size: 20px;
  }
  .page-faq details,
  .contact-line {
    min-width: 0;
  }
  .page-faq summary {
    padding: 14px;
    font-size: 12px;
  }
  .page-faq details p {
    padding: 0 14px 14px;
    font-size: 12px;
  }
  .contact-line {
    display: grid;
    align-content: start;
    font-size: 12px;
  }
}
