:root {
  --primary-color: #5D6D7E;
  --secondary-color: #424B54;
  --accent-color: #86B3D1;
  --light-color: #ECF1F1;
  --dark-color: #2C3539;
  --gradient-primary: linear-gradient(135deg, #5D6D7E 0%, #424B54 100%);
  --hover-color: #6C7E8F;
  --background-color: #FAFBFC;
  --text-color: #454E56;
  --border-color: rgba(93, 109, 126, 0.2);
  --divider-color: rgba(66, 75, 84, 0.12);
  --shadow-color: rgba(66, 75, 84, 0.12);
  --highlight-color: #F79C92;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', 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(0deg, transparent 24%, rgba(93, 109, 126, 0.02) 25%, rgba(93, 109, 126, 0.02) 26%, transparent 27%, transparent 74%, rgba(93, 109, 126, 0.02) 75%, rgba(93, 109, 126, 0.02) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(93, 109, 126, 0.02) 25%, rgba(93, 109, 126, 0.02) 26%, transparent 27%, transparent 74%, rgba(93, 109, 126, 0.02) 75%, rgba(93, 109, 126, 0.02) 76%, transparent 77%, transparent),
    radial-gradient(circle at 35% 55%, rgba(134, 179, 209, 0.02) 0%, transparent 40%);
  background-size: 50px 50px, 50px 50px, 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: var(--primary-color);
  padding: 2.3rem 1.2rem;
  margin: 2rem 0 0 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

.benefits-content {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 2.1rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 1.8rem 1.4rem;
  text-align: left;
  transition: all 0.3s ease;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.benefit-card:last-child {
  border-right: none;
}

@media (min-width: 768px) {
  .benefit-card:nth-child(3n) {
    border-right: none;
  }
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.benefit-card:hover::after {
  width: 100%;
}

.benefit-card:hover {
  background: var(--light-color);
  transform: translateY(-3px);
}

.benefit-card-icon {
  width: 55px;
  height: 55px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.1rem;
  color: white;
  box-shadow: 0 3px 10px rgba(134, 179, 209, 0.3);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.benefit-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 1px solid var(--border-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 5.5%;
  width: 70px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
  .header-decoration::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
  }
  .header-decoration::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    right: 0;
    top: 50%;
    transform: translateY(-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.95rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: white;
  border-radius: 4px;
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  top: -4px;
  left: -4px;
  border-radius: 4px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 16px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.product-image {
  width: 100%;
  padding: 28px;
  height: auto;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .product-image {
    padding: 28px 62px;
  }
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.8rem;
  border-radius: 4px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 3px 10px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.95rem;
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.features-icons {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.25rem 0.8rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
  flex: 1;
  border-top: 3px solid transparent;
}

.feature-item:hover {
  border-top-color: var(--accent-color);
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--light-color);
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-item span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 2.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 14px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 1.9px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.25rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
  line-height: 1.85;
  color: var(--text-color);
}

.highlight-text {
  background: var(--accent-color);
  color: white;
  padding: 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  margin: 1.8rem 0;
  text-align: center;
  font-size: 1.18rem;
  box-shadow: 0 4px 14px rgba(134, 179, 209, 0.3);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.features-list {
  list-style: none;
  margin: 1.8rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(9px);
  box-shadow: 0 6px 18px var(--shadow-color);
  border-left-width: 6px;
}

.feature-check {
  width: 34px;
  height: 34px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.testimonials {
  background: white;
  color: var(--text-color);
  padding: 2.9rem 1.2rem;
  border-top: 2px solid var(--border-color);
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.4rem;
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: var(--light-color);
  padding: 1.8rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial:hover {
  transform: scale(1.03);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.testimonial p {
  line-height: 1.85;
  font-size: 0.94rem;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.4rem 1.2rem;
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  align-items: center;
  padding-bottom: 1.7rem;
}

@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-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-content .logo-icon::before {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.93);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}