:root {
  --primary-color: #2D5C7F;
  --secondary-color: #B3D0D9;
  --accent-color: #1A3E57;
  --light-color: #EEF5F8;
  --dark-color: #1A2E3B;
  --gradient-primary: linear-gradient(135deg, #2D5C7F 0%, #3A7099 100%);
  --hover-color: #245070;
  --background-color: #F4F8FA;
  --text-color: #2C3E50;
  --border-color: rgba(45, 92, 127, 0.18);
  --divider-color: rgba(45, 92, 127, 0.08);
  --shadow-color: rgba(26, 46, 59, 0.1);
  --highlight-color: #5A9F77;
  --main-font: 'Montserrat', 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);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Pattern background - hexagonal dots */
.pattern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--background-color);
  background-image:
    radial-gradient(circle at 15% 25%, rgba(45, 92, 127, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(90, 159, 119, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(179, 208, 217, 0.04) 0%, transparent 60%);
}

.pattern-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(45, 92, 127, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  display: none;
  gap: 10px;
}

.header-deco span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.header-deco span:nth-child(2) {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: rgba(255,255,255,0.08);
}

.header-deco span:nth-child(3) {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .header-deco {
    display: flex;
    align-items: flex-end;
  }
}

.container {
  max-width: 1080px;
  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.5rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 1.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 10px var(--shadow-color);
  overflow: hidden;
}

.product-image-container picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-image {
  width: 60%;
  height: auto;
  padding: 20px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: white;
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.guarantee-block p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-color);
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.85rem 0.6rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.feature-item .feature-icon {
  width: 38px;
  height: 38px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--secondary-color);
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--highlight-color);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px rgba(90, 159, 119, 0.3);
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.cart-button:hover {
  background: #4a8f67;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(90, 159, 119, 0.35);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.3px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.87rem;
  margin-bottom: 1.1rem;
  line-height: 1.75;
  color: var(--text-color);
}

.product-description p + p {
  margin-top: 0.7rem;
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  margin: 1.1rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-family: var(--main-font);
  letter-spacing: 0.4px;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  padding: 0.8rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 7px var(--shadow-color);
  transition: all 0.3s ease;
}

.features-list li:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.feature-check {
  width: 20px;
  height: 20px;
  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.65rem;
  margin-top: 1px;
}

.features-list li span:last-child {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Mid section - full width */
.benefits-section {
  background: var(--dark-color);
  padding: 2.5rem 1.5rem;
}

.benefits-content {
  max-width: 1080px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
  color: white;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  padding: 1.3rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(179, 208, 217, 0.18);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 92, 127, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 0.8rem;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.benefit-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

/* Testimonials */
.testimonials {
  background: var(--light-color);
  padding: 2.5rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.3rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}

.testimonial p {
  line-height: 1.7;
  font-size: 0.84rem;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem 1.5rem;
}

.footer-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  padding-bottom: 1.1rem;
}

@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.65);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-nav a:hover {
  color: white;
}

.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.76rem;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-logo {
  color: white;
}