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

/* =============================================
   SUGARCONNTROL.COM
   CSS: qelvox.css | prefix: qv-
   White + Green + Amber — en-us-sugarcontrol inspired
   ============================================= */
:root {
  --grn:   #16a34a;
  --grn2:  #15803d;
  --grn3:  #166534;
  --grn4:  #dcfce7;
  --grn5:  #bbf7d0;
  --grn6:  rgba(22,163,74,0.10);
  --amb:   #d97706;
  --amb2:  #b45309;
  --amb3:  #fef3c7;
  --amb4:  #fde68a;
  --white: #ffffff;
  --bg:    #f8fafc;
  --bg2:   #f0fdf4;
  --text:  #0f172a;
  --sub:   #374151;
  --muted: #6b7280;
  --bord:  #e2e8f0;
  --bord2: #d1fae5;
  --shad:  rgba(22,163,74,0.10);
  --shad2: rgba(0,0,0,0.06);
  --red:   #dc2626;
}

*, *::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: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  -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(28px,3.8vw,54px); font-weight: 700; line-height: 1.12; color: var(--text); }
h2 { font-family: 'Lora', serif; font-size: clamp(22px,2.8vw,40px); font-weight: 700; line-height: 1.2; color: var(--text); }
h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(16px,1.8vw,19px); font-weight: 700; color: var(--text); }
p  { font-size: clamp(15px,1.5vw,17px); color: var(--sub); line-height: 1.88; }

.qv-grn { color: var(--grn); }
.qv-amb { color: var(--amb); }

/* CHIP / TAG */
.qv-chip {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grn); background: var(--grn4);
  padding: 5px 16px; border-radius: 999px;
  border: 1.5px solid var(--grn5); margin-bottom: 14px;
}
.qv-chip-amb {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amb2); background: var(--amb3);
  padding: 5px 16px; border-radius: 999px;
  border: 1.5px solid var(--amb4); margin-bottom: 14px;
}

/* ═══════════ NAV ═══════════ */
.qv-nav {
  background: var(--white);
  border-bottom: 1px solid var(--bord);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 12px var(--shad2);
  width: 100%;
}
.qv-nav-row {
  max-width: 1180px; margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; height: 62px; flex-wrap: nowrap;
}
.qv-logo {
  flex-shrink: 0; font-family: 'Lora', serif;
  font-size: 20px; font-weight: 700; color: var(--text); font-style: italic;
}
.qv-logo em { color: var(--grn); font-style: normal; }
.qv-nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap; flex: 1; justify-content: center; min-width: 0; overflow: hidden;
}
.qv-nav-links a {
  color: var(--muted); font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap; transition: all .15s;
}
.qv-nav-links a:hover { color: var(--grn); background: var(--grn4); }
.qv-nav-btn {
  flex-shrink: 0; background: var(--grn); color: var(--white) !important;
  font-weight: 800; border-radius: 8px; padding: 10px 22px;
  font-size: 13px; white-space: nowrap; display: inline-block; transition: background .2s;
}
.qv-nav-btn:hover { background: var(--grn2); }
@media (max-width: 767px) {
  .qv-nav-links { display: none; }
  .qv-nav-row { padding: 0 14px; height: 56px; }
  .qv-logo { font-size: 17px; }
  .qv-nav-btn { font-size: 13px; padding: 9px 16px; }
}

/* BUTTONS */
.qv-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: 'Plus Jakarta Sans', sans-serif; }
.qv-btn-grn  { background: var(--grn);  color: var(--white); box-shadow: 0 4px 18px rgba(22,163,74,0.28); }
.qv-btn-grn:hover  { background: var(--grn2); color: var(--white); box-shadow: 0 6px 24px rgba(22,163,74,0.38); }
.qv-btn-amb  { background: var(--amb);  color: var(--white); }
.qv-btn-amb:hover  { background: var(--amb2); color: var(--white); }
.qv-btn-out  { background: transparent; color: var(--grn); border: 2px solid var(--grn); }
.qv-btn-out:hover  { background: var(--grn); color: var(--white); }
.qv-btn-wh   { background: var(--white); color: var(--text); border: 2px solid var(--bord); }
.qv-btn-wh:hover   { border-color: var(--grn); color: var(--grn); }

/* LAYOUT */
.qv-wrap    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.qv-wrap-sm { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.qv-sec     { padding: 86px 0; }
.qv-hd      { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.qv-hd p    { margin-top: 14px; font-size: 17px; }

/* DIVIDER */
.qv-div { height: 1px; background: var(--bord); }

/* HERO — white bg, clean */
.qv-hero { background: linear-gradient(160deg, var(--white) 0%, var(--bg2) 100%); padding: 76px 0 88px; border-bottom: 1px solid var(--bord2); }
.qv-hero-row { display: grid; grid-template-columns: 1fr 440px; align-items: center; gap: 54px; }
.qv-hero-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--grn); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.qv-hero-eyebrow::before { content:''; width: 26px; height: 2px; background: var(--grn); flex-shrink: 0; }
.qv-hero h1 { margin-bottom: 10px; }
.qv-hero h1 em { font-style: italic; color: var(--grn); }
.qv-hero-sub { font-size: 17px; color: var(--sub); line-height: 1.88; margin: 16px 0 22px; }

/* STATS BAR inside hero */
.qv-stats { display: flex; gap: 24px; flex-wrap: wrap; margin: 20px 0 26px; }
.qv-stat { display: flex; flex-direction: column; align-items: flex-start; }
.qv-stat-num { font-family: 'Lora', serif; font-size: 28px; font-weight: 700; color: var(--grn); line-height: 1; }
.qv-stat-lbl { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.qv-stat-div { width: 1px; background: var(--bord); align-self: stretch; }

.qv-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.qv-hero-ul { list-style: none; margin: 18px 0 0; display: flex; flex-direction: column; gap: 9px; }
.qv-hero-ul li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--sub); font-weight: 600; }
.qv-hero-ul li::before { content: "✓"; color: var(--grn); font-weight: 900; font-size: 16px; flex-shrink: 0; }
.qv-hero-pic { position: relative; }
.qv-hero-pic img { filter: drop-shadow(0 22px 50px rgba(22,163,74,0.14)); width: 100%; }
.qv-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.qv-hero-badge { background: var(--white); border: 1.5px solid var(--bord2); border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--grn); display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 8px var(--shad2); }
.qv-star-row { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.qv-stars { color: #f59e0b; font-size: 18px; }
.qv-star-txt { font-size: 14px; color: var(--muted); font-weight: 700; }

/* WHY CHOOSE */
.qv-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.qv-trust-card { text-align: center; padding: 28px 18px; border: 1.5px solid var(--bord); border-radius: 16px; background: var(--white); transition: transform .2s, box-shadow .2s, border-color .2s; }
.qv-trust-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px var(--shad); border-color: var(--grn5); }
.qv-trust-card img { height: 58px; width: auto; margin: 0 auto 12px; object-fit: contain; }
.qv-trust-card h3 { font-size: 13px; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.qv-trust-card p  { font-size: 13px; color: var(--muted); }

/* SPLIT */
.qv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.qv-split img { border-radius: 20px; width: 100%; box-shadow: 0 16px 44px var(--shad2); }
.qv-split h2 { margin-bottom: 16px; }
.qv-split p  { margin-bottom: 14px; }
.qv-chk-ul { list-style: none; margin: 16px 0; }
.qv-chk-ul li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: var(--sub); padding: 8px 0; border-bottom: 1px solid var(--bord); font-weight: 600; }
.qv-chk-ul li:last-child { border-bottom: none; }
.qv-chk-ul li::before { content: "✓"; color: var(--grn); font-weight: 900; font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* HOW IT WORKS — 6 mechanism boxes */
.qv-mech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.qv-mech-card { padding: 26px 22px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 14px; border-top: 3px solid var(--grn); transition: box-shadow .2s; }
.qv-mech-card:hover { box-shadow: 0 8px 24px var(--shad); }
.qv-mech-card h3 { font-size: 15px; margin-bottom: 10px; color: var(--grn); text-transform: uppercase; letter-spacing: 0.5px; }
.qv-mech-card p  { font-size: 14px; }

/* REVIEWS */
.qv-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.qv-rev-card { padding: 28px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 16px; box-shadow: 0 4px 14px var(--shad2); }
.qv-rev-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 2px solid var(--grn5); }
.qv-rev-name { font-weight: 800; color: var(--text); margin-bottom: 2px; }
.qv-rev-loc  { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.qv-rev-stars { color: #f59e0b; font-size: 16px; margin-bottom: 6px; }
.qv-rev-badge { font-size: 12px; color: var(--grn); font-weight: 700; margin-bottom: 12px; }
.qv-rev-card p { font-size: 15px; font-style: italic; font-family: 'Lora', serif; line-height: 1.85; color: var(--sub); }

/* REVIEW STATS */
.qv-rev-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.qv-rev-stat { text-align: center; padding: 24px; background: var(--bg2); border: 1.5px solid var(--bord2); border-radius: 14px; }
.qv-rev-stat-num { font-family: 'Lora', serif; font-size: 38px; font-weight: 700; color: var(--grn); line-height: 1; }
.qv-rev-stat-lbl { font-size: 14px; color: var(--muted); margin-top: 6px; font-weight: 600; }

/* PRICING — clean cards like reference */
.qv-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.qv-pkg { padding: 32px 22px; background: var(--white); border: 2px solid var(--bord); border-radius: 18px; text-align: center; transition: all .2s; position: relative; }
.qv-pkg:hover { box-shadow: 0 12px 36px var(--shad); transform: translateY(-3px); }
.qv-pkg.qv-best { border-color: var(--grn); box-shadow: 0 8px 30px rgba(22,163,74,0.18); }
.qv-pkg-lbl { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 6px 18px; border-radius: 999px; margin-bottom: 12px; }
.qv-pkg-lbl-grn  { background: var(--grn);  color: var(--white); }
.qv-pkg-lbl-amb  { background: var(--amb);  color: var(--white); }
.qv-pkg-lbl-out  { background: var(--grn4); color: var(--grn3); border: 1px solid var(--grn5); }
.qv-pkg-count { font-size: 13px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.qv-pkg h3 { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.qv-pkg-days { font-size: 13px; color: var(--muted); margin-bottom: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.qv-pkg img { max-width: 140px; margin: 0 auto 16px; }
.qv-price { font-family: 'Lora', serif; font-size: 52px; font-weight: 700; color: var(--grn); line-height: 1; }
.qv-price-u { font-size: 16px; font-weight: 400; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--muted); }
.qv-total-line { margin: 10px 0 16px; }
.qv-total-line s { font-size: 15px; color: var(--muted); }
.qv-total-line strong { font-size: 22px; color: var(--text); margin-left: 8px; }
.qv-pkg-ship { font-size: 12px; color: var(--grn); font-weight: 700; margin: 4px 0 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.qv-pkg-ul { list-style: none; text-align: left; margin-bottom: 18px; }
.qv-pkg-ul li { font-size: 14px; color: var(--sub); padding: 5px 0; display: flex; gap: 8px; align-items: flex-start; font-weight: 600; border-bottom: 1px solid var(--bord); }
.qv-pkg-ul li:last-child { border-bottom: none; }
.qv-pkg-ul li::before { content: "✓"; color: var(--grn); font-weight: 900; flex-shrink: 0; }

/* INGREDIENTS — numbered, "How It Supports" + "Key Benefits" style */
.qv-ing-list { display: flex; flex-direction: column; gap: 0; }
.qv-ing-item { display: grid; grid-template-columns: 56px 90px 1fr; gap: 24px; align-items: flex-start; padding: 30px 0; border-bottom: 1px solid var(--bord); }
.qv-ing-item:last-child { border-bottom: none; }
.qv-ing-num { width: 48px; height: 48px; background: var(--grn); color: var(--white); font-family: 'Lora', serif; font-size: 22px; font-weight: 700; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.qv-ing-img { width: 82px; height: 82px; border-radius: 12px; object-fit: cover; border: 2px solid var(--bord2); flex-shrink: 0; }
.qv-ing-item h3 { font-size: 19px; margin-bottom: 4px; color: var(--text); }
.qv-ing-how { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grn); margin: 14px 0 4px; }
.qv-ing-item p { font-size: 15px; margin-bottom: 4px; }
.qv-ing-ben-lbl { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--amb2); margin: 12px 0 4px; }
.qv-ing-ben { font-size: 14px; color: var(--grn3); font-weight: 600; font-style: italic; }

/* BENEFITS — centered, image below */
.qv-ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 52px; }
.qv-ben-card { padding: 28px 20px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 16px; border-left: 4px solid var(--grn); transition: box-shadow .2s, transform .2s; }
.qv-ben-card:hover { box-shadow: 0 8px 24px var(--shad); transform: translateY(-3px); }
.qv-ben-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.qv-ben-card h3::before { content: attr(data-ico); font-size: 22px; }
.qv-ben-card p  { font-size: 14px; }
.qv-ben-img { text-align: center; }
.qv-ben-img img { max-width: 560px; margin: 0 auto; border-radius: 18px; box-shadow: 0 14px 40px var(--shad2); }

/* SCIENTIFICALLY FORMULATED — numbered 1-3 */
.qv-sci-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.qv-sci-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--bg2); border: 1.5px solid var(--bord2); border-radius: 14px; }
.qv-sci-num { width: 44px; height: 44px; background: var(--grn); color: var(--white); font-family: 'Lora', serif; font-size: 20px; font-weight: 700; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qv-sci-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--text); }
.qv-sci-item p  { font-size: 15px; }

/* GUARANTEE */
.qv-guar { background: var(--bg2); border-top: 1px solid var(--bord2); border-bottom: 1px solid var(--bord2); padding: 80px 0; }
.qv-guar-row { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.qv-guar-row img { max-width: 200px; }
.qv-guar-row h2 { margin-bottom: 16px; }
.qv-guar-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.qv-guar-item { display: flex; gap: 16px; align-items: flex-start; }
.qv-guar-item-num { width: 28px; height: 28px; background: var(--grn); color: var(--white); font-weight: 800; font-size: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.qv-guar-item h3 { font-size: 15px; margin-bottom: 4px; color: var(--grn); }
.qv-guar-item p  { font-size: 14px; }

/* HOW TO USE */
.qv-use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.qv-use-card { padding: 24px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 14px; }
.qv-use-n { width: 44px; height: 44px; background: var(--grn4); color: var(--grn); font-family: 'Lora', serif; font-size: 20px; font-weight: 700; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--grn5); }
.qv-use-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--grn); }
.qv-use-card p  { font-size: 15px; }

/* TIMELINE */
.qv-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.qv-tl-card { text-align: center; padding: 32px 22px; border-radius: 16px; background: var(--white); border: 1.5px solid var(--bord); position: relative; overflow: hidden; }
.qv-tl-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--grn), var(--grn2)); }
.qv-tl-num { font-family: 'Lora', serif; font-size: 52px; font-weight: 700; color: var(--grn4); line-height: 1; margin-bottom: 10px; }
.qv-tl-label { font-size: 11px; font-weight: 800; color: var(--grn); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.qv-tl-card h3 { font-size: 17px; margin-bottom: 8px; }
.qv-tl-card p  { font-size: 14px; }

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

/* PAGE CTA */
.qv-pcta { background: linear-gradient(135deg, var(--grn) 0%, var(--grn2) 100%); padding: 68px 0; }
.qv-pcta h2 { color: var(--white); margin-bottom: 14px; }
.qv-pcta p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 24px; }

/* FINAL CTA */
.qv-final { background: linear-gradient(135deg, var(--grn3) 0%, var(--grn2) 100%); padding: 86px 0; }
.qv-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.qv-final h2 { color: var(--white); margin-bottom: 14px; }
.qv-final p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 16px; }
.qv-final-price { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: var(--amb4); margin-bottom: 26px; }
.qv-final img { max-width: 240px; filter: drop-shadow(0 14px 32px rgba(0,0,0,0.25)); }

/* STICKY */
.qv-stick { background: var(--grn); padding: 12px 0; position: sticky; bottom: 0; z-index: 99; border-top: 2px solid var(--grn2); }
.qv-stick-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.qv-stick strong { color: var(--white); font-size: 16px; font-family: 'Lora', serif; font-style: italic; }
.qv-stick span { color: rgba(255,255,255,0.65); font-size: 14px; margin-left: 10px; font-weight: 600; }

/* FOOTER */
.qv-foot { background: var(--text); padding: 60px 0 24px; }
.qv-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.qv-ft-name { font-family: 'Lora', serif; font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 12px; font-style: italic; }
.qv-ft-name em { color: var(--grn5); font-style: normal; }
.qv-foot p  { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.8; }
.qv-foot h4 { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.7); margin-bottom: 14px; letter-spacing: 2px; text-transform: uppercase; }
.qv-foot a  { display: block; font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 9px; font-weight: 600; }
.qv-foot a:hover { color: var(--grn5); }
.qv-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }

/* AMB HIGHLIGHT */
.qv-amb-box { background: var(--amb3); border: 1.5px solid var(--amb4); border-radius: 12px; padding: 20px 24px; margin-top: 18px; }
.qv-amb-box p { color: var(--amb2); font-size: 14px; font-weight: 600; }
.qv-note { font-size: 14px; color: var(--muted); font-style: italic; margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .qv-hero-row { grid-template-columns: 1fr; text-align: center; }
  .qv-hero-btns, .qv-star-row, .qv-hero-badges, .qv-hero-eyebrow, .qv-stats { justify-content: center; }
  .qv-hero-pic img { max-width: 300px; margin: 0 auto; }
  .qv-split { grid-template-columns: 1fr; }
  .qv-trust-grid { grid-template-columns: repeat(2,1fr); }
  .qv-pkg-grid { grid-template-columns: 1fr 1fr; }
  .qv-ft-grid { grid-template-columns: 1fr 1fr; }
  .qv-guar-row { grid-template-columns: 1fr; text-align: center; }
  .qv-guar-row img { margin: 0 auto; }
  .qv-mech-grid { grid-template-columns: 1fr 1fr; }
  .qv-ben-grid { grid-template-columns: repeat(2,1fr); }
  .qv-timeline { grid-template-columns: 1fr; }
  .qv-ing-item { grid-template-columns: 48px 1fr; }
  .qv-ing-img { display: none; }
}
@media (max-width: 767px) {
  .qv-sec { padding: 58px 0; }
  .qv-rev-grid, .qv-pkg-grid, .qv-use-grid { grid-template-columns: 1fr; }
  .qv-ben-grid, .qv-mech-grid { grid-template-columns: 1fr; }
  .qv-final-row { grid-template-columns: 1fr; text-align: center; }
  .qv-final img { margin: 0 auto; }
  .qv-ft-grid { grid-template-columns: 1fr; }
  .qv-rev-stats { grid-template-columns: 1fr; }
  .qv-split img { order: -1; }
}
