.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-primary); font-size: .78rem; font-weight: 800; letter-spacing: .04em; background: rgba(var(--brand-primary-rgb), .08); border: 1px solid rgba(var(--brand-primary-rgb), .12); padding: 6px 11px; border-radius: 999px; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), .1); }
.eyebrow--light { color: #dbe7ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.03rem; max-width: 680px; margin-bottom: 0; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center p { margin-inline: auto; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border-radius: 13px; border: 1px solid transparent; font-weight: 800; font-size: .92rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--brand-primary); box-shadow: 0 12px 28px rgba(var(--brand-primary-rgb), .24); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(var(--brand-primary-rgb), .32); }
.btn--ghost { border-color: var(--ink-200); background: #fff; color: var(--ink-800); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: rgba(var(--brand-primary-rgb), .28); color: var(--brand-primary); }
.btn--light { background: #fff; color: var(--brand-secondary); }
.btn--sm { min-height: 42px; padding-inline: 15px; font-size: .84rem; }
.btn--block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-primary); font-weight: 800; font-size: .9rem; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(-4px); }
.text-link--light { color: #dbe7ff; }

.site-header { position: sticky; top: 0; z-index: 70; background: rgba(255,255,255,.94); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(16,24,40,.06); }
.topbar { background: var(--brand-secondary); color: #d0d5dd; font-size: .75rem; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__actions { display: flex; align-items: center; gap: 12px; }
.topbar__actions a { display: inline-flex; align-items: center; gap: 6px; }
.topbar__actions a:hover { color: #fff; }
.topbar__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-500); }
.main-nav-wrap { background: rgba(255,255,255,.92); }
.main-nav { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 42px; height: 42px; border-radius: 13px; overflow: hidden; box-shadow: 0 8px 20px rgba(16,24,40,.12); }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__copy { display: flex; flex-direction: column; line-height: 1.25; }
.brand__copy strong { font-size: 1.02rem; color: var(--ink-950); }
.brand__copy small { font-size: .62rem; color: var(--ink-500); letter-spacing: .09em; margin-top: 5px; direction: ltr; }
.desktop-nav { display: flex; align-items: center; gap: 5px; margin-inline: auto; }
.nav-link { position: relative; padding: 10px 12px; color: var(--ink-600); font-size: .9rem; font-weight: 700; border-radius: 10px; }
.nav-link:hover, .nav-link.is-active { color: var(--ink-950); background: var(--ink-100); }
.nav-link.is-active::after { content: ""; position: absolute; right: 12px; left: 12px; bottom: 4px; height: 2px; border-radius: 999px; background: var(--brand-primary); }
.main-nav__actions { display: flex; align-items: center; gap: 10px; }
.menu-button, .menu-close { width: 44px; height: 44px; border: 1px solid var(--ink-200); border-radius: 12px; background: #fff; color: var(--ink-800); align-items: center; justify-content: center; display: none; }
.mobile-menu { position: fixed; inset: 0; z-index: 100; background: rgba(11,18,32,.55); backdrop-filter: blur(8px); }
.mobile-menu__panel { position: absolute; top: 0; bottom: 0; right: 0; width: min(88vw, 390px); background: #fff; padding: 22px; box-shadow: var(--shadow-lg); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-menu__panel nav { display: grid; gap: 6px; margin-bottom: 24px; }
.mobile-menu__panel .nav-link { padding: 13px 14px; }

.stat-card { border: 1px solid var(--ink-200); border-radius: var(--radius-md); background: #fff; padding: 24px; box-shadow: var(--shadow-xs); }
.stat-card strong { display: block; color: var(--ink-950); font-size: 2rem; line-height: 1.2; margin-bottom: 9px; }
.stat-card span { color: var(--ink-500); font-size: .85rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.product-card { min-width: 0; border: 1px solid var(--ink-200); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-xs); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(var(--brand-primary-rgb), .22); }
.product-card__visual { position: relative; min-height: 250px; display: grid; place-items: center; padding: 24px; background: linear-gradient(180deg, #f8fafc, #eef3f9); overflow: hidden; }
.product-card__visual::after { content: ""; position: absolute; width: 150px; height: 150px; background: rgba(var(--brand-primary-rgb), .08); border-radius: 50%; top: -60px; left: -30px; }
.product-card__visual img { width: 100%; max-height: 225px; object-fit: contain; transition: transform .35s var(--ease); }
.product-card:hover .product-card__visual img { transform: scale(1.025); }
.product-badge { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 6px 10px; border-radius: 999px; background: var(--brand-secondary); color: #fff; font-size: .72rem; font-weight: 800; }
.product-card__model { position: absolute; left: 16px; bottom: 14px; color: var(--ink-500); font-size: .73rem; font-weight: 800; direction: ltr; background: rgba(255,255,255,.78); padding: 5px 9px; border-radius: 8px; backdrop-filter: blur(6px); }
.product-card__body { padding: 23px; }
.product-card__category { color: var(--brand-primary); font-size: .74rem; font-weight: 800; }
.product-card h3 { margin: 7px 0 10px; font-size: 1.17rem; }
.product-card h3 a:hover { color: var(--brand-primary); }
.product-card p { min-height: 62px; font-size: .87rem; margin-bottom: 16px; }

.breadcrumb { padding-top: 24px; }
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; color: var(--ink-500); font-size: .78rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-right: 8px; color: var(--ink-300); }
.breadcrumb a:hover { color: var(--brand-primary); }

.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--brand-surface), #fff); border-bottom: 1px solid var(--ink-100); }
.page-hero::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--brand-primary-rgb), .11), transparent 68%); top: -250px; left: -100px; pointer-events: none; }
.page-hero__inner { padding: 70px 0 76px; position: relative; z-index: 1; }
.page-hero__inner h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); margin-bottom: 16px; }
.page-hero__inner p { max-width: 760px; font-size: 1.03rem; margin-bottom: 0; }

.prefooter { background: var(--brand-primary); color: #fff; padding: 62px 0; overflow: hidden; position: relative; }
.prefooter::after { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; left: -90px; top: -100px; box-shadow: 0 0 0 42px rgba(255,255,255,.04), 0 0 0 88px rgba(255,255,255,.025); }
.prefooter__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .85fr; align-items: center; gap: 40px; }
.prefooter h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.7rem,3vw,2.6rem); }
.prefooter p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.prefooter__actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.prefooter__phone { display: flex; flex-direction: column; color: #fff; }
.prefooter__phone small { color: rgba(255,255,255,.68); }
.prefooter__phone strong { font-size: 1.1rem; direction: ltr; }
.footer-main { background: var(--brand-secondary); color: #fff; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .8fr .8fr 1.2fr; gap: 48px; }
.brand--footer .brand__copy strong { color: #fff; }
.brand--footer .brand__copy small { color: #98a2b3; }
.footer-brand p { color: #98a2b3; max-width: 330px; margin: 20px 0; font-size: .86rem; }
.footer-grid h3 { color: #fff; font-size: .92rem; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #98a2b3; font-size: .83rem; }
.footer-links a:hover { color: #fff; transform: translateX(-2px); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact > * { display: flex; gap: 10px; align-items: flex-start; color: #98a2b3; font-size: .8rem; }
.footer-contact svg { flex: 0 0 auto; margin-top: 3px; color: #d0d5dd; }
.footer-bottom { margin-top: 54px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #667085; font-size: .72rem; }

.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--ink-700); font-size: .82rem; font-weight: 800; }
.form-control { width: 100%; border: 1px solid var(--ink-300); border-radius: 13px; background: #fff; min-height: 50px; padding: 10px 14px; color: var(--ink-900); outline: none; transition: border-color .2s, box-shadow .2s; }
textarea.form-control { min-height: 138px; resize: vertical; }
.form-control:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), .09); }
.form-control::placeholder { color: var(--ink-400); }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.form-status { padding: 12px 14px; border-radius: 12px; font-size: .82rem; display: none; }
.form-status.is-visible { display: block; }
.form-status--success { background: #ecfdf3; color: #027a48; border: 1px solid #abefc6; }
.form-status--error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.empty-state { text-align: center; padding: 72px 24px; border: 1px dashed var(--ink-300); border-radius: var(--radius-lg); background: #fff; }
.empty-state__icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 18px; color: var(--brand-primary); background: rgba(var(--brand-primary-rgb), .08); }
.empty-state h2 { font-size: 1.35rem; margin-bottom: 9px; }
.empty-state p { max-width: 500px; margin: 0 auto 20px; }
