:root {
  --green: #007a5a;
  --green2: #00976f;
  --mint: #eafff4;
  --soft: #f8fafc;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --dark: #111827;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.55;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.top {
  min-height: 28px;
  background: #fff;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 12px #0002;
  overflow-x: hidden;
}

.top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
  height: 48px;
}

.top-right {
  display: flex;
  gap: 24px;
  opacity: .95;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  background: linear-gradient(135deg, #effdf6 0%, #fff 50%, #eef8ff 100%);
  padding: 54px 0 64px;
  text-align: center;
  overflow-x: hidden;
}

.badge {
  display: inline-block;
  background: #dffbeb;
  color: #007154;
  border-radius: 999px;
  padding: 6px 15px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(36px, 4.1vw, 54px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -.8px;
}

.sub {
  font-size: clamp(18px, 1.55vw, 21px);
  color: #4b5563;
  margin: 0 auto 36px;
  max-width: 780px;
  line-height: 1.35;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
  width: 100%;
  min-width: 0;
}

.product {
  width: 100%;
  max-width: 390px;
  display: block;
  margin: auto;
  filter: drop-shadow(0 18px 24px #0002);
}

.check {
  display: flex;
  gap: 13px;
  margin: 16px 0;
  align-items: flex-start;
  min-width: 0;
}

.circle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--green2);
  color: var(--green2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  margin-top: 1px;
}

.check b {
  display: block;
  font-size: 17px;
  color: #111827;
}

.check p {
  margin: 2px 0 0;
  color: #4b5563;
  font-size: 15px;
}

.btn {
  display: inline-block;
  background: linear-gradient(180deg, #09a678, #00845f);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  padding: 15px 54px;
  font-weight: 900;
  box-shadow: 0 10px 22px #00805f40;
  text-align: center;
  font-size: 16px;
  max-width: 100%;

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* HOVER */
.btn:hover {
  background: linear-gradient(180deg, #18c992, #0aa977);
  box-shadow: 0 14px 28px rgba(10, 169, 119, 0.35);
  transform: translateY(-2px);
}

/* CLICK */
.btn:active {
  transform: translateY(0);
}

.mini {
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
}

.icons {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  overflow-x: hidden;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
  max-width: 920px;
  margin: auto;
  width: 100%;
}

.icon {
  color: #00976f;
  font-size: 26px;
  line-height: 1;
}

.icons b {
  font-size: 16px;
  display: block;
  margin-top: 9px;
}

.icons span {
  font-size: 14px;
  color: #64748b;
  display: block;
}

section {
  padding: 66px 0;
  overflow-x: hidden;
}

section.alt {
  background: #f8fafc;
}

section.green {
  background: #eafff4;
}

section.fade {
  background: linear-gradient(135deg, #eafff4 0%, #f0fbff 100%);
}

h2 {
  text-align: center;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.2;
  margin: 0 0 34px;
  letter-spacing: -.3px;
}

p {
  color: #374151;
}

.narrow {
  max-width: 800px;
  margin: auto;
}

.narrow p {
  font-size: 16px;
  margin: 0 0 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1040px;
  margin: auto;
  width: 100%;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 10px 22px #00000012;
  min-width: 0;
  max-width: 100%;
}

.card h3 {
  margin: 0 0 10px;
  color: #007154;
  font-size: 20px;
  line-height: 1.2;
}

.card b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.card p {
  font-size: 15px;
  margin: 0;
  color: #4b5563;
}

.timeline-section {
  padding: 78px 0;
}

.timeline-section .cards {
  max-width: 1120px;
  gap: 30px;
}

.timeline-section .card {
  padding: 34px 32px;
  min-height: 220px;
}

.timeline-section .card h3 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.timeline-section .card b {
  font-size: 21px;
  margin-bottom: 12px;
}

.timeline-section .card p {
  font-size: 18px;
  line-height: 1.45;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  max-width: 980px;
  margin: auto;
  width: 100%;
}

.benefits div {
  background: #e9fff4;
  padding: 15px 18px;
  border-radius: 6px;
  font-size: 15px;
  color: #374151;
  min-width: 0;
}

.tick {
  color: #00976f;
  font-weight: 900;
  margin-right: 8px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 980px;
  margin: auto;
  width: 100%;
}

.step {
  padding: 32px 36px;
  border-radius: 8px;
  background: #e9fff4;
  max-width: 100%;
  min-width: 0;
}

.step:nth-child(2) {
  background: #eef8ff;
}

.step h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.step p {
  font-size: 16px;
  margin: 0;
  color: #4b5563;
}

.reviews .stars {
  color: #f7b500;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.rating {
  text-align: center;
  margin-top: -16px;
  margin-bottom: 28px;
  color: #4b5563;
}

.rating .stars {
  color: #f7b500;
  font-weight: 900;
  font-size: 20px;
}

.quote {
  font-style: italic;
}

table {
  width: 100%;
  max-width: 980px;
  margin: auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 10px 24px #0002;
  border-radius: 8px;
  overflow: hidden;
  table-layout: auto;
}

th {
  background: #007154;
  color: #fff;
  padding: 14px 16px;
  font-size: 13px;
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  font-size: 13px;
}

td:first-child,
th:first-child {
  text-align: left;
  font-weight: 700;
}

.ok {
  color: #00976f;
  font-weight: 900;
  font-size: 18px;
}

.dash {
  color: #6b7280;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 980px;
  margin: auto;
  text-align: center;
  width: 100%;
}

.num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d8fae9;
  color: #00976f;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
}

.use-grid b {
  display: block;
  margin-bottom: 8px;
}

.use-grid p {
  font-size: 16px;
  margin: 0;
}

.protip {
  max-width: 760px;
  margin: 24px auto 0;
  background: #e9fff4;
  border-radius: 6px;
  text-align: center;
  padding: 14px 18px;
  font-size: 13px;
  color: #374151;
}

.faq {
  max-width: 900px;
  margin: auto;
}

details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin: 14px 0;
  padding: 18px 20px;
  box-shadow: 0 8px 20px #0000000d;
  max-width: 100%;
}

summary {
  font-weight: 900;
  cursor: pointer;
}

summary {
  font-size: 20px;
}

details p {
  margin: 12px 0 0;
  font-size: 13px;
  color: #4b5563;
}

.guarantee {
  background: linear-gradient(135deg, #eafff4, #eef8ff);
  border-radius: 12px;
  padding: 46px 52px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.shield {
  font-size: 48px;
  color: #00976f;
  margin-bottom: 14px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  width: 100%;
}

.mini-card {
  background: #fff;
  border-radius: 8px;
  padding: 18px 12px;
  box-shadow: 0 8px 20px #0000000d;
  min-width: 0;
}

.mini-card b {
  font-size: 13px;
  display: block;
}

.mini-card span {
  font-size: 14px;
  color: #64748b;
}

.pricing {
  background: linear-gradient(135deg, #007154, #004f3e);
  color: #fff;
  text-align: center;
  padding: 66px 0;
  overflow-x: hidden;
}

.pricing h2,
.pricing p {
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 32px auto 0;
  width: 100%;
}

.price {
  background: #fff;
  color: #111827;
  border-radius: 10px;
  padding: 30px 24px;
  position: relative;
  box-shadow: 0 14px 30px #0003;
  max-width: 100%;
  min-width: 0;
}

.price.pop {
  transform: scale(1.03);
  border: 4px solid #facc15;
}

.tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #111827;
  border-radius: 999px;
  padding: 6px 18px;
  font-weight: 900;
  font-size: 11px;
  white-space: nowrap;
}

.plan {
  font-size: 13px;
  color: #6b7280;
}

.amount {
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
  margin: 10px 0 4px;
  letter-spacing: -1px;
}

.per {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 18px;
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  text-align: left;
}

.price li {
  font-size: 13px;
  margin: 9px 0;
  color: #374151;
}

.price .btn {
  display: block;
  padding: 12px 12px;
  margin-top: 20px;
}

.disclaimer {
  background: #f3f4f6;
  font-size: 13px;
  padding: 58px 0;
}

.disclaimer .narrow {
  max-width: 900px;
}

.disclaimer h3 {
  font-size: 20px;
  margin: 0 0 20px;
}

footer {
  background: #111827;
  color: #cbd5e1;
  text-align: center;
  padding: 54px 0;
  font-size: 13px;
  overflow-x: hidden;
}

footer h2 {
  color: #fff;
  margin-bottom: 10px;
}

footer .green-text {
  color: #34d399;
  font-weight: 800;
  margin-bottom: 22px;
}

footer .footer-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 18px 0 34px;
  color: #d1fae5;
}

footer a {
  color: #d1fae5;
}

h1,
h2,
h3,
p,
b,
li,
summary,
td,
th,
span,
div {
  overflow-wrap: break-word;
}

@media (min-width: 1280px) {
  .wrap {
    max-width: 1180px;
  }

  .hero-grid {
    max-width: 1120px;
  }

  .cards,
  .timeline-section .cards {
    max-width: 1120px;
  }

  .price-grid,
  .benefits,
  .steps,
  .use-grid {
    max-width: 1040px;
  }
}

@media (max-width: 1024px) {
  .wrap {
    padding: 0 22px;
  }

  .hero-grid {
    gap: 42px;
    max-width: 920px;
  }

  .product {
    max-width: 320px;
  }

  .cards,
  .price-grid {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    background: #fff;
  }

  .top {
    min-height: auto;
    padding: 8px 0;
    font-size: 12px;
  }

  .top .wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .top-right {
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding: 38px 0 46px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 15px;
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .sub {
    font-size: clamp(17px, 4.8vw, 20px);
    margin-bottom: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .product {
    max-width: min(300px, 82vw);
  }

  .check {
    gap: 12px;
    margin: 15px 0;
  }

  .circle {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 12px;
  }

  .check b {
    font-size: 18px;
  }

  .check p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
  }

  .icons {
    padding: 30px 0;
  }

  .icons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  section {
    padding: 52px 0;
  }

  h2 {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 30px;
  }

  .narrow p {
    font-size: 16px;
    line-height: 1.55;
  }

  .cards,
  .benefits,
  .steps,
  .price-grid,
  .mini-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 22px;
  }

  .card {
    padding: 24px;
    min-height: auto;
  }

  .card h3 {
    font-size: 24px;
  }

  .card b {
    font-size: 17px;
  }

  .card p {
    font-size: 16px;
  }

  .timeline-section {
    padding: 56px 0;
  }

  .timeline-section .card {
    padding: 28px 26px;
    min-height: auto;
  }

  .timeline-section .card h3 {
    font-size: clamp(30px, 9vw, 40px);
    margin-bottom: 14px;
  }

  .timeline-section .card b {
    font-size: 20px;
  }

  .timeline-section .card p {
    font-size: 18px;
  }

  .benefits div {
    font-size: 16px;
    padding: 15px 16px;
  }

  .step {
    padding: 26px 24px;
  }

  .step h3 {
    font-size: 23px;
  }

  .step p {
    font-size: 16px;
  }

  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  table {
    table-layout: fixed;
  }

  th,
  td {
    padding: 12px 8px;
    font-size: 12px;
  }

  .guarantee {
    padding: 34px 24px;
  }

  .price.pop {
    transform: none;
  }

  .price {
    padding: 30px 24px;
  }

  .amount {
    font-size: 38px;
  }

  .disclaimer,
  footer {
    padding: 48px 0;
  }
}

@media (max-width: 440px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .icons-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 30px;
  }

  .sub {
    font-size: 17px;
  }

  h2 {
    font-size: 26px;
  }

  .card {
    padding: 22px;
  }

  .timeline-section .card h3 {
    font-size: 34px;
  }

  .timeline-section .card p {
    font-size: 17px;
  }

  th,
  td {
    padding: 10px 6px;
    font-size: 11px;
  }
}


.top-offer-bar {
  width: 100%;
  background: linear-gradient(90deg, #087b5d, #00664d);
  color: #fff;

  text-align: center;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;

  padding: 12px 18px;

  box-shadow: 0 6px 18px rgba(0, 128, 95, .12);

  position: relative;
  z-index: 5;
}

/* MOBILE */
@media(max-width:768px) {

  .top-offer-bar {
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 14px;
  }

}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;

  margin: 28px 0 34px;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s ease;
}

.footer-links a:hover {
  opacity: .75;
}

/* MOBILE */
@media(max-width:768px) {

  .footer-links {
    gap: 18px;
    font-size: 14px;
  }

}