/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #0d7a8a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

.btn-primary {
  background-color: #f4c430;
  color: #0d7a8a;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background-color: #0d7a8a;
  padding: 20px;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px;
  text-align: center;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, #b8e6f0 0%, #d4f1f9 100%);
  padding: 12px 0;
  text-align: center;
}

.announcement-bar p {
  color: #0d7a8a;
  font-weight: 600;
  font-size: 16px;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #f0f9fb 0%, #ffffff 100%);
  padding: 60px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.save-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0d7a8a 0%, #0a5f6d 100%);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13, 122, 138, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.save-text {
  font-size: 14px;
  font-weight: 600;
}

.save-amount {
  font-size: 24px;
  font-weight: 700;
}

.hero-text h1 {
  font-size: 36px;
  color: #0d7a8a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.regular-price {
  font-size: 16px;
  margin: 20px 0;
  color: #333;
}

.strike {
  text-decoration: line-through;
  color: #999;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f4c430 0%, #e6b520 100%);
  color: #0d7a8a;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.5);
}

/* Trust Badges */
.trust-badges {
  background-color: white;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #0d7a8a;
  margin-bottom: 50px;
  font-weight: 700;
}

.section-title-white {
  text-align: center;
  font-size: 32px;
  color: white;
  margin-bottom: 50px;
  font-weight: 700;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.badge-item {
  text-align: center;
}

.badge-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.badge-item h3 {
  color: #0d7a8a;
  font-size: 18px;
  margin-bottom: 10px;
}

.badge-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* What is iGenics */
.what-is {
  background: linear-gradient(135deg, #0d7a8a 0%, #0a5f6d 100%);
  padding: 60px 0;
}

.what-is-content {

  gap: 60px;
  align-items: start;
}

.what-is-image {
  position: relative;
  text-align: center;
}

.what-is-image img {
  max-width: 100%;
  height: auto;
}

.what-is-text {
  color: white;
}

.what-is-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* How It Works */
.how-it-works {
  background: linear-gradient(135deg, #0a5f6d 0%, #084d59 100%);
  padding: 60px 0;
}

.how-it-works-content {
  color: white;
}

.how-it-works-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* Reviews */
.reviews {
  background: linear-gradient(180deg, #f0f9fb 0%, #ffffff 100%);
  padding: 60px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h4 {
  color: #0d7a8a;
  font-size: 18px;
  margin-bottom: 5px;
}

.verified {
  color: #4caf50;
  font-size: 12px;
  font-weight: 600;
}

.review-stars {
  color: #f4c430;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

/* Pricing */
.pricing {
  background: white;
  padding: 60px 0;
}

.pricing-subtitle {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #0d7a8a;
  position: relative;
  transform: scale(1.05);
}

.best-value-badge {
  background: linear-gradient(135deg, #f4c430 0%, #e6b520 100%);
  color: #0d7a8a;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 14px;
}

.pricing-header {
  background: linear-gradient(135deg, #b0b0b0 0%, #909090 100%);
  color: white;
  text-align: center;
  padding: 20px;
}

.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, #0d7a8a 0%, #0a5f6d 100%);
}

.pricing-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.pricing-body {
  padding: 30px 20px;
  text-align: center;
}

.bottle-image img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.supply-duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
}

.price-info {
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  color: #0d7a8a;
  font-weight: 700;
}

.per-bottle {
  display: block;
  font-size: 14px;
  color: #666;
}

.total-price {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.shipping {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.shipping.free {
  color: #4caf50;
  font-weight: 600;
}

.savings {
  color: #e74c3c;
  font-weight: 700;
  font-size: 16px;
}

.btn-pricing {
  display: block;
  background: linear-gradient(135deg, #0d7a8a 0%, #0a5f6d 100%);
  color: white;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: opacity 0.3s;
}

.btn-pricing:hover {
  opacity: 0.9;
}

/* Guarantee */
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(135deg, #f0f9fb 0%, #e6f5f8 100%);
  padding: 40px;
  border-radius: 12px;
}

.guarantee img {
  width: 150px;
  height: auto;
}

.guarantee-text h3 {
  color: #0d7a8a;
  font-size: 24px;
  margin-bottom: 10px;
}

.guarantee-text p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #0d7a8a;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .what-is-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .guarantee {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .section-title,
  .section-title-white {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .badges-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.what-is-image {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.what-is-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}