:root {
  --primary-color: #5E1675;
  --secondary-color: #59057B;
  --accent-color: #AB0E86;
  --light-color: #FFCEE4;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #AB0E86 0%, #5E1675 100%);
  --hover-color: #E01171;
  --background-color: #FFF9FD;
  --text-color: #2C3D4F;
  --border-color: rgba(171, 14, 134, 0.2);
  --divider-color: rgba(94, 22, 117, 0.1);
  --shadow-color: rgba(89, 5, 123, 0.15);
  --highlight-color: #5CB338;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', 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.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='25' cy='25' r='2' fill='%23AB0E86' opacity='0.08'/%3E%3Ccircle cx='75' cy='75' r='2' fill='%235E1675' opacity='0.06'/%3E%3Cpath d='M50 10 L60 30 L40 30 Z' fill='%2359057B' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23pattern)'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-color);
}

.header {
  background: var(--gradient-primary);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  fill: white;
}

.logo-text {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  font-family: var(--main-font);
  letter-spacing: 1px;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-wrapper {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px var(--shadow-color);
  text-align: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(94, 22, 117, 0.05), rgba(171, 14, 134, 0.05));
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(171, 14, 134, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guarantee-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(171, 14, 134, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #E01171 0%, #AB0E86 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 17, 113, 0.4);
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(94, 22, 117, 0.08);
}

.content-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.content-text {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
  font-family: var(--main-font);
}

.highlight-box {
  background: linear-gradient(135deg, #5CB338 0%, #27AE60 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(92, 179, 56, 0.3);
  margin: 1.5rem 0;
}

.features-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(94, 22, 117, 0.03);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-text {
  flex: 1;
}

.feature-heading {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.testimonials-section {
  background: linear-gradient(135deg, rgba(94, 22, 117, 0.08), rgba(171, 14, 134, 0.05));
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(94, 22, 117, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--main-font);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-color);
  opacity: 0.7;
}

.testimonial-text {
  line-height: 1.7;
  font-style: italic;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.star {
  color: #FFD700;
  font-size: 1.125rem;
}

footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  fill: white;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: var(--main-font);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header::before,
  .header::after {
    display: none;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .content-title {
    font-size: 1.5rem;
  }

  .price-tag {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}