/* ===========================
   NANO EASE - styles.css
   Design: Premium Medical Teal
   =========================== */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* --- VARIABLES --- */
:root {
  --primary: #0F7E6B;
  --primary-dark: #0A5E4F;
  --primary-light: #1AAD92;
  --accent: #F4A030;
  --accent-dark: #D4871C;
  --bg: #F8FFFE;
  --bg-alt: #EFF9F7;
  --text: #1A2E2A;
  --text-muted: #5A7570;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #D0EDE8;
  --shadow: 0 8px 32px rgba(15, 126, 107, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 126, 107, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --gradient: linear-gradient(135deg, #0F7E6B 0%, #1AAD92 50%, #06D6A0 100%);
  --gradient-accent: linear-gradient(135deg, #F4A030 0%, #E85D04 100%);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* --- RESET --- */
*, *::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: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-head); border: none; background: none; }
input, select, textarea { font-size: 16px; font-family: var(--font-body); }

/* --- UTILITY --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--bg-alt); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title { font-family: var(--font-head); font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: var(--text); text-align: center; line-height: 1.2; margin-bottom: 16px; }
.section-title.left-align { text-align: left; }
.section-sub { font-size: clamp(16px, 2vw, 18px); color: var(--text-muted); text-align: center; max-width: 650px; margin: 0 auto 50px; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: var(--white); font-family: var(--font-head); font-weight: 700;
  font-size: 16px; padding: 14px 32px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(15,126,107,0.35);
  min-height: 48px; white-space: nowrap;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(15,126,107,0.45); }
.btn-primary:active { transform: scale(0.98); }

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-accent);
  color: var(--white); font-family: var(--font-head); font-weight: 800;
  font-size: clamp(16px, 2.5vw, 20px); padding: 18px 40px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(244,160,48,0.45);
  min-height: 56px; margin-top: 24px; width: 100%; max-width: 420px;
  justify-content: center; animation: pulse-btn 2.5s infinite;
}
.btn-hero:hover { transform: scale(1.05); box-shadow: 0 10px 40px rgba(244,160,48,0.55); }
.btn-hero:active { transform: scale(0.98); }

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 30px rgba(244,160,48,0.45); }
  50% { box-shadow: 0 6px 50px rgba(244,160,48,0.7), 0 0 0 8px rgba(244,160,48,0.1); }
}

.btn-price {
  display: block; width: 100%;
  background: var(--gradient); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 14px 20px; border-radius: 50px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(15,126,107,0.35);
  min-height: 48px; margin: 16px 0 12px;
}
.btn-price:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(15,126,107,0.45); }
.btn-price:active { transform: scale(0.98); }

.btn-final {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-accent);
  color: var(--white); font-family: var(--font-head); font-weight: 800;
  font-size: clamp(16px, 2vw, 18px); padding: 18px 40px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(244,160,48,0.45);
  min-height: 56px; animation: pulse-btn 2.5s infinite;
  width: 100%; max-width: 500px; justify-content: center; margin-top: 20px;
}
.btn-final:hover { transform: scale(1.05); }
.btn-final:active { transform: scale(0.98); }

/* ========== NAV ========== */
.nav-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-header.scrolled { box-shadow: 0 4px 20px rgba(15,126,107,0.15); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--primary);
}
.nav-brand strong { color: var(--accent); }
.nav-logo { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { font-size: 14px; padding: 10px 24px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 0; overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-menu.open { max-height: 400px; padding: 16px 20px 20px; }
.mob-link { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border); display: block; }
.mob-link:last-of-type { border-bottom: none; }
.mob-cta { margin-top: 16px; text-align: center; }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ========== HERO ========== */
.hero-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E8F8F4 0%, #F0FBFF 50%, #E8F4F8 100%);
  padding: 60px 0;
  min-height: 85vh; display: flex; align-items: center;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; position: relative; z-index: 1;
}
.hero-image-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,173,146,0.25) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-product-img {
  position: relative; z-index: 1; max-width: 380px; width: 100%;
  animation: hero-float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(15,126,107,0.25));
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.hero-badge-float {
  position: absolute; top: 10%; right: 0;
  background: var(--gradient-accent); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 50px;
  box-shadow: 0 4px 15px rgba(244,160,48,0.4);
  animation: badge-bounce 2s ease-in-out infinite;
}
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-tag {
  display: inline-block;
  background: rgba(15,126,107,0.12); color: var(--primary);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid rgba(15,126,107,0.2);
}
.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(26px, 4vw, 50px);
  font-weight: 900; color: var(--text); line-height: 1.15; margin-bottom: 20px;
}
.hero-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.hero-trust {
  display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap;
}
.hero-trust span { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--primary); }

@media (max-width: 767px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-section { padding: 40px 0; min-height: auto; }
  .hero-image-wrap { order: -1; }
  .hero-product-img { max-width: 260px; }
  .hero-glow { width: 220px; height: 220px; }
  .hero-trust { gap: 12px; }
  .hero-trust span { font-size: 12px; }
  .btn-hero { max-width: 100%; }
}

/* ========== WHY SECTION ========== */
.why-section { background: var(--white); }
.badges-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 50px;
}
.badge-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 22px;
  text-align: center; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}
.badge-card:hover { transform: scale(1.05) rotate(1deg); box-shadow: var(--shadow-lg); }
.badge-icon-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.badge-icon-wrap img { width: 70px; height: 70px; object-fit: contain; border-radius: 12px; }
.badge-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.badge-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

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

/* ========== WHAT IS ========== */
.what-section { background: var(--bg-alt); }
.what-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.what-img-wrap {
  position: relative; display: flex; justify-content: center;
}
.what-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 100%; }
.what-badge-pill {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 8px 24px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(15,126,107,0.35); white-space: nowrap;
}
.what-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.what-content .btn-primary { margin-top: 24px; }

@media (max-width: 767px) {
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .what-image { order: -1; }
  .section-title.left-align { text-align: center; }
  .what-badge-pill { bottom: -12px; font-size: 12px; }
}

/* ========== HOW IT WORKS ========== */
.works-section { background: var(--white); }
.accordion-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.accordion-item.active .accordion-btn { background: linear-gradient(135deg, rgba(15,126,107,0.08), rgba(26,173,146,0.05)); }
.accordion-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 22px; font-family: var(--font-head);
  font-weight: 700; font-size: 15px; color: var(--text);
  background: none; text-align: left; min-height: 44px; gap: 12px;
  transition: background 0.2s;
}
.accordion-btn:hover { background: rgba(15,126,107,0.05); }
.acc-icon { font-size: 22px; font-weight: 400; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}
.accordion-item.active .accordion-body { max-height: 500px; padding: 0 22px 18px; }
.accordion-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ========== REVIEWS ========== */
.reviews-section { background: var(--bg-alt); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 50px;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 24px;
  box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reviewer-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.reviewer-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.reviewer-top strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.reviewer-top span { font-size: 13px; color: var(--text-muted); }
.stars { color: #F4A030; font-size: 16px; margin-top: 4px; }
.review-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (min-width: 576px) and (max-width: 767px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== PRICING ========== */
.pricing-section { background: var(--white); }
.countdown-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.countdown-label { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text); }
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.time-block {
  background: var(--gradient); color: var(--white);
  border-radius: 12px; padding: 12px 20px; text-align: center;
  min-width: 70px;
}
.time-block span { display: block; font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 5vw, 40px); line-height: 1; }
.time-block small { font-family: var(--font-head); font-size: 11px; font-weight: 600; opacity: 0.85; margin-top: 4px; display: block; }
.time-sep { font-family: var(--font-head); font-weight: 900; font-size: 32px; color: var(--primary); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 20px; align-items: start;
}
.price-card {
  background: var(--card-bg); border-radius: var(--radius-lg);
  border: 2px solid var(--border); padding: 28px 22px;
  text-align: center; position: relative; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--primary); background: linear-gradient(135deg, #F0FBF8 0%, #E8F9F4 100%);
  transform: scale(1.03);
  box-shadow: 0 12px 50px rgba(15,126,107,0.2);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.popular-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 6px 20px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(15,126,107,0.35);
}
.price-label { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--text-muted); letter-spacing: 1.5px; margin-bottom: 6px; }
.price-bottles { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--text); }
.price-supply { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.price-img { width: 140px; height: 170px; object-fit: contain; margin: 0 auto 16px; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 4px; }
.old-price { font-family: var(--font-head); font-size: 20px; color: #999; text-decoration: line-through; }
.new-price { font-family: var(--font-head); font-weight: 900; font-size: 36px; color: var(--primary); }
.price-per { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.price-badge {
  display: inline-block; background: rgba(244,160,48,0.15); color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  padding: 5px 14px; border-radius: 50px; margin: 4px 0; border: 1px solid rgba(244,160,48,0.3);
}
.price-badge.green { background: rgba(15,126,107,0.1); color: var(--primary); border-color: rgba(15,126,107,0.2); }
.payment-icons { width: 160px; margin: 0 auto; object-fit: contain; }
.five-star-wrap { text-align: center; margin-top: 40px; }
.five-star-wrap img { margin: 0 auto 8px; }
.five-star-wrap p { font-size: 15px; color: var(--text-muted); }

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-6px); }
}
@media (min-width: 576px) and (max-width: 767px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== BONUS ========== */
.bonus-section {
  background: linear-gradient(135deg, #0A5E4F 0%, #0F7E6B 50%, #1AAD92 100%);
  color: var(--white);
}
.bonus-section .section-title { color: var(--white); }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 50px; }
.bonus-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center; transition: transform 0.3s;
}
.bonus-card:hover { transform: translateY(-6px); }
.bonus-card img { width: 180px; height: 220px; object-fit: cover; margin: 0 auto 20px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.bonus-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 12px; color: var(--white); }
.bonus-card p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.bonus-value { margin-top: 14px; font-family: var(--font-head); font-size: 16px; color: var(--accent); }
.bonus-value del { color: rgba(255,255,255,0.5); margin-right: 6px; }

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

/* ========== INGREDIENTS ========== */
.ingredients-section { background: var(--white); }
.ing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 50px;
}
.ing-card {
  background: var(--bg-alt); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ing-num { font-family: var(--font-head); font-weight: 900; font-size: 40px; color: rgba(15,126,107,0.12); margin-bottom: 6px; line-height: 1; }
.ing-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.ing-card p { font-size: 14px; color: var(--text-muted); 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 { background: var(--bg-alt); }
.science-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

/* ========== GUARANTEE ========== */
.guarantee-section { background: var(--white); }
.guarantee-inner { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.guarantee-image img { width: 260px; height: 260px; object-fit: contain; }
.guarantee-points { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.g-point { display: flex; gap: 16px; align-items: flex-start; }
.g-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, rgba(15,126,107,0.12), rgba(26,173,146,0.08)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.g-point strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 4px; }
.g-point p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.guarantee-content p { font-size: 16px; color: var(--text-muted); margin-bottom: 8px; }

@media (max-width: 767px) {
  .guarantee-inner { grid-template-columns: 1fr; gap: 30px; }
  .guarantee-image { display: flex; justify-content: center; }
  .section-title.left-align { text-align: center; }
  .guarantee-content p { text-align: center; }
}

/* ========== BENEFITS ========== */
.benefits-section { background: var(--bg-alt); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 50px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 28px; flex-shrink: 0; }
.benefit-item strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

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

/* ========== FINAL CTA ========== */
.finalcta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0A5E4F 0%, #0F7E6B 60%, #1AAD92 100%);
  padding: 80px 0;
}
.finalcta-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.finalcta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.finalcta-img { width: 280px; max-width: 100%; animation: hero-float 4s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)); }
.finalcta-tag {
  display: inline-block; background: var(--accent); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.finalcta-content h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(24px, 3.5vw, 38px); color: var(--white); line-height: 1.25; margin-bottom: 20px; }
.finalcta-price { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.finalcta-old { font-family: var(--font-head); font-size: 16px; color: rgba(255,255,255,0.7); }
.finalcta-new { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 4vw, 42px); color: var(--accent); }
.finalcta-content p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.finalcta-trust { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.finalcta-trust span { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.9); }

@media (max-width: 767px) {
  .finalcta-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .finalcta-img { width: 200px; margin: 0 auto; }
  .finalcta-trust { justify-content: center; }
  .btn-final { max-width: 100%; }
}

/* ========== FOOTER ========== */
.site-footer { background: #0A1F1B; color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 12px; }
.brand-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); }
.brand-name strong { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.footer-links-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 14px; margin-bottom: 28px; }
.social-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--primary); color: var(--white); }
.footer-legal-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.legal-link { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.legal-link:hover { color: var(--primary-light); }
.link-separator { color: rgba(255,255,255,0.3); }
.footer-disclaimer { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.footer-disclaimer p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-copy { text-align: center; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-copy a { color: var(--primary-light); }

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-social { justify-content: center; }
  .footer-legal-links { justify-content: center; }
}

/* ========== POPUP ========== */
.popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,31,27,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.visible { display: flex; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; max-width: 460px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: popup-in 0.4s ease;
}
@keyframes popup-in {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.popup-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 20px; color: var(--text-muted);
  transition: color 0.2s; min-width: 32px; min-height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { color: var(--text); }
.popup-badge {
  display: inline-block; background: var(--gradient-accent); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.popup-title { font-family: var(--font-head); font-weight: 900; font-size: 26px; color: var(--text); margin-bottom: 12px; }
.popup-text { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.popup-cta {
  display: block; background: var(--gradient-accent); color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  padding: 16px 24px; border-radius: 50px; min-height: 54px;
  animation: pulse-btn 2.5s infinite;
  display: flex; align-items: center; justify-content: center;
}
.popup-skip { margin-top: 14px; font-size: 13px; color: var(--text-muted); }
.popup-skip a { color: var(--primary); font-weight: 600; text-decoration: underline; }

@media (max-width: 480px) {
  .popup-box { padding: 28px 20px; }
  .popup-title { font-size: 20px; }
}

/* ========== PURCHASE NOTIF ========== */
.purchase-notif {
  position: fixed; bottom: 80px; left: 16px; z-index: 8000;
  background: var(--white); border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  padding: 14px 18px; font-size: 14px; color: var(--text);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  max-width: 280px;
  transform: translateX(-120%); transition: transform 0.4s ease;
}
.purchase-notif.show { transform: translateX(0); }
.purchase-notif strong { display: block; font-family: var(--font-head); font-weight: 700; margin-bottom: 2px; }

/* ========== SCROLL TOP ========== */
.scroll-top-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 8000;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(15,126,107,0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s;
  min-width: 50px; min-height: 50px;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { transform: scale(1.1); }
.scroll-top-btn:active { transform: scale(0.95); }

/* ========== ANIMATIONS ========== */
[data-animate] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fadeUp"] { transform: translateY(30px); }
[data-animate="fadeLeft"] { transform: translateX(-30px); }
[data-animate="fadeRight"] { transform: translateX(30px); }
[data-animate="slideUp"] { transform: translateY(40px); }
[data-animate].animated { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-animate] { opacity: 1; transform: none; }
}

/* ========== PARTICLES ========== */
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,173,146,0.2) 0%, transparent 70%);
  animation: float-particle linear infinite;
  pointer-events: none;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
