/* =========================================================
   AquaSculpt — Main Stylesheet
   Palette derived from bottle: navy + cool blue + gold CTA
   Display: Manrope | Body: Inter
   ========================================================= */

:root {
  --navy: #1a3a6e;
  --navy-deep: #0f2750;
  --blue: #4a90d9;
  --blue-soft: #87b8e8;
  --ice: #eaf2fb;
  --ice-deep: #d9e6f5;
  --gold: #d4a942;
  --gold-dark: #b8902f;
  --gold-soft: #f3e3b3;
  --text: #1a2540;
  --muted: #5a6478;
  --line: #e3e8ef;
  --white: #ffffff;
  --cream: #fafbfd;
  --success: #2a8f5e;
  --danger: #c83a3a;
  --shadow-sm: 0 2px 6px rgba(26, 58, 110, 0.06);
  --shadow-md: 0 6px 20px rgba(26, 58, 110, 0.09);
  --shadow-lg: 0 14px 40px rgba(26, 58, 110, 0.14);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p { margin-bottom: 1rem; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }

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

section { padding: 80px 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 18px;
  text-align: center;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(212, 169, 66, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 169, 66, 0.45);
  color: var(--white);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  z-index: 95;
}
.announce-bar a {
  color: var(--gold-soft);
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
}
.announce-bar a:hover { color: var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-left: 4px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-list a {
  font-weight: 600;
  color: var(--text);
  font-size: 0.94rem;
}
.nav-list a:hover { color: var(--blue); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--ice-deep);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
  background: linear-gradient(120deg, transparent 0%, transparent 8%, var(--gold-soft) 8%, var(--gold-soft) 92%, transparent 92%);
  background-size: 100% 38%;
  background-repeat: no-repeat;
  background-position: 0 80%;
  padding: 0 4px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 540px;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon svg { width: 13px; height: 13px; fill: var(--white); }

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-trust-item .ti {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--gold-dark);
  font-size: 1rem;
}
.hero-image {
  position: relative;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(26, 58, 110, 0.15));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.trust-item {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.trust-item .ic {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--blue);
}

/* =========================================================
   WHY CHOOSE (2-col)
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.why-list li:last-child { border-bottom: none; }
.why-list .icn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.why-list .icn svg { width: 22px; height: 22px; fill: var(--white); }
.why-list h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.why-list p {
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   AI ANSWER BLOCK
   ========================================================= */
.ai-block {
  background: linear-gradient(135deg, var(--ice) 0%, #f4f8fd 100%);
  border-left: 5px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}
.ai-block .q {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-block .q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ai-block p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* =========================================================
   PROBLEM SECTION (dark)
   ========================================================= */
.problem {
  background: var(--navy-deep);
  color: var(--ice);
  padding: 90px 0;
}
.problem h2 { color: var(--white); }
.problem .section-sub { color: var(--blue-soft); }
.problem .ai-block {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--gold);
  color: var(--ice);
}
.problem .ai-block .q { color: var(--white); }
.problem .ai-block .q::before { background: var(--gold); }
.problem .ai-block p { color: var(--ice); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.pain-card .pic {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.pain-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.pain-card p {
  color: var(--blue-soft);
  font-size: 0.92rem;
  margin: 0;
}

/* =========================================================
   WHAT IS (2-col)
   ========================================================= */
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}
.whatis-image img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(26, 58, 110, 0.12));
}
.whatis-text p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.howit {
  background: var(--cream);
}
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.mech-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.2s;
}
.mech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.mech-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ice-deep);
  line-height: 1;
}
.mech-card .ic {
  width: 50px;
  height: 50px;
  background: var(--ice);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--blue);
}
.mech-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.mech-card p { font-size: 0.94rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* =========================================================
   SVG DIAGRAM SECTION
   ========================================================= */
.diagram-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--ice) 100%);
}
.unique-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.diagram-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.diagram-wrap svg { width: 100%; height: auto; max-width: 940px; margin: 0 auto; display: block; }
.diagram-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 18px;
  font-style: italic;
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.price-card.best {
  transform: scale(1.05);
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffaf0 0%, var(--white) 100%);
  box-shadow: 0 20px 50px rgba(212, 169, 66, 0.18);
}
.price-card.best:hover { transform: scale(1.05) translateY(-4px); }
.best-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 14px rgba(212, 169, 66, 0.4);
}
.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.price-card .supply {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.price-card img {
  margin: 0 auto 16px;
  object-fit: contain;
  display: block;
}
.price-card .img-side { width: 220px; height: 220px; }
.price-card .img-best { width: 240px; height: 240px; }
.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.price-tag .currency {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.price-tag .amt {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-tag .per {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.price-total {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.price-total strong { color: var(--text); }
.price-saving {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.price-features {
  list-style: none;
  text-align: left;
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-features li {
  font-size: 0.92rem;
  padding: 5px 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 0.95rem;
}
.price-card .btn { width: 100%; margin-top: 8px; }
.price-shipping {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Bonus cards under pricing */
.bonus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 60px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-card {
  background: linear-gradient(135deg, var(--ice) 0%, var(--white) 100%);
  border: 1px solid var(--ice-deep);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.bonus-card img {
  width: 110px;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.bonus-card .bt {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bonus-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.bonus-card p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* =========================================================
   INGREDIENTS
   ========================================================= */
.ingredients {
  background: var(--cream);
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.ing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: all 0.2s;
}
.ing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ing-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ing-ic {
  width: 50px;
  height: 50px;
  background: var(--ice);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ing-head h3 { font-size: 1.1rem; margin: 0; }
.ing-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--ice);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.ing-card p { font-size: 0.93rem; color: var(--muted); margin: 0; line-height: 1.6; }

.ing-image-wrap {
  margin: 50px auto 0;
  text-align: center;
  max-width: 720px;
}
.ing-image-wrap img { border-radius: 16px; box-shadow: var(--shadow-md); }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit-card .bic {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.benefit-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.benefit-card p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline-section {
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
  position: relative;
}
.timeline-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px;
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s;
}
.timeline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline-card:nth-child(2) { border-top-color: var(--gold); }
.timeline-card:nth-child(3) { border-top-color: var(--success); }
.timeline-card:nth-child(4) { border-top-color: var(--navy); }
.tl-phase {
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.timeline-card:nth-child(2) .tl-phase { color: var(--gold-dark); }
.timeline-card:nth-child(3) .tl-phase { color: var(--success); }
.timeline-card:nth-child(4) .tl-phase { color: var(--navy); }
.timeline-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.timeline-card p { font-size: 0.94rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-section { background: var(--cream); }
.compare-wrap {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 980px;
  margin: 30px auto 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}
.compare-table thead th.our {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table .row-label {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}
.compare-table .yes { color: var(--success); font-weight: 800; font-size: 1.2rem; }
.compare-table .no { color: var(--danger); font-weight: 800; font-size: 1.2rem; }
.compare-table .mid { color: var(--gold-dark); font-weight: 700; }

/* =========================================================
   REVIEWS (Photo-forward layout)
   ========================================================= */
.reviews-disclaimer {
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 16px 22px;
  background: #fff8e8;
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
}
.reviews-disclaimer strong { color: var(--navy); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  transition: all 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.r-photo-wrap {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, var(--ice) 0%, var(--ice-deep) 100%);
  padding: 18px 18px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.r-photo-wrap img {
  max-width: 220px;
  width: auto;
  height: auto;
  max-height: 220px;
  border-radius: 6px;
  display: block;
}
.r-disclaim-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--danger);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 50px;
  border: 1px solid var(--danger);
  z-index: 2;
}
.r-photo-caption {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  padding: 6px 18px 0;
  font-style: italic;
  line-height: 1.4;
}
.r-body { padding: 18px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.r-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.r-text { font-size: 0.93rem; color: var(--text); margin-bottom: 16px; line-height: 1.6; font-style: italic; flex: 1; }
.r-author { display: flex; align-items: center; gap: 0; padding-top: 14px; border-top: 1px solid var(--line); }
.r-meta { font-size: 0.88rem; }
.r-name { font-weight: 700; color: var(--navy); }
.r-loc { color: var(--muted); font-size: 0.82rem; }
.r-verified {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.68rem;
  color: var(--success);
  font-weight: 700;
}
.reviews-footnote {
  max-width: 880px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  padding: 0 20px;
}

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
}
.guarantee-section h2 { color: var(--white); }
.guarantee-section p { color: var(--ice); max-width: 720px; margin: 0 auto 18px; }
.guarantee-seal {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--gold-dark), var(--gold), var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}
.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--white);
  border-radius: 50%;
}
.guarantee-seal-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.guarantee-seal-inner .days {
  font-family: 'Manrope', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.guarantee-seal-inner .label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}
.guarantee-section .btn { margin-top: 14px; }

/* =========================================================
   CONTRAINDICATIONS
   ========================================================= */
.contra-section {
  background: var(--cream);
}
.contra-wrap {
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 6px solid var(--danger);
  border-radius: 12px;
  padding: 36px;
  max-width: 880px;
  margin: 30px auto 0;
}
.contra-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--danger);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contra-wrap > p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
}
.contra-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}
.contra-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.contra-list .x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--danger);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 2px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap { max-width: 880px; margin: 30px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* =========================================================
   MEDICAL REVIEWER
   ========================================================= */
.reviewer-section { background: var(--cream); }
.reviewer-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  max-width: 860px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.reviewer-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--navy);
  position: relative;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.reviewer-photo::after {
  content: 'MD';
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.reviewer-info h3 { font-size: 1.4rem; margin-bottom: 4px; }
.reviewer-title { color: var(--blue); font-weight: 600; margin-bottom: 14px; font-size: 0.96rem; }
.reviewer-bio { color: var(--muted); font-size: 0.96rem; line-height: 1.65; margin-bottom: 16px; }
.reviewer-creds {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.reviewer-cred {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice);
  padding: 5px 12px;
  border-radius: 50px;
}

/* =========================================================
   REFERENCES
   ========================================================= */
.refs-section { background: var(--white); }
.refs-wrap { max-width: 880px; margin: 30px auto 0; }
.ref-item {
  padding: 16px 20px;
  border-left: 3px solid var(--blue);
  background: var(--cream);
  margin-bottom: 12px;
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}
.ref-item .ref-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--blue);
  margin-right: 6px;
}
.ref-item a {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}
.ref-item a:hover { text-decoration: underline; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: var(--ice); font-size: 1.06rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: var(--ice);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.94rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col p { color: var(--blue-soft); font-size: 0.88rem; line-height: 1.65; margin-bottom: 10px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--blue-soft); font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--blue-soft);
  font-size: 0.88rem;
}
.footer-contact-item a { color: var(--blue-soft); }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  font-size: 0.8rem;
  color: var(--blue-soft);
  line-height: 1.65;
  text-align: center;
}
.footer-disclaimer a { color: var(--blue-soft); text-decoration: underline; }
.footer-disclaimer p { margin-bottom: 10px; }
.footer-fda {
  font-style: italic;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  border-radius: 8px;
  margin: 16px auto;
  max-width: 920px;
}

/* =========================================================
   SOCIAL PROOF POPUP
   ========================================================= */
.proof-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px 14px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  z-index: 80;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.proof-popup.show { transform: translateX(0); }
.proof-popup img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--ice);
}
.proof-text { flex: 1; }
.proof-text .pp-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.proof-text .pp-action { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.proof-text .pp-time { font-size: 0.74rem; color: var(--blue); margin-top: 3px; }
.proof-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

/* =========================================================
   MOBILE STICKY CTA BAR
   ========================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  z-index: 85;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.mobile-cta-bar .btn { width: 100%; padding: 14px; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-hero {
  background: linear-gradient(135deg, var(--ice) 0%, var(--white) 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.legal-hero p { color: var(--muted); font-size: 1rem; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 24px 80px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--navy);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--navy);
}
.legal-content p,
.legal-content li {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.75;
}
.legal-content ul,
.legal-content ol { margin: 0 0 16px 24px; }
.legal-content strong { color: var(--navy); }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}
.contact-info-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 30px;
}
.contact-info-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-info-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.contact-info-item p { font-size: 1rem; color: var(--navy); margin: 0; font-weight: 600; }
.contact-info-item p a { color: var(--navy); text-decoration: none; }

/* 404 */
.notfound {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
}
.notfound .code {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0;
}
.notfound h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 14px 0 12px; }
.notfound p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto 30px; }
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.notfound-links a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 10px 22px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}
.notfound-links a:hover { background: var(--ice); }

/* =========================================================
   BLOG / ARTICLE PAGES
   ========================================================= */
.article-hero {
  background: linear-gradient(135deg, var(--ice) 0%, var(--white) 100%);
  padding: 60px 0 40px;
}
.article-hero .container { max-width: 880px; }
.article-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid var(--ice-deep);
}
.article-hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 16px;
}
.article-meta-item { display: flex; align-items: center; gap: 6px; }
.article-meta-item strong { color: var(--navy); font-weight: 600; }

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.article-content > p:first-of-type::first-letter {
  font-family: 'Manrope', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  float: left;
  line-height: 1;
  margin: 4px 10px 0 0;
  color: var(--blue);
}
.article-content p,
.article-content li {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 16px;
}
.article-content h2 {
  font-size: 1.55rem;
  margin: 40px 0 16px;
  color: var(--navy);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--navy);
}
.article-content ul,
.article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--navy); font-weight: 700; }
.article-content em { color: var(--text); }
.article-content a { color: var(--blue); font-weight: 600; }
.article-content a:hover { text-decoration: underline; }
.article-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 14px 22px;
  margin: 22px 0;
  background: var(--ice);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-content img {
  border-radius: 12px;
  margin: 26px auto;
  box-shadow: var(--shadow-md);
  max-width: 100%;
}
.article-content figure { margin: 26px 0; text-align: center; }
.article-content figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 10px;
}

/* Mid-post CTA box */
.midpost-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 22px;
  align-items: center;
}
.midpost-cta img {
  width: 100px;
  height: auto;
  margin: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  box-shadow: none;
}
.midpost-cta h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.midpost-cta p {
  color: var(--ice);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.5;
}
.midpost-cta .btn {
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.midpost-cta .btn:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* Related articles section */
.related-articles {
  background: var(--cream);
  padding: 60px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue);
}
.related-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.35;
}
.related-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.related-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Final article CTA */
.article-final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 30px;
  border-radius: 18px;
  margin: 50px auto;
  max-width: 760px;
}
.article-final-cta h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 14px;
}
.article-final-cta p {
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 22px;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.article-final-cta .btn {
  background: var(--white);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}
.article-final-cta .btn:hover { background: var(--ice); color: var(--navy); }

@media (max-width: 900px) {
  .midpost-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .midpost-cta img { margin: 0 auto; width: 80px; }
  .related-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* =========================================================
   RESPONSIVE — 900px (site-wide)
   ========================================================= */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-grid .hero-text { display: contents; }
  .hero-text h1 { order: 1; }
  .hero-image { order: 2; }
  .hero-sub { order: 3; }
  .hero-bullets { order: 4; text-align: left; max-width: 460px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
  .hero-cta { order: 5; }
  .hero-trust { order: 6; justify-content: center; }
  .hero-image img { max-width: 320px; }
  .hero-sub { max-width: 100%; }

  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .trust-item:nth-child(4),
  .trust-item:nth-child(5) { display: none; }

  .why-grid,
  .whatis-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-image { order: -1; }
  .why-image img { max-width: 360px; }
  .whatis-image img { max-width: 300px; }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .mechanism-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-card.best { transform: scale(1); order: -1; }
  .price-card.best:hover { transform: translateY(-4px); }
  .bonus-row { grid-template-columns: 1fr; max-width: 480px; }
  .ing-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 600px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .contra-list { grid-template-columns: 1fr; }
  .reviewer-card { grid-template-columns: 1fr; text-align: center; padding: 30px 24px; }
  .reviewer-photo { margin: 0 auto; width: 160px; height: 160px; font-size: 3rem; }
  .reviewer-creds { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .nav-list { display: none; }
  .nav-cta { display: inline-block !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
  .proof-popup { bottom: 84px; left: 12px; right: 12px; max-width: none; }
}

/* =========================================================
   RESPONSIVE — 560px
   ========================================================= */
@media (max-width: 560px) {
  section { padding: 50px 0; }
  .container, .container-narrow { padding: 0 18px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-trust { flex-direction: column; gap: 14px; align-items: center; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item:nth-child(3) { display: none; }
  .pain-grid,
  .mechanism-grid,
  .ing-grid,
  .benefits-grid,
  .timeline-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: auto; }
  .price-card .img-side,
  .price-card .img-best { width: 200px; height: 200px; }
  .bonus-card { flex-direction: column; text-align: center; }
  .bonus-card img { width: 130px; }
  .guarantee-seal { width: 160px; height: 160px; }
  .guarantee-seal-inner .days { font-size: 2.6rem; }
  .announce-bar { font-size: 0.78rem; padding: 8px 12px; }
  .brand { font-size: 1.15rem; }
  .brand img { width: 30px; height: 30px; }
  .nav-cta { padding: 8px 16px; font-size: 0.84rem !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
