/* Font Display Optimization */
@font-face { font-display: swap; }

/* ============================================
   VisiFlora™ V2 — Stylesheet
   Ocean Blue + Amber Trust Design
   ============================================ */

:root {
  --primary: #1A4B6E;
  --primary-dark: #133A56;
  --primary-light: #E6F0F7;
  --accent: #E8963A;
  --accent-light: #FFF4E6;
  --accent-dark: #D07E2A;
  --text-dark: #1C2A3A;
  --text-body: #2D2D2D;
  --text-muted: #5A6978;
  --bg-white: #FFFFFF;
  --bg-cream: #F9FAFB;
  --bg-light: #F0F4F8;
  --bg-dark: #0E2438;
  --border-light: #D6DEE6;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
}

*, *::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: 'Nunito Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
}

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

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

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

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

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

h1 { font-size: 54px; }
h2 { font-size: 42px; }
h3 { font-size: 30px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }

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

.section-tag {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 7px 20px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-desc {
  font-size: 19px;
  color: #333333;
  max-width: 660px;
  margin: 0 auto 50px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,75,110,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,75,110,0.4);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,150,58,0.35);
}

.btn-accent:hover {
  background: var(--accent-dark);
  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 46px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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-light);
  transition: var(--transition);
}

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

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

.logo {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

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

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

.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
}

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

.header-cta {
  padding: 10px 22px;
  font-size: 16px;
}

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

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

/* --- Hero --- */
.hero {
  position: relative;
  padding: 130px 0 90px;
  background: linear-gradient(160deg, #E6F0F7 0%, #F0F4F8 35%, #FFF4E6 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,75,110,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content {
  animation: slideUp 0.7s ease;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,75,110,0.08);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

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

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(232,150,58,0.35);
  z-index: -1;
}

.hero-text {
  font-size: 20px;
  color: #333333;
  margin-bottom: 14px;
  max-width: 500px;
}

.hero-checks {
  list-style: none;
  margin-bottom: 32px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #2D2D2D;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.hero-checks li .ico svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: slideRight 0.7s ease 0.15s both;
}

.hero-image img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--bg-dark);
  padding: 14px 0;
  overflow: hidden;
}

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

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

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

/* --- About / What Is --- */
.about-section {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 14px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-feat {
  background: var(--bg-light);
  padding: 18px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.about-feat h5 {
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.about-feat p {
  font-size: 16px;
  margin: 0;
  color: #333;
}

/* --- How It Works --- */
.process-section {
  background: var(--bg-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

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

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

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-card h4 {
  margin-bottom: 10px;
  font-size: 19px;
}

.process-card p {
  font-size: 17px;
  color: var(--text-muted);
}

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

.ing-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 56px;
}

.ing-hero-img img {
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.1));
}

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

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

.ing-group-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.ing-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

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

.ing-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.ing-info h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.ing-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* --- Benefits --- */
.benefits-section {
  background: linear-gradient(150deg, var(--bg-dark) 0%, #17405E 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.benefits-section .section-tag {
  background: rgba(232,150,58,0.2);
  color: var(--accent);
}

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

.benefits-section .section-desc {
  color: rgba(255,255,255,0.75);
}

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

.benefit-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

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

.benefit-ico {
  width: 58px;
  height: 58px;
  background: rgba(232,150,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}

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

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

/* --- FDA Disclaimer Box --- */
.fda-box {
  background: var(--accent-light);
  border: 1px solid rgba(232,150,58,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.fda-box p {
  font-size: 15px;
  color: #6B5A3A;
  font-style: italic;
  margin: 0;
  text-align: center;
}

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

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

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

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

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

.review-quote {
  font-size: 16px;
  font-style: italic;
  color: #2D2D2D;
  margin-bottom: 18px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.review-name {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
}

.review-loc {
  font-size: 15px;
  color: var(--text-muted);
}

.review-verified {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}

.review-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* --- Exclusive Section --- */
.exclusive-section {
  background: var(--primary-light);
  padding: 50px 0;
}

.exclusive-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.exclusive-inner h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.exclusive-inner p {
  font-size: 17px;
  color: #333;
}

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

.bonus-top {
  text-align: center;
  margin-bottom: 44px;
}

.bonus-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

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

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

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

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

.bonus-val {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.bonus-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

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

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

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

.price-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  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.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-white) 25%);
}

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

.price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.8px;
}

.price-tier {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 6px;
}

.price-bottles {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.price-card img {
  max-width: 140px;
  margin: 0 auto 20px;
}

.price-was {
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 3px;
}

.price-now {
  font-size: 50px;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 3px;
}

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

.price-total {
  font-size: 17px;
  color: #2D2D2D;
  font-weight: 700;
  margin-bottom: 5px;
}

.price-ship {
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.price-save {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.price-bonus {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

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

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

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

.guarantee-seal {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: linear-gradient(145deg, 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-seal .num {
  font-family: 'Lora', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.guarantee-seal .lbl {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 3px;
}

.guarantee-text h3 {
  margin-bottom: 14px;
}

.guarantee-text p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #333;
}

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

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

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  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: 18px 22px;
  cursor: pointer;
  gap: 14px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.faq-arrow {
  width: 26px;
  height: 26px;
  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-arrow {
  background: var(--primary);
  transform: rotate(180deg);
}

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

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

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

.faq-answer-text {
  padding: 0 22px 18px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

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

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

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

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

.cta-final-img {
  max-width: 280px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

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

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

.cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 600;
}

.cta-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* --- Footer --- */
.site-footer {
  background: #091B2A;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
}

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

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

.footer-brand p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

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

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

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

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

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

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

.footer-legal {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-affiliate {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* --- Floating CTA --- */
.float-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  animation: popIn 0.5s ease 2s both;
}

.float-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(232,150,58,0.4);
  transition: var(--transition);
}

.float-cta a:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,150,58,0.5);
}

.float-cta svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

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

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

.exit-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.35s ease;
}

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

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

.exit-box h3 {
  margin-bottom: 10px;
}

.exit-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 24px;
}

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

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

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

.toast-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.toast-text {
  font-size: 15px;
  color: #2D2D2D;
  line-height: 1.5;
}

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

.toast-text .time {
  color: var(--text-muted);
  font-size: 14px;
}

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

.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(-3px);
}

.blog-card-image {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.blog-card-cat {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

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

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

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

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

/* --- Legal Pages --- */
.legal-page {
  padding: 110px 0 70px;
}

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

.legal-page h1 {
  font-size: 34px;
  margin-bottom: 28px;
}

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

.legal-page p {
  margin-bottom: 14px;
  font-size: 16px;
}

.legal-page ul {
  margin: 14px 0;
  padding-left: 22px;
}

.legal-page ul li {
  margin-bottom: 7px;
  font-size: 16px;
  color: #2D2D2D;
}

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

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

@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  50% { transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 36px; }
  .hero h1 { font-size: 44px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-groups { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 17px; }

  .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: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 22px;
    box-shadow: var(--shadow-lg);
    gap: 18px;
  }

  .hero { padding: 100px 0 55px; }

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

  .hero h1 { font-size: 34px; }
  .hero-text { margin: 0 auto 14px; }
  .hero-checks { display: inline-block; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-image img { max-width: 260px; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-features { grid-template-columns: 1fr; }

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

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

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

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

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

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }

  .float-cta a { padding: 12px 20px; font-size: 14px; }
  .purchase-toast { max-width: 260px; }
  .exit-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .price-now { font-size: 40px; }
}

@media print {
  .site-header, .float-cta, .exit-overlay, .purchase-toast { display: none !important; }
}
