:root {
  --primary-color: #1B7A6E;
  --secondary-color: #15594F;
  --accent-color: #2A9D8F;
  --light-color: #E0F2F1;
  --dark-color: #0D3E38;
  --gradient-primary: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  --hover-color: #238A7D;
  --background-color: #F7FBFA;
  --text-color: #1E4D47;
  --border-color: rgba(42, 157, 143, 0.25);
  --divider-color: rgba(27, 122, 110, 0.12);
  --shadow-color: rgba(27, 122, 110, 0.16);
  --highlight-color: #3BAEA3;
  --main-font: 'Inter', sans-serif;
  --alt-font: 'Inter', 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: 
    repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(224, 242, 241, 0.35) 20px, rgba(224, 242, 241, 0.35) 40px),
    repeating-linear-gradient(-45deg, transparent 0px, transparent 20px, rgba(224, 242, 241, 0.3) 20px, rgba(224, 242, 241, 0.3) 40px);
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.info-section {
  background: var(--background-color);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(27, 122, 110, 0.12);
  position: relative;
  overflow: hidden;
}

.info-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1B7A6E 0%, #2A9D8F 50%, #3BAEA3 100%);
}

.info-content {
  padding: 4rem 2.5rem;
  text-align: center;
}

.info-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.info-subtitle {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-color);
  opacity: 0.88;
  max-width: 850px;
  margin: 0 auto 3.5rem;
}

.info-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .info-features {
    grid-template-columns: 1fr 1fr;
  }
}

.info-feature-card {
  text-align: left;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(27, 122, 110, 0.03) 0%, rgba(42, 157, 143, 0.05) 100%);
  border-radius: 14px;
  border: 2px solid rgba(42, 157, 143, 0.15);
  transition: all 0.3s ease;
}

.info-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 122, 110, 0.15);
  border-color: var(--accent-color);
}

.info-feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.info-feature-header h3 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.info-feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  opacity: 0.88;
}

header {
  background: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 64px;
  height: 64px;
  transform: translateY(-50%);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid rgba(224, 242, 241, 0.15);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37px;
  height: 37px;
  background: transparent;
  border: 2px solid rgba(224, 242, 241, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1100px;
  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.75rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1.2px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3.2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 20px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px var(--shadow-color);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 20px 40px;
  }
}

.product-image:hover {
  transform: translateY(-2px);
}

.guarantee-block {
  background: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  color: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 5px 18px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  bottom: -13%;
  right: -7%;
  width: 82px;
  height: 82px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.85rem;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.35px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}

@media (min-width: 500px) {
  .features-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.85rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  font-size: 1.33rem;
}

.feature-item span {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.35px;
}

.cart-button {
  background: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  color: white;
  padding: 1.15rem 2.3rem;
  border: none;
  border-radius: 12px;
  font-size: 1.13rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 18px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.6px;
}

.cart-button:hover {
  background: linear-gradient(135deg, #238A7D 0%, #3BAEA3 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 22px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.35rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.price {
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.25rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.97rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, #1B7A6E 0%, #2A9D8F 100%);
  color: white;
  padding: 1.55rem;
  border-radius: 12px;
  font-weight: 600;
  margin: 1.75rem 0;
  text-align: center;
  font-size: 1.13rem;
  box-shadow: 0 5px 18px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.35px;
}

.features-list {
  list-style: none;
  margin: 1.75rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin-bottom: 1.05rem;
  padding: 1.05rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: all 0.3s ease;
  border-left: 3px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.feature-check {
  width: 23px;
  height: 23px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.84rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 3.8rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.8rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.11);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.13rem;
  font-family: var(--main-font);
  letter-spacing: 0.35px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.95rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.7rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  padding-bottom: 1.75rem;
}

@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.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.81rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}