:root {
  --primary-color: #2D5F4F;
  --secondary-color: #3A7A65;
  --accent-color: #4A9D7F;
  --light-color: #EBF5F0;
  --dark-color: #1A3D32;
  --gradient-primary: linear-gradient(135deg, #2D5F4F 0%, #3A7A65 100%);
  --hover-color: #3D6F5F;
  --background-color: #F7FAF8;
  --text-color: #456357;
  --border-color: rgba(45, 95, 79, 0.17);
  --divider-color: rgba(58, 122, 101, 0.11);
  --shadow-color: rgba(45, 95, 79, 0.08);
  --highlight-color: #6BB896;
  --main-font: 'Inter', sans-serif;
  --alt-font: 'Source Sans Pro', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

.pattern-bg {
  background-image: 
    linear-gradient(30deg, rgba(45, 95, 79, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(45, 95, 79, 0.02) 87.5%, rgba(45, 95, 79, 0.02)),
    linear-gradient(150deg, rgba(45, 95, 79, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(45, 95, 79, 0.02) 87.5%, rgba(45, 95, 79, 0.02)),
    linear-gradient(30deg, rgba(58, 122, 101, 0.015) 12%, transparent 12.5%, transparent 87%, rgba(58, 122, 101, 0.015) 87.5%, rgba(58, 122, 101, 0.015)),
    linear-gradient(150deg, rgba(58, 122, 101, 0.015) 12%, transparent 12.5%, transparent 87%, rgba(58, 122, 101, 0.015) 87.5%, rgba(58, 122, 101, 0.015));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: var(--light-color);
  padding: 2rem 1.2rem;
  margin: 2rem 0 0 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.62rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.6px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 1.3rem 1.1rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px var(--shadow-color);
  border-color: var(--accent-color);
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.85rem;
  border: 2px solid var(--primary-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
  letter-spacing: 0.4px;
}

.benefit-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px var(--shadow-color);
  border-bottom: 1px solid var(--border-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 38px;
  height: 38px;
  background: var(--light-color);
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid var(--accent-color);
  border-radius: 3px;
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
  .header-decoration::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.48rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.7px;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  color: white;
  border-radius: 6px;
  border: 2px solid var(--accent-color);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.9rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.45rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.98rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 9px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 20px;
  height: auto;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .product-image {
    padding: 20px 43px;
  }
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.15rem;
  border-radius: 6px;
  border: 1px solid var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.68rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.35px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.58rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.58rem;
  padding: 0.95rem 0.38rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 7px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 4px 11px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background: var(--light-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.feature-item span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.22px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.98rem 1.65rem;
  border: none;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 9px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.55px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 13px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.05rem;
  color: var(--primary-color);
  margin-bottom: 0.88rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.9px;
}

.price {
  font-size: 1.82rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.88rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.87rem;
  margin-bottom: 1.15rem;
  line-height: 1.62;
  color: var(--text-color);
}

.product-description p {
  margin-bottom: 0.88rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1.15rem;
  border-radius: 6px;
  font-weight: 700;
  margin: 1.15rem 0;
  text-align: center;
  font-size: 0.93rem;
  box-shadow: 0 3px 9px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.35px;
}

.features-list {
  list-style: none;
  margin: 1.15rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.88rem;
  margin-bottom: 0.88rem;
  padding: 0.88rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 7px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.features-list li:hover {
  transform: translateX(3px);
  border-color: var(--accent-color);
}

.feature-check {
  width: 22px;
  height: 22px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.76rem;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 2.15rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.65rem;
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.75px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.08rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.28rem;
  border-radius: 6px;
  border-left: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.88rem;
  margin-bottom: 0.88rem;
}

.testimonial-icon {
  width: 41px;
  height: 41px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.91rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  letter-spacing: 0.32px;
}

.testimonial p {
  line-height: 1.6;
  font-size: 0.85rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.68rem 1.2rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.08rem;
  align-items: center;
  padding-bottom: 1.08rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.88rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
  border-color: white;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.81rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.08rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}