:root {
  --primary-color: #2D7A5E;
  --secondary-color: #1F5843;
  --accent-color: #4A9B7B;
  --light-color: #EDF7F3;
  --dark-color: #1A2E26;
  --gradient-primary: linear-gradient(140deg, #2D7A5E 0%, #4A9B7B 100%);
  --hover-color: #246650;
  --background-color: #F9FDFC;
  --text-color: #3F5A4F;
  --border-color: rgba(45, 122, 94, 0.15);
  --divider-color: rgba(31, 88, 67, 0.08);
  --shadow-color: rgba(45, 122, 94, 0.11);
  --highlight-color: #D4F1E8;
  --main-font: 'Work Sans', sans-serif;
  --alt-font: 'Mukta', 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: 
    radial-gradient(circle at 10% 20%, rgba(45, 122, 94, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(74, 155, 123, 0.025) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent, transparent 45px, rgba(45, 122, 94, 0.015) 45px, rgba(45, 122, 94, 0.015) 90px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  padding: 2.6rem 1.2rem;
  background: white;
  color: var(--text-color);
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.benefits-content {
  max-width: 960px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.76rem;
  text-align: center;
  color: var(--primary-color);
  letter-spacing: 0.4px;
}

.benefits-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: linear-gradient(to bottom, var(--light-color), white);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
  letter-spacing: 0.24px;
}

.benefit-card p {
  font-size: 0.87rem;
  line-height: 1.56;
  color: var(--text-color);
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 9px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(237, 247, 243, 0.3);
  border-radius: 50%;
  transform: translateY(-50%) rotate(45deg);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 24px;
  height: 2px;
  background: rgba(237, 247, 243, 0.4);
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 24px;
  height: 2px;
  background: rgba(237, 247, 243, 0.4);
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.47rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1.14px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--light-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid white;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.28rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.08rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.44rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 3px 14px var(--shadow-color);
  background: white;
  border: 1px solid var(--border-color);
}

.product-image-container picture {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 88%;
  padding: 22px;
  height: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 22px 33px;
  }
}

.product-image:hover {
  transform: translateY(-3px);
}

.guarantee-block {
  background: var(--gradient-primary);
  color: white;
  padding: 1.44rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  bottom: -7%;
  left: -7%;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.82rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.32px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.12rem 0.8rem;
  background: linear-gradient(to bottom, white, var(--light-color));
  border-radius: 10px;
  box-shadow: 0 2px 9px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--shadow-color);
  background: linear-gradient(to bottom, var(--light-color), white);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.64rem;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.16px;
  line-height: 1.27;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.04rem 2.08rem;
  border: none;
  border-radius: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 12px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.52px;
}

.cart-button:hover {
  background: linear-gradient(140deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.14rem;
  color: var(--primary-color);
  margin-bottom: 1.14rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.price {
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.14rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.93rem;
  margin-bottom: 1.64rem;
  line-height: 1.67;
  color: var(--text-color);
}

.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 1.36rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1.64rem 0;
  text-align: center;
  font-size: 0.99rem;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.32px;
  border: 2px solid var(--accent-color);
}

.features-list {
  list-style: none;
  margin: 1.64rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  margin-bottom: 1.02rem;
  padding: 1.02rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 9px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.features-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 13px var(--shadow-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.82rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 2.48rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.08rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.52px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.36rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.09);
  padding: 1.52rem;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  margin-bottom: 1.02rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.99rem;
  font-family: var(--main-font);
  letter-spacing: 0.32px;
}

.testimonial p {
  line-height: 1.67;
  font-size: 0.91rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.08rem 1.2rem;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.52rem;
  align-items: center;
  padding-bottom: 1.52rem;
}

@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: 1.14rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.87rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.52rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.82rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}