/* Main Styles */
:root {
  --primary-color: #ff6b00;
  --secondary-color: #005792;
  --accent-color: #ffb100;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e05a00;
  border-color: #e05a00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #005792, #00b2ca);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://via.placeholder.com/1920x1080.png?text=Background+Pattern")
    repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-image {
  text-align: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.03);
}

.disclaimer-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Connection Section */
.connection-section {
  background-color: white;
}

.connection-content {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Solution Section */
.solution-content {
  padding-left: 20px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.benefits-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.benefits-list i {
  margin-right: 10px;
}

/* How It Works Section */
.process-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--primary-color);
}

/* Review Section */
.review-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

/* Credentials Section */
.certifications-row {
  margin: 40px 0;
}

.certification-badge {
  text-align: center;
  width: 120px;
  margin: 0 15px;
}

.certification-badge p {
  margin-top: 10px;
  font-weight: 600;
}

.cert-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-icon-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cert-check {
  position: absolute;
  bottom: -5px;
  right: -5px;
  color: #28a745;
  font-size: 1.5rem;
  background-color: white;
  border-radius: 50%;
}

/* Pricing Section */
.pricing-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card.best-value {
  border: 3px solid var(--accent-color);
}

.popular-tag,
.value-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 20px;
}

.value-tag {
  background-color: var(--accent-color);
}

.regular-price {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #777;
}

.sale-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.per-unit {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

.small-text {
  font-size: 0.85rem;
  color: #666;
}

.availability-note {
  font-size: 1rem;
  color: #555;
  margin-top: 30px;
}

/* Guarantee Section */
.guarantee-content {
  padding-left: 20px;
}

.guarantee-statement {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 20px;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #343a40, #23272b);
}

/* Footer */
.footer a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.disclaimer {
  color: #6c757d;
  line-height: 1.5;
}

.affiliate-disclosure {
  color: #6c757d;
  line-height: 1.5;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-content,
  .solution-content,
  .guarantee-content {
    padding: 0;
    margin-bottom: 30px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .process-card {
    margin-bottom: 30px;
  }
}

/* Button Animation - More Subtle */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary {
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  animation: none;
}
