:root {
  --primary-color: #27AE60;
  --secondary-color: #1E8449;
  --accent-color: #52BE80;
  --light-color: #E8F8F5;
  --dark-color: #145A32;
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  --hover-color: #1E7E45;
  --background-color: #F4FBF8;
  --text-color: #34495E;
  --border-color: rgba(82, 190, 128, 0.28);
  --divider-color: rgba(30, 132, 73, 0.1);
  --shadow-color: rgba(30, 132, 73, 0.12);
  --highlight-color: #E67E22;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.025;
  pointer-events: none;
}

header {
  background: var(--gradient-primary);
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 132, 73, 0.15);
}

.header-decoration {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: white;
  font-family: var(--main-font);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  fill: white;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .product-section {
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-image-wrapper {
  background: white;
  border: 3px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 6px 16px var(--shadow-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--light-color) 0%, transparent 70%);
  opacity: 0.4;
}

.product-image-wrapper picture {
  display: block;
  position: relative;
  z-index: 1;
}

.product-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.guarantee-box {
  background: white;
  border: 2px solid var(--accent-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 14px var(--shadow-color);
  position: relative;
}

.guarantee-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 16px 0 0 16px;
}

.guarantee-box h3 {
  font-family: var(--main-font);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary-color);
}

.guarantee-box p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-color);
}

.price-display {
  font-family: var(--main-font);
  font-size: 2.75rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 1.25rem 0;
  text-align: center;
  letter-spacing: -1px;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1.125rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 18px rgba(39, 174, 96, 0.35);
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #1E7E45 0%, #145A32 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.45);
}

.product-right {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.content-box {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.content-box h2 {
  font-family: var(--main-font);
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.content-box p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.highlight-box {
  background: var(--highlight-color);
  border-radius: 16px;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
  border: 3px solid #D35400;
}

.highlight-box p {
  font-family: var(--main-font);
  font-size: 1.625rem;
  color: white;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--light-color);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.features-list li:hover {
  background: white;
  box-shadow: 0 4px 12px var(--shadow-color);
  transform: translateX(8px);
}

.feature-icon {
  width: 28px;
  height: 28px;
  fill: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-content h4 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.feature-content p {
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

.testimonials-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  padding: 3.5rem 0;
  margin-top: 2.5rem;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.testimonial-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-color);
}

.testimonial-author h4 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.testimonial-rating {
  color: var(--highlight-color);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-color);
  font-style: italic;
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: white;
  font-family: var(--main-font);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  fill: white;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .footer-nav ul {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: white;
}