@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --navy: #06192d;
  --navy-dark: #030f1c;
  --navy-surface: #0b2540;
  --blue-brand: #1a56db;
  --blue-light: #e8f0fe;
  --blue-accent: #3b82f6;
  
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #d1fae5;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fef3c7;
  --gold: #eab308;
  
  --cta-orange: #ff6b00;
  --cta-orange-hover: #e05d00;
  --cta-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  --cta-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
  
  --ink: #0f172a;
  --ink-secondary: #334155;
  --muted: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --line: #e2e8f0;
  --line-dark: #1e293b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 28px rgba(6, 25, 45, 0.08);
  --shadow-lg: 0 20px 45px rgba(6, 25, 45, 0.12);
  --shadow-glow: 0 0 35px rgba(26, 86, 219, 0.2);
  
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name, .price-amount {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

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

a {
  color: var(--blue-brand);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--navy);
}

button, a {
  touch-action: manipulation;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 36px), 860px);
  margin-inline: auto;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 60;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.top-announcement-bar p {
  margin: 0;
  letter-spacing: 0.01em;
}

.top-announcement-bar strong {
  color: #fcd34d;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-red 1.6s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.announcement-timer {
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.announcement-timer strong {
  color: #38bdf8;
  font-family: monospace;
  font-size: 0.95rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-brand), #0ea5e9);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-dark);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--ink-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}

.nav-links a:not(.button):hover {
  color: var(--blue-brand);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0.85rem 1.65rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--cta-gradient);
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  box-shadow: var(--cta-shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.45);
  filter: brightness(1.05);
  color: #fff !important;
}

.button.secondary {
  background: #fff;
  color: var(--navy) !important;
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover {
  border-color: var(--blue-brand);
  color: var(--blue-brand) !important;
  box-shadow: var(--shadow-md);
}

.button.small {
  min-height: 38px;
  padding: 0.45rem 1rem;
  font-size: 0.86rem;
  border-radius: var(--radius-sm);
}

.button.pulse-glow {
  animation: pulse-button 2.5s infinite;
}

@keyframes pulse-button {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.button.large-cta {
  min-height: 60px;
  padding: 1.05rem 2.2rem;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 440px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 70px;
  background: radial-gradient(circle at 85% 20%, rgba(26, 86, 219, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 35%),
              linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 50px;
  align-items: center;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-secondary);
}

.hero-stars {
  color: var(--amber);
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero h1 .text-highlight {
  color: var(--blue-brand);
  background: linear-gradient(120deg, var(--blue-brand), #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-bullet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-cta-subtext {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual-box {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-visual-box img {
  width: min(100%, 340px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(6, 25, 45, 0.18));
  transition: transform 0.4s ease;
}

.hero-visual-box:hover img {
  transform: translateY(-4px) scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-floating-badge.badge-top-left {
  top: 20px;
  left: -15px;
  border-left: 4px solid var(--emerald);
}

.hero-floating-badge.badge-bottom-right {
  bottom: 20px;
  right: -15px;
  border-left: 4px solid var(--gold);
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-trust-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   Trust Strip Badges
   ========================================================================== */
.trust-strip {
  background: #ffffff;
  border-block: 1px solid var(--line);
  padding: 24px 0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.trust-badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.2;
}

.trust-badge-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section {
  padding: 85px 0;
  position: relative;
}

.section.soft {
  background: var(--light-bg);
}

.section.dark {
  background: var(--navy);
  color: #f1f5f9;
}

.section.dark h2, .section.dark h3 {
  color: #ffffff;
}

.section.dark p {
  color: #94a3b8;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-brand);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section.dark .eyebrow {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--muted);
}

/* ==========================================================================
   Customer Reviews / Testimonials Section
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--emerald-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-stars {
  color: var(--amber);
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.65;
  font-style: italic;
}

.review-highlight {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-brand);
}

/* ==========================================================================
   What is GlucoTrust & How It Works
   ========================================================================== */
.two-col-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.feature-media {
  position: relative;
  text-align: center;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 70%);
  padding: 30px;
  border-radius: var(--radius-xl);
}

.feature-media img {
  width: min(100%, 380px);
  margin: 0 auto;
  filter: drop-shadow(0 20px 35px rgba(6, 25, 45, 0.15));
}

.feature-content h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--ink-secondary);
  margin-bottom: 18px;
}

.mechanism-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.mechanism-item {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.mechanism-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.mechanism-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Benefits Grid
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-accent);
}

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--blue-light);
  color: var(--blue-brand);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--blue-brand), #0ea5e9);
  color: #ffffff;
}

.benefit-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   Ingredients Showcase (8 Botanicals)
   ========================================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
}

.ingredient-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.ingredient-card h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.ingredient-subtitle {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 12px;
  font-style: italic;
}

.ingredient-card p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Pricing Section (High Converting 3-Tier Grid)
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 50%, #f8fafc 100%);
  padding: 90px 0;
}

.pricing-urgency-banner {
  background: linear-gradient(90deg, #1e3a8a, #1d4ed8);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 auto 40px;
  max-width: 780px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured-package {
  border: 3px solid var(--blue-brand);
  box-shadow: 0 20px 50px rgba(26, 86, 219, 0.22);
  transform: scale(1.04);
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pricing-card.featured-package:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 25px 60px rgba(26, 86, 219, 0.3);
}

.pricing-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
  white-space: nowrap;
}

.pricing-card.featured-package .pricing-ribbon {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.package-title {
  font-size: 1.6rem;
  margin-top: 10px;
  margin-bottom: 4px;
}

.package-supply {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.package-image-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.package-image-wrap img {
  max-height: 150px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(6, 25, 45, 0.12));
}

.price-main-box {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.price-amount {
  font-size: 3.4rem;
  line-height: 1;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.price-currency {
  font-size: 1.8rem;
  margin-top: 6px;
  font-weight: 700;
}

.price-per-bottle {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.savings-tag {
  display: inline-block;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 8px;
}

.package-features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.package-features-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-secondary);
}

.package-features-list li.highlight {
  font-weight: 700;
  color: var(--emerald-dark);
}

.package-features-list li.highlight::before {
  content: "★";
  color: var(--emerald-dark);
  font-weight: 900;
}

.package-features-list li:not(.highlight)::before {
  content: "✓";
  color: var(--blue-brand);
  font-weight: 900;
}

.pricing-cta-btn {
  width: 100%;
  margin-bottom: 12px;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.payment-badges-row span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.package-guarantee-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ==========================================================================
   Bonuses Section
   ========================================================================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bonus-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

.bonus-badge {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bonus-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.bonus-value {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.bonus-value strong {
  color: var(--emerald-dark);
  text-decoration: none;
}

.bonus-value del {
  color: var(--muted);
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Money Back Guarantee
   ========================================================================== */
.guarantee-box {
  background: linear-gradient(145deg, #ffffff, #fefce8);
  border: 2px solid #fef08a;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
}

.guarantee-seal-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  border: 6px solid #fef3c7;
  margin: 0 auto;
}

.guarantee-seal-days {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.guarantee-seal-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guarantee-content h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.guarantee-content p {
  font-size: 1.02rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.guarantee-highlight {
  font-weight: 700;
  color: var(--navy);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-accordion-item.active {
  border-color: var(--blue-brand);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-question span {
  pointer-events: none;
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  color: var(--blue-brand);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--ink-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-accordion-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   SEO Knowledge Hub & Educational Silos
   ========================================================================== */
.seo-hubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.seo-hub-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.seo-hub-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-brand);
  box-shadow: var(--shadow-md);
}

.seo-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-brand);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.seo-hub-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.seo-hub-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.seo-hub-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.article-preview-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.article-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald-dark);
  box-shadow: var(--shadow-md);
}

.article-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-dark);
  background: var(--emerald-light);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  width: fit-content;
}

.article-preview-card h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.article-preview-card p {
  font-size: 0.88rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-brand);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Editorial Review & Blog Content Styles (For subpages)
   ========================================================================== */
.review-hero, .page-hero {
  padding: 60px 0 45px;
  background: radial-gradient(circle at 80% 10%, rgba(103, 188, 140, 0.2), transparent 32%), linear-gradient(135deg, #f7fbf8 0%, #eef8f2 45%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.review-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 50px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--blue-brand);
}

.verdict-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 12px 0;
}

.rating-row span {
  color: var(--emerald-dark);
  font-weight: 800;
}

.check-list {
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--emerald-dark);
  font-weight: 900;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
}

.content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.85rem;
}

.content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--navy);
}

.content p, .content li {
  color: var(--ink-secondary);
  font-size: 1rem;
}

.content li + li {
  margin-top: 8px;
}

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.content th, .content td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.content th {
  background: #f1f5f9;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--navy);
}

.toc {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}

.toc strong {
  display: block;
  color: var(--navy);
  margin-bottom: 10px;
}

.toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.toc a:hover {
  color: var(--blue-brand);
}

.aside {
  position: sticky;
  top: 90px;
}

.wide {
  width: 100%;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-cons section {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  border: 1px solid var(--line);
}

.callout {
  padding: 20px;
  border: 1px solid #ead8a5;
  border-radius: 14px;
  background: #fff8e6;
  margin: 24px 0;
}

/* ==========================================================================
   Floating Sticky Bottom CTA Bar
   ========================================================================== */
.floating-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 25, 45, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.25);
}

.floating-sticky-bar.visible {
  transform: translateY(0);
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sticky-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.sticky-text span {
  font-size: 0.78rem;
  color: #38bdf8;
}

.sticky-action-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-price-tag {
  color: #ffffff;
  text-align: right;
}

.sticky-price-tag strong {
  font-size: 1.25rem;
  color: #fcd34d;
  font-family: 'Outfit', sans-serif;
}

.sticky-price-tag span {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.86rem;
  line-height: 1.6;
}

.footer-trust-seals {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.footer-col strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 5px 0;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #64748b;
}

.footer-disclaimer-box p + p {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: #64748b;
}

.footer-bottom-links a:hover {
  color: #cbd5e1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual-box {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .pricing-card.featured-package {
    transform: none;
  }
  
  .pricing-card.featured-package:hover {
    transform: translateY(-4px);
  }
  
  .two-col-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-grid, .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid, .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .seo-hubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .review-hero-grid, .content-layout {
    grid-template-columns: 1fr;
  }
  
  .aside {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-announcement-bar {
    font-size: 0.78rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    display: none;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    padding: 8px 0;
    width: 100%;
  }
  
  .nav-links .nav-cta-btn {
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2.1rem;
  }
  
  .hero-cta-group {
    width: 100%;
  }
  
  .button.large-cta {
    max-width: 100%;
  }
  
  .hero-floating-badge {
    position: static;
    margin: 10px auto;
    width: fit-content;
  }
  
  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-table-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .reviews-grid, .bonuses-grid, .benefits-grid, .ingredients-grid {
    grid-template-columns: 1fr;
  }
  
  .seo-hubs-grid, .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
  }
  
  .sticky-price-tag {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
