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

/* =============================================
   METABOSSWITCH.COM — VIBRANT GREEN + ORANGE
   Clean white bg, energy-driven design
   CSS: veltrix.css (unique)
   ============================================= */
:root {
  --green:   #1e7d34;
  --green2:  #155a25;
  --green3:  #e8f5eb;
  --green4:  #c8e6cd;
  --orange:  #e8610a;
  --orange2: #c4510a;
  --orange3: #fff4ed;
  --white:   #ffffff;
  --light:   #f8faf8;
  --light2:  #f0f4f0;
  --text:    #141f14;
  --muted:   #3d5c3d;
  --border:  #d4e4d4;
  --gray:    #7a967a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; max-width: 100%; }
html { scroll-behavior: smooth; }

/* ── MOBILE ZOOM DISABLED ── */
body {
  font-family: 'Plus Jakarta 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(--green2); }
h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.2; color: var(--green2); }
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: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
  background: var(--green3); padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--green4);
}

/* ── DESKTOP NAV ── */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--green3);
  padding: 16px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(30,125,52,0.08);
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand img { height: 20px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; padding: 7px 10px; border-radius: 7px; transition: all .15s; }
.nav-links a:hover { color: var(--green); background: var(--green3); }
.nav-btn { background: var(--orange) !important; color: var(--white) !important; font-weight: 800 !important; border-radius: 8px !important; padding: 10px 16px !important; font-size: 14px !important; }
.nav-btn:hover { background: var(--orange2) !important; color: var(--white) !important; }

/* ── MOBILE STICKY NAV (bottom) ── */
.mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--green2);
  border-top: 2px solid var(--orange);
  padding: 10px 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-nav .mob-brand { font-size: 18px; font-weight: 900; color: var(--white); }
.mobile-nav .mob-brand span { color: #7fe09a; }
.mobile-nav a.mob-order { background: var(--orange); color: var(--white); font-weight: 800; font-size: 15px; padding: 10px 22px; border-radius: 8px; }

/* ── 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; }
.btn-orange  { background: var(--orange);  color: var(--white); }
.btn-orange:hover  { background: var(--orange2); color: var(--white); }
.btn-green  { background: var(--green);  color: var(--white); }
.btn-green:hover  { background: var(--green2); color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); 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(--green2); }

/* ── LAYOUT ── */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px;  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-green  { background: var(--green2); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-head p { margin-top: 16px; font-size: 20px; }

/* ── HERO ── */
.hero { background: var(--white); padding: 86px 0 96px; border-bottom: 3px solid var(--green3); }
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.hero h1 { margin-bottom: 14px; }
.hero-tagline { color: var(--orange); font-size: 22px; 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 26px; 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(--green); font-weight: 900; flex-shrink: 0; margin-top: 3px; font-size: 16px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-img-wrap { width: 320px; flex-shrink: 0; }
.hero-img-wrap img { filter: drop-shadow(0 20px 36px rgba(30,125,52,0.18)); }
.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 20px; 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(--green3); border: 2px solid var(--green4); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 800; color: var(--green); margin-bottom: 16px; letter-spacing: 1px; 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: 34px 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(30,125,52,0.1); }
.why-card img { height: 60px; width: auto; margin: 0 auto 18px; 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(30,125,52,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(--green); 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 16px rgba(30,125,52,0.06); }
.review-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid var(--green4); }
.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(--green); font-weight: 800; margin-top: 14px; }

/* ── STEPS ── */
.step-list { display: flex; flex-direction: column; gap: 16px; }
.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(--green); 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(30,125,52,0.1); }
.ing-num { min-width: 42px; height: 42px; background: var(--green3); color: var(--green); font-size: 16px; font-weight: 900; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 2px solid var(--green4); }
.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(--green3); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2px solid var(--green4); }
.ben-icon svg { width: 28px; height: 28px; stroke: var(--green); 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(30,125,52,0.12); transform: translateY(-3px); }
.price-card.featured { border-color: var(--orange); box-shadow: 0 8px 32px rgba(232,97,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(--orange); color: var(--white); margin-bottom: 14px; }
.price-badge.green { background: var(--green); }
.price-card img { max-width: 150px; margin: 0 auto 16px; }
.price-card h3 { font-size: 22px; color: var(--text); margin-bottom: 5px; }
.price-supply { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.price-big { font-size: 48px; font-weight: 900; color: var(--green2); 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 3px; }
.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(--green); font-weight: 900; flex-shrink: 0; }

/* ── GUARANTEE ── */
.guarantee-sec { background: var(--green2); 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.75); font-size: 19px; margin-bottom: 12px; }
.guarantee-list { list-style: none; margin: 18px 0; }
.guarantee-list li { color: rgba(255,255,255,0.9); font-size: 19px; padding: 6px 0; display: flex; gap: 12px; font-weight: 600; }
.guarantee-list li::before { content: "✔"; color: #7fe09a; 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(--green3); color: var(--green); font-size: 20px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--green4); }
.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: 'Plus Jakarta Sans', sans-serif; }
.faq-q .icon { font-size: 24px; color: var(--green); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"] { background: var(--green2); color: var(--white); }
.faq-q[aria-expanded="true"] .icon { color: #7fe09a; 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; }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, var(--green2) 0%, #1a6b2e 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.78); font-size: 19px; margin-bottom: 16px; }
.final-price  { font-size: 24px; font-weight: 900; color: #7fe09a; 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(--green2); border-top: 2px solid var(--orange); 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.55); font-size: 15px; margin-left: 10px; font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--green2); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 12px; }
footer p { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.8; }
footer h4 { font-size: 14px; font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: 1px; 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: #7fe09a; }
.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; margin-bottom: 10px; }
.note { font-size: 15px; color: var(--muted); font-style: italic; margin-top: 10px; }
.highlight-box { background: var(--orange3); border: 2px solid #ffd4b8; 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; }
  .nav-inner { padding: 0 16px; }
  .nav-links a:not(.nav-btn) { display: none; }
  .nav-btn { padding: 9px 14px !important; font-size: 13px !important; white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .split img { order: -1; }
  .sticky-bar { display: none; }
  .mobile-nav { display: flex; }
  footer { padding-bottom: 90px; }
}
