/* ══════════════════════════════════════
   FASTWMS — Main Stylesheet v1.0
   Все стили сайта. Без inline-стилей в HTML.
   ══════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── LAYOUT ── */
.sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.sec-div { height: 1px; background: #EBEBEB; margin: 0 56px; }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 10px; text-align: center; }
.sec-h { font-size: 36px; font-weight: 800; letter-spacing: -1px; text-align: center; margin-bottom: 10px; line-height: 1.15; }
.sec-sub { font-size: 16px; color: #666; text-align: center; max-width: 560px; margin: 0 auto 44px; line-height: 1.65; }

/* ── BUTTONS ── */
.btn-ghost { background: #fff; border: 1.5px solid #111; color: #111; font-size: 14px; font-weight: 600; padding: 8px 20px; border-radius: 8px; display: inline-block; }
.btn-dark { background: #111; color: #fff; font-size: 14px; font-weight: 600; padding: 8px 20px; border-radius: 8px; border: none; display: inline-block; }
.btn-dark:hover { background: #333; }

/* ── NAV ── */
#site-nav { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid #EBEBEB; padding: 0 56px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 200; }
.nav-logo { font-weight: 800; font-size: 17px; letter-spacing: -.3px; color: #111; }
.nav-logo span { color: #111; }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: #555; font-weight: 500; }
.nav-links a:hover, .nav-links a.is-active { color: #111; font-weight: 700; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #111; border-radius: 1px; transition: all .2s; }
.nav-mobile { display: none; position: fixed; inset: 0; top: 60px; background: #fff; z-index: 150; flex-direction: column; padding: 32px; gap: 24px; border-top: 1px solid #EBEBEB; overflow-y: auto; }
.nav-mobile.is-open { display: flex; }
.nav-mobile a { font-size: 18px; font-weight: 600; color: #111; }
.nav-mobile-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ── HERO ── */
#hero { padding: 72px 56px 0; max-width: 1200px; margin: 0 auto; text-align: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #555; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 22px; background: #F3F4F6; padding: 6px 14px; border-radius: 100px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }
#hero h1 { font-size: 50px; font-weight: 900; line-height: 1.08; letter-spacing: -2px; color: #111; margin-bottom: 16px; }
#hero h1 u { text-decoration: none; position: relative; }
#hero h1 u::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: #22C55E; border-radius: 2px; }
.hero-sub { font-size: 17px; color: #555; line-height: 1.65; max-width: 560px; margin: 0 auto 32px; }

/* VIDEO TABS */
.tabs-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.tabs-inner { display: flex; gap: 5px; background: #F3F4F6; border-radius: 12px; padding: 5px; }
.tab-btn { display: flex; flex-direction: column; align-items: flex-start; padding: 10px 18px 8px; border-radius: 9px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; color: #777; background: transparent; white-space: nowrap; transition: all .18s; }
.tab-btn-inner { display: flex; align-items: center; gap: 7px; }
.tab-btn svg { stroke: #777; transition: stroke .18s; flex-shrink: 0; }
.tab-btn.active { background: #fff; color: #111; box-shadow: 0 1px 6px rgba(0,0,0,.1); }
.tab-btn.active svg { stroke: #111; }
.tab-btn--disabled { opacity: .4; cursor: default; }
.progress-track { width: 100%; height: 2px; background: rgba(0,0,0,.06); border-radius: 1px; margin-top: 6px; overflow: hidden; display: none; }
.tab-btn.active .progress-track { display: block; }
.progress-fill { height: 100%; width: 0%; background: #111; border-radius: 1px; }
.video-frame { max-width: 960px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1.5px solid #E0E0E0; box-shadow: 0 20px 64px rgba(0,0,0,.09); background: #111; aspect-ratio: 16/9; position: relative; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #F7F8FA; color: #999; font-size: 15px; gap: 10px; }
.proof-bar { display: flex; justify-content: center; gap: 40px; padding: 28px 0 72px; border-top: 1px solid #F0F0F0; margin-top: 28px; }
.pb-num { font-size: 26px; font-weight: 800; letter-spacing: -1px; color: #111; }
.pb-label { font-size: 12px; color: #888; margin-top: 2px; }

/* ── WHO TABS ── */
#product { padding: 56px 0; }
#product .sec-inner { padding: 0 56px; }
.who-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid #E5E5E5; }
.wtab { padding: 14px 0; font-size: 15px; font-weight: 700; color: #BBB; text-align: center; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; transition: color .15s, border-color .15s; }
.wtab.active { color: #111; border-bottom-color: #111; }
.who-bodies { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 24px; }
.wbody { padding-right: 24px; font-size: 14px; color: #555; line-height: 1.65; }

/* ── HOW ── */
#how { padding: 80px 0; background: #F8F9FA; border-top: 1px solid #EBEBEB; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #E8E8E8; border-radius: 18px; overflow: hidden; }
.step { background: #fff; padding: 32px 28px; }
.step-n { font-size: 11px; font-weight: 700; color: #CCC; letter-spacing: 1px; margin-bottom: 14px; }
.step-ico { width: 44px; height: 44px; background: #F3F4F6; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-ico svg { stroke: #111; }
.step-h { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #111; }
.step-p { font-size: 14px; color: #666; line-height: 1.6; }
.step-tag { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; background: #F0FDF4; color: #16A34A; }

/* ── FEATURES ── */
#features { padding: 80px 0; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.fcard { background: #fff; border: 1.5px solid #E8E8E8; border-radius: 14px; padding: 24px; transition: border-color .2s, box-shadow .2s; }
.fcard:hover { border-color: #CCC; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.fcard-ico { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fcard-ico svg { stroke: #111; }
.fcard-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #111; }
.fcard-desc { font-size: 14px; color: #666; line-height: 1.55; }

/* ── KIZ LIFECYCLE ── */
#kiz-lifecycle { padding: 80px 0; background: #fff; border-top: 1px solid #EBEBEB; }
.kiz-lc-top { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 44px; align-items: end; }
.kiz-lc-desc { font-size: 16px; color: #555; line-height: 1.65; }
.kiz-flow { display: flex; align-items: stretch; border: 1.5px solid #E8E8E8; border-radius: 14px; overflow: hidden; margin-bottom: 32px; }
.kiz-flow-step { flex: 1; padding: 18px 14px; background: #fff; position: relative; border-right: 1px solid #E8E8E8; cursor: pointer; transition: background .15s; }
.kiz-flow-step:last-child { border-right: none; }
.kiz-flow-step:hover, .kiz-flow-step.active { background: #F0FDF4; }
.kfs-num { font-size: 10px; font-weight: 700; color: #CCC; letter-spacing: 1px; margin-bottom: 8px; }
.kfs-ico { width: 32px; height: 32px; border-radius: 8px; background: #F3F4F6; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; transition: background .15s; }
.kiz-flow-step.active .kfs-ico { background: #DCFCE7; }
.kfs-ico svg { stroke: #555; }
.kiz-flow-step.active .kfs-ico svg { stroke: #16A34A; }
.kfs-title { font-size: 15px; font-weight: 700; color: #111; line-height: 1.3; }
.kfs-arrow { position: absolute; right: -8px; top: 50%; width: 14px; height: 14px; background: #fff; border-right: 1.5px solid #E8E8E8; border-top: 1.5px solid #E8E8E8; transform: translateY(-50%) rotate(45deg); z-index: 1; }
.kiz-flow-step.active .kfs-arrow { background: #F0FDF4; }
.kiz-flow-step:last-child .kfs-arrow { display: none; }
.kiz-lc-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: #F8F9FA; border: 1.5px solid #E8E8E8; border-radius: 14px; padding: 28px; margin-bottom: 32px; min-height: 160px; }
.klp-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #16A34A; background: #DCFCE7; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.klp-h { font-size: 18px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 10px; }
.klp-p { font-size: 14px; color: #555; line-height: 1.65; }
.klp-right { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.klp-status-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; border: 1.5px solid #E8E8E8; border-radius: 10px; font-size: 13px; }
.klp-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.klp-status-label { flex: 1; font-weight: 600; }
.klp-status-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.s-current { background: #DCFCE7; color: #16A34A; }
.s-prev { background: #F3F4F6; color: #888; }
.s-next { background: #EFF6FF; color: #2563EB; }
.statuses-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.status-card { background: #fff; border: 1.5px solid #E8E8E8; border-radius: 12px; padding: 16px; }
.sc-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 10px; }
.sc-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.sc-desc { font-size: 14px; color: #666; line-height: 1.45; }

/* ── KIZ FOCUS ── */
.kiz-section { padding: 80px 0; background: #F8F9FA; border-top: 1px solid #EBEBEB; }
.kiz-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.kiz-tag { display: inline-flex; align-items: center; gap: 6px; background: #111; color: #fff; font-size: 11px; font-weight: 700; padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; letter-spacing: .5px; }
.kiz-tag svg { stroke: #fff; }
.kiz-h { font-size: 34px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; }
.kiz-p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 28px; }
.kiz-pts { display: flex; flex-direction: column; gap: 18px; }
.kiz-pt { display: flex; align-items: flex-start; gap: 12px; }
.kiz-pt-ico { width: 34px; height: 34px; background: #F0FDF4; border: 1.5px solid #DCFCE7; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kiz-pt-ico svg { stroke: #16A34A; }
.kiz-pt-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.kiz-pt-desc { font-size: 13px; color: #666; line-height: 1.5; }
.kiz-ui { background: #fff; border: 1.5px solid #E0E0E0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.07); }
.kiz-ui-head { padding: 14px 18px; border-bottom: 1px solid #EBEBEB; display: flex; align-items: center; justify-content: space-between; }
.kiz-ui-title { font-size: 13px; font-weight: 700; }
.kiz-ui-badge { background: #F0FDF4; color: #16A34A; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; }
.kiz-ui-body { padding: 16px 18px; }
.kiz-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 9px; margin-bottom: 6px; background: #F8F9FA; }
.kiz-sku { font-size: 12px; font-weight: 700; }
.kiz-cnt { font-size: 11px; color: #888; margin-top: 1px; }
.kiz-st { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 5px; }
.ks-ok { background: #DCFCE7; color: #16A34A; }
.ks-pr { background: #EFF6FF; color: #2563EB; }
.ks-wt { background: #F3F4F6; color: #888; }
.kiz-total { margin-top: 10px; padding: 12px 14px; background: #F0FDF4; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; }
.kiz-total-l { font-size: 12px; color: #16A34A; font-weight: 600; }
.kiz-total-r { font-size: 20px; font-weight: 800; color: #16A34A; letter-spacing: -1px; }

/* ── FF BANNER ── */
.ff-banner { padding: 50px 0 50px; }
.ff-banner .sec-inner { }
.ff-inner { background: #F8F9FA; border: 1.5px solid #E8E8E8; border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.ff-left { display: flex; align-items: flex-start; gap: 14px; }
.ff-ico { width: 40px; height: 40px; background: #fff; border: 1.5px solid #E0E0E0; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ff-ico svg { stroke: #555; }
.ff-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ff-desc { font-size: 13px; color: #666; line-height: 1.5; }
.ff-btn { background: #111; color: #fff; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 9px; border: none; white-space: nowrap; flex-shrink: 0; }
.ff-btn:hover { background: #333; }

/* ── PRICING ── */
#pricing { padding: 80px 0; background: #EFEEEB; border-top: 1px solid #E0DFD8; }
.pr-toggle { display: flex; justify-content: center; margin: 24px 0 36px; }
.toggle-bg { background: #E0DFD8; border-radius: 100px; padding: 4px; display: flex; }
.tgl { padding: 9px 22px; border-radius: 100px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all .15s; white-space: nowrap; }
.tgl--on { background: #fff; color: #111; box-shadow: 0 1px 6px rgba(0,0,0,.12); }
.tgl--off { background: transparent; color: #888; }
.save-clr { color: #16A34A; font-weight: 700; }
.pr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.plan { background: #fff; border: 1.5px solid #E0E0E0; border-radius: 20px; padding: 32px; position: relative; display: flex; flex-direction: column; }
.plan--pop { border: 2px solid #111; box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.plan-pop-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #111; color: #fff; font-size: 10px; font-weight: 700; padding: 5px 18px; border-radius: 100px; white-space: nowrap; letter-spacing: .3px; }
.plan-ico { width: 40px; height: 40px; background: #F3F4F6; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.plan-ico svg { stroke: #555; }
.plan-name { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 5px; letter-spacing: -.3px; }
.plan-desc { font-size: 13px; color: #888; margin-bottom: 16px; }
.plan-price-row { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 3px; }
.plan-amt { font-size: 52px; font-weight: 800; letter-spacing: -3px; line-height: 1; color: #111; }
.plan-amt--sm { font-size: 36px; }
.plan-cur { font-size: 16px; font-weight: 500; color: #888; margin-bottom: 6px; line-height: 1; }
.plan-period { font-size: 12px; color: #888; }
.plan-badge { display: block; font-size: 12px; font-weight: 600; padding: 5px 0; margin-bottom: 16px; }
.plan-sep { height: 1px; background: #F0F0F0; margin: 18px 0; }
.btn-plan-out { display: block; width: 100%; padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700; background: #fff; border: 1.5px solid #111; color: #111; text-align: center; }
.btn-plan-out:hover { background: #F8F8F8; }
.btn-plan-blk { display: block; width: 100%; padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700; background: #111; color: #fff; text-align: center; border: none; }
.btn-plan-blk:hover { background: #333; }
.plan-list-label { font-size: 10px; font-weight: 700; color: #AAA; text-transform: uppercase; letter-spacing: .8px; margin: 18px 0 10px; }
.plan-list { display: flex; flex-direction: column; gap: 9px; }
.plan-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #333; line-height: 1.4; }
.plan-list li svg { flex-shrink: 0; margin-top: 2px; }
.plan-list li.dim { color: #BBC; }
.pr-foot { text-align: center; font-size: 13px; color: #999; margin-top: 20px; }

/* ── REVIEWS ── */
#reviews { padding: 80px 0; border-top: 1px solid #EBEBEB; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.rv { background: #F8F9FA; border: 1.5px solid #EBEBEB; border-radius: 14px; padding: 24px; }
.rv-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.rv-text { font-size: 14px; color: #333; line-height: 1.65; margin-bottom: 16px; }
.rv-auth { display: flex; align-items: center; gap: 10px; }
.rv-ava { width: 32px; height: 32px; border-radius: 50%; background: #E0E0E0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #555; flex-shrink: 0; }
.rv-name { font-size: 13px; font-weight: 700; }
.rv-role { font-size: 11px; color: #888; }

/* ── FAQ ── */
#faq { padding: 80px 0; background: #F8F9FA; border-top: 1px solid #EBEBEB; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E8E8E8; padding: 18px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid #E8E8E8; }
.faq-q { font-size: 15px; font-weight: 600; color: #111; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
.faq-ico { flex-shrink: 0; transition: transform .2s; }
.faq-ico svg { stroke: #888; display: block; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: #555; line-height: 1.7; margin-top: 11px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA ── */
#cta { padding: 100px 56px; text-align: center; background: #111; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: 44px; font-weight: 900; letter-spacing: -2px; line-height: 1.1; color: #fff; margin-bottom: 14px; }
.cta-inner p { font-size: 17px; color: #888; margin-bottom: 32px; line-height: 1.65; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #111; font-size: 15px; font-weight: 800; padding: 14px 30px; border-radius: 12px; border: none; }
.btn-cta svg { stroke: #111; }
.btn-cta:hover { background: #F5F5F5; }
.btn-cta-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.25); color: #fff; font-size: 15px; font-weight: 600; padding: 14px 26px; border-radius: 12px; display: inline-block; }
.cta-note { font-size: 13px; color: #555; display: flex; align-items: center; justify-content: center; gap: 6px; }
.cta-note svg { stroke: #22C55E; flex-shrink: 0; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 999; align-items: center; justify-content: center; }
.modal-overlay.is-open { display: flex; }
.modal-box { background: #fff; border-radius: 16px; padding: 36px; max-width: 420px; width: 90%; position: relative; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 24px; color: #888; line-height: 1; padding: 4px; }
.modal-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.modal-h { font-size: 20px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.modal-p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 22px; }
.modal-form { display: flex; flex-direction: column; gap: 10px; }
.modal-form input { border: 1.5px solid #E0E0E0; border-radius: 9px; padding: 12px 14px; font-size: 14px; font-family: inherit; outline: none; transition: border-color .15s; }
.modal-form input:focus { border-color: #111; }
.modal-form button { background: #111; color: #fff; font-size: 14px; font-weight: 700; padding: 13px; border-radius: 10px; border: none; }
.modal-form button:hover { background: #333; }
.modal-success { text-align: center; padding: 20px 0; }
.modal-success-ico { font-size: 48px; margin-bottom: 12px; }
.modal-success-h { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.modal-success-p { font-size: 14px; color: #666; }

/* ── FOOTER ── */
#site-footer { border-top: 1px solid #E5E5E5; padding: 28px 56px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-weight: 800; font-size: 16px; color: #111; }
.footer-logo span { color: #111; }
.footer-links { display: flex; gap: 22px; font-size: 13px; color: #888; }
.footer-links a:hover { color: #111; }
.footer-copy { font-size: 13px; color: #888; }

/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  #site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .sec-inner { padding: 0 20px; }
  .sec-div { margin: 0 20px; }
  .sec-h { font-size: 28px; }
  #hero { padding: 40px 20px 0; }
  #hero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 15px; }
  .tabs-inner { flex-direction: column; gap: 4px; }
  .tab-btn { white-space: normal; }
  .proof-bar { flex-direction: column; gap: 16px; padding-bottom: 48px; }
  #product { padding: 40px 0; }
  #product .sec-inner { padding: 0 20px; }
  .who-tabs { grid-template-columns: repeat(2,1fr); }
  .who-bodies { grid-template-columns: 1fr; gap: 12px; }
  .wbody { padding-right: 0; }
  #how { padding: 48px 0; }
  .steps { grid-template-columns: 1fr; border-radius: 12px; }
  #features { padding: 48px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  #kiz-lifecycle { padding: 48px 0; }
  .kiz-lc-top { grid-template-columns: 1fr; }
  .kiz-flow { flex-direction: column; }
  .kiz-flow-step { border-right: none; border-bottom: 1px solid #E8E8E8; }
  .kfs-arrow { display: none; }
  .kiz-lc-panel { grid-template-columns: 1fr; }
  .statuses-grid { grid-template-columns: repeat(2,1fr); }
  .kiz-section { padding: 48px 0; }
  .kiz-inner { grid-template-columns: 1fr; gap: 32px; }
  .ff-banner { padding: 40px 0 0; }
  .ff-inner { flex-direction: column; align-items: flex-start; }
  #pricing { padding: 48px 0; }
  .pr-grid { grid-template-columns: 1fr; gap: 24px; }
  .plan--pop { margin-top: 16px; }
  #reviews { padding: 48px 0; }
  .rev-grid { grid-template-columns: 1fr; }
  #faq { padding: 48px 0; }
  #cta { padding: 64px 20px; }
  .cta-inner h2 { font-size: 32px; }
  .cta-btns { flex-direction: column; align-items: center; }
  #site-footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}
