﻿:root {
  --bg: #f6fbf8;
  --surface: #ffffff;
  --surface-soft: #eef8f3;
  --line: #dbe9e2;
  --text: #133127;
  --muted: #5f7a70;
  --brand: #2f9b71;
  --brand-dark: #1f6f51;
  --accent: #b6e0f3;
  --accent-strong: #2c84ad;
  --shadow: 0 22px 60px rgba(28, 68, 54, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(182, 224, 243, 0.55), transparent 30%),
    linear-gradient(180deg, #fbfefd 0%, var(--bg) 100%);
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--tinted {
  background: rgba(238, 248, 243, 0.92);
}

.section--accent {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(27, 96, 73, 0.95), rgba(44, 132, 173, 0.9)),
    #1f6f51;
  color: #f7fffb;
}

.section__heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section__heading--light,
.section__heading--light p {
  color: #f1fffb;
}

.section__heading h2,
.hero h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
}

.section__heading p,
.hero__lead,
.benefit-card p,
.category-card p,
.product-card p,
.contact-card p,
.footer p,
.legal-copy p {
  color: var(--muted);
}

.section--accent .testimonial-grid blockquote,
.section--accent .section__heading p {
  color: rgba(247, 255, 251, 0.9);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 254, 253, 0.88);
  border-bottom: 1px solid rgba(219, 233, 226, 0.8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand span {
  display: block;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn,
.cart-button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.9rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.cart-button:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(47, 155, 113, 0.22);
}

.btn--secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--line);
}

.btn--ghost,
.cart-button {
  background: var(--surface);
  border-color: var(--line);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.cart-button strong {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.hero {
  padding: 3rem 0 4.5rem;
}

.hero__grid,
.contact-grid,
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
}

.hero__lead {
  font-size: 1.1rem;
  margin: 1.25rem 0 1.5rem;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero__stats li,
.hero__card,
.category-card,
.product-card,
.benefit-card,
.contact-card,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(219, 233, 226, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__stats li {
  padding: 1rem;
}

.hero__stats strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero__card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 260px;
  padding: 1.1rem;
}

.hero__card span {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-strong);
  text-transform: uppercase;
}

.category-grid,
.product-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid,
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.product-card,
.benefit-card {
  overflow: hidden;
}

.category-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div,
.product-card__body,
.benefit-card,
.contact-card {
  padding: 1.25rem;
}

.category-card h3,
.product-card h3,
.benefit-card h3,
.contact-card h3,
.footer h3,
.footer h4 {
  margin-top: 0;
}

.category-card a {
  color: var(--brand-dark);
  font-weight: 800;
}

.badge {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.price {
  margin: 0.6rem 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.product-card ul,
.footer ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

.product-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.02rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  color: var(--muted);
}

.contact-card {
  background: linear-gradient(180deg, #ffffff, #eef8f3);
}

.footer {
  background: #102a21;
  color: #effcf6;
  padding: 4rem 0 2rem;
}

.footer__grid {
  align-items: start;
}

.footer ul {
  margin: 0;
}

.footer a,
.footer p,
.legal-copy p {
  color: rgba(239, 252, 246, 0.78);
}

.legal-copy {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-copy section {
  margin-bottom: 1.2rem;
}

.footer__bottom {
  margin-top: 1.5rem;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .header__inner,
  .hero__grid,
  .contact-grid,
  .footer__grid,
  .category-grid,
  .product-grid,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .header__inner {
    display: grid;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .header__actions,
  .hero__actions,
  .product-card__actions {
    width: 100%;
  }

  .header__actions > *,
  .hero__actions > *,
  .product-card__actions > * {
    flex: 1 1 auto;
    text-align: center;
  }

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

  .hero__visual img {
    min-height: 360px;
  }
}

