:root {
  --primary-color: #B3D0D9;
  --secondary-color: #86B3D1;
  --accent-color: #F0DB4F;
  --light-color: #ECF1F1;
  --dark-color: #0C0F24;
  --gradient-primary: linear-gradient(135deg, #B3D0D9 0%, #86B3D1 100%);
  --hover-color: #C3E0E9;
  --background-color: #FDFDFD;
  --text-color: #4B5563;
  --border-color: rgba(179, 208, 217, 0.3);
  --divider-color: rgba(134, 179, 209, 0.15);
  --shadow-color: rgba(134, 179, 209, 0.18);
  --highlight-color: #5D6D7E;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', 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);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.pattern-bg {
  background-image: 
    radial-gradient(circle at 25% 15%, rgba(179, 208, 217, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(134, 179, 209, 0.06) 0%, transparent 40%),
    linear-gradient(0deg, transparent 24%, rgba(179, 208, 217, 0.03) 25%, rgba(179, 208, 217, 0.03) 26%, transparent 27%, transparent 74%, rgba(179, 208, 217, 0.03) 75%, rgba(179, 208, 217, 0.03) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(134, 179, 209, 0.03) 25%, rgba(134, 179, 209, 0.03) 26%, transparent 27%, transparent 74%, rgba(134, 179, 209, 0.03) 75%, rgba(134, 179, 209, 0.03) 76%, transparent 77%, transparent);
  background-size: 100% 100%, 100% 100%, 55px 55px, 55px 55px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 52px;
  height: 52px;
  transform: translateY(-50%) rotate(-15deg);
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 50% 0 50% 0;
  display: none;
}

.header-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  border-radius: 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark-color);
  box-shadow: 0 3px 10px rgba(240, 219, 79, 0.3);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-wrapper {
  position: relative;
  border-radius: 20px;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 8px 32px var(--shadow-color);
  border: 3px solid var(--light-color);
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 24px;
  background: var(--gradient-primary);
  opacity: 0.15;
  z-index: -1;
}

.product-image {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.03) rotate(2deg);
}

.guarantee-block {
  background: var(--gradient-primary);
  padding: 1.3rem;
  border-radius: 14px;
  box-shadow: 0 5px 18px var(--shadow-color);
  color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '★';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.15);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.guarantee-block p {
  font-size: 0.8rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.1rem 0.8rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::after {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--dark-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(5deg);
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.4;
}

.cart-button {
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px rgba(240, 219, 79, 0.35);
  position: relative;
  overflow: hidden;
}

.cart-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.cart-button:hover::before {
  left: 100%;
}

.cart-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(240, 219, 79, 0.45);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.8rem 0;
  font-family: var(--main-font);
  text-shadow: 0 2px 6px rgba(240, 219, 79, 0.25);
}

.product-description {
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.highlight-text {
  background: white;
  color: var(--dark-color);
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  margin: 1.2rem 0;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  border: 3px solid var(--accent-color);
  position: relative;
}

.highlight-text::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 14px;
  background: var(--gradient-primary);
  opacity: 0.15;
  z-index: -1;
}

.features-list {
  list-style: none;
  margin: 1.1rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  padding: 0.8rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  font-size: 0.8rem;
  border-left: 4px solid var(--accent-color);
}

.features-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 5px 18px var(--shadow-color);
  border-left-width: 6px;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(240, 219, 79, 0.3);
}

.benefits-section {
  background: white;
  color: var(--text-color);
  padding: 2.5rem 1rem;
  position: relative;
  border-top: 5px solid var(--accent-color);
  border-bottom: 5px solid var(--secondary-color);
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, transparent 48%, var(--light-color) 48%, var(--light-color) 52%, transparent 52%);
  background-size: 100px 100px;
  opacity: 0.3;
  pointer-events: none;
}

.benefits-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-box {
  background: var(--gradient-primary);
  padding: 1.6rem;
  border-radius: 16px;
  display: flex;
  gap: 1.2rem;
  box-shadow: 0 6px 24px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  color: var(--dark-color);
  overflow: hidden;
}

.benefit-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.benefit-box:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 32px var(--shadow-color);
}

.benefit-box-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: var(--dark-color);
  box-shadow: 0 4px 16px rgba(240, 219, 79, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.benefit-box-content h3 {
  font-family: var(--main-font);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
  font-weight: 700;
}

.benefit-box-content p {
  line-height: 1.6;
  font-size: 0.8rem;
}

.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial p {
  line-height: 1.55;
  font-size: 0.8rem;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 1.6rem 1rem;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  padding-bottom: 0.8rem;
}

@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.8rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.75rem;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-credit {
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--accent-color);
  text-decoration: none;
}