/* =========================================
   UROVANCE — MAIN STYLESHEET
   Palette: Deep Navy + Trust Blue + Gold accents
   ========================================= */

:root {
  --navy: #0A2447;
  --navy-deep: #061634;
  --blue: #1E4FA8;
  --blue-bright: #2E5EAA;
  --sky: #4B8FE8;
  --lightblue: #EAF2FB;
  --lightblue-2: #F4F8FD;
  --gold: #E5A00D;
  --gold-soft: #F5C453;
  --white: #FFFFFF;
  --cream: #FBFCFE;
  --text: #142240;
  --text-body: #2C3A55;
  --text-muted: #5A6B85;
  --border: #D5DEEB;
  --border-soft: #E6ECF5;
  --success: #2E7D32;
  --success-bright: #43A047;
  --danger: #C62828;

  --shadow-sm: 0 2px 6px rgba(10, 36, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 36, 71, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 36, 71, 0.16);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .6rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 9px 15px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .015em;
  position: sticky;
  top: 0;
  z-index: 60;
}
.announce a { color: var(--gold-soft); font-weight: 700; text-decoration: underline; }
.announce a:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 37px;
  z-index: 55;
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
}
.brand small { display: block; font-weight: 500; font-size: .68rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
.brand-text-block { line-height: 1.1; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .22s ease;
}
.nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: .98rem;
  text-align: center;
  letter-spacing: .01em;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  line-height: 1.1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #D68F0A 100%);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(229, 160, 13, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229, 160, 13, 0.5);
  color: var(--navy);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-lg { padding: 16px 34px; font-size: 1.08rem; border-radius: 14px; }

.header-cta { padding: 10px 20px; font-size: .9rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(75, 143, 232, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, var(--lightblue-2) 0%, var(--white) 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(30, 79, 168, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 46px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 79, 168, 0.09);
  color: var(--navy);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(30, 79, 168, 0.18);
  margin-bottom: 18px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-bright);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.18);
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
  background: linear-gradient(90deg, var(--blue), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 22px;
  max-width: 520px;
}
.hero-list {
  list-style: none;
  margin-bottom: 26px;
  display: grid;
  gap: 10px;
}
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .98rem;
  color: var(--text);
  font-weight: 500;
}
.hero-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust-item svg { flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-visual img {
  max-width: 460px;
  width: 100%;
  filter: drop-shadow(0 30px 45px rgba(10, 36, 71, 0.22));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
}
.trust-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .92rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: .01em;
}
.trust-item svg { color: var(--gold-soft); flex-shrink: 0; }

/* ---------- Section base ---------- */
.section { padding: 76px 0; }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: var(--lightblue);
  border-radius: 20px;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ---------- AI Answer Block ---------- */
.ai-answer {
  background: linear-gradient(135deg, var(--lightblue) 0%, #DDECFB 100%);
  border-left: 5px solid var(--blue);
  padding: 22px 26px;
  border-radius: 12px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}
.ai-answer-q {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.06rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-answer-q::before {
  content: "AI";
  background: var(--blue);
  color: white;
  font-size: .68rem;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
  font-weight: 800;
}
.ai-answer p { margin: 0; color: var(--text); font-size: .98rem; }

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.why-img img { max-width: 100%; }
.why-list { list-style: none; display: grid; gap: 18px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.why-list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-list li svg { flex-shrink: 0; margin-top: 3px; }
.why-list h4 { font-size: 1.08rem; margin-bottom: 4px; color: var(--navy); }
.why-list p { font-size: .93rem; margin: 0; color: var(--text-muted); }

/* ---------- Problem section (dark) ---------- */
.problem {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.92);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  top: 10%; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(75, 143, 232, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.problem .section-head h2 { color: var(--white); }
.problem .section-head p { color: rgba(255,255,255,0.75); }
.problem .eyebrow { background: rgba(75, 143, 232, 0.15); color: var(--sky); }
.problem .ai-answer {
  background: rgba(30, 79, 168, 0.22);
  border-left-color: var(--sky);
  color: var(--white);
}
.problem .ai-answer-q { color: var(--white); }
.problem .ai-answer p { color: rgba(255,255,255,0.9); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 22px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.pain-card-icon {
  width: 48px; height: 48px;
  background: rgba(75, 143, 232, 0.2);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--sky);
  margin-bottom: 14px;
}
.pain-card h4 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.pain-card p {
  color: rgba(255,255,255,0.75);
  font-size: .92rem;
  margin: 0;
}

/* ---------- What is Urovance ---------- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.what-img {
  position: relative;
}
.what-img img { border-radius: 18px; box-shadow: var(--shadow-lg); }
.what-content p {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* ---------- How it works ---------- */
.mech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.mech-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.mech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}
.mech-number {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lightblue);
  letter-spacing: -0.03em;
}
.mech-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 14px;
  display: grid; place-items: center;
  color: white;
  margin-bottom: 16px;
}
.mech-card h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.mech-card p { font-size: .95rem; color: var(--text-muted); margin: 0; }

/* ---------- SVG Diagram Section (unique) ---------- */
.diagram-section {
  background: linear-gradient(180deg, var(--lightblue-2) 0%, var(--white) 100%);
  position: relative;
}
.unique-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.diagram-wrap {
  max-width: 940px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}
.diagram-wrap svg {
  width: 100%;
  height: auto;
  max-width: 860px;
  margin: 0 auto;
  display: block;
}
.diagram-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: .92rem;
  margin-top: 18px;
  font-style: italic;
}

/* ---------- Pricing ---------- */
.pricing {
  background: linear-gradient(180deg, var(--white) 0%, var(--lightblue-2) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 40px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border: 3px solid var(--gold);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(229, 160, 13, 0.22);
  background: linear-gradient(180deg, var(--white) 0%, #FEF9EE 100%);
}
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #D68F0A);
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(229, 160, 13, 0.4);
  white-space: nowrap;
}
.price-badge.popular {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  box-shadow: 0 4px 12px rgba(30, 79, 168, 0.35);
}
.price-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.price-supply {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 20px;
}
.price-img {
  margin: 0 auto 20px;
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.price-card.featured .price-img { height: 260px; }
.price-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.price-per {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 3px;
}
.price-per small { font-size: .95rem; color: var(--text-muted); font-weight: 500; }
.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 8px;
}
.price-total {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.price-save {
  display: inline-block;
  background: rgba(46, 125, 50, 0.1);
  color: var(--success);
  font-weight: 700;
  font-size: .85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.price-ship {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 22px;
  font-weight: 500;
}
.price-ship strong { color: var(--success); }
.price-cta {
  margin-top: auto;
  width: 100%;
}

.pricing-guarantee-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--lightblue) 0%, var(--white) 100%);
  border: 2px dashed var(--blue);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.bonus-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 14px;
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.bonus-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.bonus-card p { margin: 0; font-size: .92rem; color: var(--text-muted); }

/* ---------- Ingredients ---------- */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ing-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}
.ing-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--lightblue), #D6E5F7);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.ing-tag {
  display: inline-block;
  background: rgba(30, 79, 168, 0.08);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ing-card h4 { font-size: 1.12rem; color: var(--navy); margin-bottom: 8px; }
.ing-card p { font-size: .94rem; color: var(--text-body); margin: 0; }

/* ---------- Benefits ---------- */
.bene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bene-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--lightblue-2) 100%);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: transform .2s ease, border-color .2s ease;
}
.bene-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
}
.bene-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-soft);
}
.bene-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.bene-card p { font-size: .87rem; color: var(--text-muted); margin: 0; }

/* ---------- Timeline ---------- */
.timeline {
  background: linear-gradient(180deg, var(--white) 0%, var(--lightblue-2) 100%);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  margin-top: 40px;
}
.timeline-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--blue));
  border-radius: 3px;
  z-index: 0;
}
.tl-card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.tl-badge {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(30, 79, 168, 0.35);
}
.tl-card h4 { font-size: 1.08rem; text-align: center; color: var(--navy); margin-bottom: 10px; }
.tl-card p { font-size: .92rem; color: var(--text-muted); margin: 0; text-align: center; }

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: .94rem;
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  text-align: center;
}
.compare-table thead th.hero-col {
  background: linear-gradient(135deg, var(--gold), #D68F0A);
  color: var(--navy);
}
.compare-table tbody td { text-align: center; color: var(--text-body); }
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--lightblue-2);
}
.compare-table tbody tr:nth-child(even) td:not(:first-child) { background: var(--cream); }
.chk { color: var(--success-bright); font-weight: 800; }
.xmark { color: var(--danger); font-weight: 800; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  color: var(--text-body);
  font-size: .95rem;
  margin-bottom: 18px;
  flex-grow: 1;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lightblue);
}
.review-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.review-loc { color: var(--text-muted); font-size: .82rem; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--success);
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: auto;
}

/* ---------- Guarantee ---------- */
.guarantee {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: "";
  position: absolute;
  top: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(75, 143, 232, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.guarantee::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229, 160, 13, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.guarantee-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.guarantee-seal {
  width: 180px; height: 180px;
  margin: 0 auto 24px;
  background:
    conic-gradient(from 0deg, var(--gold) 0deg, var(--gold-soft) 90deg, var(--gold) 180deg, #C88B0A 270deg, var(--gold) 360deg);
  border-radius: 50%;
  padding: 8px;
  display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(229, 160, 13, 0.4);
}
.guarantee-seal-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #FFF7E6 0%, #FEF0CE 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}
.guarantee-seal-inner .days {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}
.guarantee-seal-inner .lbl {
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}
.guarantee h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}
.guarantee p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 16px;
}
.guarantee .btn { margin-top: 20px; }

/* ---------- Contraindications ---------- */
.contra {
  background: var(--lightblue-2);
}
.contra-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px 42px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--danger);
}
.contra-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.contra-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(198, 40, 40, 0.04);
  border-radius: 10px;
  font-size: .96rem;
  color: var(--text);
}
.contra-list li::before {
  content: "✕";
  color: var(--danger);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- FAQ ---------- */
.faq {
  background: linear-gradient(180deg, var(--white) 0%, var(--lightblue-2) 100%);
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--sky); }
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
}
.faq-q:hover { color: var(--blue); }
.faq-toggle {
  width: 30px; height: 30px;
  background: var(--lightblue);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  transition: transform .22s ease, background .22s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--text-body);
  font-size: .96rem;
}

/* ---------- Medical Reviewer ---------- */
.reviewer {
  background: var(--white);
}
.reviewer-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--lightblue-2) 0%, var(--white) 100%);
  padding: 40px 42px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-sm);
}
.reviewer-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.reviewer-info h3 { color: var(--navy); margin-bottom: 4px; }
.reviewer-cred {
  color: var(--blue);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 12px;
}
.reviewer-info p {
  color: var(--text-body);
  font-size: .94rem;
  margin: 0;
}

/* ---------- References ---------- */
.refs {
  background: var(--lightblue-2);
}
.refs-list {
  max-width: 860px;
  margin: 20px auto 0;
  background: var(--white);
  padding: 32px 36px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
}
.refs-list ol {
  padding-left: 24px;
  color: var(--text-body);
}
.refs-list li {
  margin-bottom: 12px;
  font-size: .92rem;
  line-height: 1.55;
}
.refs-list a { color: var(--blue); word-break: break-word; }
.refs-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .84rem;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 76px 0;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 42px;
}
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  transition: color .18s ease;
}
.footer-col ul a:hover { color: var(--sky); }
.footer-col p { font-size: .88rem; color: rgba(255,255,255,0.65); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.footer-disclaimer {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-disclaimer p { margin-bottom: 10px; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: .84rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Social proof popup ---------- */
.social-pop {
  position: fixed;
  bottom: 22px; left: 22px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(10, 36, 71, 0.22);
  padding: 14px 16px 14px 14px;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 70;
  animation: slideIn .4s ease;
  border: 1px solid var(--border-soft);
}
.social-pop.show { display: flex; }
@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.social-pop-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--success), var(--success-bright));
  border-radius: 10px;
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.social-pop-text { font-size: .84rem; color: var(--text); line-height: 1.35; flex-grow: 1; }
.social-pop-text strong { color: var(--navy); }
.social-pop-time { color: var(--text-muted); font-size: .74rem; margin-top: 3px; }
.social-pop-close {
  position: absolute;
  top: 4px; right: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 4px;
  font-size: 1.05rem;
  line-height: 1;
}
.social-pop-close:hover { color: var(--navy); background: var(--lightblue-2); }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 65;
  box-shadow: 0 -6px 22px rgba(10, 36, 71, 0.12);
}
.mobile-cta .btn { width: 100%; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 12px; box-shadow: var(--shadow-md); border-top: 1px solid var(--border-soft); }
  .nav.open { display: flex; }
  .nav a { padding: 8px 0; width: 100%; border-bottom: 1px solid var(--border-soft); }
  .nav a::after { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header { position: relative; }
  .header-inner { position: relative; }
  .hero { padding: 40px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .hero-visual { order: 2; }
  .hero-visual img { max-width: 300px; }
  .hero-mobile-order-1 { order: 1; }
  .hero-mobile-order-2 { order: 3; }
  .why-grid, .what-grid { grid-template-columns: 1fr; gap: 30px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .mech-grid, .ing-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .pricing-guarantee-row { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before { display: none; }
  .reviewer-card { flex-direction: column; text-align: center; padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section { padding: 56px 0; }
  .mobile-cta { display: block; }
  body { padding-bottom: 68px; }
  .social-pop { max-width: calc(100% - 32px); left: 16px; right: 16px; bottom: 78px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .pain-grid, .mech-grid, .ing-grid, .reviews-grid, .bene-grid, .timeline-grid { grid-template-columns: 1fr; }
  .contra-wrap, .refs-list, .reviewer-card { padding: 28px 22px; }
  .bonus-card { flex-direction: column; text-align: center; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.55rem; }
  .guarantee-seal { width: 140px; height: 140px; }
  .guarantee-seal-inner .days { font-size: 2.2rem; }
  .brand small { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-visual img { animation: none; }
}

/* Print */
@media print {
  .announce, .site-header, .site-footer, .social-pop, .mobile-cta { display: none; }
}
