/* =====================================================
   VITALAIZ BLOG DESIGN SYSTEM
   Pink/purple brand, Montserrat + Open Sans
   ===================================================== */
:root {
  --pink: #E91E63;
  --pink-dark: #C2185B;
  --purple: #9C27B0;
  --purple-dark: #7B1FA2;
  --purple-deep: #4A148C;
  --gradient: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
  --gradient-soft: linear-gradient(135deg, #FCE4EC 0%, #F3E5F5 100%);
  --text: #2c2c2c;
  --text-soft: #555;
  --text-muted: #888;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --border: #f0e6f0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px; line-height: 1.7; color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.brand-header { background: var(--gradient); box-shadow: 0 2px 12px rgba(156,39,176,0.2); position: relative; z-index: 100; }
.brand-header-inner { max-width: 1200px; margin: 0 auto; padding: 20px 28px 16px; display: flex; align-items: center; justify-content: center; position: relative; }
.brand-id { display: flex; flex-direction: column; align-items: center; text-decoration: none; gap: 5px; }
.brand-wordmark { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 34px; color: #fff; line-height: 1; letter-spacing: 0.5px; }
.brand-tagline { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.92); text-transform: uppercase; font-weight: 500; }
.header-actions { display: flex; align-items: center; gap: 12px; position: absolute; right: 28px; top: 50%; transform: translateY(-50%); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--pink-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.12); white-space: nowrap; transition: transform 0.15s ease; }
.header-cta:hover { transform: translateY(-1px); }
.main-nav { background: rgba(0,0,0,0.10); border-top: 1px solid rgba(255,255,255,0.12); }
.main-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; }
.main-nav a { display: block; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; padding: 15px 17px; text-decoration: none; border-bottom: 2px solid transparent; transition: border-bottom-color 0.2s ease, background 0.2s ease; }
.main-nav a:hover { border-bottom-color: #fff; background: rgba(255,255,255,0.06); }
.nav-toggle { display: none; }
.hamburger { display: none; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; margin: 5px 0; transition: transform 0.25s ease, opacity 0.2s ease; }
@media (max-width: 900px) {
  .hamburger { display: inline-block; }
  .main-nav { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .main-nav a { padding: 14px 28px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle:checked ~ .brand-header .main-nav { max-height: 600px; }
  .nav-toggle:checked ~ .brand-header .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .brand-header .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .brand-header .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand-wordmark { font-size: 28px; }
  .header-actions { right: 16px; }
}
@media (max-width: 600px) {
  .header-cta .label-full { display: none; }
}

/* ===== ARTICLE ===== */
.article { max-width: 760px; margin: 0 auto; padding: 46px 28px 24px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px; margin-bottom: 18px; text-transform: uppercase; }
.breadcrumb a { color: var(--purple-dark); text-decoration: none; }

h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 38px; line-height: 1.2; color: var(--purple-deep); margin: 0 0 24px; letter-spacing: -0.5px; }
h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 27px; line-height: 1.3; color: var(--purple-deep); margin: 54px 0 18px; letter-spacing: -0.3px; }
h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 20px; line-height: 1.35; color: var(--text); margin: 30px 0 12px; padding-left: 16px; border-left: 4px solid var(--pink); }
p { margin: 0 0 18px; }
p.lede { font-size: 19px; line-height: 1.65; color: var(--text); }
p.lede strong { color: var(--purple-deep); font-weight: 600; }
strong { color: var(--text); font-weight: 700; }
em { color: var(--purple-dark); font-style: italic; }
a { color: var(--pink-dark); text-decoration: none; border-bottom: 1px solid rgba(194,24,91,0.3); transition: border-color 0.2s ease; }
a:hover { border-bottom-color: var(--pink-dark); }
ul, ol { margin: 0 0 22px; padding-left: 22px; }
li { margin-bottom: 9px; line-height: 1.6; }
ol li::marker { color: var(--pink); font-weight: 700; }

/* ===== HERO ===== */
.hero { background: var(--gradient-soft); border-radius: 20px; padding: 30px 32px; margin: 0 0 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-text { flex: 1 1 300px; }
.hero-eyebrow { display: inline-block; background: var(--gradient); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; }
.hero-text p { font-size: 16px; color: var(--text-soft); margin: 0; }
.hero-photo { flex: 0 0 auto; text-align: center; }
.hero-photo img { max-height: 400px; width: auto; display: block; filter: drop-shadow(0 12px 26px rgba(74,20,140,0.22)); }
@media (max-width: 560px) { .hero { padding: 24px 20px; } .hero-photo { width: 100%; } .hero-photo img { max-height: 190px; margin: 0 auto; } }

/* ===== FAILED-SOLUTIONS CARDS ===== */
.failed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
@media (max-width: 620px) { .failed-grid { grid-template-columns: 1fr; } }
.failed-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; box-shadow: 0 3px 14px rgba(156,39,176,0.06); }
.failed-card .tried { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--purple-deep); margin: 0 0 6px; }
.failed-card .why { font-size: 14.5px; color: var(--text-soft); margin: 0; line-height: 1.55; }
.failed-card .why b { color: var(--pink-dark); font-weight: 700; }

/* ===== MECHANISM SECTION ===== */
.mechanism { background: linear-gradient(180deg, #FFF8FB 0%, #F5EAF6 100%); border-radius: 20px; padding: 30px 30px 24px; margin: 34px 0; border: 1px solid var(--border); }
.mechanism h2 { margin-top: 0; }
.mech-figure { margin: 18px auto 8px; max-width: 620px; }
.mech-figure svg { width: 100%; height: auto; display: block; }
.mech-caption { font-size: 14px; color: var(--text-soft); text-align: center; margin-top: 12px; font-style: italic; line-height: 1.5; }
.mech-points { list-style: none; padding: 0; margin: 22px 0 0; }
.mech-points li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: 16px; }
.mech-points li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--pink); font-size: 18px; }
.mech-points b { color: var(--purple-deep); }

/* ===== CLAIM CALLOUTS (sourced stats) ===== */
.claims { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 26px 0; }
@media (max-width: 620px) { .claims { grid-template-columns: 1fr; } }
.claim { background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--pink); border-radius: 14px; padding: 18px 18px 16px; text-align: center; box-shadow: 0 3px 14px rgba(156,39,176,0.06); }
.claim .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px; color: var(--purple-deep); line-height: 1; }
.claim .desc { font-size: 14px; color: var(--text-soft); margin-top: 8px; line-height: 1.45; }
.claim .src { font-size: 11.5px; color: var(--text-muted); margin-top: 8px; }
.claim .src a { color: var(--text-muted); border: none; }
sup.ref { font-size: 11px; color: var(--pink-dark); font-weight: 700; }

/* ===== EXPECTATIONS / HONESTY BOX ===== */
.expect { background: var(--gradient-soft); border-radius: 16px; padding: 24px 28px; margin: 30px 0; border-left: 5px solid var(--purple); }
.expect h3 { border: none; padding: 0; margin: 0 0 12px; color: var(--purple-deep); }
.expect ul { margin: 0; }
.expect li { font-size: 15.5px; }

/* ===== TABLE ===== */
table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 26px 0; background: var(--bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(156,39,176,0.1); }
th { background: var(--gradient); color: #fff; padding: 14px 16px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; }
td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: top; font-size: 15px; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg-alt); }
td:first-child { font-weight: 600; color: var(--purple-dark); }

/* ===== MID CTA ===== */
.mid-cta { margin: 46px 0; text-align: center; background: var(--gradient-soft); border-radius: 18px; padding: 30px 28px; }
.mid-cta .cta-headline { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 700; color: var(--purple-deep); margin: 0 0 8px; line-height: 1.4; }
.mid-cta .cta-subline { font-size: 16px; color: var(--text-soft); margin: 0 0 22px; }
.cta-button { display: inline-block; background: var(--gradient); color: #fff !important; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(13px,2.2vw,17px); padding: 16px 30px; border-radius: 50px; letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; box-shadow: 0 8px 24px rgba(233,30,99,0.4); transition: transform 0.2s ease, box-shadow 0.2s ease; border: none; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(233,30,99,0.5); }
.cta-button .icon { margin-right: 8px; }

/* ===== REVIEWS ===== */
.reviews-section { margin: 54px 0 40px; }
.reviews-header { text-align: center; margin-bottom: 28px; }
.reviews-stats { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; background: var(--gradient-soft); border-radius: 50px; padding: 12px 24px; }
.reviews-stats .rating-number { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: var(--purple-deep); line-height: 1; }
.reviews-stats .rating-stars { color: #FFA000; font-size: 18px; letter-spacing: 2px; }
.reviews-stats .rating-meta { font-size: 13px; color: var(--text-soft); line-height: 1.3; }
.reviews-stats .rating-meta strong { color: var(--purple-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; box-shadow: 0 3px 14px rgba(156,39,176,0.06); display: flex; flex-direction: column; gap: 10px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; color: var(--purple-deep); line-height: 1.2; }
.review-stars { color: #FFA000; font-size: 14px; letter-spacing: 1.5px; margin-top: 2px; }
.review-text { font-size: 15px; line-height: 1.55; color: var(--text); font-style: italic; }
.review-text::before { content: '\201C'; color: var(--pink); font-size: 22px; font-weight: 700; margin-right: 2px; line-height: 0; }
.review-text::after { content: '\201D'; color: var(--pink); font-size: 22px; font-weight: 700; margin-left: 2px; line-height: 0; }
.reviews-cta-link { display: inline-block; margin-top: 24px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: var(--purple-dark); text-align: center; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--gradient); color: #fff; padding: 46px 36px; border-radius: 20px; margin: 56px 0 36px; text-align: center; }
.final-cta h2 { color: #fff; margin: 0 0 12px; font-size: 29px; }
.final-cta p { margin-bottom: 16px; color: rgba(255,255,255,0.95); }
.final-cta .cta-button { background: #fff; color: var(--pink-dark) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.15); margin: 8px 6px; }
.final-cta a { color: #fff; }

/* ===== REFERENCES + FOOTNOTE ===== */
.refs { margin: 40px 0 0; }
.refs h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--purple-dark); border: none; padding: 0; }
.refs ol { font-size: 13px; color: var(--text-soft); padding-left: 20px; }
.refs li { margin-bottom: 7px; line-height: 1.5; }
.refs a { color: var(--text-muted); }
.footnote { font-size: 13px; color: var(--text-muted); font-style: italic; border-top: 1px solid var(--border); padding-top: 18px; margin-top: 24px; line-height: 1.6; }

/* ===== FLOATING CTA ===== */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 99; display: inline-flex; align-items: center; gap: 10px; background: var(--gradient); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; padding: 16px 26px; border-radius: 50px; text-decoration: none; box-shadow: 0 10px 30px rgba(233,30,99,0.45); opacity: 0; pointer-events: none; transform: translateY(24px); transition: opacity 0.35s ease, transform 0.35s ease; white-space: nowrap; }
.floating-cta:hover { transform: translateY(-2px); }
body.show-floating-cta .floating-cta { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 600px) { .floating-cta { bottom: 16px; right: 16px; left: 16px; justify-content: center; padding: 14px 22px; } }

/* ===== FOOTER ===== */
.site-footer { background: linear-gradient(180deg, #2D0E3D 0%, #4A148C 100%); color: rgba(255,255,255,0.92); padding: 48px 24px 28px; font-size: 14.5px; line-height: 1.6; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }
.footer-col h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer-brand .logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px; color: #fff; line-height: 1; margin-bottom: 6px; }
.footer-brand .tagline { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2.5px; color: rgba(255,255,255,0.8); text-transform: uppercase; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.85); }
.site-footer strong { color: #fff; }
.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-line .icon { flex-shrink: 0; width: 18px; color: var(--pink); font-weight: 700; }
.footer-contact-line a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: rgba(255,255,255,0.85); text-decoration: none; border: none; }
.footer-col ul a:hover { color: #fff; }
.footer-col ul a::before { content: '\203A'; color: var(--pink); margin-right: 8px; font-weight: 700; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; border: none; transition: background 0.2s ease; }
.footer-social a:hover { background: var(--pink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { max-width: 1180px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; gap: 16px; font-size: 12.5px; color: rgba(255,255,255,0.65); flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.7); border: none; }

/* ===== RESPONSIVE TYPE ===== */
@media (max-width: 600px) {
  .article { padding: 30px 18px 60px; }
  h1 { font-size: 27px; }
  h2 { font-size: 22px; margin-top: 40px; }
  h3 { font-size: 18px; }
  p.lede { font-size: 17px; }
  .mechanism { padding: 24px 18px 18px; }
  .final-cta { padding: 32px 22px; }
  .final-cta h2 { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) { .floating-cta { transition: opacity 0.2s linear; } }

/* ===== BEFORE/AFTER GALLERY (illustrative) ===== */
.ba-note { font-size: 13px; color: var(--text-muted); font-style: italic; margin: 0 0 18px; }
.ba-group { margin-bottom: 22px; }
.ba-group h3 { margin: 20px 0 12px; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.ba-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 8px; box-shadow: 0 2px 10px rgba(156,39,176,.06); display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba-half { position: relative; }
.ba-half img { width: 100%; border-radius: 8px; display: block; }
.ba-chip { position: absolute; top: 8px; left: 8px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #fff; padding: 3px 9px; border-radius: 20px; }
.ba-chip.before { background: #9E9E9E; }
.ba-chip.after { background: var(--gradient); }

/* ===== TABLE OF CONTENTS ===== */
.toc { background: var(--gradient-soft); border: 1px solid var(--border); border-radius: 14px; padding: 18px 24px; margin: 26px 0; }
.toc h4 { font-family: 'Montserrat', sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--purple-dark); margin: 0 0 10px; }
.toc ol { margin: 0; padding-left: 22px; } .toc li { margin-bottom: 6px; line-height: 1.5; }
.toc a { color: var(--purple-dark); border-bottom: 1px solid rgba(123,31,162,0.25); }

/* ===== SPEC LIST ===== */
.specs { list-style: none; padding: 0; margin: 18px 0; }
.specs li { padding: 11px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; flex-wrap: wrap; font-size: 16px; }
.specs li b { color: var(--purple-deep); min-width: 165px; display: inline-block; }

/* ===== FAQ ACCORDION ===== */
.faq { margin: 18px 0 8px; }
.faq details { border-bottom: 1px solid var(--border); padding: 15px 0; }
.faq summary { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 17px; color: var(--purple-deep); cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: -2px; font-size: 24px; color: var(--pink); line-height: 1; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { margin: 12px 0 0; color: var(--text-soft); font-size: 16px; }
.faq details ol, .faq details ul { margin: 12px 0 0; color: var(--text-soft); }

/* ===== PRICE TABLE ===== */
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 18px 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(156,39,176,.1); font-size: 15px; }
.price-table th { background: var(--gradient); color: #fff; padding: 13px 16px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; }
.price-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.grp { background: var(--gradient-soft); color: var(--purple-deep); font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 13px; }
.price-table td.zone { font-weight: 600; color: var(--text); }
.price-table td.price { white-space: nowrap; color: var(--purple-dark); font-weight: 600; }
.price-note { font-size: 13px; color: var(--text-muted); font-style: italic; margin: 6px 0 0; }

/* ===== INFOGRAPHIC (hybrid: AI visual + HTML overlay) ===== */
.ig { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px 22px 26px; margin: 30px 0; box-shadow: 0 4px 18px rgba(156,39,176,.07); text-align: center; }
.ig-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-deep); margin: 0 0 16px; }
.ig-canvas { position: relative; max-width: 720px; margin: 0 auto; }
.ig-canvas img { width: 100%; display: block; border-radius: 12px; }
.ig-tag { position: absolute; top: 14px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.4px; color: #fff; padding: 6px 14px; border-radius: 50px; box-shadow: 0 4px 12px rgba(0,0,0,.22); }
.ig-tag.left { left: 25%; transform: translateX(-50%); background: #E91E63; }
.ig-tag.right { left: 75%; transform: translateX(-50%); background: #7B1FA2; }
.ig-tag.danger { background: #C62828; }
.ig-tag.safe { background: #2E7D32; }
.ig-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; text-align: left; }
.ig-bullets .ig-col-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--purple-deep); margin: 0 0 6px; letter-spacing: 0.3px; }
.ig-bullets ul { margin: 0; padding-left: 18px; font-size: 15px; color: var(--text-soft); }
.ig-bullets ul li { margin-bottom: 6px; line-height: 1.5; }
.ig-caption { font-size: 13px; color: var(--text-muted); font-style: italic; margin: 14px 0 0; text-align: center; }
@media (max-width: 620px) { .ig-bullets { grid-template-columns: 1fr; gap: 16px; } .ig-tag { font-size: 11px; padding: 4px 10px; top: 8px; } }

/* ===== COMPARISON FIGURE (authored SVG) ===== */
.cmp { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px 22px 24px; margin: 30px 0; box-shadow: 0 4px 18px rgba(156,39,176,.07); }
.cmp-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-deep); text-align: center; margin: 0 0 14px; }
.cmp svg { width: 100%; height: auto; max-width: 820px; display: block; margin: 0 auto; }
.cmp-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.cmp-col-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; margin: 0 0 6px; letter-spacing: 0.3px; }
.cmp-col-title.bad { color: #C62828; } .cmp-col-title.good { color: #2E7D32; }
.cmp-bullets ul { margin: 0; padding-left: 18px; font-size: 14.5px; }
.cmp-bullets ul li { margin-bottom: 5px; line-height: 1.55; }
.cmp-bullets .col-bad ul li { color: #C62828; } .cmp-bullets .col-good ul li { color: #2E7D32; }
.cmp-caption { font-size: 13px; color: var(--text-muted); font-style: italic; text-align: center; margin: 12px 0 0; }
@media (max-width: 620px) { .cmp-bullets { grid-template-columns: 1fr; gap: 14px; } }

/* ===== TRUST / CREDIBILITY BADGES ===== */
.trust { background: var(--gradient-soft); border: 1px solid var(--border); border-radius: 20px; padding: 26px 24px; margin: 36px 0; }
.trust-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-deep); text-align: center; margin: 0 0 6px; }
.trust-sub { text-align: center; font-size: 14px; color: var(--text-soft); margin: 0 0 18px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.trust-badge { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 14px 16px; text-align: center; display: flex; flex-direction: column; gap: 8px; align-items: center; box-shadow: 0 2px 10px rgba(156,39,176,.06); }
.trust-badge .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.5px; }
.trust-badge .hd { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--purple-deep); line-height: 1.25; margin: 0; }
.trust-badge .sd { font-size: 12.5px; color: var(--text-soft); line-height: 1.45; margin: 0; }
.trust-badge a { color: var(--pink-dark); border-bottom: 1px solid rgba(194,24,91,0.3); }
.trust-foot { font-size: 12px; color: var(--text-muted); text-align: center; margin: 14px 0 0; line-height: 1.5; }


/* Specs dropdown */
.spec-drop {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0 16px;
  margin: 18px 0;
  background: #fafafa;
}
.spec-drop > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 600;
  color: #4A148C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.spec-drop > summary::-webkit-details-marker { display: none; }
.spec-drop > summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: #9C27B0;
  transition: transform .2s ease;
}
.spec-drop[open] > summary::after { content: "−"; }
.spec-drop > summary:hover { color: #9C27B0; }
.spec-drop .specs { margin: 0 0 14px; }


/* Bold standout claim cards */
.claims-bold { gap: 18px; }
.claims-bold .claim {
  border: none;
  background: linear-gradient(180deg, #fff 0%, #FFF5FA 100%);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 12px 28px rgba(74,20,140,0.12);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.claims-bold .claim::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #E91E63 0%, #9C27B0 100%);
}
.claims-bold .claim .num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 50%, #E91E63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.claims-bold .claim .desc {
  font-size: 17px;
  line-height: 1.45;
  color: #2a1547;
  font-weight: 500;
}
.claims-bold .claim.hero {
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 60%, #E91E63 100%);
  box-shadow: 0 18px 40px rgba(233,30,99,0.28);
  transform: scale(1.02);
}
.claims-bold .claim.hero::before { display: none; }
.claims-bold .claim.hero .num {
  font-size: 68px;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.claims-bold .claim.hero .desc { color: #fff; font-weight: 600; font-size: 18px; }
@media (max-width: 760px) {
  .claims-bold .claim.hero { transform: none; }
  .claims-bold .claim .num { font-size: 48px; }
  .claims-bold .claim.hero .num { font-size: 56px; }
}


/* Social-proof line above hair before/after grid */
.ba-note.ba-hero {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #4A148C;
  font-style: normal;
  text-align: center;
  margin: 28px auto 22px;
  max-width: 720px;
  padding: 22px 18px;
  background: linear-gradient(135deg, rgba(233,30,99,0.06) 0%, rgba(156,39,176,0.08) 100%);
  border-radius: 16px;
  border-left: 4px solid #E91E63;
  border-right: 4px solid #E91E63;
}
@media (max-width: 760px) {
  .ba-note.ba-hero { font-size: 20px; padding: 18px 14px; }
}


/* Timeline infographic: 3 panels */
.ig-three { position: relative; }
.ig-three .ig-tag {
  position: absolute;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4A148C, #9C27B0);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2px;
  white-space: nowrap;
  max-width: 30%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.ig-three .ig-tag.t1 { left: 16.66%; transform: translateX(-50%); }
.ig-three .ig-tag.t2 { left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #9C27B0, #E91E63); }
.ig-three .ig-tag.t3 { left: 83.33%; transform: translateX(-50%); }
.ig-bullets.ig-bullets-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 14px; }
.ig-bullets.ig-bullets-3 > div { text-align: center; }
.ig-bullets.ig-bullets-3 p { margin: 0 0 6px; }
@media (max-width: 760px) {
  .ig-bullets.ig-bullets-3 { grid-template-columns: 1fr; }
  .ig-three .ig-tag { font-size: 10px; padding: 3px 7px; top: 6px; letter-spacing: 0; }
}
@media (max-width: 420px) {
  .ig-three .ig-tag { font-size: 9px; padding: 3px 6px; }
}


/* Methods visual comparison */
.method-compare {
  margin: 22px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74,20,140,0.10);
  background: #fff;
}
.mc-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  align-items: center;
  padding: 16px 14px;
  border-bottom: 1px solid #f0e9f5;
  gap: 10px;
}
.mc-row:last-child { border-bottom: none; }
.mc-head {
  background: linear-gradient(90deg, #4A148C, #9C27B0);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 18px 14px;
}
.mc-head .mc-cell { color: #fff; }
.mc-name { font-weight: 700; color: #2a1547; font-size: 15px; line-height: 1.3; }
.mc-name small { display:block; font-size:12px; color:#9C27B0; font-weight:600; margin-top:3px; letter-spacing: .3px; }
.mc-stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mc-stat small { font-size:12px; color:#555; font-weight:500; }
.mc-best { background: linear-gradient(90deg, #FFF5FA 0%, #FCE4EC 100%); }
.mc-best .mc-name { color: #4A148C; font-weight: 800; font-size: 16px; }

.dots { display:inline-flex; gap:4px; }
.dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #E5DEE9;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(74,20,140,0.08);
}
.dots.d5 i:nth-child(-n+5),
.dots.d4 i:nth-child(-n+4),
.dots.d3 i:nth-child(-n+3),
.dots.d2 i:nth-child(-n+2),
.dots.d1 i:nth-child(-n+1) {
  background: #E91E63;
  box-shadow: 0 1px 3px rgba(233,30,99,0.35);
}
.dots.inline i { width: 9px; height: 9px; }

.mc-legend {
  font-size: 14px;
  color: #444;
  text-align: center;
  margin-top: 14px;
  font-weight: 500;
}
.mc-legend .dots { vertical-align: middle; margin-right: 4px; }

@media (max-width: 760px) {
  .mc-row { grid-template-columns: 1.4fr .9fr .9fr .9fr; padding: 14px 8px; gap: 6px; }
  .mc-head { font-size: 11px; padding: 14px 6px; letter-spacing: .4px; }
  .mc-name { font-size: 13px; }
  .mc-best .mc-name { font-size: 14px; }
  .dots i { width: 9px; height: 9px; gap: 3px; }
  .dots { gap: 3px; }
  .mc-stat small { font-size: 11px; }
}


/* Limited offer card */
.offer-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  margin: 18px 0 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 55%, #E91E63 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(233,30,99,0.28);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.offer-big {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.offer-text { flex: 1; }
.offer-title {
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  opacity: 0.95;
}
.offer-sub {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .offer-card { flex-direction: column; text-align: center; padding: 22px 18px; gap: 8px; }
  .offer-big { font-size: 64px; }
  .offer-sub { font-size: 16px; }
}

/* Price tables dropdown */
.price-drop {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 0 18px;
  margin: 16px 0;
  background: #fafafa;
}
.price-drop > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-size: 17px;
  color: #4A148C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-drop > summary::-webkit-details-marker { display: none; }
.price-drop > summary::after {
  content: "Виж цените →";
  font-size: 13px;
  background: linear-gradient(135deg, #E91E63, #9C27B0);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.price-drop[open] > summary::after { content: "Скрий цените ↑"; }
.price-drop > summary:hover::after { transform: translateX(2px); }
.price-drop .price-table {
  margin-bottom: 18px;
  width: 100%;
  table-layout: fixed;
}
.price-drop .price-table th,
.price-drop .price-table td {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.price-drop .price-table th { font-size: 13px; padding: 10px 6px; }
.price-drop .price-table td { padding: 10px 6px; font-size: 14px; }
.price-drop .price-table td.zone { font-weight: 500; }
.price-drop .price-table td.price { white-space: nowrap; text-align: center; }

@media (max-width: 760px) {
  .price-drop { padding: 0 10px; }
  .price-drop > summary { font-size: 15px; padding: 14px 0; gap: 8px; }
  .price-drop > summary::after { font-size: 12px; padding: 6px 12px; }
  .price-drop .price-table th { font-size: 11px; padding: 8px 4px; }
  .price-drop .price-table td { font-size: 12px; padding: 8px 4px; }
}


/* Reviews horizontal scroll carousel */
.reviews-scroll {
  margin: 16px -16px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #9C27B0 transparent;
}
.reviews-scroll::-webkit-scrollbar { height: 6px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #9C27B0, #E91E63); border-radius: 3px; }
.reviews-scroll::-webkit-scrollbar-track { background: transparent; }

.reviews-track {
  display: flex;
  gap: 16px;
  padding: 8px 16px 16px;
}
.reviews-track .review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(74,20,140,0.10);
  border: 1px solid #f0e9f5;
}

@media (max-width: 760px) {
  .reviews-track .review-card { flex: 0 0 280px; }
}


/* Promo image card (placeholder + future <img>) */
.promo-img-card {
  display: block;
  margin: 22px 0 28px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(74,20,140,0.20);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.promo-img-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(74,20,140,0.28);
}
.promo-img-card img {
  display: block;
  width: 100%;
  height: auto;
}
.promo-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 260px;
  padding: 36px 22px;
  text-align: center;
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 50%, #E91E63 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.promo-img-badge {
  display: inline-block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
  background: #fff;
  color: #4A148C;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 1;
}
.promo-img-headline {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 520px;
  z-index: 1;
}
.promo-img-zones {
  font-size: 15px;
  opacity: 0.92;
  z-index: 1;
}
.promo-img-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  z-index: 1;
}

/* Narrow page (T&C / legal pages) */
.page-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 22px 60px;
  font-family: 'Open Sans', sans-serif;
  color: #2a1547;
  line-height: 1.65;
}
.page-narrow h1 {
  font-family: 'Montserrat', sans-serif;
  color: #4A148C;
  font-size: 28px;
  margin: 0 0 8px;
}
.page-narrow h2 {
  font-family: 'Montserrat', sans-serif;
  color: #4A148C;
  font-size: 20px;
  margin: 28px 0 10px;
}
.page-narrow .lede {
  font-size: 17px;
  color: #555;
  margin: 0 0 24px;
}

@media (max-width: 760px) {
  .promo-img-placeholder { min-height: 220px; padding: 28px 18px; }
  .promo-img-badge { font-size: 28px; padding: 8px 18px; }
  .promo-img-headline { font-size: 18px; }
}


/* Reviews 2-row grid (no carousel) */
.reviews-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 8px;
}
.reviews-grid-2 .review-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(74,20,140,0.10);
  border: 1px solid #f0e9f5;
}
@media (max-width: 760px) {
  .reviews-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .reviews-grid-2 { grid-template-columns: 1fr; }
}


/* Scratch card popup modal */
.scratch-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.scratch-modal.open { display: flex; }
.scratch-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 5, 35, 0.72);
  backdrop-filter: blur(4px);
  animation: scratchFadeIn .25s ease;
}
.scratch-dialog {
  position: relative;
  width: min(440px, 92vw);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: scratchPop .35s cubic-bezier(.2,1.2,.4,1);
  overflow: hidden;
}
@keyframes scratchFadeIn { from{opacity:0} to{opacity:1} }
@keyframes scratchPop { from{opacity:0;transform:scale(.92) translateY(20px)} to{opacity:1;transform:none} }
.scratch-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(74,20,140,0.08);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #4A148C;
  z-index: 2;
}
.scratch-close:hover { background: rgba(74,20,140,0.15); }
.scratch-stage {
  padding: 28px 24px 24px;
  text-align: center;
}
.scratch-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E91E63;
  margin: 0 0 18px;
  padding: 5px 12px;
  background: rgba(233,30,99,0.08);
  border-radius: 999px;
}
.scratch-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #4A148C;
  margin: 0 0 18px;
  line-height: 1.3;
}
.scratch-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 18px;
  box-shadow:
    0 12px 28px -8px rgba(74,20,140,0.16),
    0 4px 12px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(74,20,140,0.06);
}
.scratch-reveal {
  z-index: 0;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 4px;
}
.scratch-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(135deg, #4A148C 0%, #E91E63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.scratch-line { margin: 0; color: #4A148C; font-size: 17px; font-weight: 700; letter-spacing: .2px; }
.scratch-zone { margin: 4px 0 0; color: #4A148C; font-size: 14px; font-weight: 600; letter-spacing: .3px; }
.scratch-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  cursor: grab;
  touch-action: none;
  transition: opacity .5s ease;
}
.scratch-canvas:active { cursor: grabbing; }
.scratch-canvas.done { opacity: 0; pointer-events: none; }
.scratch-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  font-size: 12px;
  color: #4A148C;
  pointer-events: none;
  font-weight: 700;
  letter-spacing: .3px;
}
.scratch-timer { margin: 2px 0 18px; }
.scratch-timer-cells {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}
.scratch-timer-cells .cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F8F4FB;
  color: #4A148C;
  border-radius: 12px;
  padding: 10px 8px;
  border: 1px solid rgba(74,20,140,0.10);
}
.scratch-timer-cells .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.scratch-timer-cells .unit {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .7;
  margin-top: 4px;
  color: #6A1B9A;
}
.scratch-cta.is-locked { opacity: 0; transform: translateY(8px); pointer-events: none; height: 0; padding: 0; margin: 0; overflow: hidden; }
.scratch-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #E91E63, #9C27B0);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(233,30,99,0.35);
  margin-bottom: 10px;
  transition: transform .15s ease;
}
.scratch-cta:hover { transform: translateY(-1px); }
.scratch-stage.revealed .scratch-cta:not(.is-locked) { animation: ctaPop .35s cubic-bezier(.2,1.2,.4,1); }
@keyframes ctaPop { from { opacity:0; transform: translateY(8px);} to { opacity:1; transform:none;} }
.scratch-cta .icon { font-size: 18px; }
.scratch-terms {
  display: inline-block;
  font-size: 13px;
  color: #9C27B0;
  text-decoration: none;
  border-bottom: 1px solid rgba(156,39,176,0.3);
  padding-bottom: 1px;
}
.scratch-terms:hover { color: #4A148C; border-bottom-color: #4A148C; }

@media (max-width: 480px) {
  .scratch-title { font-size: 17px; }
  .scratch-timer-cells .cell { padding: 6px 10px; min-width: 50px; }
  .scratch-timer-cells .num { font-size: 19px; }
  .scratch-cta.is-locked { opacity: 0; transform: translateY(8px); pointer-events: none; height: 0; padding: 0; margin: 0; overflow: hidden; }
.scratch-cta { font-size: 15px; padding: 14px 18px; }
}


/* Floating "see the secret offer" manual trigger */
.secret-offer-fab.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.secret-offer-fab {
  position: fixed;
  left: 16px;
  bottom: 88px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4A148C, #E91E63);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  box-shadow: 0 12px 28px rgba(74,20,140,0.32);
  cursor: pointer;
  transition: opacity .35s ease, transform .35s ease;
  animation: secretPulse 2s ease-in-out infinite;
}
.secret-offer-fab .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFEB3B;
  box-shadow: 0 0 0 0 rgba(255,235,59,0.7);
  animation: secretDot 1.5s ease-out infinite;
}
@keyframes secretPulse {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes secretDot {
  0% { box-shadow: 0 0 0 0 rgba(255,235,59,0.7); }
  100% { box-shadow: 0 0 0 12px rgba(255,235,59,0); }
}
@media (max-width: 760px) {
  .secret-offer-fab.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.secret-offer-fab { left: 12px; bottom: 80px; font-size: 12px; padding: 10px 14px; }
}


/* High-power 3-card grid */
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0;
}
.power-card {
  background: linear-gradient(180deg, #fff 0%, #FFF5FA 100%);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(74,20,140,0.10);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74,20,140,0.06);
}
.power-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #E91E63, #9C27B0);
}
.power-card .power-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #4A148C 0%, #9C27B0 50%, #E91E63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.power-card .power-num small { font-size: 22px; opacity: .85; margin-left: 2px; }
.power-card .power-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #2a1547;
}
.power-card .power-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}
@media (max-width: 760px) {
  .power-grid { grid-template-columns: 1fr; gap: 14px; }
  .power-card { padding: 20px 16px; }
  .power-card .power-num { font-size: 44px; }
}

/* Study list inside research dropdown */
.study-list li { margin-bottom: 10px; line-height: 1.5; }
.study-list a {
  display: inline-block;
  margin-top: 2px;
  font-size: 13px;
  color: #9C27B0;
  background: rgba(156,39,176,0.08);
  padding: 3px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.study-list a:hover { background: rgba(156,39,176,0.16); }

/* Static (non-floating) book-appointment button */
.book-bar { padding: 18px 0 6px; text-align: center; }
.book-bar-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; padding: 16px 40px; border-radius: 50px; text-decoration: none; border: none; box-shadow: 0 8px 22px rgba(156,39,176,0.3); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.book-bar-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(156,39,176,0.38); border-bottom: none; }
.book-bar-btn span { color: #fff; }
