/* ===== SILICABONE PRO – UNIQUE STYLESHEET ===== */
:root {
  --si: #4f46e5;
  --si-light: #818cf8;
  --si-pale: #eef2ff;
  --si-dark: #1e1b4b;
  --si-mid: #6366f1;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-400: #94a3b8;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --white: #ffffff;
  --r: 10px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(79,70,229,.08);
  --shadow-md: 0 8px 32px rgba(79,70,229,.12);
  --shadow-lg: 0 20px 60px rgba(79,70,229,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--neutral-800); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== COOKIE ===== */
.ck-notice {
  position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 680px;
  background: var(--neutral-900); color: #e2e8f0; border-radius: var(--r-lg);
  padding: 16px 20px; z-index: 9999; transform: translateY(120px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1); box-shadow: var(--shadow-lg);
}
.ck-notice.visible { transform: translateY(0); }
.ck-wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ck-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--si-light); flex-shrink: 0; }
.ck-left { display: flex; align-items: center; gap: 10px; flex: 1; }
.ck-left p { font-size: .875rem; }
.ck-left a { color: var(--si-light); text-decoration: underline; }
.ck-right { display: flex; gap: 8px; }
.ck-btn { padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer; font-size: .875rem; font-weight: 600; }
.ck-btn--yes { background: var(--si); color: #fff; }
.ck-btn--no { background: transparent; border: 1px solid #475569; color: #94a3b8; }

/* ===== ANNOUNCEMENT BAR ===== */
.ann-bar {
  background: var(--si-dark); color: #c7d2fe; padding: 9px 0; font-size: .8rem;
}
.ann-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ann-inner i { width: 13px; height: 13px; vertical-align: middle; }
.ann-sep { color: #4338ca; }

/* ===== NAV ===== */
.site-nav {
  position: sticky; top: 0; background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--neutral-200);
  z-index: 100; transition: box-shadow .3s;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-crystal {
  width: 36px; height: 36px; background: var(--si); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.brand-crystal i { width: 18px; height: 18px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.1rem; font-weight: 700; color: var(--neutral-900); }
.brand-text em { font-size: .7rem; font-weight: 600; color: var(--si); text-transform: uppercase; letter-spacing: .1em; font-style: normal; }
.nav-links { list-style: none; display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--neutral-600); transition: color .2s; }
.nav-links a:hover { color: var(--si); }
.nav-order-btn {
  display: flex; align-items: center; gap: 8px; background: var(--si); color: #fff;
  padding: 9px 20px; border-radius: var(--r); font-weight: 600; font-size: .875rem;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.nav-order-btn i { width: 16px; height: 16px; }
.nav-order-btn:hover { background: var(--si-mid); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--neutral-800); }
.nav-toggle i { width: 24px; height: 24px; }

/* ===== SPLIT HERO ===== */
.split-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 104px);
}
.split-left {
  background: linear-gradient(135deg, var(--si-pale) 0%, #e0e7ff 100%);
  display: flex; align-items: center; padding: 60px 0;
}
.split-left-inner {
  max-width: 560px; margin: 0 auto; padding: 0 48px;
}
.pill-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--si); color: #fff; padding: 6px 16px;
  border-radius: 20px; font-size: .8rem; font-weight: 600; margin-bottom: 24px;
}
.pill-tag i { width: 14px; height: 14px; }
.hero-headline {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.15; color: var(--neutral-900); margin-bottom: 20px;
}
.accent-text { color: var(--si); }
.hero-sub { font-size: 1.05rem; color: var(--neutral-600); margin-bottom: 28px; max-width: 480px; }
.hero-stats-row {
  display: flex; align-items: center; gap: 0; margin-bottom: 28px;
  background: var(--white); border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.hstat { flex: 1; text-align: center; }
.hstat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--si); }
.hstat span { font-size: .75rem; color: var(--neutral-400); text-transform: uppercase; letter-spacing: .05em; }
.hstat-div { width: 1px; height: 32px; background: var(--neutral-200); }
.hero-cta-row { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--si); color: #fff; padding: 13px 26px;
  border-radius: var(--r); font-weight: 700; font-size: .95rem;
  transition: all .2s; border: none; cursor: pointer;
}
.btn-main i { width: 18px; height: 18px; }
.btn-main:hover { background: var(--si-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-main.btn-full { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--si); border: 2px solid var(--si);
  padding: 11px 22px; border-radius: var(--r); font-weight: 600; font-size: .95rem;
  transition: all .2s;
}
.btn-outline i { width: 16px; height: 16px; }
.btn-outline:hover { background: var(--si-pale); }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badges span {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--neutral-600);
}
.trust-badges i { width: 14px; height: 14px; color: var(--si); }

.split-right {
  background: var(--neutral-50); display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.product-showcase { position: relative; max-width: 380px; width: 100%; }
.product-img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.floating-card {
  position: absolute; background: var(--white); border-radius: var(--r);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.floating-card i { width: 20px; height: 20px; color: var(--si); flex-shrink: 0; }
.floating-card strong { display: block; font-size: .9rem; font-weight: 700; color: var(--neutral-900); }
.floating-card span { font-size: .75rem; color: var(--neutral-400); }
.fc-top { top: 20px; left: -20px; }
.fc-bot { bottom: 30px; right: -20px; }

/* ===== WIDE BANNER ===== */
.wide-banner { position: relative; height: 360px; overflow: hidden; }
.banner-img { width: 100%; height: 100%; object-fit: cover; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,27,75,.85) 0%, rgba(30,27,75,.4) 60%, transparent 100%);
  display: flex; align-items: center;
}
.banner-text { max-width: 500px; padding: 0 60px; color: #fff; }
.banner-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.banner-text p { font-size: .95rem; color: rgba(255,255,255,.85); }

/* ===== ABOUT / ZIGZAG ===== */
.about-sec { padding: 80px 0; }
.about-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block; background: var(--si-pale); color: var(--si);
  padding: 4px 14px; border-radius: 20px; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.zz-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 80px;
}
.zz-row--rev { direction: rtl; }
.zz-row--rev > * { direction: ltr; }
.zz-content h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--neutral-900); margin-bottom: 16px;
}
.zz-content h2 em { color: var(--si); font-style: normal; }
.zz-content p { color: var(--neutral-600); margin-bottom: 14px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--si); font-weight: 600; font-size: .9rem;
  margin-top: 8px; transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }
.link-arrow i { width: 16px; height: 16px; }

.info-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.icard {
  background: var(--white); border-radius: var(--r-lg); padding: 20px;
  border: 1px solid var(--neutral-200); transition: all .3s;
}
.icard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icard i { width: 24px; height: 24px; margin-bottom: 10px; }
.icard--a i { color: #6366f1; }
.icard--b i { color: #0ea5e9; }
.icard--c i { color: #10b981; }
.icard--d i { color: #f59e0b; }
.icard h3 { font-size: .95rem; font-weight: 700; color: var(--neutral-900); margin-bottom: 6px; }
.icard p { font-size: .82rem; color: var(--neutral-600); }

.ingredient-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.ing-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; background: var(--neutral-50);
  border-radius: var(--r); border-left: 3px solid var(--si);
}
.ing-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--si);
  flex-shrink: 0; margin-top: 5px;
}
.ing-body { flex: 1; }
.ing-body strong { display: block; font-size: .9rem; font-weight: 700; color: var(--neutral-900); margin-bottom: 2px; }
.ing-body span { font-size: .82rem; color: var(--neutral-600); }
.ing-pct {
  background: var(--si); color: #fff; padding: 3px 10px;
  border-radius: 20px; font-size: .78rem; font-weight: 700; white-space: nowrap;
}

/* MOLECULE VIZ */
.zz-visual--center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.molecule-box {
  width: 280px; height: 280px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mol-center {
  width: 80px; height: 80px; background: var(--si); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; z-index: 2; position: relative; box-shadow: 0 0 0 12px rgba(99,102,241,.15);
}
.mol-center i { width: 20px; height: 20px; }
.mol-center span { font-size: .9rem; font-weight: 800; margin-top: 2px; }
.mol-orbit { position: absolute; inset: 0; }
.mol-node {
  position: absolute; width: 48px; height: 48px;
  background: var(--white); border: 2px solid var(--si-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--si);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(110px) rotate(calc(-1 * var(--angle)));
  box-shadow: var(--shadow-sm);
}
.mol-caption { font-size: .82rem; color: var(--neutral-400); text-align: center; margin-top: 16px; max-width: 240px; }

/* ===== RESULTS TIMELINE ===== */
.results-sec { padding: 80px 0; background: var(--si-dark); }
.results-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.results-head { text-align: center; margin-bottom: 48px; }
.results-head .section-label { background: rgba(99,102,241,.2); color: var(--si-light); }
.results-head h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.results-head p { color: rgba(255,255,255,.6); }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 60px; top: 0; bottom: 0;
  width: 2px; background: rgba(99,102,241,.3);
}
.tl-item { display: flex; gap: 32px; align-items: flex-start; padding: 28px 0; }
.tl-marker {
  width: 80px; flex-shrink: 0; text-align: center;
  background: var(--si); border-radius: var(--r); padding: 10px 8px;
  position: relative; z-index: 1;
}
.tl-marker span { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
.tl-marker em { font-size: .7rem; color: rgba(255,255,255,.7); font-style: normal; }
.tl-content { flex: 1; padding-top: 8px; }
.tl-content h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tl-content p { font-size: .875rem; color: rgba(255,255,255,.65); }

/* ===== REVIEWS ===== */
.reviews-sec { padding: 80px 0; background: var(--neutral-50); }
.reviews-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.reviews-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.reviews-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.2rem); font-weight: 700; color: var(--neutral-900); }
.overall-rating { display: flex; align-items: center; gap: 16px; }
.rating-big { font-size: 3.5rem; font-weight: 800; color: var(--si); line-height: 1; }
.stars-row { display: flex; gap: 3px; margin-bottom: 4px; }
.stars-row i { width: 16px; height: 16px; fill: #fbbf24; color: #fbbf24; }
.rating-details span { font-size: .82rem; color: var(--neutral-400); }
.reviews-masonry {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.rev-card {
  background: var(--white); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--neutral-200); transition: box-shadow .3s;
}
.rev-card:hover { box-shadow: var(--shadow-md); }
.rev-card--featured { border-color: var(--si); background: var(--si-pale); }
.rev-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .82rem; flex-shrink: 0;
}
.rev-meta strong { display: block; font-weight: 700; color: var(--neutral-900); font-size: .9rem; }
.rev-meta small { font-size: .75rem; color: var(--neutral-400); }
.rev-stars { display: flex; gap: 2px; margin-left: auto; }
.rev-stars i { width: 13px; height: 13px; fill: #fbbf24; color: #fbbf24; }
.rev-card blockquote { font-size: .875rem; color: var(--neutral-600); line-height: 1.65; font-style: italic; }
.rev-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--si); color: #fff; padding: 4px 10px;
  border-radius: 20px; font-size: .75rem; font-weight: 600; margin-top: 12px;
}
.rev-badge i { width: 12px; height: 12px; }

/* ===== ORDER SECTION ===== */
.order-sec { padding: 80px 0; background: var(--white); }
.order-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start;
}
.order-main h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 700; color: var(--neutral-900); margin-bottom: 24px;
}
.pkg-selector { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pkg-opt {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border: 2px solid var(--neutral-200); border-radius: var(--r-lg);
  cursor: pointer; transition: all .2s; background: var(--white);
}
.pkg-opt--active { border-color: var(--si); background: var(--si-pale); }
.pkg-radio {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--neutral-400);
  flex-shrink: 0; transition: all .2s;
}
.pkg-opt--active .pkg-radio { border-color: var(--si); background: var(--si); box-shadow: inset 0 0 0 3px var(--white); }
.pkg-info { flex: 1; }
.pkg-info strong { display: block; font-weight: 700; color: var(--neutral-900); }
.pkg-info span { font-size: .82rem; color: var(--neutral-600); }
.pkg-tag {
  display: inline-block; background: #dcfce7; color: #15803d;
  padding: 2px 8px; border-radius: 6px; font-size: .75rem; font-weight: 600;
  font-style: normal; margin-top: 4px;
}
.pkg-tag--best { background: #fef3c7; color: #b45309; }
.pkg-price { font-size: 1.3rem; font-weight: 800; color: var(--si); }
.order-guarantees { display: flex; flex-direction: column; gap: 10px; }
.og-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--neutral-600); }
.og-item i { width: 18px; height: 18px; color: var(--si); flex-shrink: 0; }

.sidebar-form-card {
  background: var(--neutral-50); border: 1px solid var(--neutral-200);
  border-radius: var(--r-lg); padding: 28px; position: sticky; top: 80px;
}
.sfc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.sfc-head i { width: 22px; height: 22px; color: var(--si); }
.sfc-head h3 { font-weight: 700; color: var(--neutral-900); font-size: 1.05rem; }
.sf-field { margin-bottom: 14px; }
.sf-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--neutral-800); margin-bottom: 5px; }
.sf-field input, .sf-field textarea, .sf-field select {
  width: 100%; padding: 10px 13px; border: 1px solid var(--neutral-200);
  border-radius: var(--r); font-size: .9rem; font-family: inherit;
  background: var(--white); transition: border-color .2s; color: var(--neutral-800);
}
.sf-field input:focus, .sf-field textarea:focus { outline: none; border-color: var(--si); }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sf-pkg-display .pkg-display-val {
  background: var(--si-pale); color: var(--si); padding: 10px 13px;
  border-radius: var(--r); font-size: .875rem; font-weight: 600;
}
.sf-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 14px; }
.sf-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.sf-check label { font-size: .78rem; color: var(--neutral-600); }
.sf-check a { color: var(--si); text-decoration: underline; }
.sf-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .75rem; color: var(--neutral-400); margin-top: 10px;
}
.sf-note i { width: 12px; height: 12px; }
.order-success { text-align: center; padding: 24px 0; }
.order-success i { width: 48px; height: 48px; color: var(--si); margin: 0 auto 12px; }
.order-success h3 { font-weight: 700; color: var(--neutral-900); margin-bottom: 6px; }
.order-success p { font-size: .875rem; color: var(--neutral-600); }

/* ===== FAQ ===== */
.faq-sec { padding: 80px 0; background: var(--neutral-50); }
.faq-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.2rem); font-weight: 700; color: var(--neutral-900); }
.accordion { display: flex; flex-direction: column; gap: 8px; }
.acc-item { background: var(--white); border-radius: var(--r); border: 1px solid var(--neutral-200); overflow: hidden; }
.acc-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: var(--neutral-900); font-family: inherit;
  text-align: left; gap: 12px;
}
.acc-trigger i { width: 18px; height: 18px; color: var(--si); flex-shrink: 0; transition: transform .3s; }
.acc-item.open .acc-trigger i { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-item.open .acc-panel { max-height: 300px; }
.acc-panel p { padding: 0 20px 18px; font-size: .875rem; color: var(--neutral-600); line-height: 1.7; }
.acc-panel a { color: var(--si); text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-sec { padding: 80px 0; }
.contact-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.contact-container > h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.2rem);
  font-weight: 700; color: var(--neutral-900); margin-bottom: 40px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-block { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon-wrap {
  width: 40px; height: 40px; background: var(--si-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon-wrap i { width: 18px; height: 18px; color: var(--si); }
.ci-block strong { display: block; font-weight: 700; color: var(--neutral-900); font-size: .875rem; margin-bottom: 2px; }
.ci-block p, .ci-block a { font-size: .85rem; color: var(--neutral-600); }
.ci-block a:hover { color: var(--si); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--neutral-900); color: #94a3b8; }
.footer-disclaimer {
  max-width: 1200px; margin: 0 auto; padding: 24px 24px 0;
  font-size: .75rem; color: #475569; border-top: 1px solid #1e293b;
}
.footer-bar {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid #1e293b;
}
.fb-brand {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.fb-brand i { width: 16px; height: 16px; color: var(--si-light); }
.fb-links {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1;
}
.fb-links a, .fb-links button {
  font-size: .8rem; color: #94a3b8; padding: 4px 12px;
  border-right: 1px solid #1e293b; transition: color .2s;
  background: none; border-top: none; border-bottom: none; border-left: none;
  cursor: pointer; font-family: inherit;
}
.fb-links a:first-child { padding-left: 0; }
.fb-links a:hover, .fb-links button:hover { color: #fff; }
.fb-links button { border-right: none; }
.fb-contact {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.fb-contact a {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: #94a3b8; transition: color .2s;
}
.fb-contact a:hover { color: #fff; }
.fb-contact i { width: 13px; height: 13px; }
.footer-copy {
  border-top: 1px solid #1e293b; padding: 12px 24px;
  max-width: 1200px; margin: 0 auto;
  font-size: .75rem; color: #475569; text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-left { padding: 60px 0 40px; }
  .split-left-inner { padding: 0 24px; max-width: 100%; text-align: center; }
  .hero-stats-row { max-width: 400px; margin: 0 auto 28px; }
  .hero-cta-row { justify-content: center; }
  .trust-badges { justify-content: center; }
  .split-right { padding: 40px 24px 60px; }
  .product-showcase { max-width: 320px; }
  .fc-top { left: 0; }
  .fc-bot { right: 0; }
  .zz-row, .zz-row--rev { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .order-wrap { grid-template-columns: 1fr; }
  .sidebar-form-card { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .reviews-masonry { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 12px; border-bottom: 1px solid var(--neutral-200); box-shadow: var(--shadow-md); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-order-btn span { display: none; }
  .banner-text { padding: 0 24px; }
  .banner-text h2 { font-size: 1.4rem; }
  .timeline::before { left: 40px; }
  .tl-marker { width: 60px; }
  .info-card-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sf-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
