:root {
  --bobo-blue: #0756cc;
  --bobo-blue-dark: #064ab1;
  --bobo-blue-soft: rgba(7, 86, 204, .08);
  --bobo-bg: #f6f8fc;
  --bobo-card: #ffffff;
  --bobo-text: #172033;
  --bobo-muted: #6f7787;
  --bobo-weak: #9299a8;
  --bobo-line: rgba(7, 86, 204, .10);
  --bobo-shadow: 0 18px 55px rgba(31, 55, 96, .09);
  --bobo-radius: 22px;
  --bobo-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; color: var(--bobo-text); background: var(--bobo-bg); font-family: var(--bobo-font); -webkit-font-smoothing: antialiased; }
body.bobo-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, figure { margin-top: 0; }
:focus-visible { outline: 3px solid rgba(7, 86, 204, .32); outline-offset: 3px; }
.bobo-container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.bobo-section { padding: 100px 0; }
.bobo-eyebrow { margin-bottom: 14px; color: var(--bobo-blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.bobo-section-head { max-width: 690px; margin-bottom: 44px; }
.bobo-section-head h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 44px); line-height: 1.18; letter-spacing: -.045em; }
.bobo-section-head > p:last-child { margin-bottom: 0; color: var(--bobo-muted); font-size: 17px; line-height: 1.8; }
.bobo-head-center { margin-right: auto; margin-left: auto; text-align: center; }
.bobo-head-between { display: flex; max-width: none; align-items: flex-end; justify-content: space-between; }

.bobo-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.bobo-header.is-scrolled { border-color: var(--bobo-line); background: rgba(255, 255, 255, .92); box-shadow: 0 8px 32px rgba(31, 55, 96, .05); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.bobo-nav-wrap { display: flex; height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.bobo-brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; }
.bobo-brand img { width: 42px; height: 42px; border-radius: 11px; }
.bobo-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 29px); }
.bobo-nav a { position: relative; color: #4f596b; font-size: 14px; transition: color .2s ease; }
.bobo-nav a::after { position: absolute; right: 50%; bottom: -10px; left: 50%; height: 2px; border-radius: 2px; background: var(--bobo-blue); content: ""; transition: right .2s ease, left .2s ease; }
.bobo-nav a:hover { color: var(--bobo-blue); }
.bobo-nav a:hover::after { right: 0; left: 0; }
.bobo-nav-actions { display: flex; align-items: center; gap: 10px; }
.bobo-menu { display: none; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; }
.bobo-menu span { display: block; width: 22px; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--bobo-text); transition: transform .2s ease, opacity .2s ease; }
.bobo-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bobo-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bobo-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.bobo-btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 0 23px; border: 1px solid transparent; border-radius: 13px; font-weight: 750; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.bobo-btn:hover { transform: translateY(-2px); }
.bobo-btn svg { width: 20px; fill: currentColor; }
.bobo-btn-small { min-height: 42px; padding: 0 18px; background: var(--bobo-blue); color: #fff; font-size: 14px; }
.bobo-btn-primary { background: var(--bobo-blue); color: #fff; box-shadow: 0 12px 28px rgba(7, 86, 204, .22); }
.bobo-btn-primary:hover, .bobo-btn-small:hover { background: var(--bobo-blue-dark); }
.bobo-btn-ghost { border-color: var(--bobo-line); background: #fff; color: var(--bobo-text); }
.bobo-btn-ghost:hover { border-color: rgba(7, 86, 204, .28); color: var(--bobo-blue); }

.bobo-hero { min-height: 780px; padding: 148px 0 82px; background: radial-gradient(circle at 16% 8%, rgba(7, 86, 204, .07), transparent 31%), var(--bobo-bg); }
.bobo-hero-grid { display: grid; min-height: 550px; grid-template-columns: 1fr 1fr; align-items: center; gap: 84px; }
.bobo-hero-copy { animation: bobo-rise .65s both; }
.bobo-hero-copy h1 { margin-bottom: 12px; font-size: clamp(52px, 6vw, 76px); line-height: 1; letter-spacing: -.065em; }
.bobo-hero-slogan { margin-bottom: 24px; color: #2b3547; font-size: clamp(28px, 3.1vw, 43px); font-weight: 750; line-height: 1.25; letter-spacing: -.04em; }
.bobo-hero-slogan span { color: var(--bobo-blue); }
.bobo-hero-text { max-width: 590px; margin-bottom: 34px; color: var(--bobo-muted); font-size: 17px; line-height: 1.85; }
.bobo-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.bobo-meta { display: flex; align-items: center; gap: 13px; margin-top: 24px; color: #626c7d; font-size: 14px; }
.bobo-meta i { width: 4px; height: 4px; border-radius: 50%; background: rgba(7, 86, 204, .32); }
.bobo-hero-visual { position: relative; display: flex; height: 570px; align-items: center; justify-content: center; animation: bobo-rise .65s .12s both; }
.bobo-glow { position: absolute; width: 570px; height: 570px; border-radius: 50%; background: radial-gradient(circle, rgba(7, 86, 204, .18), rgba(7, 86, 204, 0) 68%); }
.bobo-phone { position: relative; z-index: 2; width: 300px; padding: 10px; border: 5px solid #111826; border-radius: 39px; background: #111826; box-shadow: 0 32px 70px rgba(12, 31, 61, .24); transform: rotate(2.5deg); }
.bobo-phone::after { position: absolute; inset: 4px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 30px; content: ""; pointer-events: none; }
.bobo-phone img { width: 100%; border-radius: 25px; }
.bobo-phone-speaker { position: absolute; z-index: 2; top: 17px; left: 50%; width: 56px; height: 5px; border-radius: 8px; background: #101724; transform: translateX(-50%); }
.bobo-float { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(7, 86, 204, .12); border-radius: 999px; background: rgba(255, 255, 255, .94); box-shadow: 0 15px 35px rgba(31, 55, 96, .12); color: #33405a; font-size: 13px; font-weight: 700; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.bobo-float span { color: var(--bobo-blue); }
.bobo-float-one { top: 90px; left: 8px; }
.bobo-float-two { top: 220px; right: -6px; }
.bobo-float-three { bottom: 105px; left: -20px; }
.bobo-visual-note { position: absolute; z-index: 4; right: -12px; bottom: 39px; display: flex; padding: 16px 20px; border-radius: 16px; background: var(--bobo-blue); box-shadow: 0 16px 30px rgba(7, 86, 204, .25); color: #fff; flex-direction: column; }
.bobo-visual-note strong { letter-spacing: .15em; }
.bobo-visual-note span { margin-top: 4px; color: rgba(255,255,255,.75); font-size: 11px; }

.bobo-access-card { display: grid; padding: 28px; border: 1px solid var(--bobo-line); border-radius: 28px; background: #fff; box-shadow: var(--bobo-shadow); grid-template-columns: 1.25fr .75fr; gap: 28px; }
.bobo-search-demo { min-height: 360px; padding: 58px 50px; border-radius: 20px; background: linear-gradient(145deg, #f1f6ff, #f8faff); }
.bobo-search-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px 0 32px; color: var(--bobo-text); font-size: 24px; font-weight: 800; }
.bobo-search-brand img { border-radius: 12px; }
.bobo-search-box { display: flex; height: 68px; align-items: center; gap: 13px; padding: 7px 7px 7px 20px; border: 2px solid rgba(7, 86, 204, .16); border-radius: 16px; background: #fff; box-shadow: 0 12px 30px rgba(7, 86, 204, .08); }
.bobo-search-box svg { width: 22px; flex: 0 0 auto; fill: var(--bobo-blue); }
.bobo-search-box span { overflow: hidden; flex: 1; color: var(--bobo-weak); white-space: nowrap; text-overflow: ellipsis; }
.bobo-search-box button { height: 50px; padding: 0 25px; border: 0; border-radius: 11px; background: var(--bobo-blue); color: #fff; font-weight: 700; }
.bobo-shortcuts { padding: 26px 22px; }
.bobo-shortcut-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.bobo-shortcut-title span { color: var(--bobo-weak); font-size: 12px; }
.bobo-shortcut-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 13px; }
.bobo-shortcut-grid > div { display: flex; align-items: center; gap: 9px; color: #596376; font-size: 13px; flex-direction: column; }
.bobo-shortcut-grid b { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--bobo-line); border-radius: 15px; background: var(--bobo-blue-soft); color: var(--bobo-blue); font-size: 16px; }
.bobo-shortcut-grid .bobo-add b { border-style: dashed; background: transparent; color: var(--bobo-weak); font-size: 24px; font-weight: 400; }

.bobo-tint { background: #eef3fa; }
.bobo-private-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.bobo-page-demo { overflow: hidden; min-height: 470px; border: 1px solid rgba(7, 86, 204, .13); border-radius: 24px; background: #fff; box-shadow: var(--bobo-shadow); }
.bobo-browser-bar { display: flex; height: 60px; align-items: center; gap: 18px; padding: 0 20px; border-bottom: 1px solid var(--bobo-line); background: #fbfcff; }
.bobo-dots { display: flex; gap: 6px; }
.bobo-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d4dce8; }
.bobo-dots span:first-child { background: #ff8379; }
.bobo-address { min-width: 0; flex: 1; padding: 9px 14px; border-radius: 9px; background: #eef2f7; color: var(--bobo-weak); font-size: 12px; }
.bobo-incognito { color: var(--bobo-blue); font-size: 12px; font-weight: 700; }
.bobo-blocked { display: inline-flex; align-items: center; gap: 8px; margin: 24px 0 0 34px; padding: 8px 12px; border-radius: 999px; background: #ecf8f1; color: #16885a; font-size: 12px; font-weight: 700; }
.bobo-article-demo { max-width: 560px; padding: 52px 58px; }
.bobo-article-kicker { margin-bottom: 14px; color: var(--bobo-blue); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.bobo-article-demo h3 { max-width: 460px; margin-bottom: 18px; font-size: 30px; line-height: 1.35; }
.bobo-article-demo p { color: var(--bobo-muted); line-height: 1.8; }
.bobo-line { width: 80%; height: 8px; margin-top: 13px; border-radius: 8px; background: #edf1f6; }
.bobo-line-long { width: 100%; margin-top: 30px; }
.bobo-line-short { width: 58%; }
.bobo-private-list { display: flex; justify-content: center; gap: 14px; flex-direction: column; }
.bobo-private-list article { display: flex; padding: 25px; border: 1px solid transparent; border-radius: 18px; gap: 19px; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.bobo-private-list article:hover { border-color: var(--bobo-line); background: #fff; transform: translateX(5px); }
.bobo-feature-icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; border-radius: 14px; background: var(--bobo-blue); color: #fff; font-weight: 800; }
.bobo-private-list h3 { margin-bottom: 8px; font-size: 19px; }
.bobo-private-list p { margin-bottom: 0; color: var(--bobo-muted); font-size: 14px; line-height: 1.75; }

.bobo-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bobo-tool-card { position: relative; overflow: hidden; min-height: 240px; padding: 30px; border: 1px solid var(--bobo-line); border-radius: 20px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.bobo-tool-card::after { position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: var(--bobo-blue-soft); content: ""; transition: transform .3s ease; }
.bobo-tool-card:hover { border-color: rgba(7, 86, 204, .2); box-shadow: var(--bobo-shadow); transform: translateY(-5px); }
.bobo-tool-card:hover::after { transform: scale(1.2); }
.bobo-tool-no { position: absolute; top: 28px; right: 28px; color: #c2c9d4; font-size: 12px; font-weight: 800; }
.bobo-tool-icon { display: grid; width: 51px; height: 51px; margin-bottom: 30px; place-items: center; border-radius: 15px; background: var(--bobo-blue-soft); color: var(--bobo-blue); font-size: 20px; font-weight: 850; }
.bobo-tool-card h3 { margin-bottom: 10px; font-size: 20px; }
.bobo-tool-card p { position: relative; z-index: 1; max-width: 280px; margin-bottom: 0; color: var(--bobo-muted); font-size: 14px; line-height: 1.75; }

.bobo-scenes-section { padding-top: 40px; }
.bobo-scenes-shell { display: grid; overflow: hidden; min-height: 570px; border-radius: 28px; background: #0c1e39; color: #fff; box-shadow: 0 25px 70px rgba(9, 29, 61, .18); grid-template-columns: .78fr 1.22fr; }
.bobo-scenes-copy { padding: 70px 55px; background: linear-gradient(155deg, #0e315f, #0c1e39 70%); }
.bobo-scenes-copy .bobo-eyebrow { color: #76adff; }
.bobo-scenes-copy h2 { margin-bottom: 20px; font-size: clamp(36px, 4vw, 50px); line-height: 1.18; letter-spacing: -.04em; }
.bobo-scenes-copy > p:not(.bobo-eyebrow) { margin-bottom: 42px; color: rgba(255,255,255,.6); line-height: 1.8; }
.bobo-tabs { display: flex; gap: 10px; flex-direction: column; }
.bobo-tabs button { position: relative; padding: 17px 18px; border: 0; border-radius: 12px; background: transparent; color: rgba(255,255,255,.55); text-align: left; cursor: pointer; transition: background .2s ease, color .2s ease; }
.bobo-tabs button::after { position: absolute; top: 50%; right: 16px; content: "→"; opacity: 0; transform: translate(-8px, -50%); transition: opacity .2s ease, transform .2s ease; }
.bobo-tabs button[aria-selected="true"] { background: rgba(255,255,255,.1); color: #fff; }
.bobo-tabs button[aria-selected="true"]::after { opacity: 1; transform: translate(0, -50%); }
.bobo-scene-stage { padding: 70px 65px; background: radial-gradient(circle at 82% 20%, rgba(35, 118, 242, .3), transparent 35%); }
.bobo-scene-panel { animation: bobo-fade .3s ease; }
.bobo-scene-index { display: block; margin-bottom: 26px; color: #76adff; font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.bobo-scene-panel h3 { max-width: 500px; margin-bottom: 14px; font-size: 30px; }
.bobo-scene-panel > p { max-width: 510px; margin-bottom: 22px; color: rgba(255,255,255,.64); line-height: 1.8; }
.bobo-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bobo-chip-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 12px; }
.bobo-scene-visual { height: 190px; margin-top: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 19px; background: rgba(255,255,255,.06); }
.bobo-visual-query { padding: 38px; }
.bobo-mini-search { display: flex; height: 54px; align-items: center; justify-content: space-between; padding: 0 18px; border-radius: 12px; background: #fff; color: #8993a3; font-size: 13px; }
.bobo-mini-search b { color: var(--bobo-blue); font-size: 22px; }
.bobo-result-lines { padding: 22px 8px; }
.bobo-result-lines i { display: block; width: 88%; height: 7px; margin-bottom: 10px; border-radius: 8px; background: rgba(255,255,255,.14); }
.bobo-result-lines i:nth-child(2) { width: 68%; }
.bobo-result-lines i:nth-child(3) { width: 78%; }
.bobo-visual-media { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); flex-direction: column; }
.bobo-play { display: grid; width: 62px; height: 62px; margin-bottom: 13px; place-items: center; border-radius: 50%; background: var(--bobo-blue); color: #fff; }
.bobo-visual-media small { margin-top: 5px; color: #70d8aa; }
.bobo-visual-tools { display: flex; align-items: center; justify-content: center; gap: 30px; }
.bobo-visual-tools > div { display: grid; width: 92px; height: 92px; place-items: center; border-radius: 18px; background: rgba(255,255,255,.1); color: #90bbff; font-weight: 800; }
.bobo-visual-tools small { display: block; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 500; }

.bobo-swipe-note { color: var(--bobo-muted); font-size: 13px; white-space: nowrap; }
.bobo-swipe-note span { margin-left: 8px; color: var(--bobo-blue); font-size: 20px; }
.bobo-screenshots { display: flex; padding: 10px 4px 24px; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-color: rgba(7,86,204,.25) transparent; }
.bobo-screen { min-width: 0; margin: 0; flex: 1; scroll-snap-align: start; }
.bobo-screen button { position: relative; display: block; overflow: hidden; width: 100%; padding: 0; border: 1px solid var(--bobo-line); border-radius: 24px; background: #fff; box-shadow: 0 14px 35px rgba(31,55,96,.08); cursor: zoom-in; }
.bobo-screen button::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(13,28,51,.42)); content: ""; opacity: 0; transition: opacity .25s ease; }
.bobo-screen button:hover::after { opacity: 1; }
.bobo-screen button img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; transition: transform .35s ease; }
.bobo-screen button:hover img { transform: scale(1.025); }
.bobo-screen button > span { position: absolute; z-index: 2; right: 14px; bottom: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--bobo-blue); font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; }
.bobo-screen button:hover > span { opacity: 1; transform: translateY(0); }
.bobo-screen figcaption { display: flex; align-items: center; gap: 12px; padding: 17px 8px; }
.bobo-screen figcaption > b { color: var(--bobo-blue); font-size: 12px; }
.bobo-screen figcaption div { display: flex; gap: 4px; flex-direction: column; }
.bobo-screen figcaption strong { font-size: 15px; }
.bobo-screen figcaption small { color: var(--bobo-weak); font-size: 12px; }

.bobo-voices { background: #eef3fa; }
.bobo-voices-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.bobo-score { display: flex; align-items: center; gap: 16px; margin-bottom: 44px; padding: 18px 24px; border: 1px solid var(--bobo-line); border-radius: 18px; background: #fff; }
.bobo-score > strong { font-size: 42px; line-height: 1; }
.bobo-score div { display: flex; gap: 4px; flex-direction: column; }
.bobo-score div span, .bobo-stars { color: #f3a420; letter-spacing: .07em; }
.bobo-score small { color: var(--bobo-weak); font-size: 11px; }
.bobo-review-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bobo-review { padding: 25px; border: 1px solid var(--bobo-line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(31,55,96,.04); }
.bobo-review-head { display: grid; align-items: center; margin-bottom: 18px; grid-template-columns: auto 1fr auto; gap: 12px; }
.bobo-avatar { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--bobo-blue-soft); color: var(--bobo-blue); font-weight: 800; }
.bobo-review-name { display: block; margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.bobo-review-head time { display: block; color: var(--bobo-weak); font-size: 10px; }
.bobo-stars { font-size: 10px; white-space: nowrap; }
.bobo-review > p { margin-bottom: 0; color: #5d6778; font-size: 14px; line-height: 1.8; }
.bobo-review.is-new { animation: bobo-new-review .45s ease both; border-color: rgba(7,86,204,.32); }
.bobo-review-form-wrap { display: grid; margin-top: 24px; padding: 38px; border-radius: 24px; background: #fff; box-shadow: var(--bobo-shadow); grid-template-columns: .75fr 1.25fr; gap: 55px; }
.bobo-form-intro span { color: var(--bobo-blue); font-size: 11px; font-weight: 800; letter-spacing: .17em; }
.bobo-form-intro h3 { margin: 14px 0; font-size: 28px; }
.bobo-form-intro p { color: var(--bobo-muted); font-size: 14px; line-height: 1.8; }
.bobo-review-form, .bobo-review-form label { display: flex; gap: 9px; flex-direction: column; }
.bobo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bobo-review-form label, .bobo-review-form legend { color: #4f596b; font-size: 13px; font-weight: 700; }
.bobo-review-form input, .bobo-review-form textarea { width: 100%; border: 1px solid #dfe5ee; border-radius: 11px; background: #f8fafd; color: var(--bobo-text); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.bobo-review-form input { height: 48px; padding: 0 14px; }
.bobo-review-form textarea { padding: 13px 14px; resize: vertical; }
.bobo-review-form input:focus, .bobo-review-form textarea:focus { border-color: var(--bobo-blue); box-shadow: 0 0 0 3px var(--bobo-blue-soft); }
.bobo-review-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.bobo-review-form legend { margin-bottom: 9px; }
.bobo-rating { display: flex; height: 48px; align-items: center; padding: 0 12px; border: 1px solid #dfe5ee; border-radius: 11px; background: #f8fafd; }
.bobo-rating button { padding: 2px; border: 0; background: transparent; color: #f3a420; font-size: 27px; line-height: 1; cursor: pointer; }
.bobo-form-bottom { display: flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 16px; }
.bobo-form-bottom p { margin: 0; color: var(--bobo-blue); font-size: 13px; }

.bobo-faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.bobo-faq-title { position: sticky; top: 120px; align-self: start; }
.bobo-text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; color: var(--bobo-blue); font-weight: 750; }
.bobo-text-link span { transition: transform .2s ease; }
.bobo-text-link:hover span { transform: translateX(5px); }
.bobo-faq-item { border-bottom: 1px solid var(--bobo-line); }
.bobo-faq-item h3 { margin: 0; }
.bobo-faq-item button { display: flex; width: 100%; min-height: 84px; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.bobo-faq-item button span { font-size: 17px; font-weight: 750; }
.bobo-faq-item button i { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; background: var(--bobo-blue-soft); }
.bobo-faq-item button i::before, .bobo-faq-item button i::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 2px; background: var(--bobo-blue); content: ""; transform: translate(-50%, -50%); transition: transform .2s ease; }
.bobo-faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.bobo-faq-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.bobo-faq-answer { overflow: hidden; }
.bobo-faq-answer p { margin: -5px 0 27px; padding-right: 60px; color: var(--bobo-muted); line-height: 1.8; animation: bobo-fade .25s ease; }

.bobo-download-section { padding: 20px 0 90px; }
.bobo-download-card { position: relative; display: grid; overflow: hidden; min-height: 390px; padding: 65px 70px; align-items: center; border-radius: 30px; background: linear-gradient(135deg, #0756cc, #0647aa); color: #fff; grid-template-columns: 1fr .42fr; box-shadow: 0 25px 60px rgba(7,86,204,.25); }
.bobo-download-copy { position: relative; z-index: 2; }
.bobo-download-copy .bobo-eyebrow { color: #a8ccff; }
.bobo-download-copy h2 { max-width: 630px; margin-bottom: 15px; font-size: clamp(35px, 5vw, 52px); letter-spacing: -.05em; }
.bobo-download-copy > p:not(.bobo-eyebrow) { max-width: 580px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.8; }
.bobo-download-actions { display: flex; align-items: center; gap: 24px; margin-top: 31px; }
.bobo-btn-white { background: #fff; color: var(--bobo-blue); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.bobo-download-meta { display: flex; gap: 4px; flex-direction: column; }
.bobo-download-meta b { font-size: 13px; }
.bobo-download-meta span { color: rgba(255,255,255,.65); font-size: 12px; }
.bobo-download-mark { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; flex-direction: column; }
.bobo-download-mark img { width: 155px; height: 155px; border: 9px solid rgba(255,255,255,.1); border-radius: 38px; background: #fff; box-shadow: 0 20px 45px rgba(0,0,0,.16); }
.bobo-download-mark span { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .3em; }
.bobo-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.bobo-orbit-one { right: -170px; bottom: -270px; width: 600px; height: 600px; }
.bobo-orbit-two { top: -210px; right: 110px; width: 420px; height: 420px; }

.bobo-footer { padding: 42px 0 24px; background: #fff; }
.bobo-footer-main { display: flex; align-items: center; justify-content: space-between; padding-bottom: 34px; }
.bobo-footer-main nav { display: flex; flex-wrap: wrap; gap: 24px; }
.bobo-footer-main nav a { color: var(--bobo-muted); font-size: 13px; }
.bobo-footer-main nav a:hover { color: var(--bobo-blue); }
.bobo-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--bobo-line); color: var(--bobo-weak); font-size: 12px; }
.bobo-footer-bottom p { margin: 0; }

.bobo-lightbox { position: fixed; z-index: 400; inset: 0; display: flex; padding: 28px; align-items: center; justify-content: center; background: rgba(7, 16, 30, .88); flex-direction: column; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.bobo-lightbox[hidden] { display: none; }
.bobo-lightbox img { max-height: calc(100vh - 100px); width: auto; border: 8px solid #fff; border-radius: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.bobo-lightbox p { margin: 13px 0 0; color: rgba(255,255,255,.78); font-size: 13px; }
.bobo-lightbox-close { position: fixed; top: 24px; right: 28px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 29px; cursor: pointer; }
.bobo-mobile-download { position: fixed; z-index: 90; right: 10px; bottom: 10px; left: 10px; display: none; padding: 9px; align-items: center; gap: 10px; border: 1px solid var(--bobo-line); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 12px 38px rgba(14,34,66,.2); opacity: 0; pointer-events: none; transform: translateY(120%); transition: opacity .25s ease, transform .25s ease; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.bobo-mobile-download.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.bobo-mobile-download img { border-radius: 10px; }
.bobo-mobile-download div { display: flex; min-width: 0; flex: 1; gap: 2px; flex-direction: column; }
.bobo-mobile-download strong { font-size: 13px; }
.bobo-mobile-download span { color: var(--bobo-weak); font-size: 10px; }
.bobo-mobile-download a { padding: 10px 14px; border-radius: 10px; background: var(--bobo-blue); color: #fff; font-size: 12px; font-weight: 750; }

@keyframes bobo-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bobo-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bobo-new-review { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .bobo-nav { gap: 15px; }
  .bobo-nav a:nth-child(5), .bobo-nav a:nth-child(6) { display: none; }
  .bobo-hero-grid { gap: 32px; }
  .bobo-hero-visual { transform: scale(.9); }
  .bobo-screen { flex: 0 0 calc(33.333% - 14px); }
  .bobo-review-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  html { scroll-padding-top: 72px; }
  .bobo-container { width: min(100% - 32px, 720px); }
  .bobo-section { padding: 72px 0; }
  .bobo-nav-wrap { height: 68px; }
  .bobo-nav { position: absolute; top: 68px; right: 16px; left: 16px; display: none; padding: 13px; border: 1px solid var(--bobo-line); border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: var(--bobo-shadow); flex-direction: column; }
  .bobo-nav.is-open { display: flex; }
  .bobo-nav a, .bobo-nav a:nth-child(5), .bobo-nav a:nth-child(6) { display: block; width: 100%; padding: 11px 12px; border-radius: 9px; }
  .bobo-nav a:hover { background: var(--bobo-blue-soft); }
  .bobo-nav a::after { display: none; }
  .bobo-menu { display: block; }
  .bobo-hero { min-height: auto; padding: 110px 0 60px; }
  .bobo-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .bobo-hero-copy { display: flex; align-items: center; flex-direction: column; }
  .bobo-hero-text { max-width: 650px; }
  .bobo-hero-visual { height: 540px; transform: scale(.92); }
  .bobo-access-card, .bobo-private-grid, .bobo-review-form-wrap, .bobo-faq-layout { grid-template-columns: 1fr; }
  .bobo-private-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .bobo-private-list article { padding: 21px 14px; align-items: center; text-align: center; flex-direction: column; }
  .bobo-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .bobo-scenes-shell { grid-template-columns: 1fr; }
  .bobo-scenes-copy { padding: 50px; }
  .bobo-scenes-copy h2 br { display: none; }
  .bobo-tabs { flex-direction: row; }
  .bobo-tabs button { flex: 1; text-align: center; }
  .bobo-tabs button::after { display: none; }
  .bobo-scene-stage { padding: 50px; }
  .bobo-screen { flex: 0 0 calc(42% - 10px); }
  .bobo-voices-top { align-items: flex-start; flex-direction: column; }
  .bobo-score { margin-top: -25px; }
  .bobo-faq-layout { gap: 25px; }
  .bobo-faq-title { position: static; }
  .bobo-download-card { grid-template-columns: 1fr .35fr; padding: 52px; }
}

@media (max-width: 600px) {
  .bobo-container { width: min(100% - 28px, 520px); }
  .bobo-section { padding: 58px 0; }
  .bobo-header { background: rgba(255,255,255,.94); }
  .bobo-brand span { font-size: 15px; }
  .bobo-nav-actions .bobo-btn-small { min-height: 38px; padding: 0 13px; }
  .bobo-menu { width: 38px; height: 38px; padding: 8px; }
  .bobo-hero { padding-top: 102px; }
  .bobo-hero-copy h1 { font-size: 44px; }
  .bobo-hero-slogan { font-size: 28px; }
  .bobo-hero-text { font-size: 15px; }
  .bobo-hero-actions { width: 100%; }
  .bobo-hero-actions .bobo-btn { flex: 1; padding: 0 14px; }
  .bobo-hero-visual { height: 450px; transform: none; }
  .bobo-phone { width: 235px; padding: 8px; border-width: 4px; border-radius: 32px; }
  .bobo-phone img { border-radius: 22px; }
  .bobo-glow { width: 390px; height: 390px; }
  .bobo-float { padding: 9px 11px; font-size: 11px; }
  .bobo-float-one { top: 50px; left: -5px; }
  .bobo-float-two { top: 180px; right: -6px; }
  .bobo-float-three { bottom: 68px; left: 0; }
  .bobo-visual-note { right: -2px; bottom: 23px; padding: 12px 15px; }
  .bobo-section-head { margin-bottom: 30px; }
  .bobo-section-head h2 { font-size: 31px; }
  .bobo-section-head > p:last-child { font-size: 15px; }
  .bobo-head-between { align-items: flex-start; flex-direction: column; }
  .bobo-access-card { padding: 13px; gap: 14px; }
  .bobo-search-demo { min-height: 250px; padding: 32px 15px; }
  .bobo-search-brand { margin-top: 5px; font-size: 20px; }
  .bobo-search-box { height: 59px; padding-left: 13px; }
  .bobo-search-box span { font-size: 12px; }
  .bobo-search-box button { height: 43px; padding: 0 15px; }
  .bobo-shortcuts { padding: 22px 13px; }
  .bobo-private-grid { gap: 20px; }
  .bobo-page-demo { min-height: 390px; }
  .bobo-dots { display: none; }
  .bobo-incognito { font-size: 10px; }
  .bobo-blocked { margin-left: 18px; }
  .bobo-article-demo { padding: 40px 24px; }
  .bobo-article-demo h3 { font-size: 24px; }
  .bobo-private-list { grid-template-columns: 1fr; }
  .bobo-private-list article { align-items: flex-start; padding: 19px; text-align: left; flex-direction: row; }
  .bobo-tools-grid { gap: 11px; }
  .bobo-tool-card { min-height: 220px; padding: 21px 18px; }
  .bobo-tool-no { top: 19px; right: 18px; }
  .bobo-tool-icon { width: 46px; height: 46px; margin-bottom: 25px; }
  .bobo-tool-card h3 { font-size: 17px; }
  .bobo-tool-card p { font-size: 13px; }
  .bobo-scenes-section { padding-top: 18px; }
  .bobo-scenes-copy, .bobo-scene-stage { padding: 34px 22px; }
  .bobo-scenes-copy h2 { font-size: 34px; }
  .bobo-tabs { gap: 5px; }
  .bobo-tabs button { padding: 12px 6px; font-size: 12px; }
  .bobo-scene-panel h3 { font-size: 24px; }
  .bobo-scene-visual { height: 160px; }
  .bobo-visual-query { padding: 25px 16px; }
  .bobo-screen { flex: 0 0 74%; }
  .bobo-screenshots { margin-right: 0; }
  .bobo-review-list { grid-template-columns: 1fr; }
  .bobo-score { width: 100%; justify-content: center; }
  .bobo-review-form-wrap { padding: 25px 20px; gap: 22px; }
  .bobo-form-row { grid-template-columns: 1fr; }
  .bobo-form-bottom { align-items: stretch; flex-direction: column; }
  .bobo-form-bottom .bobo-btn { width: 100%; }
  .bobo-faq-item button span { font-size: 15px; }
  .bobo-faq-answer p { padding-right: 25px; font-size: 14px; }
  .bobo-download-section { padding: 10px 0 80px; }
  .bobo-download-card { min-height: 500px; padding: 40px 24px; grid-template-columns: 1fr; text-align: center; }
  .bobo-download-copy h2 { font-size: 36px; }
  .bobo-download-actions { align-items: center; flex-direction: column; }
  .bobo-download-mark img { width: 110px; height: 110px; border-radius: 28px; }
  .bobo-footer { padding-bottom: 105px; }
  .bobo-footer-main { align-items: flex-start; gap: 25px; flex-direction: column; }
  .bobo-footer-main nav { gap: 14px 20px; }
  .bobo-footer-bottom { align-items: flex-start; gap: 8px; flex-direction: column; }
  .bobo-mobile-download { display: flex; }
  .bobo-lightbox { padding: 20px; }
  .bobo-lightbox img { max-width: 88vw; max-height: 78vh; border-width: 5px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
