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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  padding-bottom: 80px;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a3a5c;
  line-height: 1.25;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #e67e22; text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1rem; }
ul { padding-left: 1.5rem; }

/* STICKY HEADER */
#site-header {
  background-color: #143159;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
}
.site-logo .best { color: #f5a623; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.header-nav a {
  color: #a8c4d8;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: #fff; }
.header-nav .btn-nav {
  background-color: #f5a623;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.header-nav .btn-nav:hover { background-color: #d4891c; text-decoration: none; }

/* STICKY BOTTOM BAR */
#sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #143159;
  border-top: 2px solid #f5a623;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.3);
}
#sticky-bottom span {
  color: #a8c4d8;
  font-size: 0.9rem;
}
.btn-sticky {
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-sticky:hover { background: #d4891c; text-decoration: none; }

@media (max-width: 600px) {
  #sticky-bottom { flex-direction: column; padding: 10px 16px; gap: 8px; }
  #sticky-bottom span { font-size: 0.78rem; }
  .btn-sticky { padding: 10px 22px; font-size: 0.9rem; }
}

/* WRAPPER */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BREADCRUMB */
.breadcrumb-bar {
  background: #f4f6f8;
  border-bottom: 1px solid #e0e6ed;
  padding: 9px 0;
}
.breadcrumb {
  font-size: 0.82rem;
  color: #7a8fa8;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: #7a8fa8; text-decoration: none; }
.breadcrumb a:hover { color: #e67e22; text-decoration: underline; }
.breadcrumb .sep { color: #aab8c8; }
.breadcrumb li:last-child { color: #3d5165; font-weight: 600; }

/* HERO */
.hero-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 60%, #edf8f2 100%);
  padding: 48px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-image-col { order: -1; display: flex; justify-content: center; }
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.score-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #27ae60;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}
.score-circle .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.score-circle .den { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }
.hero-rating-block { font-size: 0.95rem; color: #3d5165; }
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 1px; }
.hero h1 { font-size: 2.2rem; color: #1a3a5c; margin-bottom: 16px; }
.hero-lead { font-size: 1.03rem; color: #3d5165; line-height: 1.75; margin-bottom: 22px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-badge {
  background: #fff;
  border: 1px solid #d0dce8;
  color: #1a3a5c;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.btn-primary {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 3px 10px rgba(230,126,34,0.3);
}
.btn-primary:hover { background: #c96a10; transform: translateY(-2px); text-decoration: none; }
.hero-image-col { text-align: center; }
.hero-image-col img {
  max-width: 340px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.hero-image-col a:hover img { transform: scale(1.02); transition: transform 0.2s; }

/* SECTIONS */
.section { padding: 56px 0; }
.section-alt { padding: 56px 0; background: #f7f9fc; }
.section-dark { padding: 56px 0; background: #1a3a5c; color: #c8dde9; }
.section-title {
  font-size: 1.85rem;
  color: #1a3a5c;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #5a6f85;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* TWO-COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.quick-facts-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.quick-facts-table tr { border-bottom: 1px solid #e0e6ed; }
.quick-facts-table td { padding: 10px 4px; }
.quick-facts-table td:first-child { font-weight: 600; color: #1a3a5c; width: 42%; }

/* MID CTA */
.mid-cta {
  background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
  padding: 36px 20px;
  text-align: center;
  color: #fff;
}
.mid-cta h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.mid-cta p { margin-bottom: 18px; font-size: 0.95rem; opacity: 0.9; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: #e67e22;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover { background: #fff3e0; text-decoration: none; }

/* INGREDIENTS */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .ingredients-grid { grid-template-columns: 1fr; } }
.ingredient-card {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-left: 4px solid #27ae60;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ingredient-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.ingr-body h4 { font-size: 1rem; margin-bottom: 6px; }
.ingr-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #27ae60;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.ingr-body p { font-size: 0.88rem; color: #555; margin-bottom: 0; line-height: 1.6; }

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid #e0e6ed;
}
.step-num {
  width: 48px;
  height: 48px;
  background: #e67e22;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: #5a6f85; margin-bottom: 0; }

/* TIMELINE */
.timeline { position: relative; padding: 10px 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.tl-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #1a3a5c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.tl-content h4 { font-size: 1rem; margin-bottom: 5px; }
.tl-content p { font-size: 0.88rem; color: #5a6f85; margin: 0; }

/* TABLE */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  background: #1a3a5c;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
}
.compare-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #e0e6ed;
}
.compare-table tr:hover td { background: #f7f9fc; }
.check { color: #27ae60; font-weight: 700; }
.cross { color: #e74c3c; font-weight: 700; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-top: 3px solid #f5a623;
  border-radius: 8px;
  padding: 20px;
}
.rev-stars { color: #f5a623; font-size: 0.95rem; margin-bottom: 10px; }
.rev-text { font-size: 0.88rem; color: #444; font-style: italic; margin-bottom: 12px; }
.rev-author { font-weight: 700; font-size: 0.85rem; color: #1a3a5c; }
.rev-verified { font-size: 0.72rem; color: #7a8fa8; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  background: #fff;
  transition: all 0.25s;
  position: relative;
}
.price-card:hover { border-color: #f5a623; box-shadow: 0 6px 20px rgba(245,166,35,0.12); }
.price-card.best {
  border-color: #f5a623;
  background: linear-gradient(145deg, #fffdf6 0%, #fff9ed 100%);
  transform: scale(1.04);
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.price-tag { font-size: 2.4rem; font-weight: 800; color: #e67e22; margin: 6px 0; }
.price-sub { font-size: 0.82rem; color: #7a8fa8; margin-bottom: 18px; }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.price-features { list-style: none; padding: 0; margin-bottom: 20px; font-size: 0.85rem; }
.price-features li { padding: 5px 0; border-bottom: 1px solid #f0f0f0; color: #555; }
.price-features li:last-child { border-bottom: none; }

/* GUARANTEE */
.guarantee-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
  border: 2px solid #1a3a5c;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}
.guarantee-box h3 { font-size: 1.6rem; margin-bottom: 14px; }
.guarantee-box p { max-width: 680px; margin: 0 auto 24px; color: #3d5165; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid #dde6ef;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a3a5c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: #f0f7ff; }
.faq-q .toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e67e22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-q.open .toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 4px 20px 16px;
  border-top: 1px solid #dde6ef;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* FOOTER */
#site-footer {
  background-color: #143159;
  color: #a8c4d8;
  padding: 60px 0 0;
}
.footer-top {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(168,196,216,0.15);
  margin-bottom: 48px;
}
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo .best { color: #f5a623; }
.footer-top p { color: #a8c4d8; font-size: 0.88rem; margin-bottom: 22px; }
.btn-footer-cta {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-footer-cta:hover { background: #d4891c; text-decoration: none; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(168,196,216,0.15);
}
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; gap: 28px; } }
.footer-col h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-col p { font-size: 0.82rem; line-height: 1.7; color: #7a9ab0; margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: #7a9ab0;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #f5a623; text-decoration: none; }
.footer-bottom {
  padding: 28px 0 24px;
  text-align: left;
}
.disclaimer-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #a8c4d8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.disclaimer-text {
  font-size: 0.72rem;
  color: #5a7a90;
  line-height: 1.75;
  max-width: 1100px;
}
.footer-copy {
  margin-top: 20px;
  font-size: 0.72rem;
  color: #3d5a70;
}

.inline-cta {
  text-align: center;
  margin: 36px 0;
}
