@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   METABOSWIITCH.COM — TEAL / DEEP SLATE
   CSS: quorven.css
   ============================================= */
:root {
  --teal:    #0d6e63;
  --teal2:   #09524a;
  --teal3:   #e6f4f2;
  --teal4:   #c2e5e0;
  --gold:    #d4820a;
  --gold2:   #b86e08;
  --gold3:   #fff8ed;
  --white:   #ffffff;
  --light:   #f7faf9;
  --light2:  #edf5f3;
  --text:    #0d1f1d;
  --muted:   #35605a;
  --border:  #c8deda;
  --gray:    #7aa09a;
  --slate:   #1a3330;
}

*, *::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: 'DM Sans', 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-size: clamp(34px,4.5vw,58px); font-weight: 900; line-height: 1.1; color: var(--slate); }
h2 { font-size: clamp(28px,3.4vw,44px); font-weight: 800; line-height: 1.2; color: var(--slate); }
h3 { font-size: clamp(20px,2.2vw,26px); font-weight: 700; color: var(--text); }
p  { font-size: clamp(18px,1.8vw,20px); color: var(--muted); line-height: 1.9; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
  background: var(--teal3); padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--teal4);
}

/* ═══════════════════════════════════════
   NAV — STICKY ALWAYS, ONE LINE ALWAYS
   ═══════════════════════════════════════ */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--teal3);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 14px rgba(13,110,99,0.09);
  width: 100%;
}
.nav-inner {
  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;      /* NEVER wrap — always one line */
}
.nav-brand {
  flex-shrink: 0;         /* logo never shrinks */
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand img {
  height: 34px;           /* small fixed height — never pushes button down */
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .15s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal3); }
.nav-order {
  flex-shrink: 0;         /* button never shrinks or wraps */
  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;
}
.nav-order:hover { background: var(--gold2); color: var(--white) !important; }

/* Mobile — logo + Order Now only, ONE LINE, nothing cut */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-inner {
    padding: 0 14px;
    height: 56px;
    gap: 0;
    justify-content: space-between;
  }
  .nav-brand img {
    height: 26px;        /* small enough to never push button */
    max-width: 130px;
    width: auto;
  }
  .nav-order {
    font-size: 13px;
    padding: 9px 14px;
    border-radius: 7px;
    flex-shrink: 0;
  }
}

/* ── BUTTONS ── */
.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; }
.btn-gold   { background: var(--gold);  color: var(--white); }
.btn-gold:hover   { background: var(--gold2); color: var(--white); }
.btn-teal   { background: var(--teal);  color: var(--white); }
.btn-teal:hover   { background: var(--teal2); color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: var(--white); color: var(--slate); }

/* ── LAYOUT ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 840px;  margin: 0 auto; padding: 0 24px; }
section { padding: 86px 0; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--light); }
.bg-light2 { background: var(--light2); }
.bg-slate  { background: var(--slate); }
.bg-teal   { background: var(--teal2); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { margin-top: 16px; font-size: 20px; }

/* ── HERO ── */
.hero { background: var(--white); padding: 86px 0 96px; border-bottom: 3px solid var(--teal3); }
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.hero h1 { margin-bottom: 14px; }
.hero-tagline { color: var(--teal); font-size: 21px; font-weight: 700; margin-bottom: 16px; }
.hero-sub { color: var(--muted); font-size: 20px; line-height: 1.9; margin-bottom: 22px; }
.hero-list { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.hero-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); font-weight: 600; }
.hero-list li::before { content: "✔"; color: var(--teal); font-weight: 900; flex-shrink: 0; margin-top: 3px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-img-wrap { width: 310px; flex-shrink: 0; }
.hero-img-wrap img { filter: drop-shadow(0 20px 38px rgba(13,110,99,0.18)); }
.rating-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.stars { color: #f5a623; font-size: 22px; }
.rating-text { font-size: 17px; color: var(--muted); font-weight: 600; }
.official-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal3); border: 2px solid var(--teal4); border-radius: 999px; padding: 6px 18px; font-size: 12px; font-weight: 800; color: var(--teal); margin-bottom: 16px; letter-spacing: 1.5px; text-transform: uppercase; }
.official-badge::before { content: "✔"; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-card { text-align: center; padding: 32px 18px; border: 2px solid var(--border); border-radius: 16px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,110,99,0.1); }
.why-card img { height: 60px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p  { font-size: 15px; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split img { border-radius: 20px; width: 100%; box-shadow: 0 12px 40px rgba(13,110,99,0.12); }
.split-text h2 { margin-bottom: 16px; }
.split-text p  { margin-bottom: 14px; }
.split-list { list-style: none; margin: 16px 0; }
.split-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 600; }
.split-list li:last-child { border-bottom: none; }
.split-list li::before { content: "✔"; color: var(--teal); font-weight: 900; flex-shrink: 0; margin-top: 3px; }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.review-card { padding: 30px; background: var(--white); border: 2px solid var(--border); border-radius: 18px; box-shadow: 0 4px 18px rgba(13,110,99,0.06); }
.review-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid var(--teal4); }
.review-stars { color: #f5a623; font-size: 20px; margin-bottom: 10px; }
.review-name { font-size: 18px; font-weight: 800; color: var(--text); }
.review-loc  { font-size: 14px; color: var(--gray); margin-bottom: 14px; font-weight: 600; }
.review-card p { font-size: 17px; color: var(--muted); font-style: italic; line-height: 1.85; }
.review-verified { font-size: 13px; color: var(--teal); font-weight: 800; margin-top: 14px; }

/* ── STEPS ── */
.step-list { display: flex; flex-direction: column; gap: 14px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.step-num { min-width: 48px; height: 48px; background: var(--teal); color: var(--white); font-size: 18px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-item h3 { font-size: 20px; margin-bottom: 6px; }
.step-item p  { font-size: 17px; }

/* ── INGREDIENTS ── */
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ing-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; transition: box-shadow .2s; }
.ing-card:hover { box-shadow: 0 8px 24px rgba(13,110,99,0.1); }
.ing-num { min-width: 42px; height: 42px; background: var(--teal3); color: var(--teal); font-size: 16px; font-weight: 900; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid var(--teal4); }
.ing-card h3 { font-size: 19px; margin-bottom: 7px; }
.ing-card p  { font-size: 16px; }

/* ── BENEFITS ── */
.ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ben-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; }
.ben-icon { width: 52px; height: 52px; background: var(--teal3); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2px solid var(--teal4); }
.ben-icon svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 2; }
.ben-card h3 { font-size: 20px; margin-bottom: 8px; }
.ben-card p  { font-size: 17px; }

/* ── PRICING ── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card { padding: 34px 24px; background: var(--white); border: 2px solid var(--border); border-radius: 20px; text-align: center; transition: box-shadow .2s, transform .2s; }
.price-card:hover { box-shadow: 0 12px 36px rgba(13,110,99,0.12); transform: translateY(-3px); }
.price-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(212,130,10,0.15); }
.price-badge { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; background: var(--gold); color: var(--white); margin-bottom: 14px; }
.price-badge.teal { background: var(--teal); }
.price-card img { max-width: 150px; margin: 0 auto 16px; }
.price-card h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.price-supply { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.price-big { font-size: 48px; font-weight: 900; color: var(--slate); line-height: 1; }
.price-per { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-was { font-size: 15px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.price-total { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.check-list { list-style: none; text-align: left; margin-bottom: 20px; }
.check-list li { font-size: 16px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.check-list li::before { content: "✔"; color: var(--teal); font-weight: 900; flex-shrink: 0; }

/* ── GUARANTEE ── */
.guarantee-sec { background: var(--teal2); padding: 86px 0; }
.guarantee-wrap { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.guarantee-wrap img { max-width: 200px; }
.guarantee-wrap h2 { color: var(--white); margin-bottom: 16px; }
.guarantee-wrap p  { color: rgba(255,255,255,0.76); font-size: 19px; margin-bottom: 12px; }
.guarantee-list { list-style: none; margin: 18px 0; }
.guarantee-list li { color: rgba(255,255,255,0.92); font-size: 19px; padding: 6px 0; display: flex; gap: 12px; font-weight: 600; }
.guarantee-list li::before { content: "✔"; color: #7fe8df; font-weight: 900; }

/* ── HOW TO TAKE ── */
.take-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.take-card { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.take-num { width: 48px; height: 48px; background: var(--teal3); color: var(--teal); font-size: 20px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--teal4); }
.take-card h3 { font-size: 20px; margin-bottom: 8px; }
.take-card p  { font-size: 17px; }

/* ── FAQ ── */
.faq-item { border: 2px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: var(--white); border: none; text-align: left; padding: 22px 28px; font-size: 19px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: 'DM Sans', sans-serif; }
.faq-q .icon { font-size: 24px; color: var(--teal); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"] { background: var(--teal2); color: var(--white); }
.faq-q[aria-expanded="true"] .icon { color: #7fe8df; transform: rotate(45deg); }
.faq-a { padding: 20px 28px; font-size: 18px; color: var(--muted); line-height: 1.9; background: var(--light); display: none; }
.faq-a.open { display: block; }

/* ── PAGE CTA ── */
.page-cta-sec { background: linear-gradient(135deg, var(--teal2) 0%, #0a4a43 100%); padding: 70px 0; }
.page-cta-sec h2 { color: var(--white); margin-bottom: 14px; }
.page-cta-sec p  { color: rgba(255,255,255,0.75); font-size: 19px; margin-bottom: 24px; }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, var(--teal2) 0%, #0a4a43 100%); padding: 86px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p  { color: rgba(255,255,255,0.76); font-size: 19px; margin-bottom: 16px; }
.final-price  { font-size: 24px; font-weight: 900; color: #7fe8df; margin-bottom: 26px; }
.final-cta img { max-width: 240px; filter: drop-shadow(0 14px 28px rgba(0,0,0,0.2)); }

/* ── STICKY BAR (desktop) ── */
.sticky-bar { background: var(--slate); border-top: 2px solid var(--gold); padding: 14px 0; position: sticky; bottom: 0; z-index: 99; }
.sticky-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.sticky-bar strong { color: var(--white); font-size: 18px; }
.sticky-bar span { color: rgba(255,255,255,0.5); font-size: 15px; margin-left: 10px; font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--slate); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-wrap { margin-bottom: 14px; }
.footer-brand-wrap img { height: 36px; width: auto; filter: brightness(0) invert(1); }
footer p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }
footer h4 { font-size: 13px; font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
footer a { display: block; font-size: 15px; color: rgba(255,255,255,0.48); margin-bottom: 9px; font-weight: 600; }
footer a:hover { color: #7fe8df; }
.footer-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.disclaimer { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.85; }
.note { font-size: 15px; color: var(--muted); font-style: italic; margin-top: 10px; }
.highlight-box { background: var(--gold3); border: 2px solid #ffd4a0; border-radius: 14px; padding: 24px; margin-top: 22px; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { width: 260px; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .rating-row { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
  .guarantee-wrap img { margin: 0 auto; }
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .ing-grid, .take-grid, .ben-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta img { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .split img { order: -1; }
}
