:root {
  --primary-color: #D35400;
  --secondary-color: #EE7738;
  --accent-color: #F59D2A;
  --light-color: #FFF5E6;
  --dark-color: #2C3D4F;
  --gradient-primary: linear-gradient(135deg, #F59D2A 0%, #D35400 100%);
  --hover-color: #C0392B;
  --background-color: #FFFBF5;
  --text-color: #34495D;
  --border-color: rgba(245, 157, 42, 0.25);
  --divider-color: rgba(211, 84, 0, 0.12);
  --shadow-color: rgba(238, 119, 56, 0.18);
  --highlight-color: #27AE60;
  --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.7;
  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='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Crect x='20' y='20' width='15' height='15' fill='%23F59D2A' opacity='0.04' rx='3'/%3E%3Crect x='85' y='85' width='15' height='15' fill='%23D35400' opacity='0.05' rx='3'/%3E%3Ccircle cx='60' cy='20' r='3' fill='%23EE7738' opacity='0.06'/%3E%3Ccircle cx='20' cy='90' r='3' fill='%23F59D2A' opacity='0.04'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' 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.3;
  color: var(--dark-color);
}

.header {
  background: var(--gradient-primary);
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.2);
}

.header::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 40% 60% 70% 30%;
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo-icon {
  width: 52px;
  height: 52px;
  fill: white;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  font-family: var(--main-font);
  letter-spacing: 2px;
  text-transform: uppercase;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 1rem;
}

.product-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.product-image-wrapper {
  background: white;
  border: 3px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  text-align: center;
  position: relative;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(245, 157, 42, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(211, 84, 0, 0.08), rgba(238, 119, 56, 0.06));
  border: 3px solid var(--secondary-color);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.guarantee-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 157, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-title {
  font-size: 1.35rem;
  margin-bottom: 0.875rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
}

.guarantee-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.cta-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1.125rem 3rem;
  border-radius: 60px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 24px rgba(211, 84, 0, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-button:hover {
  background: linear-gradient(135deg, #C0392B 0%, #D35400 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-box {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.1);
}

.content-title {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.content-text {
  margin-bottom: 1.125rem;
  line-height: 1.85;
  font-size: 1.0625rem;
}

.price-tag {
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.25rem 0;
  font-family: var(--main-font);
}

.highlight-box {
  background: linear-gradient(135deg, #27AE60 0%, #16A085 100%);
  color: white;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
  margin: 1.75rem 0;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(211, 84, 0, 0.04);
  border-radius: 12px;
  border-left: 5px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(211, 84, 0, 0.07);
  transform: translateX(5px);
}

.feature-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.625rem;
  font-weight: 700;
  font-family: var(--main-font);
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.feature-text {
  flex: 1;
}

.feature-heading {
  font-size: 1.1875rem;
  margin-bottom: 0.375rem;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonials-section {
  background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(238, 119, 56, 0.06));
  padding: 3.5rem 1rem;
  margin-top: 3rem;
  border-top: 4px solid var(--border-color);
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 6px 18px rgba(211, 84, 0, 0.12);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(211, 84, 0, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-bottom: 1.125rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.375rem;
  font-weight: 700;
  font-family: var(--main-font);
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.3rem;
  font-size: 1.0625rem;
}

.testimonial-location {
  font-size: 0.9375rem;
  color: var(--text-color);
  opacity: 0.75;
}

.testimonial-text {
  line-height: 1.8;
  font-style: italic;
  font-size: 1rem;
}

.rating {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.875rem;
}

.star {
  color: #FFD700;
  font-size: 1.25rem;
}

footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.25rem 1rem;
  border-top: 4px solid var(--primary-color);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.25rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  fill: white;
}

.footer-logo-text {
  font-size: 1.625rem;
  font-weight: 700;
  color: white;
  font-family: var(--main-font);
  letter-spacing: 2px;
}

.footer-nav {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.9375rem;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.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.625rem;
  }

  .price-tag {
    font-size: 2.25rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}