@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

/* =============================================
   COFFEEBBURN.COM
   CSS: torvex.css | prefix: tv-
   Dark Espresso Nav + Warm Cream Body
   Medium readable fonts
   ============================================= */
:root {
  --esp:   #2b1c12;
  --esp2:  #3d2614;
  --esp3:  #1a1009;
  --brn:   #7c3d12;
  --brn2:  #92400e;
  --amb:   #c2710c;
  --amb2:  #a85e09;
  --tan:   #e8c99a;
  --tan2:  #f0d8b4;
  --cream: #fdf8f2;
  --cream2:#faf3ea;
  --cream3:#f5ebe0;
  --white: #ffffff;
  --text:  #1a0e06;
  --sub:   #3d2010;
  --muted: #7a5030;
  --bord:  #e0c8a8;
  --bord2: #d4b08a;
  --shad:  rgba(43,28,18,0.10);
  --shad2: rgba(0,0,0,0.05);
  --grn:   #166534;
  --red:   #991b1b;
}

*, *::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: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.82;
  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, not oversized */
h1 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.8vw, 48px); font-weight: 400; line-height: 1.15; color: var(--esp); }
h2 { font-family: 'DM Serif Display', serif; font-size: clamp(22px, 2.8vw, 36px); font-weight: 400; line-height: 1.2; color: var(--esp); }
h3 { font-family: 'Inter', sans-serif; font-size: clamp(15px, 1.6vw, 18px); font-weight: 700; color: var(--text); }
p  { font-size: 16px; color: var(--sub); line-height: 1.82; }

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

/* CHIP */
.tv-chip {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--brn2); background: var(--tan2);
  padding: 4px 14px; border-radius: 999px;
  border: 1px solid var(--bord2); margin-bottom: 12px;
}
.tv-chip-grn {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--grn); background: #f0fdf4;
  padding: 4px 14px; border-radius: 999px;
  border: 1px solid #bbf7d0; margin-bottom: 12px;
}

/* ═══════════ NAV ═══════════ */
.tv-nav {
  background: var(--esp);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  width: 100%;
}
.tv-nav-row {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; height: 62px; flex-wrap: nowrap;
}
.tv-logo {
  flex-shrink: 0; font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400; color: var(--white); letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 8px;
}
.tv-logo-mark { background: var(--amb); color: var(--white); font-size: 11px; font-weight: 700; font-family: 'Inter', sans-serif; padding: 2px 7px; border-radius: 4px; letter-spacing: 1px; }
.tv-logo em { color: var(--tan); font-style: normal; }
.tv-nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap; flex: 1; justify-content: center; min-width: 0; overflow: hidden;
}
.tv-nav-links a {
  color: rgba(255,255,255,0.68); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap; transition: all .15s;
}
.tv-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.tv-nav-btn {
  flex-shrink: 0; background: var(--amb); color: var(--white) !important;
  font-weight: 700; border-radius: 6px; padding: 9px 20px;
  font-size: 14px; white-space: nowrap; display: inline-block; transition: background .2s;
}
.tv-nav-btn:hover { background: var(--amb2); }
@media (max-width: 767px) {
  .tv-nav-links { display: none; }
  .tv-nav-row { padding: 0 16px; height: 56px; }
  .tv-logo { font-size: 17px; }
  .tv-nav-btn { font-size: 13px; padding: 8px 14px; }
}

/* BUTTONS */
.tv-btn { display: inline-block; padding: 13px 30px; border-radius: 7px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; text-align: center; line-height: 1; font-family: 'Inter', sans-serif; }
.tv-btn-esp  { background: var(--esp);  color: var(--white); box-shadow: 0 3px 12px var(--shad); }
.tv-btn-esp:hover  { background: var(--esp2); color: var(--white); }
.tv-btn-amb  { background: var(--amb);  color: var(--white); }
.tv-btn-amb:hover  { background: var(--amb2); color: var(--white); }
.tv-btn-out  { background: transparent; color: var(--esp); border: 1.5px solid var(--esp); }
.tv-btn-out:hover  { background: var(--esp); color: var(--white); }
.tv-btn-wh   { background: var(--white); color: var(--esp); }
.tv-btn-wh:hover   { background: var(--cream2); }

/* LAYOUT */
.tv-wrap    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tv-wrap-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
.tv-sec     { padding: 76px 0; }
.tv-hd      { text-align: center; max-width: 740px; margin: 0 auto 44px; }
.tv-hd p    { margin-top: 10px; font-size: 16px; }

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

/* HERO — cream bg */
.tv-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream3) 100%);
  padding: 72px 0 0;
  border-bottom: 1px solid var(--bord);
}
.tv-hero-row { display: grid; grid-template-columns: 1fr 400px; align-items: center; gap: 56px; }
.tv-hero-tag { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--amb); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.tv-hero-tag::before { content:''; width:22px; height:2px; background:var(--amb); flex-shrink:0; }
.tv-hero h1 { margin-bottom: 10px; }
.tv-hero h1 span { color: var(--brn); }
.tv-hero-sub { font-size: 16px; color: var(--sub); line-height: 1.85; margin: 14px 0 8px; }
.tv-hero-price { font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.tv-hero-price s { color: var(--red); }
.tv-hero-price strong { color: var(--brn); font-size: 17px; }
.tv-hero-ul { list-style: none; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.tv-hero-ul li { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--text); font-weight: 600; }
.tv-hero-ul li::before { content: "✔"; color: var(--brn); font-size: 12px; flex-shrink: 0; }
.tv-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.tv-hero-pic img { filter: drop-shadow(0 18px 40px var(--shad)); width: 100%; }
.tv-stat-row { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 20px; }
.tv-stat { text-align: left; }
.tv-stat-num { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--esp); font-weight: 400; line-height: 1; }
.tv-stat-lbl { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* WHY CHOOSE — HERO KE ANDAR */
.tv-why-inside {
  margin-top: 52px;
  background: var(--esp);
  border-radius: 10px 10px 0 0;
  padding: 24px 32px;
}
.tv-why-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.tv-why-badge { text-align: center; }
.tv-why-badge img { height: 46px; width: auto; margin: 0 auto 8px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.85); }
.tv-why-badge h3 { font-size: 12px; color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.tv-why-badge p  { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* FACTS TABLE */
.tv-facts-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.tv-facts-table tr { border-bottom: 1px solid var(--bord); }
.tv-facts-table tr:last-child { border-bottom: none; }
.tv-facts-table td { padding: 11px 14px; vertical-align: top; }
.tv-facts-table td:first-child { font-weight: 700; color: var(--text); width: 38%; font-size: 14px; }
.tv-facts-table td:last-child { color: var(--sub); }

/* SPLIT */
.tv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tv-split img { border-radius: 12px; width: 100%; box-shadow: 0 8px 32px var(--shad2); border: 1px solid var(--bord); }
.tv-split h2 { margin-bottom: 12px; }
.tv-split p  { margin-bottom: 12px; }
.tv-chk-ul { list-style: none; margin: 12px 0; }
.tv-chk-ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; color: var(--sub); padding: 7px 0; border-bottom: 1px solid var(--bord); font-weight: 600; }
.tv-chk-ul li:last-child { border-bottom: none; }
.tv-chk-ul li::before { content: "✔"; color: var(--brn); font-size: 12px; flex-shrink: 0; margin-top: 3px; }

/* SECRET BEHIND — image LEFT, content RIGHT */
.tv-secret { background: var(--cream3); border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); padding: 76px 0; }
.tv-secret-row { display: grid; grid-template-columns: 380px 1fr; gap: 52px; align-items: center; }
.tv-secret-row img { border-radius: 12px; width: 100%; box-shadow: 0 8px 32px var(--shad2); border: 1px solid var(--bord); }
.tv-secret h2 { margin-bottom: 14px; }
.tv-secret p  { font-size: 16px; margin-bottom: 12px; }
.tv-secret-quote { border-left: 3px solid var(--brn); padding-left: 16px; margin: 18px 0; font-style: italic; color: var(--sub); font-size: 15px; line-height: 1.82; font-family: 'DM Serif Display', serif; }

/* REVIEWS */
.tv-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tv-rev-card { padding: 24px; background: var(--white); border: 1px solid var(--bord); border-radius: 12px; box-shadow: 0 2px 10px var(--shad2); transition: box-shadow .2s; }
.tv-rev-card:hover { box-shadow: 0 6px 20px var(--shad); }
.tv-rev-avt { width: 40px; height: 40px; background: var(--esp); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 16px; margin-bottom: 12px; flex-shrink: 0; }
.tv-rev-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; border: 2px solid var(--bord2); }
.tv-rev-name { font-weight: 700; color: var(--text); font-size: 16px; margin-bottom: 1px; }
.tv-rev-loc  { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.tv-rev-stars { color: var(--amb); font-size: 15px; margin-bottom: 6px; }
.tv-rev-badge { font-size: 11px; color: var(--grn); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.tv-rev-card p { font-size: 14px; font-style: italic; line-height: 1.8; }

/* INGREDIENTS */
.tv-ing-list { display: flex; flex-direction: column; }
.tv-ing-item { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--bord); }
.tv-ing-item:last-child { border-bottom: none; }
.tv-ing-num { width: 36px; height: 36px; background: var(--esp); color: var(--white); font-size: 15px; font-weight: 700; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.tv-ing-item h3 { font-size: 16px; margin-bottom: 5px; color: var(--esp); }
.tv-ing-dose { display: inline-block; font-size: 11px; font-weight: 700; color: var(--amb2); background: var(--tan2); padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; letter-spacing: 0.5px; }
.tv-ing-item p  { font-size: 15px; }

/* HOW IT WORKS */
.tv-how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tv-how-card { padding: 24px 20px; background: var(--white); border: 1px solid var(--bord); border-radius: 12px; border-top: 3px solid var(--brn); transition: box-shadow .2s; }
.tv-how-card:hover { box-shadow: 0 6px 20px var(--shad); }
.tv-how-num { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--tan); margin-bottom: 8px; }
.tv-how-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--esp); }
.tv-how-card p  { font-size: 14px; }

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

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

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

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

/* PROMISES */
.tv-promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tv-promise-card { padding: 24px 20px; background: var(--white); border: 1px solid var(--bord); border-radius: 12px; }
.tv-promise-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--tan); margin-bottom: 6px; }
.tv-promise-card h3 { font-size: 15px; margin-bottom: 7px; color: var(--esp); }
.tv-promise-card p  { font-size: 14px; }

/* USE STEPS */
.tv-use-list { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin: 0 auto; }
.tv-use-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--white); border: 1px solid var(--bord); border-radius: 10px; border-left: 3px solid var(--brn); }
.tv-use-num { width: 32px; height: 32px; background: var(--esp); color: var(--white); font-size: 15px; font-weight: 700; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tv-use-item h3 { font-size: 15px; margin-bottom: 4px; color: var(--esp); }
.tv-use-item p  { font-size: 14px; }

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

/* PAGE CTA */
.tv-pcta { background: linear-gradient(135deg, var(--esp3) 0%, var(--esp) 100%); padding: 60px 0; }
.tv-pcta h2 { color: var(--white); margin-bottom: 10px; }
.tv-pcta p  { color: rgba(255,255,255,0.72); font-size: 16px; margin-bottom: 20px; }

/* FINAL CTA */
.tv-final { background: linear-gradient(135deg, var(--esp3) 0%, var(--esp) 100%); padding: 76px 0; }
.tv-final-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.tv-final h2 { color: var(--white); margin-bottom: 10px; }
.tv-final p  { color: rgba(255,255,255,0.72); font-size: 16px; margin-bottom: 12px; }
.tv-final-price { font-size: 20px; font-weight: 700; color: var(--tan); margin-bottom: 20px; }
.tv-final img { max-width: 200px; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.3)); }

/* STICKY */
.tv-stick { background: var(--esp3); border-top: 2px solid var(--amb); padding: 10px 0; position: sticky; bottom: 0; z-index: 99; }
.tv-stick-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.tv-stick strong { color: var(--white); font-size: 15px; font-family: 'DM Serif Display', serif; }
.tv-stick span { color: rgba(255,255,255,0.5); font-size: 12px; margin-left: 7px; }

/* FOOTER */
.tv-foot { background: var(--esp3); border-top: 1px solid rgba(255,255,255,0.08); padding: 52px 0 20px; }
.tv-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.tv-ft-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--white); margin-bottom: 10px; }
.tv-ft-name em { color: var(--tan); font-style: normal; }
.tv-foot p  { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.78; }
.tv-foot h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.48); margin-bottom: 12px; letter-spacing: 1.8px; text-transform: uppercase; }
.tv-foot a  { display: block; font-size: 14px; color: rgba(255,255,255,0.32); margin-bottom: 7px; font-weight: 500; }
.tv-foot a:hover { color: var(--tan); }
.tv-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 18px; }

/* TIMELINE */
.tv-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tv-tl-card { text-align: center; padding: 26px 18px; border-radius: 12px; background: var(--white); border: 1px solid var(--bord); position: relative; overflow: hidden; }
.tv-tl-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--esp), var(--brn), var(--amb)); }
.tv-tl-num { font-family: 'DM Serif Display', serif; font-size: 44px; color: var(--cream3); line-height: 1; margin-bottom: 8px; }
.tv-tl-label { font-size: 11px; font-weight: 700; color: var(--brn); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 7px; }
.tv-tl-card h3 { font-size: 15px; margin-bottom: 6px; }
.tv-tl-card p  { font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .tv-pkg-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
  .tv-hero-row { grid-template-columns: 1fr; text-align: center; }
  .tv-hero-btns, .tv-stat-row, .tv-hero-tag { justify-content: center; }
  .tv-stat-row { justify-content: center; }
  .tv-hero-pic img { max-width: 260px; margin: 0 auto; }
  .tv-split { grid-template-columns: 1fr; }
  .tv-why-row { grid-template-columns: repeat(2,1fr); }
  .tv-secret-row { grid-template-columns: 1fr; }
  .tv-ft-grid { grid-template-columns: 1fr 1fr; }
  .tv-guar-row { grid-template-columns: 1fr; text-align: center; }
  .tv-guar-row img { margin: 0 auto; }
  .tv-ben-grid, .tv-how-grid { grid-template-columns: repeat(2,1fr); }
  .tv-timeline, .tv-promise-grid { grid-template-columns: 1fr; }
  .tv-bonus-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .tv-sec { padding: 52px 0; }
  .tv-rev-grid, .tv-pkg-grid, .tv-bonus-grid { grid-template-columns: 1fr; }
  .tv-ben-grid, .tv-how-grid { grid-template-columns: 1fr; }
  .tv-final-row { grid-template-columns: 1fr; text-align: center; }
  .tv-final img { margin: 0 auto; }
  .tv-ft-grid { grid-template-columns: 1fr; }
  .tv-split img { order: -1; }
}
