html {
  font-size: 15px; /* base consistent font size */
  -webkit-text-size-adjust: 100%; /* stops iOS/Chrome mobile from resizing text */
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif; /* or your chosen font */
  line-height: 1.5;
}

:root{
  --magenta:#d81b60;
  --dark:#0b0b0d;
  --ink:#111217;
  --text:#20222a;
  --muted:#6c7280;
  --bg:#ffffff;
  --alt:#f7f8fb;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

/* Layout */
.container{width:min(1120px,92%);margin:0 auto}
.center{text-align:center}

/* Header */
.site-header{position:sticky;top:0;background:#fff;z-index:50;border-bottom:1px solid #eee}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:700}
.logo{height:38px;width:auto}
.nav-links a{margin:0 10px;text-decoration:none;color:var(--text);font-weight:600}
.nav-links a:hover{color:var(--magenta)}
.nav .btn.small{padding:8px 14px;font-size:14px}

/* Buttons */
.btn{display:inline-block;padding:14px 22px;border-radius:10px;font-weight:700;text-decoration:none}
.btn-magenta {
  background: var(--magenta);
  color: #fff;
  font-size: 1.15rem;     /* slightly larger text */
  font-weight: 700;
  padding: 16px 28px;     /* more padding for balance */
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(216,27,96,.25);
  transition: all 0.25s ease;
}

.btn-magenta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 22px rgba(216,27,96,.35);
  background: #b5154d;   /* slightly deeper on hover */
}

/* Hero */
.hero{background:linear-gradient(180deg,#fff, #fff 40%, #fef3f7);padding:30px 0 20px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:40px;align-items:center}
.hero h1{font-size:46px;line-height:1.1;margin:0 0 8px;font-weight:800;color:var(--ink)}
.hero .sub{font-size:18px;color:#3b3f4a;margin:0 0 18px}
.hero-points{list-style:none;padding:0;margin:0 0 18px}
.hero-points li{margin:8px 0;padding-left:28px;position:relative}
.hero-points li::before{content:"✔";position:absolute;left:0;top:0;color:var(--magenta);font-weight:800}
.cta-row{display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.guarantee{display:block;color:var(--muted);margin-top:4px}

.hero-media{position:relative}
.cover{width:100%;height:auto;border-radius:14px}
.cover.small{max-width:420px}
.shadow{box-shadow:0 18px 40px rgba(17,18,23,.18)}
.badge{position:absolute;top:10px;left:10px;background:var(--magenta);color:#fff;padding:6px 10px;border-radius:999px;font-weight:700}

/* Trust strip */
.trust{background:#fff;padding:16px 0 8px}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.trust-card{background:#fff;border:1px solid #eee;border-radius:10px;padding:12px;text-align:center}
.trust-emoji{font-size:20px;display:block}

/* Sections */
.section{padding:64px 0}
.section.alt{background:var(--alt)}
.section h2{font-size:32px;margin:0 0 18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid #eee;border-radius:12px;padding:18px}
.card h3{margin:0 0 6px;font-size:18px;color:var(--ink)}

/* Inside */
.inside-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center}
.inside-list{columns:2;column-gap:30px;margin:0;padding-left:18px}
.format{margin-top:14px;color:#3b3f4a}

.bonus-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;align-items:center}
.ticks{list-style:none;margin:14px 0 0;padding:0}
.ticks li{margin:8px 0;padding-left:26px;position:relative}
.ticks li::before{content:"✓";position:absolute;left:0;color:var(--magenta);font-weight:800}

/* Quotes */
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.quotes blockquote{margin:0;padding:18px;border-left:6px solid var(--magenta);background:#fff;border-radius:10px}

/* CTA big */
.cta{background:linear-gradient(180deg,#fff,#fef3f7)}
.cta h2{margin:0 0 6px}
.cta .cta-row{justify-content:center;margin-top:8px}

/* FAQ */
.faq details{background:#fff;border:1px solid #eee;border-radius:10px;padding:14px;margin:10px 0}
.faq summary{cursor:pointer;font-weight:700;color:var(--ink)}

/* Footer */
.footer{
  background:#000;
  color:#fff;
  padding:28px 0;
  border-top:3px solid var(--magenta);
  text-align:center;
}
.footer .insta{display:inline-flex;gap:10px;align-items:center;margin-bottom:16px;padding:8px 14px;border-radius:10px;background:rgba(255,255,255,.05);cursor:pointer;transition:.25s}
.footer .insta:hover{transform:scale(1.05);background:rgba(255,255,255,.1)}
.footer .insta img{height:28px;width:28px}
.footer .payments{margin:14px 0 8px;display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.footer .payments img{height:36px;width:64px;background:#fff;padding:6px 10px;border-radius:6px;object-fit:contain;box-shadow:0 0 5px rgba(255,255,255,.25);transition:.25s}
.footer .payments img:hover{transform:scale(1.06)}
.footer .payments-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:10px;
  color:#f1f1f1;
}
.footer .links{display:flex;gap:16px;justify-content:center;margin:10px 0 8px}
.footer .links a{text-decoration:none;color:#fff}
.footer .links a:hover{color:var(--magenta)}
.footer .copy{color:#aaa;margin:8px 0 0;font-size:14px}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;gap:22px}
  .inside-grid,.bonus-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:1fr 1fr}
  .quotes{grid-template-columns:1fr}
  .inside-list{columns:1}
}
@media (max-width:600px){
  .nav-links{display:none}
  .hero h1{font-size:36px}
  .grid-3{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr 1fr}
}

/* Custom Direct Buy Button */
.custom-buy-button {
  display: inline-block;
  background: #d81b60;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}
.custom-buy-button:hover {
  background: #ff4fa3;
  transform: scale(1.05);
  box-shadow: 0px 6px 14px rgba(0,0,0,0.35);
}

.price-line {
  font-size: 1.4rem;       /* bigger than button text */
  font-weight: 700;
  margin-bottom: 10px;
}

.price-line .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-weight: 500;
}

.price-line .new {
  color: var(--magenta);
  font-weight: 800;
  font-size: 1.6rem;       /* make the $19 stand out more */
}

.save-badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  h1, h2, h3 {
    font-size: 1.2em; /* keeps titles proportional */
  }

  .btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Scale down site slightly on mobile Chrome */
html {
  font-size: 95%;  /* 100% → 95% = zoomed out effect */
}

.footer .credit {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #aaa;   /* lighter gray to make it subtle */
  text-align: center;
}

/* Chrome mobile specific fix */
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  @media screen and (max-width: 768px) {
    html {
      font-size: 90%; /* Shrinks everything to ~90% for Chrome mobile */
    }
  }
}

/* ===== MG carousel: final, mobile-friendly, no blur, book-page mockup ===== */

/* intro paragraph */
.benefit-intro { color:var(--muted); max-width:720px; margin:0 auto 18px; font-size:1.03rem; }

/* carousel base */
.benefit-carousel { position:relative; max-width:760px; margin:0 auto 10px; overflow:hidden; }
.benefit-carousel .slides {
  display:flex;
  width:100%;
  transition:transform .55s cubic-bezier(.22,.9,.25,1);
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
}
.benefit-carousel .slides:active { cursor: grabbing; }

/* each slide */
.benefit-carousel .slide { min-width:100%; box-sizing:border-box; display:flex; flex-direction:column; align-items:center; position:relative; padding:18px 12px 34px; }

/* page-frame: book page mockup */
.page-frame { width:100%; max-width:640px; background:#fff; border-radius:14px; padding:12px; box-shadow: 0 14px 34px rgba(6,8,15,0.12); border:1px solid rgba(0,0,0,0.04); }
.page-frame img { display:block; width:100%; height:auto; object-fit:contain; border-radius:8px; background:#fff; box-shadow: inset 0 0 0 8px #fff; }

/* subtle active zoom (applied by JS via .active on slide) */
.benefit-carousel .slide.active .page-frame { transform: scale(1.012); transition: transform .35s ease; }

/* overlay: left-aligned text, no blur; dark gradient to add contrast */
.benefit-carousel .overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  width: calc(100% - 36px);
  max-width:640px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  z-index: 20;
  /* lightweight gradient for readability (no backdrop-filter) */
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.72) 65%);
  box-shadow: 0 8px 26px rgba(6,8,15,0.12);
  text-align: left; /* left aligned text */
}

/* overlay text styles with stagger-ready transitions */
.overlay-title { margin:0 0 6px; font-size:1.18rem; font-weight:700; opacity:0; transform:translateY(8px); transition:opacity .42s ease, transform .42s ease; }
.overlay-text { margin:0; opacity:0; transform:translateY(8px); transition:opacity .55s ease, transform .55s ease; }

/* When slide is active, reveal overlay text (staggered) */
.benefit-carousel .slide.active .overlay-title { opacity:1; transform:translateY(0); transition-delay:0.08s; }
.benefit-carousel .slide.active .overlay-text  { opacity:1; transform:translateY(0); transition-delay:0.22s; }

/* dots */
.carousel-dots { text-align:center; margin-top:10px; }
.carousel-dots button { width:10px; height:10px; border-radius:50%; margin:0 6px; border:0; background:#e3e3e3; cursor:pointer; transition: background .22s, transform .18s; }
.carousel-dots button.active { background: var(--magenta); transform: scale(1.06); }

/* Mini highlights row */
.mini-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.mini-highlights div {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.mini-highlights span {
  color: var(--magenta);
  font-weight: 800;
  margin-right: 6px;
}

/* Lifetime note */
.lifetime-note {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}
/* responsive */
@media (max-width:880px) {
  .page-frame { max-width:520px; }
  .benefit-carousel .overlay { left: 50%; transform: translateX(-50%); width: calc(100% - 28px); bottom:16px; padding:10px 12px; }
}
@media (max-width:560px) {
  .page-frame { padding:8px; }
  .page-frame img { border-radius:6px; }
  .overlay-title { font-size:1.02rem; }
  .overlay-text { font-size:.88rem; }
}

/* small accessibility focus outline */
.carousel-dots button:focus { outline: 2px solid rgba(216,27,96,0.18); outline-offset:2px; }

/* Adjust benefits section heading for desktop */
#benefits h2 {
  text-align: left;
  margin-bottom: 24px;
}

/* On wider screens, keep it inward for balance */
@media (min-width: 981px) {
  #benefits h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sub-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 28px;
  text-align: center;
}
