/* ============================================================
   SYNOSHI PRO™ — css/style.css
   Domain: synoshipro.us
   Theme: Deep Purple #5E2D91 + Electric Blue #29B6E8 (same product)
   Navbar:   WHITE bg + purple logo + gradient 2px bottom border (NEW)
   Headings: Bold 900 + plain ALL-CAPS tag above (no pill, no bar) (NEW)
   Buttons:  Gradient fill purple→blue → reversed hover (NEW)
   Cards:    2-col split: colored accent LEFT panel + white RIGHT body (NEW)
   Font: Jost (Google Fonts)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:        #5E2D91;
  --purple-dark:   #3D1A6E;
  --purple-mid:    #7A3DB5;
  --purple-light:  #EDE5F8;
  --purple-pale:   #F5F0FF;
  --blue:          #29B6E8;
  --blue-dark:     #1A8FBB;
  --blue-mid:      #45C5F0;
  --blue-light:    #E0F7FD;
  --grad:          linear-gradient(135deg, #5E2D91 0%, #29B6E8 100%);
  --grad-rev:      linear-gradient(135deg, #29B6E8 0%, #5E2D91 100%);
  --white:         #FFFFFF;
  --off-white:     #F8F5FF;
  --cream:         #F0EBFF;
  --text:          #1A0E2E;
  --muted:         #3D2860;
  --border:        #C5B0E8;
  --border-light:  #DDD0F5;
  --radius:        10px;
  --radius-card:   14px;
  --radius-btn:    4px;
  --shadow:        0 4px 20px rgba(94,45,145,0.10);
  --shadow-h:      0 12px 40px rgba(94,45,145,0.20);
  --shadow-card:   0 3px 18px rgba(94,45,145,0.08);
  --shadow-nav:    0 2px 20px rgba(94,45,145,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif; font-size: 18px;
  color: var(--text); background: var(--white);
  overflow-x: hidden; line-height: 1.75;
}

/* ── PLAIN ALL-CAPS LABEL above headings (NEW — no pill, no left bar) ── */
.sec-tag {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue-dark);
  margin-bottom: 10px;
}
.sec-tag.light { color: var(--blue-mid); }

/* ── NAVBAR — WHITE bg + gradient 2px bottom border (NEW) ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  padding: 0 24px; height: 72px;
  box-shadow: var(--shadow-nav);
  /* gradient bottom border via pseudo */
  border-bottom: none;
  position: sticky;
}
nav::after {
  content: ''; display: block; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Jost', sans-serif; font-size: 1.7rem; font-weight: 900;
  color: var(--purple); text-decoration: none; letter-spacing: 1px;
  text-transform: uppercase; flex-shrink: 0;
  display: flex; align-items: center; line-height: 1;
}
.nav-logo span { color: var(--blue-dark); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  display: flex; align-items: center; color: var(--muted);
  text-decoration: none; font-family: 'Jost', sans-serif;
  font-size: 0.93rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; line-height: 1;
}
.nav-links a:hover { color: var(--purple); }

/* Nav CTA — gradient fill button */
.btn-nav-order {
  background: var(--grad) !important; color: var(--white) !important;
  font-weight: 800 !important; font-size: 0.87rem !important;
  padding: 9px 22px !important; border-radius: var(--radius-btn) !important;
  border: none !important; transition: all 0.2s !important;
  white-space: nowrap; text-decoration: none; line-height: 1;
  box-shadow: 0 2px 12px rgba(94,45,145,0.30) !important;
}
.btn-nav-order:hover {
  background: var(--grad-rev) !important;
  box-shadow: 0 4px 20px rgba(94,45,145,0.45) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; align-self: center; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--purple); display: block; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; background: var(--white);
  position: absolute; top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-top: 2px solid var(--purple-light);
  box-shadow: 0 8px 24px rgba(94,45,145,0.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 1rem; font-weight: 500; font-family: 'Jost', sans-serif; }
.mobile-menu .btn-mob-order {
  background: var(--grad); color: var(--white); text-align: center;
  padding: 12px; border-radius: var(--radius-btn); font-weight: 800;
  margin-top: 6px; font-size: 0.95rem;
}

/* ── BUTTONS — Gradient fill → reversed gradient hover (NEW) ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad); color: var(--white);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.3px; padding: 15px 34px;
  border-radius: var(--radius-btn); border: none;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(94,45,145,0.35); line-height: 1.2;
}
.btn-primary:hover {
  background: var(--grad-rev);
  box-shadow: 0 6px 24px rgba(41,182,232,0.40);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--purple);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 13px 28px; border-radius: var(--radius-btn);
  border: 2px solid var(--purple); text-decoration: none;
  transition: all 0.22s; line-height: 1.2;
}
.btn-outline:hover {
  background: var(--grad); color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(94,45,145,0.35);
  transform: translateY(-2px);
}

/* ── SECTION BANDS — Bold 900 + plain ALL-CAPS tag above ── */
.sec-title-band { background: var(--purple); padding: 52px 40px 44px; text-align: center; }
.sec-title-band .sec-tag { color: var(--blue-mid); margin-bottom: 12px; }
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1.2; letter-spacing: -0.3px;
}
.sec-title-band h2 span.hl { color: var(--blue-mid); }
/* Thin white rule below — different from gradient underline */
.sec-title-band h2::after {
  content: ''; display: block; width: 48px; height: 2px;
  background: rgba(255,255,255,0.35); margin: 14px auto 0; border-radius: 1px;
}

/* ── HERO ── */
.hero { background: var(--off-white); padding: 80px 48px; }
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
.hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap a img {
  max-width: 100%; max-height: 540px; object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(94,45,145,0.22));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

.hero-content .hero-tag {
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-dark); display: block; margin-bottom: 16px;
}
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 900;
  line-height: 1.1; color: var(--purple); margin-bottom: 8px; letter-spacing: -0.5px;
}
.hero-content h1 strong { color: var(--blue-dark); }
.hero-content p { font-size: 1.08rem; line-height: 1.82; color: var(--muted); margin-bottom: 16px; margin-top: 20px; }
.hero-highlight {
  font-weight: 700; color: var(--purple); font-size: 0.98rem; display: block;
  margin-top: 8px; padding: 12px 16px 12px 20px; background: var(--purple-light);
  border-left: 4px solid var(--purple); border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--purple); padding: 16px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  border-bottom: 3px solid var(--blue);
}
.sstat {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 28px; border-right: 1px solid rgba(255,255,255,0.15);
}
.sstat:last-child { border-right: none; }
.sstat-num { font-family: 'Jost', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--blue-mid); line-height: 1; }
.sstat-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

/* ── REVIEWS ── */
.reviews-section { background: var(--cream); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.review-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  border-bottom: 4px solid var(--purple);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.reviewer-photo {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; background: var(--purple-light); transition: transform 0.4s ease;
}
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after {
  content: "👤"; font-size: 3.5rem; opacity: 0.25; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.review-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.review-stars { height: 20px; margin: 0 auto 10px; display: block; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--purple); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border-light); }

/* ── PROSE ── */
.what-is-section { background: var(--off-white); padding: 70px 48px; }
.what-is-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; align-items: center; gap: 60px;
}
.what-is-img-wrap img { width: 100%; max-width: 420px; height: auto; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(94,45,145,0.18)); display: block; }
.what-is-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

.why-section { background: var(--white); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ── PRICING BAND ── */
.pricing-band { background: var(--purple); padding: 44px 40px 14px; text-align: center; border-top: 4px solid var(--blue); }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: -0.3px; }
.pricing-band h3 span.hl { color: var(--blue-mid); }
.pricing-band h4 { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.78); font-family: 'Jost', sans-serif; }

.price-img-section { background: var(--off-white); padding: 48px; text-align: center; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.price-img-section a:hover img { transform: scale(1.01); }

/* ── FEATURES — NEW: 2-col split cards (accent LEFT panel + white RIGHT) ── */
.features-section { background: var(--off-white); padding: 70px 48px; }
.split-grid {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.split-card {
  display: grid; grid-template-columns: 200px 1fr;
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); transition: box-shadow 0.3s, transform 0.25s;
  height: 100%;
}
.split-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }

/* Alternating purple / blue left panel */
.split-left {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; padding: 24px 16px;
}
.split-left.purple { background: var(--purple); }
.split-left.blue   { background: var(--blue-dark); }
.split-icon { font-size: 2rem; line-height: 1; }
.split-left h3 {
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 800;
  color: rgba(255,255,255,0.90); text-transform: uppercase; letter-spacing: 1px;
  text-align: center; line-height: 1.3; margin: 0;
}

/* White right panel */
.split-right {
  background: var(--white); padding: 22px 26px;
  display: flex; flex-direction: column; justify-content: center; flex: 1;
  border: 1px solid var(--border-light); border-left: none;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.split-right p { font-size: 0.98rem; line-height: 1.78; color: var(--muted); }

/* ── BEFORE & AFTER ── */
.before-after-section { background: var(--cream); padding: 70px 48px; }
.ba-intro { max-width: 700px; margin: 0 auto 36px; text-align: center; }
.ba-intro p { font-size: 1.05rem; line-height: 1.8; color: var(--muted); }
.ba-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.ba-card {
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
  transition: box-shadow 0.3s, transform 0.25s;
  background: var(--white); border: 1px solid var(--border-light);
}
.ba-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.ba-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.4s; }
.ba-card:hover img { transform: scale(1.03); }
.ba-labels { display: flex; justify-content: space-between; position: absolute; top: 0; left: 0; right: 0; }
.ba-label-before { background: rgba(94,45,145,0.88); color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 12px; }
.ba-label-after  { background: rgba(29,143,187,0.90); color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 12px; }
.ba-card-title { padding: 14px 16px; }
.ba-card-title h4 { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 800; color: var(--purple); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ba-card-title p { font-size: 0.88rem; line-height: 1.65; color: var(--muted); }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--white); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; }
.guarantee-text p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ── BENEFITS — also split cards ── */
.benefits-section { background: var(--off-white); padding: 70px 48px; }

/* ── HOW TO USE ── */
.howto-section { background: var(--cream); padding: 70px 48px; }
.howto-steps { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.howto-step {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-card); padding: 22px 26px;
  display: flex; flex-direction: row; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.step-num {
  min-width: 44px; width: 44px; height: 44px;
  background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0; font-family: 'Jost', sans-serif; line-height: 1;
}
.howto-step-text { flex: 1; min-width: 0; }
.howto-step h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--purple); letter-spacing: 0.2px; margin-bottom: 6px; }
.howto-step p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ── FAQs ── */
.faq-section { background: var(--white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--purple); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; line-height: 1.4; }
.faq-question:hover { background: var(--purple-light); }
.faq-arrow { font-size: 1rem; transition: transform 0.3s; color: var(--blue-dark); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1.03rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border-light); background: var(--white); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── ORDER / PRICING DETAILS ── */
.order-how-section { background: var(--off-white); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.08rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); }
.order-img-wrap a:hover img { transform: scale(1.01); }

.pricing-details { background: var(--white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--purple); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 800; color: var(--purple); margin-bottom: 10px; letter-spacing: 0.2px; }
.info-block p, .info-block li { font-size: 1.03rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "✔ "; color: var(--blue-dark); font-weight: 700; }

/* ── FINAL CTA ── */
.cta-final { background: var(--purple); padding: 80px 48px; text-align: center; border-top: 4px solid var(--blue); }
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 36px; line-height: 1.2; letter-spacing: -0.3px; }
.cta-final h2 span.hl { color: var(--blue-mid); }
.cta-product-img { max-width: 400px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 32px rgba(41,182,232,0.30)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.50); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--blue-mid); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: var(--purple-dark); padding: 48px 48px 30px; border-top: 3px solid var(--blue); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.footer-cols a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; font-weight: 500; font-family: 'Jost', sans-serif; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--blue-mid); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.32); font-family: 'Jost', sans-serif; margin-top: 14px; }
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-copy a:hover { color: var(--blue-mid); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.1rem; }
  .what-is-inner { grid-template-columns: 1fr 1.3fr; gap: 40px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { display: flex; justify-content: center; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .split-card { grid-template-columns: 140px 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-strip { flex-direction: column; align-items: center; gap: 6px; padding: 14px 20px; }
  .sstat { border-right: none; }
  .hero { padding: 44px 20px; }
  .hero-content h1 { font-size: 1.75rem; }
  .sec-title-band { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.5rem; }
  .reviews-grid, .ba-grid { grid-template-columns: 1fr; }
  .split-card { grid-template-columns: 1fr; }
  .split-left { flex-direction: row; padding: 14px 20px; border-radius: var(--radius-card) var(--radius-card) 0 0; }
  .split-right { border-left: 1px solid var(--border-light); border-top: none; border-radius: 0 0 var(--radius-card) var(--radius-card); }
  .reviews-section, .what-is-section, .why-section, .features-section,
  .before-after-section, .guarantee-section, .benefits-section,
  .faq-section, .howto-section, .order-how-section { padding: 44px 20px; }
  .pricing-details, .price-img-section { padding: 32px 20px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.5rem; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}