:root {
  --primary-color: #5B5F7A;
  --secondary-color: #454861;
  --accent-color: #7B7FA0;
  --light-color: #ECEDF5;
  --dark-color: #2A2C3E;
  --gradient-primary: linear-gradient(135deg, #5B5F7A 0%, #7B7FA0 100%);
  --hover-color: #696D8C;
  --background-color: #F6F7FB;
  --text-color: #3A3D4F;
  --border-color: rgba(123, 127, 160, 0.25);
  --divider-color: rgba(91, 95, 122, 0.12);
  --shadow-color: rgba(91, 95, 122, 0.14);
  --highlight-color: #8B8FB5;
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Nunito', 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: 
    linear-gradient(30deg, rgba(236, 237, 245, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(236, 237, 245, 0.5) 87.5%, rgba(236, 237, 245, 0.5)),
    linear-gradient(150deg, rgba(236, 237, 245, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(236, 237, 245, 0.5) 87.5%, rgba(236, 237, 245, 0.5)),
    linear-gradient(30deg, rgba(236, 237, 245, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(236, 237, 245, 0.5) 87.5%, rgba(236, 237, 245, 0.5)),
    linear-gradient(150deg, rgba(236, 237, 245, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(236, 237, 245, 0.5) 87.5%, rgba(236, 237, 245, 0.5));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.info-section {
  background: linear-gradient(135deg, #5B5F7A 0%, #7B7FA0 100%);
  color: white;
  padding: 4.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: -55px;
  right: -55px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(236, 237, 245, 0.09) 0%, transparent 70%);
  border-radius: 50%;
}

.info-section::after {
  content: '';
  position: absolute;
  bottom: -45px;
  left: -45px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(236, 237, 245, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.info-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.info-title {
  font-family: var(--main-font);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.4px;
}

.info-subtitle {
  font-size: 1.03rem;
  line-height: 1.7;
  opacity: 0.93;
  max-width: 750px;
  margin: 0 auto 2.3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.8rem 1.4rem;
  border-radius: 11px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-4px);
}

.info-box-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 0.9rem;
}

.info-box-title {
  font-family: var(--main-font);
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25px;
}

.info-box-text {
  font-size: 0.91rem;
  line-height: 1.6;
  opacity: 0.93;
}

header {
  background: linear-gradient(135deg, #5B5F7A 0%, #7B7FA0 100%);
  padding: 1.4rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 9px var(--shadow-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid rgba(236, 237, 245, 0.14);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 33px;
  height: 33px;
  background: transparent;
  border: 2px solid rgba(236, 237, 245, 0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.75;
  }
}

@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.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.65rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.17);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.8rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  padding: 20px;
  height: auto;
  border-radius: 11px;
  box-shadow: 0 5px 16px 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, #5B5F7A 0%, #7B7FA0 100%);
  color: white;
  padding: 1.65rem;
  border-radius: 11px;
  box-shadow: 0 4px 15px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  bottom: -11%;
  right: -5%;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.25px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.15rem 0.75rem;
  background: white;
  border-radius: 11px;
  box-shadow: 0 3px 9px 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: 43px;
  height: 43px;
  background: linear-gradient(135deg, #5B5F7A 0%, #7B7FA0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.feature-item span {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--main-font);
  letter-spacing: 0.25px;
}

.cart-button {
  background: linear-gradient(135deg, #5B5F7A 0%, #7B7FA0 100%);
  color: white;
  padding: 1.05rem 2.1rem;
  border: none;
  border-radius: 11px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.4px;
}

.cart-button:hover {
  background: linear-gradient(135deg, #696D8C 0%, #8B8FB5 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.15rem;
  color: var(--primary-color);
  margin-bottom: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.15rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.95rem;
  margin-bottom: 1.65rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, #5B5F7A 0%, #7B7FA0 100%);
  color: white;
  padding: 1.45rem;
  border-radius: 11px;
  font-weight: 600;
  margin: 1.65rem 0;
  text-align: center;
  font-size: 1.08rem;
  box-shadow: 0 4px 15px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.25px;
}

.features-list {
  list-style: none;
  margin: 1.65rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.95rem;
  padding: 0.95rem;
  background: white;
  border-radius: 11px;
  box-shadow: 0 3px 8px 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 11px var(--shadow-color);
}

.feature-check {
  width: 21px;
  height: 21px;
  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.8rem;
}

.testimonials {
  background: var(--primary-color);
  color: white;
  padding: 3.3rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.3rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.65rem;
  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: 1.85rem;
  border-radius: 11px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin-bottom: 1.15rem;
}

.testimonial-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.08rem;
  font-family: var(--main-font);
  letter-spacing: 0.25px;
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.93rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.5rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  align-items: center;
  padding-bottom: 1.65rem;
}

@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.15rem;
  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.86rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.79rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}