@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* =============================================
   COFFEEBURNUSA.COM
   CSS: brovex.css | prefix: bv-
   Warm Coffee/Brown + Cream — Medium Fonts
   ============================================= */
:root {
  --brn:   #7c3d12;
  --brn2:  #92400e;
  --brn3:  #78350f;
  --brn4:  #fef3c7;
  --brn5:  #fde68a;
  --brn6:  rgba(124,61,18,0.08);
  --brn7:  rgba(124,61,18,0.05);
  --amb:   #d97706;
  --amb2:  #b45309;
  --cream: #fffbf5;
  --cream2:#fef9f0;
  --cream3:#fdf4e3;
  --white: #ffffff;
  --text:  #1c0a00;
  --sub:   #44200a;
  --muted: #7a4a30;
  --bord:  #e8d5b7;
  --bord2: #f0c070;
  --shad:  rgba(124,61,18,0.10);
  --shad2: rgba(0,0,0,0.06);
  --grn:   #15803d;
  --red:   #b91c1c;
}

*, *::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: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
}

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

/* MEDIUM FONTS — readable but not oversized */
h1 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 50px); font-weight: 700; line-height: 1.15; color: var(--brn3); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 38px); font-weight: 700; line-height: 1.2; color: var(--brn3); }
h3 { font-family: 'Lato', sans-serif; font-size: clamp(16px, 1.8vw, 20px); font-weight: 700; color: var(--text); }
p  { font-size: 17px; color: var(--sub); line-height: 1.85; }

.bv-brn  { color: var(--brn); }
.bv-amb  { color: var(--amb); }

/* CHIP */
.bv-chip {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--brn2); background: var(--cream3);
  padding: 5px 16px; border-radius: 999px;
  border: 1.5px solid var(--bord2); margin-bottom: 12px;
}
.bv-chip-grn {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grn); background: #f0fdf4;
  padding: 5px 16px; border-radius: 999px;
  border: 1.5px solid #bbf7d0; margin-bottom: 12px;
}

/* ═══════ NAV ═══════ */
.bv-nav {
  background: var(--brn3);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 14px var(--shad);
  width: 100%;
}
.bv-nav-row {
  max-width: 1160px; margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; height: 62px; flex-wrap: nowrap;
}
.bv-logo {
  flex-shrink: 0; font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.3px;
}
.bv-logo em { color: var(--brn5); font-style: normal; }
.bv-nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap; flex: 1; justify-content: center; min-width: 0; overflow: hidden;
}
.bv-nav-links a {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 700;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap; transition: all .15s;
}
.bv-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.bv-nav-btn {
  flex-shrink: 0; background: var(--amb); color: var(--white) !important;
  font-weight: 700; border-radius: 6px; padding: 10px 20px;
  font-size: 14px; white-space: nowrap; display: inline-block; transition: background .2s;
}
.bv-nav-btn:hover { background: var(--amb2); }
@media (max-width: 767px) {
  .bv-nav-links { display: none; }
  .bv-nav-row { padding: 0 14px; height: 56px; }
  .bv-logo { font-size: 18px; }
  .bv-nav-btn { font-size: 13px; padding: 9px 16px; }
}

/* BUTTONS */
.bv-btn { display: inline-block; padding: 14px 34px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; text-align: center; line-height: 1; font-family: 'Lato', sans-serif; }
.bv-btn-brn  { background: var(--brn);  color: var(--white); box-shadow: 0 3px 14px var(--shad); }
.bv-btn-brn:hover  { background: var(--brn3); color: var(--white); }
.bv-btn-amb  { background: var(--amb);  color: var(--white); }
.bv-btn-amb:hover  { background: var(--amb2); color: var(--white); }
.bv-btn-out  { background: transparent; color: var(--brn); border: 2px solid var(--brn); }
.bv-btn-out:hover  { background: var(--brn); color: var(--white); }
.bv-btn-wh   { background: var(--white); color: var(--brn3); }
.bv-btn-wh:hover   { background: var(--cream3); }

/* LAYOUT */
.bv-wrap    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.bv-wrap-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
.bv-sec     { padding: 80px 0; }
.bv-hd      { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.bv-hd p    { margin-top: 12px; font-size: 17px; }

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

/* HERO — cream bg, warm */
.bv-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream3) 100%);
  padding: 72px 0 0;
  border-bottom: 2px solid var(--bord);
}
.bv-hero-row { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 52px; }
.bv-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--amb); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.bv-hero-eyebrow::before { content:''; width:24px; height:2px; background:var(--amb); flex-shrink:0; }
.bv-hero h1 { margin-bottom: 8px; }
.bv-hero h1 span { color: var(--brn); }
.bv-hero-price { font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700; color: var(--muted); margin: 10px 0; }
.bv-hero-price s { color: var(--red); }
.bv-hero-price strong { color: var(--brn); font-size: 18px; }
.bv-hero-sub { font-size: 17px; color: var(--sub); line-height: 1.85; margin: 14px 0 22px; }
.bv-hero-ul { list-style: none; margin: 0 0 26px; display: flex; flex-direction: column; gap: 9px; }
.bv-hero-ul li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--text); font-weight: 700; }
.bv-hero-ul li::before { content: "✔"; color: var(--brn); font-size: 13px; flex-shrink: 0; }
.bv-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.bv-hero-pic img { filter: drop-shadow(0 20px 44px var(--shad)); width: 100%; }
.bv-star-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.bv-stars { color: var(--amb); font-size: 19px; }
.bv-star-txt { font-size: 14px; color: var(--muted); font-weight: 700; }

/* WHY CHOOSE — HERO KE ANDAR (permanent rule) */
.bv-why-inside {
  margin-top: 48px;
  background: var(--brn3);
  border-radius: 12px 12px 0 0;
  padding: 26px 32px;
}
.bv-why-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.bv-why-badge { text-align: center; }
.bv-why-badge img { height: 52px; width: auto; margin: 0 auto 8px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.9); }
.bv-why-badge h3 { font-size: 13px; color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.bv-why-badge p  { font-size: 12px; color: rgba(255,255,255,0.65); }

/* TRUST STRIP */
.bv-strip { background: var(--brn4); border-top: 1px solid var(--bord2); border-bottom: 1px solid var(--bord2); padding: 10px 0; }
.bv-strip-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.bv-strip-item { color: var(--brn3); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }

/* SPLIT */
.bv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.bv-split img { border-radius: 14px; width: 100%; box-shadow: 0 10px 36px var(--shad2); border: 1.5px solid var(--bord); }
.bv-split h2 { margin-bottom: 14px; }
.bv-split p  { margin-bottom: 13px; }
.bv-chk-ul { list-style: none; margin: 14px 0; }
.bv-chk-ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--sub); padding: 7px 0; border-bottom: 1px solid var(--bord); font-weight: 700; }
.bv-chk-ul li:last-child { border-bottom: none; }
.bv-chk-ul li::before { content: "✔"; color: var(--brn); font-size: 13px; flex-shrink: 0; margin-top: 3px; }

/* SECRET BEHIND — image LEFT, content RIGHT only */
.bv-secret { background: var(--cream3); border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); padding: 80px 0; }
.bv-secret-row { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: center; }
.bv-secret-row img { border-radius: 14px; width: 100%; box-shadow: 0 10px 36px var(--shad2); border: 1.5px solid var(--bord); }
.bv-secret h2 { margin-bottom: 16px; }
.bv-secret p  { font-size: 17px; margin-bottom: 13px; }
.bv-secret-quote { border-left: 4px solid var(--brn); padding-left: 18px; margin: 20px 0; font-style: italic; color: var(--sub); font-size: 16px; line-height: 1.82; font-family: 'Playfair Display', serif; }

/* REVIEWS */
.bv-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bv-rev-card { padding: 26px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 14px; box-shadow: 0 3px 12px var(--shad2); transition: box-shadow .2s; }
.bv-rev-card:hover { box-shadow: 0 6px 22px var(--shad); }
.bv-rev-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 2px solid var(--bord2); }
.bv-rev-name { font-weight: 900; color: var(--text); font-size: 17px; margin-bottom: 2px; }
.bv-rev-loc  { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.bv-rev-stars { color: var(--amb); font-size: 17px; margin-bottom: 6px; }
.bv-rev-badge { font-size: 12px; color: var(--grn); font-weight: 700; margin-bottom: 10px; }
.bv-rev-card p { font-size: 15px; font-style: italic; line-height: 1.82; }

/* INGREDIENTS */
.bv-ing-list { display: flex; flex-direction: column; }
.bv-ing-item { display: grid; grid-template-columns: 46px 1fr; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--bord); }
.bv-ing-item:last-child { border-bottom: none; }
.bv-ing-num { width: 42px; height: 42px; background: var(--brn); color: var(--white); font-size: 18px; font-weight: 900; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; font-family: 'Lato', sans-serif; }
.bv-ing-item h3 { font-size: 18px; margin-bottom: 6px; color: var(--brn3); }
.bv-ing-item p  { font-size: 16px; }

/* HOW TO USE */
.bv-use-list { display: flex; flex-direction: column; gap: 12px; }
.bv-use-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 10px; border-left: 4px solid var(--brn); }
.bv-use-num { width: 36px; height: 36px; background: var(--brn); color: var(--white); font-size: 18px; font-weight: 900; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bv-use-item h3 { font-size: 16px; margin-bottom: 5px; color: var(--brn3); }
.bv-use-item p  { font-size: 15px; }

/* HOW IT WORKS */
.bv-mech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bv-mech-card { padding: 24px 20px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 12px; border-top: 4px solid var(--brn); transition: box-shadow .2s; }
.bv-mech-card:hover { box-shadow: 0 6px 22px var(--shad); }
.bv-mech-ico { font-size: 28px; margin-bottom: 10px; }
.bv-mech-card h3 { font-size: 16px; margin-bottom: 7px; color: var(--brn3); }
.bv-mech-card p  { font-size: 15px; }

/* BENEFITS — centered grid, image below */
.bv-ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 46px; }
.bv-ben-card { padding: 22px 18px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 12px; border-left: 4px solid var(--brn); transition: box-shadow .2s, transform .2s; }
.bv-ben-card:hover { box-shadow: 0 6px 20px var(--shad); transform: translateY(-3px); }
.bv-ben-ico { font-size: 26px; margin-bottom: 10px; }
.bv-ben-card h3 { font-size: 16px; margin-bottom: 7px; color: var(--brn3); }
.bv-ben-card p  { font-size: 15px; }
.bv-ben-img { text-align: center; }
.bv-ben-img img { max-width: 540px; margin: 0 auto; border-radius: 14px; box-shadow: 0 10px 36px var(--shad2); border: 1.5px solid var(--bord); }

/* SCI FORMULATED */
.bv-sci-list { display: flex; flex-direction: column; gap: 14px; }
.bv-sci-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 12px; }
.bv-sci-num { width: 38px; height: 38px; background: var(--brn); color: var(--white); font-size: 18px; font-weight: 900; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bv-sci-item h3 { font-size: 17px; margin-bottom: 6px; color: var(--brn3); }
.bv-sci-item p  { font-size: 15px; }

/* BONUSES */
.bv-bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bv-bonus-card { padding: 22px 18px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 12px; text-align: center; transition: box-shadow .2s; }
.bv-bonus-card:hover { box-shadow: 0 6px 20px var(--shad); }
.bv-bonus-card img { max-width: 100px; margin: 0 auto 12px; border-radius: 8px; }
.bv-bonus-num { display: inline-block; font-size: 11px; font-weight: 700; color: var(--white); background: var(--brn); padding: 3px 12px; border-radius: 999px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.bv-bonus-free { display: inline-block; font-size: 11px; font-weight: 700; color: var(--grn); background: #f0fdf4; padding: 3px 10px; border-radius: 999px; margin: 4px 0 8px; border: 1px solid #bbf7d0; }
.bv-bonus-card h3 { font-size: 15px; margin-bottom: 7px; }
.bv-bonus-card p  { font-size: 13px; }

/* PRICING */
.bv-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bv-pkg { padding: 28px 20px; background: var(--white); border: 1.5px solid var(--bord); border-radius: 14px; text-align: center; transition: all .2s; position: relative; }
.bv-pkg:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--shad); }
.bv-pkg.bv-best { border: 2px solid var(--brn); box-shadow: 0 6px 24px var(--shad); }
.bv-pkg-lbl { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; margin-bottom: 10px; }
.bv-pkg-lbl-brn  { background: var(--brn);  color: var(--white); }
.bv-pkg-lbl-amb  { background: var(--amb);  color: var(--white); }
.bv-pkg-lbl-out  { background: var(--cream3); color: var(--brn3); border: 1.5px solid var(--bord2); }
.bv-pkg h3 { font-family: 'Lato', sans-serif; font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 3px; }
.bv-pkg-days { font-size: 14px; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.bv-pkg img { max-width: 140px; margin: 0 auto 14px; }
.bv-price { font-size: 54px; font-weight: 900; color: var(--brn); line-height: 1; font-family: 'Lato', sans-serif; }
.bv-price-u { font-size: 16px; font-weight: 400; color: var(--muted); }
.bv-was { font-size: 14px; color: var(--muted); margin: 6px 0 4px; }
.bv-was s { color: var(--red); }
.bv-total-line { font-size: 17px; font-weight: 700; color: var(--text); margin: 8px 0 14px; }
.bv-total-line s { color: var(--muted); font-weight: 400; margin-right: 6px; font-size: 14px; }
.bv-ship { font-size: 13px; color: var(--grn); font-weight: 700; margin: 4px 0 14px; }
.bv-fl { list-style: none; text-align: left; margin-bottom: 16px; }
.bv-fl li { font-size: 15px; color: var(--sub); padding: 5px 0; display: flex; gap: 8px; font-weight: 700; border-bottom: 1px solid var(--bord); }
.bv-fl li:last-child { border-bottom: none; }
.bv-fl li::before { content: "✔"; color: var(--brn); flex-shrink: 0; }

/* GUARANTEE */
.bv-guar { background: var(--cream3); border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); padding: 80px 0; }
.bv-guar-row { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.bv-guar-row img { max-width: 190px; }
.bv-guar-row h2 { margin-bottom: 14px; }
.bv-guar-row p  { font-size: 17px; margin-bottom: 12px; }
.bv-guar-ul { list-style: none; margin: 14px 0; }
.bv-guar-ul li { color: var(--sub); font-size: 16px; padding: 6px 0; display: flex; gap: 10px; font-weight: 700; border-bottom: 1px solid var(--bord); }
.bv-guar-ul li:last-child { border-bottom: none; }
.bv-guar-ul li::before { content: "✔"; color: var(--brn); }

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

/* PAGE CTA */
.bv-pcta { background: linear-gradient(135deg, var(--brn3) 0%, var(--brn) 100%); padding: 64px 0; }
.bv-pcta h2 { color: var(--white); margin-bottom: 12px; }
.bv-pcta p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 22px; }

/* FINAL CTA */
.bv-final { background: linear-gradient(135deg, var(--brn3) 0%, var(--brn) 100%); padding: 80px 0; }
.bv-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.bv-final h2 { color: var(--white); margin-bottom: 12px; }
.bv-final p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 14px; }
.bv-final-price { font-size: 22px; font-weight: 700; color: var(--brn5); margin-bottom: 22px; font-family: 'Lato', sans-serif; }
.bv-final img { max-width: 220px; filter: drop-shadow(0 12px 28px rgba(0,0,0,0.22)); }

/* STICKY */
.bv-stick { background: var(--brn3); border-top: 2px solid var(--amb); padding: 11px 0; position: sticky; bottom: 0; z-index: 99; }
.bv-stick-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.bv-stick strong { color: var(--white); font-size: 16px; font-family: 'Playfair Display', serif; }
.bv-stick span { color: rgba(255,255,255,0.55); font-size: 13px; margin-left: 8px; }

/* TIMELINE */
.bv-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bv-tl-card { text-align: center; padding: 28px 20px; border-radius: 14px; background: var(--white); border: 1.5px solid var(--bord); position: relative; overflow: hidden; }
.bv-tl-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--brn), var(--amb)); }
.bv-tl-num { font-size: 50px; font-weight: 900; color: var(--cream3); line-height: 1; margin-bottom: 10px; font-family: 'Lato', sans-serif; }
.bv-tl-label { font-size: 11px; font-weight: 700; color: var(--brn); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.bv-tl-card h3 { font-size: 17px; margin-bottom: 7px; }
.bv-tl-card p  { font-size: 15px; }

/* FOOTER */
.bv-foot { background: var(--brn3); border-top: 3px solid var(--brn); padding: 56px 0 22px; }
.bv-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 38px; }
.bv-ft-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); margin-bottom: 12px; }
.bv-ft-name em { color: var(--brn5); font-style: normal; }
.bv-foot p  { font-size: 14px; color: rgba(255,255,255,0.32); line-height: 1.8; }
.bv-foot h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; }
.bv-foot a  { display: block; font-size: 14px; color: rgba(255,255,255,0.36); margin-bottom: 8px; font-weight: 700; }
.bv-foot a:hover { color: var(--brn5); }
.bv-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .bv-hero-row { grid-template-columns: 1fr; text-align: center; }
  .bv-hero-btns, .bv-star-row, .bv-hero-eyebrow { justify-content: center; }
  .bv-hero-pic img { max-width: 280px; margin: 0 auto; }
  .bv-split { grid-template-columns: 1fr; }
  .bv-why-row { grid-template-columns: repeat(2,1fr); }
  .bv-pkg-grid { grid-template-columns: 1fr 1fr; }
  .bv-secret-row { grid-template-columns: 1fr; }
  .bv-ft-grid { grid-template-columns: 1fr 1fr; }
  .bv-guar-row { grid-template-columns: 1fr; text-align: center; }
  .bv-guar-row img { margin: 0 auto; }
  .bv-ben-grid, .bv-mech-grid { grid-template-columns: repeat(2,1fr); }
  .bv-timeline { grid-template-columns: 1fr; }
  .bv-bonus-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .bv-sec { padding: 56px 0; }
  .bv-rev-grid, .bv-pkg-grid, .bv-bonus-grid { grid-template-columns: 1fr; }
  .bv-ben-grid, .bv-mech-grid { grid-template-columns: 1fr; }
  .bv-final-row { grid-template-columns: 1fr; text-align: center; }
  .bv-final img { margin: 0 auto; }
  .bv-ft-grid { grid-template-columns: 1fr; }
  .bv-split img { order: -1; }
  .bv-strip-row { gap: 12px; }
}
