/* ============================================================
   NovaBiome - styles.css
   Design: Medical-Premium Hybrid
   Colors: #0D9488 (teal), #064E3B (deep green), #F0FDF4 (mint bg)
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* { -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a2e25;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }

.section-title {
  font-size: clamp(22px, 4vw, 36px);
  color: #064E3B;
  margin-bottom: 12px;
}
.section-title span { color: #0D9488; }
.section-sub {
  font-size: 17px;
  color: #4b7060;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #0D9488, #059669);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.light { background: rgba(255,255,255,0.2); }

.gradient-text {
  background: linear-gradient(135deg, #0D9488, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-hero, .btn-final-cta, .btn-price, .btn-nav-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #0D9488, #059669);
  color: #fff;
  padding: 16px 36px;
  font-size: 17px;
  min-height: 52px;
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}
.btn-hero {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  padding: 18px 40px;
  font-size: 18px;
  min-height: 56px;
  box-shadow: 0 10px 30px rgba(239,68,68,0.35);
  width: 100%;
  max-width: 460px;
}
.btn-final-cta {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  padding: 20px 48px;
  font-size: 19px;
  min-height: 60px;
  box-shadow: 0 12px 32px rgba(239,68,68,0.4);
  width: 100%;
  max-width: 480px;
}
.btn-price {
  display: block;
  background: linear-gradient(135deg, #0D9488, #059669);
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  min-height: 52px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(13,148,136,0.3);
  margin: 16px auto 12px;
  width: 100%;
  text-align: center;
}
.popular-btn {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  box-shadow: 0 6px 20px rgba(239,68,68,0.35);
}
.btn-nav-cta {
  background: linear-gradient(135deg, #0D9488, #059669);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  min-height: 44px;
  box-shadow: 0 4px 14px rgba(13,148,136,0.3);
}

.btn-primary:hover, .btn-hero:hover, .btn-final-cta:hover, .btn-price:hover, .btn-nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 36px rgba(13,148,136,0.4);
}
@media (hover: none) {
  .btn-primary:active, .btn-hero:active, .btn-final-cta:active, .btn-price:active {
    transform: scale(0.98);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #e0f2f1;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #064E3B;
}
.nav-logo span { color: #0D9488; }
.logo-icon { font-size: 26px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #064E3B;
  transition: color 0.2s;
}
.nav-link:hover { color: #0D9488; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #064E3B;
  border-radius: 3px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { max-height: 400px; padding: 16px 0; }
  .nav-link {
    padding: 14px 24px;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #e0f2f1;
  }
  .btn-nav-cta { margin: 16px 24px 8px; width: calc(100% - 48px); text-align: center; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #064E3B 0%, #0D9488 60%, #10B981 100%);
  padding: 120px 20px 80px;
  overflow: hidden;
}
.hero-bg-animated {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(16,185,129,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.hero-image-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bottle {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  position: relative;
  z-index: 2;
}
.hero-badge-float {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(13,148,136,0.3);
  color: #064E3B;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 3;
}
.badge-one { top: 20%; left: -30px; animation: floatBadge 3s ease-in-out infinite; }
.badge-two { bottom: 22%; right: -20px; animation: floatBadge 3s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-content { flex: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #ccfbf1;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-desc { color: #ccfbf1; font-size: 16px; margin-bottom: 14px; line-height: 1.75; }
.hero-stars {
  color: #FCD34D;
  font-size: 15px;
  margin-bottom: 24px;
}
.hero-stars span { color: #ccfbf1; margin-left: 8px; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: #a7f3d0;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* Floating animation */
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
.floating { animation: floating 4s ease-in-out infinite; }

@media (max-width: 767px) {
  .hero { padding: 100px 20px 70px; }
  .hero-container { flex-direction: column; text-align: center; gap: 32px; }
  .hero-image-wrap { width: 240px; }
  .hero-h1 { font-size: 26px; }
  .hero-trust { justify-content: center; }
  .badge-one { left: -10px; font-size: 11px; }
  .badge-two { right: -10px; font-size: 11px; }
}

/* ===== WHY SECTION ===== */
.why-section {
  background: #f0fdf4;
  padding: 80px 20px;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border: 1.5px solid #d1fae5;
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(13,148,136,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 12px 40px rgba(13,148,136,0.18);
}
.why-icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-icon-wrap img { width: 60px; height: 60px; object-fit: contain; }
.why-card h3 { font-size: 15px; color: #064E3B; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: #4b7060; line-height: 1.65; }

@media (max-width: 991px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== WHAT SECTION ===== */
.what-section {
  padding: 80px 20px;
  background: #fff;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.what-image { position: relative; }
.what-image img {
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(13,148,136,0.15);
  width: 100%;
}
.what-image-badge {
  position: absolute;
  bottom: 20px; right: -16px;
  background: linear-gradient(135deg, #0D9488, #059669);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(13,148,136,0.35);
}
.what-content p { font-size: 16px; color: #374151; margin-bottom: 18px; line-height: 1.8; }

@media (max-width: 767px) {
  .what-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-image-badge { right: 10px; font-size: 12px; }
  .what-image { order: -1; }
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  text-align: center;
}
.accordion-list { max-width: 800px; margin: 0 auto; text-align: left; }
.accordion-item {
  border: 1.5px solid #d1fae5;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(13,148,136,0.07);
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #064E3B;
  text-align: left;
  min-height: 60px;
  transition: background 0.2s;
}
.accordion-btn:hover { background: #f0fdf4; }
.acc-icon { font-size: 22px; flex-shrink: 0; }
.acc-arrow {
  margin-left: auto;
  font-size: 12px;
  color: #0D9488;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-item.open .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 16px 22px 22px;
}
.accordion-body p { font-size: 15px; color: #374151; line-height: 1.8; }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 20px;
  background: #f0fdf4;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border: 1.5px solid #d1fae5;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(13,148,136,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(13,148,136,0.15);
}
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0D9488;
  flex-shrink: 0;
}
.review-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #064E3B; }
.review-loc { font-size: 12px; color: #6b7280; margin: 2px 0; }
.review-stars { font-size: 14px; }
.review-text { font-size: 15px; color: #374151; line-height: 1.75; }

@media (max-width: 991px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
  text-align: center;
}
.pricing-section2 { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }

.countdown-wrap {
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #EF4444;
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #064E3B;
  padding: 12px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(6,78,59,0.25);
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.time-block span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.time-block small {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6EE7B7;
  margin-top: 4px;
}
.time-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #F59E0B;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: #fff;
  border: 2px solid #d1fae5;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(13,148,136,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(13,148,136,0.16);
}
.price-card.popular {
  border: 2px solid #0D9488;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(13,148,136,0.2);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(239,68,68,0.35);
}
.price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  color: #0D9488;
  margin-bottom: 4px;
}
.price-qty {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #064E3B;
}
.price-supply { font-size: 13px; color: #6b7280; margin-bottom: 16px; }
.price-img { margin: 0 auto 16px; max-height: 200px; object-fit: contain; }
.price-per {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #064E3B;
}
.price-unit { font-size: 14px; font-weight: 600; color: #6b7280; }
.price-total { font-size: 15px; color: #374151; margin: 6px 0 10px; }
.price-total s { color: #9CA3AF; }
.price-total strong { color: #EF4444; font-size: 18px; }
.price-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin: 8px 0; }
.badge-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.badge-pill.green { background: #d1fae5; color: #065F46; }
.badge-pill.blue { background: #dbeafe; color: #1e40af; }
.price-cards { margin: 0 auto; max-width: 180px; }
.pricing-stars { margin-top: 32px; }
.pricing-stars img { margin: 0 auto; }

@media (max-width: 991px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-8px); }
}
@media (max-width: 575px) {
  .time-block span { font-size: 28px; }
  .time-block { min-width: 50px; }
}

/* ===== BONUS ===== */
.bonus-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #064E3B, #0D9488);
  text-align: center;
}
.bonus-section .section-label { background: rgba(255,255,255,0.2); }
.bonus-section .section-title { color: #fff; }
.bonus-section .section-title span { color: #FCD34D; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.bonus-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.bonus-num {
  display: inline-block;
  background: #FCD34D;
  color: #064E3B;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bonus-card img { margin: 0 auto 18px; max-height: 220px; object-fit: contain; }
.bonus-card h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.bonus-card p { color: #a7f3d0; font-size: 15px; line-height: 1.7; }
.bonus-value { color: #FCD34D; font-family: 'Montserrat', sans-serif; font-weight: 700; margin-top: 14px; font-size: 15px; }
.free-text { color: #4ade80; font-size: 20px; }

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

/* ===== INGREDIENTS ===== */
.ingredients-section {
  padding: 80px 20px;
  background: #f0fdf4;
  text-align: center;
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.ing-card {
  background: #fff;
  border: 1.5px solid #d1fae5;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(13,148,136,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13,148,136,0.14);
}
.ing-icon { font-size: 30px; margin-bottom: 12px; }
.ing-card h3 { font-size: 15px; color: #064E3B; margin-bottom: 10px; }
.ing-card p { font-size: 14px; color: #374151; line-height: 1.7; }

@media (max-width: 991px) {
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .ing-grid { grid-template-columns: 1fr; }
}

/* ===== SCIENCE ===== */
.science-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.science-accordion { max-width: 820px; margin: 0 auto; text-align: left; }

/* ===== GUARANTEE ===== */
.guarantee-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0fdf4, #fff);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-image img {
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(13,148,136,0.14);
}
.guarantee-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: #f0fdf4;
  border-radius: 16px;
  border: 1.5px solid #d1fae5;
}
.g-icon { font-size: 30px; flex-shrink: 0; }
.guarantee-item h3 { font-size: 17px; color: #064E3B; margin-bottom: 8px; }
.guarantee-item p { font-size: 14px; color: #374151; line-height: 1.7; }

@media (max-width: 767px) {
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-image { max-width: 280px; margin: 0 auto; }
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 80px 20px;
  background: #f0fdf4;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #d1fae5;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(13,148,136,0.06);
  transition: transform 0.3s;
}
.benefit-item:hover { transform: translateY(-4px); }
.benefit-check { font-size: 24px; flex-shrink: 0; }
.benefit-item h3 { font-size: 16px; color: #064E3B; margin-bottom: 8px; }
.benefit-item p { font-size: 14px; color: #374151; line-height: 1.7; }

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

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.faq-list { max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 14px; }

/* ===== FINAL CTA ===== */
.final-cta-section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #064E3B 0%, #0D9488 50%, #10B981 100%);
  z-index: 0;
}
.final-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 70%, rgba(16,185,129,0.15) 0%, transparent 50%);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.final-cta-img {
  max-width: 280px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}
.final-cta-content { max-width: 540px; }
.final-cta-title {
  font-size: clamp(24px, 4vw, 38px);
  color: #fff;
  margin-bottom: 20px;
}
.final-cta-prices {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.old-price { color: #6EE7B7; font-size: 16px; }
.old-price s { color: #a7f3d0; }
.new-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #FCD34D;
}
.final-cta-sub { color: #ccfbf1; font-size: 16px; margin-bottom: 28px; line-height: 1.7; }
.final-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #a7f3d0;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* CTA section animations */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(239,68,68,0.4); }
  50% { box-shadow: 0 16px 50px rgba(239,68,68,0.65); }
}
.btn-final-cta { animation: pulseGlow 2s ease-in-out infinite; }

/* ===== FOOTER ===== */
.footer {
  background: #022c22;
  padding: 60px 20px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #6EE7B7;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; color: #6b9e8a; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.social-link {
  font-size: 22px;
  transition: transform 0.2s;
  display: inline-block;
}
.social-link:hover { transform: scale(1.2); }
.footer-links-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #6EE7B7;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links-col a, .footer-legal-links a {
  display: block;
  color: #6b9e8a;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links-col a:hover, .footer-legal-links a:hover { color: #6EE7B7; }
.footer-disclaimer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #F59E0B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-disclaimer-text { font-size: 12px; color: #6b9e8a; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(107,158,138,0.2);
  padding-top: 24px;
  text-align: center;
  color: #6b9e8a;
  font-size: 13px;
}
.footer-bottom a { color: #6EE7B7; }

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
}

/* ===== NOTIFICATIONS POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 20px;
  background: #fff;
  border: 1.5px solid #d1fae5;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  z-index: 2000;
  max-width: 300px;
  transform: translateX(-400px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.notif-popup.show { transform: translateX(0); }
.notif-avatar { font-size: 28px; flex-shrink: 0; }
.notif-text { font-size: 13px; color: #374151; line-height: 1.5; flex: 1; }
.notif-text strong { color: #064E3B; display: block; }
.notif-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #9CA3AF;
  min-width: 28px;
  min-height: 28px;
  padding: 2px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .notif-popup {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
}

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #6b7280;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup-close:hover { background: #f3f4f6; }
.exit-popup-icon { font-size: 48px; margin-bottom: 12px; }
.exit-popup h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: #064E3B;
  margin-bottom: 12px;
}
.exit-popup p { font-size: 15px; color: #374151; margin-bottom: 20px; line-height: 1.6; }
.exit-popup-sub { font-size: 13px; color: #6b7280; margin-top: 12px; }

@media (max-width: 575px) {
  .exit-popup { padding: 30px 20px; }
  .exit-popup h3 { font-size: 18px; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0D9488, #059669);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(13,148,136,0.35);
  z-index: 1500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(13,148,136,0.45); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-card, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-card.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays for grids */
.reveal-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-card:nth-child(3) { transition-delay: 0.2s; }
.reveal-card:nth-child(4) { transition-delay: 0.3s; }
.reveal-card:nth-child(5) { transition-delay: 0.15s; }
.reveal-card:nth-child(6) { transition-delay: 0.25s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, .floating, .btn-final-cta { animation: none !important; transition: none !important; }
}
