:root {
  --green: #00C853;
  --green-dark: #009624;
  --lime: #D6FF3F;
  --cyan: #22D3EE;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --border: rgba(10, 10, 10, 0.1);
  --shadow: 0 22px 70px rgba(10, 10, 10, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  padding-bottom: 72px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; color: rgba(10, 10, 10, 0.74); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.05rem, 4.2vw, 3.35rem); max-width: 850px; }
h2 { font-size: clamp(1.9rem, 5vw, 3.3rem); }
h3 { font-size: 1.15rem; }

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.section {
  padding: 76px 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.site-footer img {
  width: 178px;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 200, 83, 0.22);
}
.btn-small {
  display: none;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}
.btn-primary,
.btn-whatsapp {
  background: var(--green);
  color: var(--black);
}
.btn-primary:hover,
.btn-whatsapp:hover { background: var(--green-dark); color: var(--white); }
.btn-outline {
  border-color: var(--black);
  background: var(--white);
  color: var(--black);
}
.btn-large { min-width: min(100%, 330px); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 34px);
  background:
    linear-gradient(115deg, rgba(0, 200, 83, 0.16) 0 24%, transparent 24% 100%),
    linear-gradient(145deg, transparent 0 62%, rgba(34, 211, 238, 0.16) 62% 76%, transparent 76%),
    linear-gradient(180deg, #ffffff 0%, #f5fff8 48%, #eef8f4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: 0;
  width: 62vw;
  height: 28%;
  background:
    linear-gradient(90deg, var(--green) 0 22%, var(--lime) 22% 36%, var(--black) 36% 48%, var(--cyan) 48% 61%, transparent 61%);
  opacity: 0.18;
  transform: skewY(-5deg);
  transform-origin: right bottom;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.hero-copy h1 {
  position: relative;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: min(220px, 46%);
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--cyan));
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--green-dark);
  padding: 8px 12px;
  border: 1px solid rgba(0, 150, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(0, 150, 36, 0.08);
}

.eyebrow::before {
  content: none;
}

.hero-text {
  max-width: 720px;
  font-size: 1.02rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--green), #50e97e);
  box-shadow: 0 18px 40px rgba(0, 200, 83, 0.26);
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.benefit-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px 10px 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.08);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.benefit-list li::before {
  content: "✓";
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 74%;
  height: 52%;
  z-index: -2;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--lime));
  transform: rotate(3deg);
  box-shadow: 0 28px 70px rgba(0, 150, 36, 0.24);
}

.hero-media::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -18px;
  width: 58%;
  height: 38%;
  z-index: -1;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(10, 10, 10, 0.86) 0 12px, rgba(10, 10, 10, 0.72) 12px 24px);
  transform: rotate(-4deg);
}

.hero-media img {
  border: 8px solid var(--white);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.18);
  background: var(--white);
}

.trust-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 200, 83, 0.22), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111 52%, #06170d 100%);
  color: var(--white);
  padding: 30px 0;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.trust-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.trust-grid article span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-grid strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p { font-size: 1.04rem; }

.product-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.product-card,
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 83, 0.42);
  box-shadow: 0 22px 52px rgba(10, 10, 10, 0.1);
}

.product-card {
  overflow: hidden;
  display: grid;
  align-content: start;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gray);
}

.product-card h3,
.product-card p,
.product-card a { margin-inline: 18px; }
.product-card h3 { margin-top: 18px; }
.product-card p { margin-top: 8px; }

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  margin-bottom: 20px;
  font-weight: 900;
  color: var(--green-dark);
}
.text-link::after {
  content: "→";
  margin-left: 8px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark p { color: rgba(255, 255, 255, 0.72); }
.section-dark .eyebrow { color: var(--green); }

.feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.feature-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 1.35rem;
}
.feature-card h3 { color: var(--white); margin-bottom: 9px; }

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 10, 10, 0.05);
}

.timeline li::before {
  content: counter(list-item);
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--black);
  font-weight: 900;
  border-radius: 50%;
}
.timeline strong,
.timeline span { display: block; }
.timeline strong { color: var(--green-dark); font-size: 0.84rem; text-transform: uppercase; }
.timeline span { font-weight: 900; font-size: 1.08rem; }

.testimonials-section {
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.08), transparent 42%),
    var(--white);
}

.testimonial-grid {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  display: grid;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(10, 10, 10, 0.07);
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray);
}

.testimonial-card p {
  margin-bottom: 18px;
  color: rgba(10, 10, 10, 0.78);
  font-weight: 700;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--black);
  font-weight: 900;
}

.testimonial-card span {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.local-seo { background: var(--gray); }
.content-narrow {
  max-width: 920px;
}
.content-narrow h2 { margin: 12px 0 24px; }
.content-narrow p + p { margin-top: 18px; }
.content-narrow strong { color: var(--black); }

.faq-section { background: var(--white); }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 0;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--gray);
  border-radius: 50%;
  font-weight: 900;
}
.faq-item.is-open button::after { content: "−"; background: var(--green); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}
.faq-panel > p {
  overflow: hidden;
  padding: 0 18px;
}
.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-panel > p {
  padding-bottom: 18px;
}

.final-cta {
  background: var(--black);
  color: var(--white);
}
.final-cta-inner {
  display: grid;
  gap: 18px;
  justify-items: start;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.site-footer {
  padding: 56px 0 24px;
  background: var(--gray);
}

.footer-grid {
  display: grid;
  gap: 30px;
}
.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.site-footer a {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-weight: 800;
}
.site-footer a:hover { color: var(--green-dark); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 150, 36, 0.28);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 10px 14px;
  background: var(--black);
}
.mobile-cta a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--black);
  font-weight: 900;
  text-align: center;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(10, 10, 10, 0.68);
}
.exit-popup.is-open { display: grid; }
.popup-card {
  position: relative;
  width: min(100%, 520px);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.popup-card h2 { margin: 12px 0; font-size: clamp(1.6rem, 5vw, 2.5rem); }
.popup-card .btn { margin-top: 18px; width: 100%; }
.popup-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 560px) {
  .hero-actions { display: flex; flex-wrap: wrap; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { grid-template-columns: auto 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .section { padding: 104px 0; }
  .btn-small { display: inline-flex; }
  .header-inner { justify-content: space-between; }
  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
    align-items: center;
    gap: 34px;
  }
  .hero-media {
    margin-right: -40px;
  }
  .benefit-list { gap: 10px; justify-content: flex-start; }
  .benefit-list li { font-size: 0.9rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid article {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    min-height: 170px;
  }
  .trust-grid article span { grid-row: auto; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { grid-template-columns: 1fr; }
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .timeline li {
    padding: 78px 18px 22px;
    min-height: 180px;
  }
  .timeline li::before {
    top: 22px;
    left: 18px;
  }
  .footer-grid { grid-template-columns: 1.2fr 1.4fr 0.8fr 0.8fr; }
  .whatsapp-float { display: flex; bottom: 24px; }
  .mobile-cta { display: none; }
}

@media (min-width: 1120px) {
  .nav a { padding-inline: 10px; font-size: 0.9rem; }
  .brand img,
  .site-footer img { width: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
