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

/* =============================================
   COM-SUGARCONTROL.COM — DEEP CRIMSON / WARM RED
   CSS: corvex.css | prefix: cv-
   Blood Sugar & Metabolic Support
   ============================================= */
:root {
  --crim:   #8b0a1a;
  --crim2:  #640818;
  --crim3:  #a01020;
  --crim4:  #fdf0f1;
  --crim5:  #f0c0c5;
  --red:    #c41230;
  --red2:   #a00e28;
  --red3:   #fff5f6;
  --red4:   #f8d0d5;
  --gold:   #c8900a;
  --gold2:  #a87208;
  --gold3:  #fff8e6;
  --gold4:  #fde6a0;
  --white:  #ffffff;
  --cream:  #fdf9f8;
  --cream2: #f5efed;
  --text:   #1a0508;
  --muted:  #5a1520;
  --border: #e0c0c5;
  --gray:   #9a7075;
}

*, *::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: 'Raleway', 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: 'Lora', serif; font-size: clamp(34px,4.5vw,62px); font-weight: 700; line-height: 1.1; color: var(--crim2); }
h2 { font-family: 'Lora', serif; font-size: clamp(28px,3.4vw,48px); font-weight: 700; line-height: 1.2; color: var(--crim2); }
h3 { font-size: clamp(19px,2vw,22px); font-weight: 800; color: var(--text); }
p  { font-size: clamp(18px,1.8vw,20px); color: var(--muted); line-height: 1.9; }

.cv-pill {
  display: inline-block; font-size: 11px; font-weight: 800;
  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 — STICKY, ONE LINE
   ═══════════════════════ */
.cv-nav {
  background: var(--crim2);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 3px 24px rgba(100,8,24,0.5);
  width: 100%;
}
.cv-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;
}
.cv-logo {
  flex-shrink: 0;
  font-family: 'Lora', serif;
  font-size: 19px; font-weight: 700; color: var(--white);
}
.cv-logo em { color: var(--gold4); font-style: italic; }
.cv-nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap; flex: 1; justify-content: center;
  min-width: 0; overflow: hidden;
}
.cv-nav-links a {
  color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 700;
  padding: 6px 11px; border-radius: 6px; white-space: nowrap; transition: all .15s;
}
.cv-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.cv-nav-btn {
  flex-shrink: 0; background: var(--gold); color: var(--white) !important;
  font-weight: 800; border-radius: 8px; padding: 10px 20px;
  font-size: 15px; white-space: nowrap; display: inline-block; transition: background .2s;
}
.cv-nav-btn:hover { background: var(--gold2); color: var(--white) !important; }
@media (max-width: 767px) {
  .cv-nav-links { display: none; }
  .cv-nav-row { padding: 0 14px; height: 56px; justify-content: space-between; }
  .cv-logo { font-size: 16px; }
  .cv-nav-btn { font-size: 13px; padding: 9px 14px; flex-shrink: 0; }
}

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

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

/* HERO */
.cv-hero {
  background: var(--white);
  padding: 90px 0 100px;
  border-bottom: 3px solid var(--crim4);
}
.cv-hero-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.cv-hero h1 { color: var(--crim2); margin-bottom: 14px; }
.cv-hero-deck { font-family: 'Lora', serif; font-size: 21px; color: var(--red); margin-bottom: 18px; font-style: italic; }
.cv-hero-sub { color: var(--muted); font-size: 20px; line-height: 1.9; margin-bottom: 22px; }
.cv-hero-ul { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.cv-hero-ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); font-weight: 700; }
.cv-hero-ul li::before { content: "✅"; flex-shrink: 0; margin-top: 2px; }
.cv-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.cv-hero-pic { width: 420px; flex-shrink: 0; }
.cv-hero-pic img { filter: drop-shadow(0 24px 48px rgba(139,10,26,0.18)); }
.cv-star-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.cv-stars { color: #f5c842; font-size: 22px; }
.cv-star-txt { font-size: 17px; color: var(--muted); font-weight: 700; }
.cv-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--crim4); border: 1.5px solid var(--crim5); border-radius: 999px; padding: 6px 18px; font-size: 12px; font-weight: 800; color: var(--crim); margin-bottom: 16px; letter-spacing: 1.5px; text-transform: uppercase; }

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

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

/* REVIEWS */
.cv-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.cv-rev-card { padding: 30px; background: var(--white); border: 2px solid var(--border); border-radius: 18px; box-shadow: 0 4px 18px rgba(139,10,26,0.06); }
.cv-rev-card img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid var(--crim5); }
.cv-rev-stars { color: #f5c842; font-size: 20px; margin-bottom: 10px; }
.cv-rev-name  { font-size: 18px; font-weight: 800; color: var(--crim); }
.cv-rev-place { font-size: 14px; color: var(--gray); margin-bottom: 14px; font-weight: 700; }
.cv-rev-card p { font-size: 17px; color: var(--muted); font-style: italic; line-height: 1.85; font-family: 'Lora', serif; }
.cv-rev-tick  { font-size: 13px; color: var(--red); font-weight: 800; margin-top: 14px; }

/* HOW STEPS */
.cv-step-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cv-step-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; display: flex; gap: 18px; align-items: flex-start; transition: box-shadow .2s; }
.cv-step-card:hover { box-shadow: 0 8px 24px rgba(139,10,26,0.1); }
.cv-step-num { min-width: 52px; height: 52px; background: linear-gradient(135deg, var(--crim) 0%, var(--red) 100%); color: var(--white); font-size: 20px; font-weight: 900; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Lora', serif; }
.cv-step-card h3 { font-size: 20px; margin-bottom: 8px; }
.cv-step-card p  { font-size: 16px; }

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

/* BENEFITS */
.cv-ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cv-ben-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; transition: box-shadow .2s; }
.cv-ben-card:hover { box-shadow: 0 8px 24px rgba(139,10,26,0.08); }
.cv-ben-ico { font-size: 32px; margin-bottom: 14px; }
.cv-ben-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--crim); }
.cv-ben-card p  { font-size: 17px; }

/* TIMELINE */
.cv-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cv-tl-card { text-align: center; padding: 30px 20px; border-radius: 20px; border: 2px solid var(--border); background: var(--white); position: relative; }
.cv-tl-card::before { content: attr(data-num); position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--crim); color: var(--white); font-size: 13px; font-weight: 900; padding: 4px 16px; border-radius: 999px; letter-spacing: 1px; }
.cv-tl-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--crim); }
.cv-tl-card p  { font-size: 16px; }

/* PRICING */
.cv-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cv-pkg { padding: 36px 26px; background: var(--white); border: 2px solid var(--border); border-radius: 22px; text-align: center; transition: all .2s; }
.cv-pkg:hover { box-shadow: 0 12px 36px rgba(139,10,26,0.12); transform: translateY(-3px); }
.cv-pkg.cv-best { border-color: var(--red); box-shadow: 0 8px 32px rgba(196,18,48,0.2); background: linear-gradient(180deg, #fff5f6 0%, var(--white) 100%); }
.cv-pkg-label { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 6px 18px; border-radius: 999px; margin-bottom: 14px; }
.cv-pkg-label-gold { background: var(--gold); color: var(--white); }
.cv-pkg-label-red  { background: var(--red);  color: var(--white); }
.cv-pkg-label-crim { background: var(--crim); color: var(--white); }
.cv-pkg img { max-width: 150px; margin: 0 auto 18px; }
.cv-pkg h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.cv-pkg-days { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.cv-price { font-size: 56px; font-weight: 900; color: var(--crim2); line-height: 1; font-family: 'Lora', serif; }
.cv-price-u { font-size: 17px; font-weight: 400; color: var(--muted); }
.cv-was { font-size: 15px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.cv-save { font-size: 14px; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.cv-total { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.cv-feat-ul { list-style: none; text-align: left; margin-bottom: 20px; }
.cv-feat-ul li { font-size: 15px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; font-weight: 700; border-bottom: 1px solid var(--crim4); }
.cv-feat-ul li:last-child { border-bottom: none; }
.cv-feat-ul li::before { content: "✔"; color: var(--red); font-weight: 900; flex-shrink: 0; }

/* BONUSES */
.cv-bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cv-bonus-card { padding: 26px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; text-align: center; }
.cv-bonus-card img { max-width: 120px; margin: 0 auto 16px; border-radius: 10px; }
.cv-bonus-free { display: inline-block; font-size: 11px; font-weight: 900; color: var(--red); background: var(--red3); padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.cv-bonus-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--crim); }
.cv-bonus-card p { font-size: 15px; }

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

/* HOW TO USE */
.cv-use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cv-use-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.cv-use-n { width: 48px; height: 48px; background: var(--crim4); color: var(--crim); 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); font-family: 'Lora', serif; }
.cv-use-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--crim); }
.cv-use-card p  { font-size: 17px; }

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

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

/* FINAL CTA */
.cv-final { background: linear-gradient(135deg, var(--crim2) 0%, #1a020a 100%); padding: 90px 0; position: relative; overflow: hidden; }
.cv-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(200,144,10,0.08) 0%, transparent 60%); pointer-events: none; }
.cv-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; position: relative; }
.cv-final h2 { color: var(--white); margin-bottom: 14px; }
.cv-final p  { color: rgba(255,255,255,0.75); font-size: 19px; margin-bottom: 16px; }
.cv-final-price { font-size: 26px; font-weight: 900; color: var(--gold4); margin-bottom: 26px; font-family: 'Lora', serif; }
.cv-final img { max-width: 240px; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5)); }

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

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

/* HIGHLIGHTS STRIP */
.cv-strip { background: var(--crim); padding: 18px 0; }
.cv-strip-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cv-strip-item { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; }

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