/* ============================================
   VisiFlora™ — Main Stylesheet
   Vision & Eye Wellness Support
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1B6B4A;
  --primary-dark: #14503A;
  --primary-light: #E8F5EE;
  --accent: #D4A740;
  --accent-light: #FFF8E7;
  --text-dark: #1A2332;
  --text-body: #3D4A5C;
  --text-muted: #6B7A8D;
  --bg-white: #FFFFFF;
  --bg-cream: #FAFAF5;
  --bg-light: #F4F7F5;
  --bg-dark: #0F2B1D;
  --border-light: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 52px; }
h2 { font-size: 42px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }

p {
  font-size: 20px;
  line-height: 1.85;
  color: #1A1A1A;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: #333333;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27,107,74,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,107,74,0.4);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212,167,64,0.3);
}

.btn-accent:hover {
  background: #c19a38;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

.header-cta {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #E8F5EE 0%, #F0F7F4 40%, #FFF8E7 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,107,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,167,64,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,107,74,0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 54px;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212,167,64,0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 21px;
  color: #2D2D2D;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-features {
  list-style: none;
  margin-bottom: 36px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.hero-features li .check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-features li .check-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* --- Marquee / Trust Bar --- */
.trust-bar {
  background: var(--bg-dark);
  padding: 16px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* --- What Is VisiFlora Section --- */
.what-is {
  background: var(--bg-white);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-is-image {
  position: relative;
}

.what-is-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.what-is-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.what-is-content h2 {
  margin-bottom: 24px;
}

.what-is-content p {
  margin-bottom: 16px;
}

.what-is-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.highlight-card h5 {
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.highlight-card p {
  font-size: 16px;
  margin: 0;
  color: #333333;
}

/* --- How It Works Section --- */
.how-works {
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-light);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h4 {
  margin-bottom: 12px;
  font-size: 22px;
}

.step-card p {
  font-size: 17px;
  color: #333333;
}

/* --- Ingredients Section --- */
.ingredients-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.ingredients-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27,107,74,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.ingredients-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.ingredients-hero-img img {
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.1));
}

.ingredient-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ingredient-group {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

.ingredient-group-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.ingredient-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.ingredient-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ingredient-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.ingredient-info h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ingredient-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}

/* --- Benefits Section --- */
.benefits {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #153D2A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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.03'%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");
}

.benefits .section-label {
  background: rgba(212,167,64,0.2);
  color: var(--accent);
}

.benefits .section-title {
  color: #fff;
}

.benefits .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(212,167,64,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.benefit-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
}

.benefit-card p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 20px;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-verified {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* --- Bonus Section --- */
.bonus-section {
  background: var(--accent-light);
  position: relative;
}

.bonus-header {
  text-align: center;
  margin-bottom: 48px;
}

.bonus-value-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 16px;
}

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

.bonus-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bonus-card img {
  max-width: 180px;
  margin: 0 auto 20px;
  border-radius: var(--radius-sm);
}

.bonus-price {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.bonus-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 16px;
  color: #333333;
}

/* --- Pricing Section --- */
.pricing {
  background: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-white) 30%);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.price-card-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-card-bottles {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.price-card img {
  max-width: 160px;
  margin: 0 auto 24px;
}

.price-original {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  font-size: 52px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.price-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-total {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 600;
  margin-bottom: 6px;
}

.price-shipping {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.price-savings {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.price-ebooks {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

/* --- Guarantee Section --- */
.guarantee {
  background: var(--bg-light);
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-light);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.guarantee-badge .days {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.guarantee-badge .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.guarantee-content h3 {
  margin-bottom: 16px;
}

.guarantee-content p {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--bg-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1A1A1A;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
}

.faq-item.active .faq-icon svg {
  stroke: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 18px;
  color: #2D2D2D;
  line-height: 1.8;
}

/* --- Final CTA Section --- */
.final-cta {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #153D2A 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,167,64,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.final-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.final-cta-image {
  max-width: 320px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.final-cta-image img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

.trust-badge-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

/* --- Footer --- */
.site-footer {
  background: #0A1F15;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* --- Floating CTA Button --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: bounceIn 0.6s ease 2s both;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(27,107,74,0.4);
  transition: var(--transition);
}

.floating-cta a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,107,74,0.5);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* --- Exit Intent Popup --- */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-popup-overlay.show {
  display: flex;
}

.exit-popup {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popupIn 0.4s ease;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition);
}

.exit-popup-close:hover {
  background: var(--border-light);
}

.exit-popup h3 {
  margin-bottom: 12px;
}

.exit-popup p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.exit-popup .btn {
  width: 100%;
}

/* --- Purchase Notification --- */
.purchase-notif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  z-index: 998;
  max-width: 340px;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.purchase-notif.show {
  transform: translateX(0);
}

.purchase-notif-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.purchase-notif-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

.purchase-notif-text strong {
  color: var(--text-dark);
}

.purchase-notif-text .time {
  color: var(--text-muted);
  font-size: 12px;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image .blog-icon {
  font-size: 48px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 10px;
}

.blog-card-body h4 {
  font-size: 21px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body h4 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Legal Pages --- */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page p {
  margin-bottom: 16px;
  font-size: 18px;
  color: #1A1A1A;
}

.legal-page ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-page ul li {
  margin-bottom: 8px;
  font-size: 18px;
  color: #1A1A1A;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.8); }
  50% { transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }

  .hero h1 { font-size: 42px; }
  .hero-inner { gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-groups { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  p { font-size: 18px; }

  /* Hide header on mobile */
  .site-header .nav-links,
  .site-header .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 20px;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero h1 { font-size: 38px; }
  .hero-description { margin: 0 auto 16px; }
  .hero-features { display: inline-block; text-align: left; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 280px; }

  .what-is-grid { grid-template-columns: 1fr; gap: 32px; }
  .what-is-highlights { grid-template-columns: 1fr; }

  .ingredients-hero { grid-template-columns: 1fr; text-align: center; }
  .ingredients-hero-img { order: -1; }
  .ingredients-hero-img img { max-width: 260px; }

  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

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

  .footer-top { grid-template-columns: 1fr; gap: 24px; }

  .floating-cta a {
    padding: 14px 22px;
    font-size: 14px;
  }

  .purchase-notif { max-width: 280px; }

  .exit-popup { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
  .price-current { font-size: 42px; }
}

/* --- Print Styles --- */
@media print {
  .site-header, .floating-cta, .exit-popup-overlay, .purchase-notif { display: none !important; }
}
