:root {
  --bg-main: #070b19;
  --bg-sec: #0b1120;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(228, 171, 70, 0.3);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --accent-gold: #e4ab46;
  --accent-teal: #2de1c2;
  --danger: #ff5e5e;
  --cta-bg: linear-gradient(135deg, #1eba58, #189846);
  --cta-shadow: 0 8px 24px rgba(30, 186, 88, 0.4);
  --glass-blur: blur(12px);
}

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

html { 
  scroll-behavior: smooth; 
  background-color: var(--bg-main); 
  color: var(--text-main);
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: radial-gradient(circle at 50% 0%, #111a33 0%, var(--bg-main) 60%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a { text-decoration: none; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg-sec);
  color: var(--accent-gold);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.btn-cta, .btn-cta-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cta-bg);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--cta-shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover, .btn-cta-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(30, 186, 88, 0.6);
  filter: brightness(1.1);
}

.btn-cta svg, .btn-cta-full svg {
  width: 22px; height: 22px; fill: white;
}

.btn-cta-full { width: 100%; border-radius: 16px; padding: 20px 32px; }
.btn-subtle { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== SECTION COMMON ===== */
.section, .final-cta { padding: 80px 0; position: relative; }
.section--alt { background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; color: #0f172a; }
.section--alt .section__title { background: none; -webkit-text-fill-color: initial; color: #0f172a; }
.section--alt .section__desc, .section--alt .faq-a, .section--alt .timeline__sub, .section--alt .comparison__item, .section--alt .step__desc { color: #475569; }
.section--alt .problem-card, .section--alt .testimonial-card, .section--alt .comparison__col { background: #ffffff; border-color: #cbd5e1; color: #0f172a; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.section--alt .problem-card__q, .section--alt .testimonial-card__name, .section--alt .comparison__label, .section--alt .step__title, .section--alt .faq-q, .section--alt .timeline__text { color: #0f172a; }
.section--alt .problem-card:hover, .section--alt .testimonial-card:hover { box-shadow: 0 12px 25px rgba(0,0,0,0.1); border-color: #94a3b8; background: #ffffff; }
.section--alt .cert-tag { color: #0f172a; border-color: #94a3b8; background: transparent; backdrop-filter: none; font-weight: 700; }
.section--alt .timeline__dot { background: #ffffff; }
.section--alt .timeline__week { color: #0d9488; }
.section--alt .timeline__item:nth-child(3) .timeline__week { color: #b45309; }
.section--alt .section__label { color: #0f766e; background: rgba(13, 148, 136, 0.1); border-color: rgba(13, 148, 136, 0.2); }
.section--alt .faq-q::after { color: #0d9488; }
.section--dark { background: var(--bg-main); }

.section__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(45, 225, 194, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(45, 225, 194, 0.2);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #a0aec0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 80vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(45, 225, 194, 0.15) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(228, 171, 70, 0.1);
  border: 1px solid rgba(228, 171, 70, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(228, 171, 70, 0.1);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(228, 171, 70, 0.4);
}

.hero__sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: 640px;
}

.hero__sub strong { color: #fff; font-weight: 600; }

.hero__testimonial {
  margin-top: 16px;
  text-align: left;
  max-width: 480px;
}
.hero__testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}
.hero__testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-teal);
}

.hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; text-align: left; }
.hero__content { position: relative; z-index: 1; }
.hero__image { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero__image img { max-width: 100%; width: 100%; transform: perspective(1000px) rotateY(-15deg); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(45,225,194,0.2)); transition: transform 0.5s ease; animation: floatImg 6s ease-in-out infinite; border-radius: 10px; }
.hero__image img:hover { transform: perspective(1000px) rotateY(0deg) scale(1.05); }

@keyframes floatImg { 0%, 100% { transform: translateY(0) perspective(1000px) rotateY(-15deg); } 50% { transform: translateY(-20px) perspective(1000px) rotateY(-15deg); } }

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  background: rgba(0,0,0,0.3);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}
.proof-bar__inner { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; align-items: center; }
.proof-item { font-size: 1rem; color: var(--text-muted); display: flex; align-items: baseline; gap: 8px; }
.proof-item strong { color: var(--accent-gold); font-weight: 700; font-family: 'Outfit', sans-serif; font-size: 1.25rem; }

/* ===== CARDS & PANELS ===== */
.problem-card, .ingredient-card, .testimonial-card, .comparison__col {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.problem-card:hover, .ingredient-card:hover, .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background: var(--bg-card-hover);
}

/* Problem Cards */
.problem-card::before {
  content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--danger), transparent);
}
.problem-card__q { font-family: 'Outfit', sans-serif; font-size: 1.25rem; margin-bottom: 12px; color: #fff; }
.problem-card__a { color: var(--text-muted); }

/* Danger Callout */
.danger-callout {
  background: rgba(255, 94, 94, 0.05);
  border: 1px solid rgba(255, 94, 94, 0.2);
  border-radius: 20px;
  padding: 32px; margin: 40px 0;
  box-shadow: 0 0 30px rgba(255, 94, 94, 0.05) inset;
}
.danger-callout__title { color: var(--danger); font-family: 'Outfit', sans-serif; font-size: 1.2rem; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.danger-callout__title svg { width: 24px; height: 24px; fill: var(--danger); flex-shrink: 0; }
.danger-callout p { color: rgba(255,255,255,0.85); }

/* Comparison */
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.comparison__col--old { background: rgba(255, 94, 94, 0.03); border-color: rgba(255, 94, 94, 0.1); }
.comparison__col--new { background: rgba(45, 225, 194, 0.03); border-color: rgba(45, 225, 194, 0.2); }
.comparison__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.comparison__col--old .comparison__label { color: var(--danger); }
.comparison__col--new .comparison__label { color: var(--accent-teal); }
.comparison__item { margin-bottom: 12px; padding-left: 24px; position: relative; color: var(--text-muted); }
.comparison__item::before { position: absolute; left: 0; top: 2px; font-weight: bold; }
.comparison__col--old .comparison__item::before { content: '✕'; color: var(--danger); }
.comparison__col--new .comparison__item::before { content: '✓'; color: var(--accent-teal); }

/* Solution Intro */
.solution-intro { background: linear-gradient(to right, rgba(45, 225, 194, 0.1), transparent); border-left: 4px solid var(--accent-teal); padding: 32px; border-radius: 0 20px 20px 0; margin-bottom: 40px; }
.solution-intro__title { font-size: 1.4rem; color: var(--accent-teal); font-family: 'Outfit', sans-serif; margin-bottom: 12px; }
.solution-intro p { color: rgba(255,255,255,0.9); }

/* Ingredients */
.ingredient-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 24px; }
.ingredient-card { display: flex; flex-direction: column; gap: 20px; align-items: stretch; padding: 0; outline: none; background: transparent; border: none; transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; }
.ingredient-card__tag { position: absolute; top: 10px; left: 10px; z-index: 5; padding: 3px 10px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 500; text-transform: capitalize; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); pointer-events: none; background: var(--accent-teal); color: var(--bg-main); }
.ingredient-card__tag--no-shadow { box-shadow: none; }
.ingredient-card--horizontal { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 30px; }
.ingredient-card--horizontal .ingredient-card__photo { width: 50%; height: 260px; flex-shrink: 0; margin-bottom: 0; }
.ingredient-card--horizontal .ingredient-card__content { flex: 1; }
.ingredient-card:hover { transform: translateY(-5px); box-shadow: none; background: transparent !important; border-color: transparent !important; }
.ingredient-card__photo { width: 100%; height: 260px; object-fit: cover; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border: 1px solid var(--border-color); margin-bottom: 8px; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ingredient-card:hover .ingredient-card__photo { transform: scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.2); }
.section--alt .ingredient-card__photo { box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: #cbd5e1; }
.section--alt .ingredient-card:hover .ingredient-card__photo { box-shadow: 0 15px 35px rgba(0,0,0,0.15); border-color: #94a3b8; }
.ingredient-card__content { padding: 0 10px; }
.ingredient-card__name { font-family: 'Outfit', sans-serif; font-size: 1.45rem; color: var(--accent-gold); margin-bottom: 12px; font-weight: 700; line-height: 1.3; }
.section--alt .ingredient-card__name { color: #0f172a; }
.ingredient-card__role { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.ingredient-card__role strong { color: #fff; font-weight: 700; }
.section--alt .ingredient-card__role { color: #475569; }
.section--alt .ingredient-card__role strong { color: #0f172a; font-weight: 700; }

/* Benefit Stages */
.benefit-stage {
  margin-bottom: 60px;
  text-align: left;
}
.benefit-stage__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 30px;
}
.benefit-stage__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(228, 171, 70, 0.3);
}
.benefit-stage__title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.benefit-stage__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
}
.ingredient-grid--stage {
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .ingredient-grid--stage {
    grid-template-columns: 1fr;
  }
  .benefit-stage { margin-bottom: 50px; }
  .benefit-stage__header { flex-direction: column; gap: 12px; margin-bottom: 24px; align-items: center; text-align: center; }
  .benefit-stage__number { font-size: 2.2rem; }
  .benefit-stage__title { font-size: 1.6rem; }
  .ingredient-card__tag { font-size: 0.95rem; padding: 5px 14px; }
  .ingredient-card { text-align: left; }
  .ingredient-card--horizontal { flex-direction: column; }
  .ingredient-card--horizontal .ingredient-card__photo { width: 100%; }
}

/* Ingredient Support Copy */
.ingredient-support { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.ingredient-support__pill { display: flex; align-items: center; gap: 8px; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(228, 171, 70, 0.4); padding: 8px 18px; border-radius: 50px; color: var(--accent-gold); font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 0.95rem; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.ingredient-support__pill::before { content: '✓'; display: block; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; margin: 40px 0; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(to bottom, var(--accent-teal), var(--accent-gold)); }
.timeline__item { position: relative; margin-bottom: 40px; }
.timeline__dot { position: absolute; left: -34px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg-main); border: 3px solid var(--accent-teal); box-shadow: 0 0 15px var(--accent-teal); }
.timeline__item:nth-child(3) .timeline__dot { border-color: var(--accent-gold); box-shadow: 0 0 15px var(--accent-gold); }
.timeline__week { font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--accent-teal); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.timeline__item:nth-child(3) .timeline__week { color: var(--accent-gold); }
.timeline__text { font-size: 1.15rem; color: #fff; margin-bottom: 4px; }
.timeline__sub { color: var(--text-muted); }

/* Testimonials Screenshot Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-screenshot {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.testimonial-screenshot:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.15);
}
.testimonial-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Use Grid */
.how-to-section .section__desc { margin-bottom: 20px; }
.how-to-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.how-to-content { max-width: 560px; }
.how-to-image { position: relative; display: flex; justify-content: center; align-items: center; }
.sachets-img { max-width: 100%; max-height: 340px; width: auto; position: relative; z-index: 2; filter: drop-shadow(-10px 15px 25px rgba(0,0,0,0.5)); animation: floatImg 6s ease-in-out infinite; transform-origin: center; display: block; margin: 0 auto; }

/* Ambient glow behind sachets — soft wide haze matching reference */
.sachets-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* The blurred cyan orb */
.sachets-glow::after {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(45, 225, 194, 0.3) 0%, rgba(45, 225, 194, 0.15) 30%, transparent 60%);
  filter: blur(20px);
}

/* Tiny scattered sparkle particles (Sharp) */
.sachets-glow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background-image:
    radial-gradient(2px 2px at 20% 40%, rgba(255,255,255,0.9), transparent),
    radial-gradient(3px 3px at 80% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(255,255,255,0.7), transparent),
    radial-gradient(4px 4px at 70% 60%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 40% 20%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(3px 3px at 10% 60%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 85% 80%, rgba(45, 225, 194, 0.8), transparent),
    radial-gradient(3px 3px at 15% 85%, rgba(45, 225, 194, 0.6), transparent);
  filter: drop-shadow(0 0 4px rgba(45, 225, 194, 0.8));
  z-index: 2;
}

/* Steps */
.step { display: flex; gap: 24px; margin-bottom: 30px; align-items: flex-start; }
.step__num { width: 48px; height: 48px; border-radius: 14px; background: rgba(45, 225, 194, 0.1); border: 1px solid rgba(45, 225, 194, 0.3); color: var(--accent-teal); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-family: 'Outfit'; font-weight: bold; flex-shrink: 0; box-shadow: 0 0 20px rgba(45,225,194,0.1); }
.step__title { font-size: 1.2rem; color: #fff; font-family: 'Outfit'; margin-bottom: 6px; }
.step__desc { color: var(--text-muted); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border-color); padding: 24px 0; }
.faq-q { font-size: 1.15rem; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
.faq-q::after { content: '+'; color: var(--accent-teal); font-size: 1.5rem; transition: transform 0.3s; }
.faq-item.open .faq-q::after { content: '−'; transform: rotate(180deg); }
.faq-a { color: var(--text-muted); max-height: 0; overflow: hidden; transition: all 0.4s ease; padding-right: 40px; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 16px; }

/* Cert Strip */
.cert-strip { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 40px 0; }
.cert-tag { font-size: 0.8rem; font-weight: 600; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border-color); color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.02); backdrop-filter: var(--glass-blur); }

/* Trust Section Grid */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.trust-grid__left .mou-section { margin: 0; max-width: 100%; padding: 0; }
.trust-grid__right .cert-logos { display: grid; grid-template-columns: repeat(2, 140px); gap: 24px; margin: 20px 0; }
.trust-grid__right .cert-logo-wrapper { width: 140px; height: 140px; padding: 16px; border-radius: 16px; }
.trust-grid__right .cert-check { width: 28px; height: 28px; top: -10px; right: -10px; }
.trust-grid__right .cert-check svg { width: 18px; height: 18px; }
.trust-grid__left .mou-caption { text-align: center; }

/* MOU Section */
.mou-section { max-width: 650px; margin: 40px auto 20px; padding: 0 16px; }
.mou-image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); border: 2px solid #e2e8f0; display: block; margin-bottom: 20px; transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.mou-image:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: #cbd5e1; }
.mou-caption { font-size: 0.95rem; color: #475569; font-style: italic; line-height: 1.6; }

/* Certificate Logos */
.cert-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin: 50px 0; }
.cert-logo-wrapper { position: relative; background: #ffffff; padding: 20px; border-radius: 20px; border: 2px solid #e2e8f0; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease; display: flex; align-items: center; justify-content: center; width: 160px; height: 160px; z-index: 1; }
.cert-logo-wrapper:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: #cbd5e1; z-index: 2; }
.cert-logo-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-check { position: absolute; top: -12px; right: -12px; width: 32px; height: 32px; background: #ffffff; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.cert-check svg { width: 26px; height: 26px; }

/* Floating CTA */
.floating-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: rgba(7, 11, 25, 0.8); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: 20px; box-shadow: 0 -10px 40px rgba(0,0,0,0.5); transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.floating-cta.visible { transform: translateY(0); }
.floating-cta__text { font-size: 0.95rem; color: var(--text-muted); }
.floating-cta__text strong { color: #fff; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 24px; }
.final-cta p { font-size: 1.1rem; color: var(--text-muted); margin: 0 auto 40px; max-width: 500px; }
.guarantee { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); margin-top: 24px; font-size: 0.9rem; }
.guarantee svg { width: 18px; height: 18px; fill: var(--accent-gold); }

/* ===== FOOTER & AWARDS ===== */
.footer { background: var(--bg-sec); border-top: 1px solid var(--border-color); padding: 80px 0 40px; text-align: center; margin-bottom: 60px; /* Accounts for floating CTA */ }
.footer__label { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 16px; }
.footer__title { font-size: 2rem; color: #fff; margin-bottom: 50px; }
.award-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; margin-bottom: 50px; }
.award-logos img { max-height: 80px; max-width: 180px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); transition: transform 0.4s ease, filter 0.4s ease; border-radius: 8px; }
.award-logos img:hover { transform: scale(1.05); filter: drop-shadow(0 8px 20px rgba(228,171,70,0.25)); }
.footer__legal { border-top: 1px solid var(--border-color); padding-top: 30px; font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 992px) {
  .trust-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .trust-grid__right .section__label { margin-left: auto; margin-right: auto; }
  .trust-grid__right .section__title, .trust-grid__right .section__desc { text-align: center !important; margin-left: auto; margin-right: auto; }
  .trust-grid__right .cert-logos { justify-content: center !important; }
  .align-left-mobile-center { justify-content: center !important; }
  .text-left-mobile-center { text-align: center !important; }
}

@media (max-width: 768px) {
  .danger-callout__title { flex-direction: column; text-align: center; }
  .danger-callout__title svg { width: 44px; height: 44px; margin-bottom: 8px; }
  .hero { padding: 20px 0 32px; }
  .section { padding: 60px 0; }
  .comparison { grid-template-columns: 1fr; }
  .floating-cta__text { display: none; }
  .floating-cta { padding: 12px; }
  /* Testimonial Slider */
  .testimonial-grid { 
    display: flex; 
    overflow-x: auto; 
    overflow-y: hidden;
    overscroll-behavior-y: none;
    align-items: center;
    scroll-snap-type: x mandatory; 
    gap: 16px; 
    padding-bottom: 24px; 
    margin-left: -20px; 
    margin-right: -20px; 
    padding-left: 20px; 
    padding-right: 20px; 
    scroll-padding-left: 20px; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .testimonial-screenshot {
    flex: 0 0 88%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    width: 88%;
  }
  
  /* Mobile Proof Bar */
  .proof-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 10px; width: 100%; border: none; }
  .proof-item { font-size: 0.85rem; justify-content: center; padding: 0; min-width: 0; gap: 4px; }
  .proof-item strong { font-size: 1.05rem; }
  
  /* Mobile Hero Reordering */
  .hero__grid { display: flex; flex-direction: column; text-align: center; }
  .hero__content { display: contents; }
  .hero__badge { order: -2; margin-bottom: 8px; margin-left: auto; margin-right: auto; }
  .hero__image { order: -1; margin-bottom: -40px; position: relative; z-index: 2; }
  .hero h1 { margin-top: 0; margin-bottom: 0; position: relative; z-index: 3; }
  .hero__sub { margin-top: 0; margin-bottom: 0; position: relative; z-index: 3; }
  .hero__testimonial { text-align: left; margin-top: 8px; max-width: 100%; }
  
  .hero__image img { transform: none; animation: none; margin-top: 0; max-width: 80%; display: block; margin-left: auto; margin-right: auto; }
  .hero__image img:hover { transform: scale(1.05); }
  .solution__grid { grid-template-columns: 1fr !important; text-align: center; }
  
  /* Mobile How to Use Grid */
  .how-to-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; margin-top: 30px; }
  .how-to-content { margin: 0 auto; text-align: left; }
  .how-to-section .section__label { margin: 0 auto 16px; display: table; }
  .how-to-section .section__title, .how-to-section .section__desc { text-align: center; margin-left: auto; margin-right: auto; }
  .sachets-img { max-width: 80%; max-height: none; }
}
