/* ===== ProstaVive Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: #e6b800;
  --primary: #26466c;
  --primary-dark: #1a3050;
  --primary-light: #3a6096;
  --accent: #f5c500;
  --accent-dark: #d4a800;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #e8edf5;
  --gray: #8a9bb0;
  --gray-dark: #4a5568;
  --text: #1e2d3d;
  --text-light: #5a6a7e;
  --success: #27ae60;
  --danger: #e74c3c;
  --strip: #ffffff;
  --shadow: 0 4px 20px rgba(38, 70, 108, 0.12);
  --shadow-lg: 0 8px 40px rgba(38, 70, 108, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-dark); }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: all 0.3s;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--white); }
.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }

/* ===== STRIP BANNER ===== */
.strip-banner {
  background: var(--strip);
  border-bottom: 3px solid var(--accent);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
  animation: pulse-strip 3s ease-in-out infinite;
}
.strip-banner a { color: var(--primary); text-decoration: underline; }
@keyframes pulse-strip { 0%,100%{background:#fff} 50%{background:#fff9d6} }

/* ===== HERO / INTRO ===== */
.hero {
  background: linear-gradient(135deg, #1a3050 0%, #26466c 45%, #1e5085 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.hero-checklist { list-style: none; margin-bottom: 32px; }
.hero-checklist li {
  color: rgba(255,255,255,0.9);
  padding: 5px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.96rem;
}
.hero-checklist li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.hero-img-wrap {
  position: relative;
  text-align: center;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
  max-width: 420px;
  width: 100%;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.trust-icon { font-size: 1.3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(245,197,0,0.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,197,0,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 18px 48px; font-size: 1.08rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-strip { background: var(--primary); color: var(--white); padding: 50px 0; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); margin-bottom: 14px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--text-light); max-width: 620px; margin: 0 auto; font-size: 1.04rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 14px auto 0; }

/* ===== REVIEWS ===== */
.reviews-summary {
  background: linear-gradient(135deg, #1a3050, #26466c);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 40px;
}
.reviews-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; }
.reviews-score { text-align: center; }
.score-big { font-size: 5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.score-stars { font-size: 1.8rem; color: var(--accent); margin: 8px 0; }
.score-count { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.score-bars { display: flex; flex-direction: column; gap: 12px; }
.score-bar-item { display: grid; grid-template-columns: 60px 1fr 40px; gap: 10px; align-items: center; font-size: 0.88rem; }
.bar-track { height: 8px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 1s ease; }
.bar-pct { color: rgba(255,255,255,0.7); text-align: right; }
.reviews-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.review-highlight {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--accent);
}
.rh-quote { font-style: italic; font-size: 0.93rem; margin-bottom: 10px; color: rgba(255,255,255,0.88); }
.rh-author { font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* ===== INGREDIENTS TABLE ===== */
.ingredients-section { }
.ingredients-hero { text-align: center; margin-bottom: 40px; }
.ingredients-hero img { border-radius: var(--radius-lg); max-width: 780px; width: 100%; box-shadow: var(--shadow-lg); }
table.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ingredients-table thead tr { background: var(--primary); color: var(--white); }
.ingredients-table thead th { padding: 16px 20px; text-align: left; font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.ingredients-table tbody tr { transition: background 0.2s; border-bottom: 1px solid var(--gray-light); }
.ingredients-table tbody tr:nth-child(even) { background: var(--off-white); }
.ingredients-table tbody tr:hover { background: #e8f0fb; }
.ingredients-table td { padding: 16px 20px; font-size: 0.95rem; vertical-align: top; }
.ingredients-table td:first-child { font-weight: 600; color: var(--primary); }
.ing-icon { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }

/* ===== PRICING ===== */
.pricing-img-link { display: block; max-width: 820px; margin: 0 auto; transition: transform 0.3s; }
.pricing-img-link:hover { transform: scale(1.02); }
.pricing-img-link img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Pricing table */
.pricing-table-wrap { margin-top: 50px; }
.pricing-table-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}
table.pkg-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pkg-table thead tr { background: var(--primary); color: var(--white); }
.pkg-table thead th { padding: 14px 18px; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.8px; }
.pkg-table tbody tr { border-bottom: 1px solid var(--gray-light); }
.pkg-table tbody tr:hover { background: #eef3fa; }
.pkg-table tbody tr.best-value { background: #fff9d6; }
.pkg-table td { padding: 14px 18px; text-align: center; font-size: 0.95rem; }
.pkg-table td:first-child { text-align: left; font-weight: 600; }
.pkg-badge { background: var(--accent); color: var(--primary-dark); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; margin-left: 8px; }

/* ===== SPECIAL OFFER ===== */
.special-offer-box {
  background: linear-gradient(135deg, #1a3050, #26466c);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--white);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.special-offer-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.offer-old-price { font-size: 1.1rem; text-decoration: line-through; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.offer-new-price { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.offer-img { max-width: 260px; margin: 20px auto; display: block; }
.offer-cta-wrap { margin-top: 20px; }

/* ===== BENEFITS CARDS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--primary);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-icon { font-size: 2.6rem; margin-bottom: 14px; }
.benefit-card h4 { color: var(--primary); margin-bottom: 10px; }
.benefit-card p { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* ===== HOW IT WORKS ===== */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.how-steps { display: flex; flex-direction: column; gap: 24px; }
.how-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.how-step:hover { transform: translateX(6px); }
.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}
.step-content h4 { color: var(--primary); margin-bottom: 6px; }
.step-content p { color: var(--text-light); font-size: 0.93rem; margin: 0; }
.standout-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.standout-box h3 { color: var(--accent); margin-bottom: 18px; }
.standout-list { list-style: none; }
.standout-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.standout-list li:last-child { border: none; }
.standout-list li::before { content: '★'; position: absolute; left: 0; color: var(--accent); }

/* ===== PROS CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.pros-box { background: #f0faf4; border-top: 4px solid var(--success); }
.cons-box { background: #fff5f5; border-top: 4px solid #e07070; }
.pros-box h3 { color: var(--success); margin-bottom: 16px; }
.cons-box h3 { color: #c0392b; margin-bottom: 16px; }
.pc-list { list-style: none; }
.pc-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pc-list li:last-child { border: none; }
.pros-box .pc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons-box .pc-list li::before { content: '✗'; position: absolute; left: 0; color: #e07070; font-weight: 700; }

/* ===== BONUSES ===== */
.bonuses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bonus-card img { width: 100%; height: 220px; object-fit: cover; }
.bonus-content { padding: 24px; }
.bonus-tag { background: var(--accent); color: var(--primary-dark); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; display: inline-block; margin-bottom: 10px; }
.bonus-content h4 { color: var(--primary); margin-bottom: 8px; }
.bonus-content p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* ===== MONEY BACK ===== */
.mbg-box {
  background: linear-gradient(135deg, #f0faf4, #e8f5ed);
  border: 2px solid var(--success);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
}
.mbg-icon { font-size: 4rem; margin-bottom: 16px; }
.mbg-box h2 { color: var(--success); margin-bottom: 16px; }
.mbg-box p { color: var(--text); max-width: 620px; margin: 0 auto 20px; }

/* ===== FAQS ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question h4 { color: var(--primary); margin: 0; font-size: 1rem; font-weight: 600; }
.faq-icon { color: var(--primary); font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; min-width: 20px; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== SIDE EFFECTS / SAFETY ===== */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.safety-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.safety-card h4 { color: var(--primary); margin-bottom: 12px; }
.safety-card ul { list-style: none; }
.safety-card ul li { padding: 6px 0 6px 22px; position: relative; color: var(--text); font-size: 0.93rem; }
.safety-card ul li::before { content: '•'; position: absolute; left: 6px; color: var(--accent-dark); font-weight: 700; }

/* ===== WHAT TO KNOW BEFORE BUYING ===== */
.buying-guide { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.buying-tip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: border-color 0.3s;
}
.buying-tip:hover { border-color: var(--accent); }
.buying-tip h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.buying-tip p { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* ===== QUICK OVERVIEW ===== */
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--accent);
}
.ov-icon { font-size: 2rem; margin-bottom: 8px; }
.ov-label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.ov-val { font-size: 0.95rem; font-weight: 600; color: var(--primary); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--accent); font-weight: 900; margin-bottom: 14px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col h5 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin-bottom: 24px; }
.fda-compliance {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s;
}
#back-to-top:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }
#back-to-top.visible { display: flex; animation: fade-in 0.3s ease; }
@keyframes fade-in { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

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

/* ===== EDUCATIONAL PAGE ===== */
.edu-hero {
  background: linear-gradient(135deg, #1a3050, #26466c);
  color: var(--white);
  padding: 70px 0 50px;
  text-align: center;
}
.edu-hero h1 { color: var(--accent); margin-bottom: 16px; }
.edu-hero p { color: rgba(255,255,255,0.8); max-width: 680px; margin: 0 auto; }
.edu-content { max-width: 880px; margin: 0 auto; }
.edu-content h2 { color: var(--primary); margin: 40px 0 14px; }
.edu-content h3 { color: var(--primary-dark); margin: 28px 0 10px; }
.edu-content p { color: var(--text); line-height: 1.8; }
.edu-content ul { padding-left: 22px; margin-bottom: 16px; }
.edu-content ul li { color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.edu-highlight {
  background: linear-gradient(135deg, #e8f0fb, #f0f5ff);
  border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.edu-highlight p { margin: 0; color: var(--primary-dark); font-weight: 500; }
.edu-cta-box {
  background: linear-gradient(135deg, #26466c, #1a3050);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.edu-cta-box h3 { color: var(--accent); margin-bottom: 12px; }
.edu-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.legal-content h1 { color: var(--primary); margin-bottom: 10px; }
.legal-content .last-updated { color: var(--gray); font-size: 0.88rem; margin-bottom: 40px; }
.legal-content h2 { color: var(--primary); margin: 32px 0 12px; font-size: 1.3rem; }
.legal-content p, .legal-content li { color: var(--text); line-height: 1.8; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-width: 360px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-highlights { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-inner { flex-wrap: wrap; }
  .hamburger { display: flex; }
  .nav-links { display: none; width: 100%; flex-direction: column; gap: 4px; padding: 10px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 8px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .buying-guide { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-summary { padding: 30px 20px; }
  .special-offer-box { padding: 30px 20px; }
  .mbg-box { padding: 30px 20px; }
  section.section { padding: 50px 0; }
  .pkg-table { font-size: 0.82rem; }
  .pkg-table th, .pkg-table td { padding: 10px 10px; }
}
  /* ── EDUCATIONAL LINKS ── */
  #edu-links{background:#26466c;}
  #edu-links h2{color:var(--white);}
  .edu-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px;}
  .edu-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:28px 22px;text-align:center;transition:background var(--transition),transform var(--transition);}
  .edu-card:hover{background:rgba(230,184,0,.15);transform:translateY(-6px);}
  .edu-icon{font-size:2.4rem;margin-bottom:14px;}
  .edu-card h3{color:var(--gold);margin-bottom:10px;font-size:1.1rem;}
  .edu-card p{color:rgba(255,255,255,.7);font-size:.9rem;margin-bottom:16px;}
  .edu-card a{color:var(--gold);font-weight:700;font-size:.88rem;border:1px solid var(--gold);padding:7px 18px;border-radius:20px;display:inline-block;transition:background var(--transition),color var(--transition);}
  .edu-card a:hover{background:var(--gold);color:var(--navy-dark);}