@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   SUGARCONTROL-EN.COM — CRIMSON / WARM WHITE
   CSS: parvox.css | prefix: px-
   ============================================= */
:root {
  --crim:  #9b0a1e;
  --crim2: #740818;
  --crim3: #b01222;
  --crim4: #fdf0f2;
  --crim5: #f0bdc4;
  --rose:  #d41830;
  --rose2: #b0101e;
  --white: #ffffff;
  --cream: #fdf8f6;
  --cream2:#f5ecea;
  --light: #faf5f5;
  --text:  #1c0508;
  --muted: #622030;
  --border:#e2bcc2;
  --gray:  #9a6878;
  --gold:  #d4920e;
  --gold2: #b87a0c;
  --gold3: #fff7e0;
  --gold4: #fce09a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

h1 { font-family: 'Merriweather', serif; font-size: clamp(32px,4.2vw,58px); font-weight: 900; line-height: 1.12; color: var(--crim2); }
h2 { font-family: 'Merriweather', serif; font-size: clamp(26px,3.2vw,44px); font-weight: 700; line-height: 1.2; color: var(--crim2); }
h3 { font-size: clamp(18px,2vw,21px); font-weight: 700; color: var(--text); }
p  { font-size: clamp(17px,1.7vw,19px); color: var(--muted); line-height: 1.9; }

.px-chip {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--crim); background: var(--crim4); padding: 6px 16px;
  border-radius: 999px; border: 1.5px solid var(--crim5); margin-bottom: 12px;
}

/* NAV */
.px-nav {
  background: var(--crim2);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 3px 20px rgba(116,8,24,0.45);
  width: 100%;
}
.px-nav-row {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; height: 62px; flex-wrap: nowrap;
}
.px-logo {
  flex-shrink: 0;
  font-family: 'Merriweather', serif;
  font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: -0.2px;
}
.px-logo em { color: var(--gold4); font-style: italic; }
.px-nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap; flex: 1; justify-content: center;
  min-width: 0; overflow: hidden;
}
.px-nav-links a {
  color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 600;
  padding: 6px 11px; border-radius: 6px; white-space: nowrap; transition: all .15s;
}
.px-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.px-nav-btn {
  flex-shrink: 0; background: var(--gold); color: var(--white) !important;
  font-weight: 800; border-radius: 8px; padding: 10px 20px;
  font-size: 14px; white-space: nowrap; display: inline-block; transition: background .2s;
}
.px-nav-btn:hover { background: var(--gold2); color: var(--white) !important; }
@media (max-width: 767px) {
  .px-nav-links { display: none; }
  .px-nav-row { padding: 0 14px; height: 56px; justify-content: space-between; }
  .px-logo { font-size: 15px; }
  .px-nav-btn { font-size: 13px; padding: 9px 14px; flex-shrink: 0; }
}

/* BUTTONS */
.px-btn { display: inline-block; padding: 16px 36px; border-radius: 10px; font-size: 17px; font-weight: 800; cursor: pointer; border: none; transition: all .2s; text-align: center; line-height: 1; font-family: 'Poppins', sans-serif; }
.px-btn-rose  { background: var(--rose);  color: var(--white); }
.px-btn-rose:hover  { background: var(--rose2);  color: var(--white); }
.px-btn-gold  { background: var(--gold);  color: var(--white); }
.px-btn-gold:hover  { background: var(--gold2); color: var(--white); }
.px-btn-crim  { background: var(--crim);  color: var(--white); }
.px-btn-crim:hover  { background: var(--crim2); color: var(--white); }
.px-btn-out   { background: transparent; color: var(--crim); border: 2px solid var(--crim); }
.px-btn-out:hover   { background: var(--crim); color: var(--white); }
.px-btn-out-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.px-btn-out-w:hover { background: var(--white); color: var(--crim2); }

/* LAYOUT */
.px-wrap    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.px-wrap-sm { max-width: 840px;  margin: 0 auto; padding: 0 24px; }
.px-sec  { padding: 90px 0; }
.px-hd   { text-align: center; max-width: 780px; margin: 0 auto 58px; }
.px-hd p { margin-top: 16px; font-size: 19px; }

/* HERO — white bg, big image */
.px-hero {
  background: var(--white);
  padding: 80px 0 90px;
  border-bottom: 3px solid var(--crim4);
}
.px-hero-row {
  display: grid; grid-template-columns: 1fr 460px;
  align-items: center; gap: 52px;
}
.px-hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.px-hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.px-hero h1 { margin-bottom: 12px; }
.px-hero h1 span { color: var(--rose); }
.px-hero-sub { font-size: 18px; color: var(--muted); line-height: 1.85; margin: 16px 0 24px; }
.px-hero-ul { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.px-hero-ul li { display: flex; align-items: flex-start; gap: 11px; font-size: 17px; color: var(--text); font-weight: 600; }
.px-hero-ul li::before { content: "✅"; flex-shrink: 0; }
.px-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.px-hero-pic img { filter: drop-shadow(0 22px 48px rgba(155,10,30,0.18)); width: 100%; }
.px-star-row { display: flex; align-items: center; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.px-stars { color: #f5c842; font-size: 21px; }
.px-star-txt { font-size: 15px; color: var(--gray); font-weight: 700; }
.px-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.px-badge-item { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); border: 1.5px solid var(--crim5); border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: var(--crim); }

/* TRUST STRIP */
.px-strip { background: var(--crim2); padding: 14px 0; }
.px-strip-row { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.px-strip-item { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 7px; }

/* TRUST BADGES */
.px-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.px-trust-card { text-align: center; padding: 28px 16px; border: 2px solid var(--border); border-radius: 14px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.px-trust-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(155,10,30,0.1); }
.px-trust-card img { height: 60px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.px-trust-card h3 { font-size: 16px; margin-bottom: 7px; color: var(--crim); }
.px-trust-card p  { font-size: 13px; }

/* SPLIT */
.px-split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.px-split img { border-radius: 18px; width: 100%; box-shadow: 0 12px 40px rgba(155,10,30,0.12); }
.px-split h2 { margin-bottom: 16px; }
.px-split p  { margin-bottom: 14px; }
.px-chk-ul { list-style: none; margin: 16px 0; }
.px-chk-ul li { display: flex; align-items: flex-start; gap: 11px; font-size: 18px; color: var(--text); padding: 9px 0; border-bottom: 1px solid var(--border); font-weight: 600; }
.px-chk-ul li:last-child { border-bottom: none; }
.px-chk-ul li::before { content: "✅"; flex-shrink: 0; }

/* EXPERT DARK SECTION */
.px-expert { background: linear-gradient(135deg, var(--crim2) 0%, #3a040e 100%); padding: 80px 0; }
.px-expert-row { display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: center; }
.px-expert-row img { border-radius: 16px; width: 100%; border: 2px solid rgba(255,255,255,0.1); }
.px-expert h2 { color: var(--white); margin-bottom: 18px; }
.px-expert p  { color: rgba(255,255,255,0.78); font-size: 18px; margin-bottom: 14px; }
.px-expert-quote { border-left: 4px solid var(--gold); padding-left: 20px; margin: 24px 0; font-style: italic; font-family: 'Merriweather', serif; color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.8; }

/* REVIEWS */
.px-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.px-rev-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; box-shadow: 0 4px 16px rgba(155,10,30,0.06); }
.px-rev-card img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 3px solid var(--crim5); }
.px-rev-headline { font-family: 'Merriweather', serif; font-size: 16px; font-weight: 700; color: var(--crim); margin-bottom: 12px; font-style: italic; }
.px-rev-stars { color: #f5c842; font-size: 18px; margin-bottom: 8px; }
.px-rev-badge { font-size: 12px; color: var(--rose); font-weight: 700; margin-bottom: 12px; }
.px-rev-card p { font-size: 16px; color: var(--muted); font-style: italic; font-family: 'Merriweather', serif; line-height: 1.85; }
.px-rev-name  { font-size: 14px; color: var(--gray); font-weight: 700; margin-top: 14px; }

/* INGREDIENTS */
.px-ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.px-ing-card { padding: 26px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; transition: box-shadow .2s; }
.px-ing-card:hover { box-shadow: 0 8px 24px rgba(155,10,30,0.1); }
.px-ing-card img { width: 78px; height: 78px; border-radius: 12px; object-fit: cover; margin-bottom: 14px; border: 2px solid var(--crim5); }
.px-ing-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--crim); }
.px-ing-card p  { font-size: 15px; }

/* TIMELINE */
.px-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.px-tl-card { text-align: center; padding: 32px 22px; border-radius: 18px; background: var(--white); border: 2px solid var(--border); position: relative; overflow: hidden; }
.px-tl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--crim), var(--rose)); }
.px-tl-num { font-family: 'Merriweather', serif; font-size: 42px; font-weight: 900; color: var(--crim4); line-height: 1; margin-bottom: 10px; }
.px-tl-label { font-size: 12px; font-weight: 800; color: var(--rose); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.px-tl-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--crim); }
.px-tl-card p  { font-size: 15px; }

/* BENEFITS */
.px-ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.px-ben-card { padding: 26px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; display: flex; gap: 16px; align-items: flex-start; transition: box-shadow .2s; }
.px-ben-card:hover { box-shadow: 0 8px 24px rgba(155,10,30,0.08); }
.px-ben-ico { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.px-ben-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--crim); }
.px-ben-card p  { font-size: 15px; }

/* PRICING */
.px-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.px-pkg { padding: 34px 22px; background: var(--white); border: 2px solid var(--border); border-radius: 18px; text-align: center; transition: all .2s; position: relative; }
.px-pkg:hover { box-shadow: 0 12px 36px rgba(155,10,30,0.12); transform: translateY(-3px); }
.px-pkg.px-best { border-color: var(--rose); box-shadow: 0 8px 32px rgba(212,24,48,0.2); }
.px-pkg-lbl { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 6px 18px; border-radius: 999px; margin-bottom: 14px; }
.px-pkg-lbl-gold { background: var(--gold); color: var(--white); }
.px-pkg-lbl-rose { background: var(--rose); color: var(--white); }
.px-pkg-lbl-crim { background: var(--crim); color: var(--white); }
.px-pkg img { max-width: 150px; margin: 0 auto 16px; }
.px-pkg h3 { font-size: 21px; color: var(--text); margin-bottom: 6px; }
.px-pkg-days { font-size: 15px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.px-price { font-family: 'Merriweather', serif; font-size: 54px; font-weight: 900; color: var(--crim2); line-height: 1; }
.px-price-u { font-size: 16px; font-weight: 400; color: var(--muted); }
.px-was { font-size: 14px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.px-save { font-size: 13px; font-weight: 800; color: var(--rose); margin-bottom: 8px; }
.px-total { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.px-fl { list-style: none; text-align: left; margin-bottom: 18px; }
.px-fl li { font-size: 14px; color: var(--muted); padding: 5px 0; display: flex; gap: 9px; align-items: flex-start; font-weight: 600; border-bottom: 1px solid var(--crim4); }
.px-fl li:last-child { border-bottom: none; }
.px-fl li::before { content: "✔"; color: var(--rose); font-weight: 900; flex-shrink: 0; }

/* BONUSES */
.px-bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.px-bonus-card { padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; text-align: center; }
.px-bonus-card img { max-width: 110px; margin: 0 auto 14px; border-radius: 8px; }
.px-bonus-free { display: inline-block; font-size: 11px; font-weight: 800; color: var(--gold2); background: var(--gold3); padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--gold4); }
.px-bonus-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--crim); }
.px-bonus-card p  { font-size: 13px; }

/* GUARANTEE */
.px-guar { background: linear-gradient(135deg, var(--crim2) 0%, #280610 100%); padding: 86px 0; }
.px-guar-row { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.px-guar-row img { max-width: 200px; }
.px-guar-row h2 { color: var(--white); margin-bottom: 16px; }
.px-guar-row p  { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 12px; }
.px-guar-ul { list-style: none; margin: 18px 0; }
.px-guar-ul li { color: rgba(255,255,255,0.9); font-size: 18px; padding: 7px 0; display: flex; gap: 12px; font-weight: 600; }
.px-guar-ul li::before { content: "✔"; color: var(--gold4); font-weight: 900; }

/* HOW TO USE */
.px-use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.px-use-card { padding: 26px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.px-use-n { width: 48px; height: 48px; background: var(--crim4); color: var(--crim); font-family: 'Merriweather', serif; font-size: 20px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--crim5); }
.px-use-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--crim); }
.px-use-card p  { font-size: 16px; }

/* FAQ */
.px-faq-item { border: 2px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.px-fq { width: 100%; background: var(--white); border: none; text-align: left; padding: 22px 28px; font-size: 18px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: 'Poppins', sans-serif; }
.px-fq .px-ico { font-size: 24px; color: var(--rose); flex-shrink: 0; transition: transform .2s; }
.px-fq[aria-expanded="true"] { background: var(--crim2); color: var(--white); }
.px-fq[aria-expanded="true"] .px-ico { color: var(--gold4); transform: rotate(45deg); }
.px-fa { padding: 20px 28px; font-size: 17px; color: var(--muted); line-height: 1.9; background: var(--crim4); display: none; }
.px-fa.px-open { display: block; }

/* PAGE CTA */
.px-pcta { background: linear-gradient(135deg, var(--crim2) 0%, var(--crim3) 100%); padding: 70px 0; }
.px-pcta h2 { color: var(--white); margin-bottom: 14px; }
.px-pcta p  { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 24px; }

/* FINAL CTA */
.px-final { background: linear-gradient(135deg, var(--crim2) 0%, #180410 100%); padding: 86px 0; }
.px-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.px-final h2 { color: var(--white); margin-bottom: 14px; }
.px-final p  { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 16px; }
.px-final-price { font-family: 'Merriweather', serif; font-size: 24px; font-weight: 700; color: var(--gold4); margin-bottom: 26px; }
.px-final img { max-width: 240px; filter: drop-shadow(0 14px 30px rgba(155,10,30,0.35)); }

/* STICKY */
.px-stick { background: var(--crim2); border-top: 3px solid var(--gold); padding: 13px 0; position: sticky; bottom: 0; z-index: 99; }
.px-stick-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.px-stick strong { color: var(--white); font-size: 17px; font-family: 'Merriweather', serif; }
.px-stick span { color: rgba(255,255,255,0.45); font-size: 14px; margin-left: 10px; font-weight: 600; }

/* FOOTER */
.px-foot { background: var(--crim2); border-top: 1px solid rgba(255,255,255,0.08); padding: 62px 0 26px; }
.px-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.px-ft-name { font-family: 'Merriweather', serif; font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.px-ft-name em { color: var(--gold4); font-style: italic; }
.px-foot p  { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.px-foot h4 { font-size: 12px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: 2px; text-transform: uppercase; }
.px-foot a  { display: block; font-size: 14px; color: rgba(255,255,255,0.42); margin-bottom: 9px; font-weight: 600; }
.px-foot a:hover { color: var(--gold4); }
.px-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.px-disc { font-size: 13px; color: rgba(255,255,255,0.22); line-height: 1.85; }
.px-hl { background: var(--cream2); border: 2px solid var(--crim5); border-radius: 12px; padding: 22px; margin-top: 22px; }
.px-note { font-size: 14px; color: var(--muted); font-style: italic; margin-top: 10px; }

/* INGREDIENTS WORK GRID */
.px-work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.px-work-grid img { border-radius: 10px; border: 2px solid var(--border); width: 100%; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .px-hero-row { grid-template-columns: 1fr; text-align: center; }
  .px-hero-btns { justify-content: center; }
  .px-star-row { justify-content: center; }
  .px-badge-row { justify-content: center; }
  .px-hero-pic img { max-width: 320px; margin: 0 auto; }
  .px-split { grid-template-columns: 1fr; }
  .px-trust-grid { grid-template-columns: repeat(2,1fr); }
  .px-pkg-grid { grid-template-columns: 1fr 1fr; }
  .px-expert-row { grid-template-columns: 1fr; }
  .px-ft-grid { grid-template-columns: 1fr 1fr; }
  .px-guar-row { grid-template-columns: 1fr; text-align: center; }
  .px-guar-row img { margin: 0 auto; }
  .px-timeline { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .px-sec { padding: 60px 0; }
  .px-ing-grid, .px-use-grid, .px-ben-grid, .px-bonus-grid { grid-template-columns: 1fr; }
  .px-rev-grid { grid-template-columns: 1fr; }
  .px-pkg-grid { grid-template-columns: 1fr; }
  .px-final-row { grid-template-columns: 1fr; text-align: center; }
  .px-final img { margin: 0 auto; }
  .px-ft-grid { grid-template-columns: 1fr; }
  .px-strip-row { gap: 14px; }
  .px-split img { order: -1; }
  .px-work-grid { grid-template-columns: repeat(2,1fr); }
}
