:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #eef0f5;
  --ink: #101114;
  --muted: #666a73;
  --line: #dfe2e9;
  --accent: #5d5cf6;
  --accent-2: #7b7af8;
  --dark: #121317;
  --dark-2: #1a1c22;
  --success: #33b87a;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(18, 19, 23, 0.11);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(93,92,246,.18); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-space { padding: 120px 0; }
.page-shell { overflow: hidden; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(246,247,251,.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(16,17,20,.08);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -0.035em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--ink); font-size: 22px; line-height: 1; }
.brand-text { font-size: 21px; }
.brand-text span { color: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: #454851; font-size: 14px; transition: color .2s; }
.desktop-nav a:hover { color: var(--ink); }
.button { min-height: 52px; padding: 0 24px; border: 0; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--accent); box-shadow: 0 14px 28px rgba(93,92,246,.22); }
.button-primary:hover { background: #4f4eea; box-shadow: 0 18px 34px rgba(93,92,246,.28); }
.button-dark { color: #fff; background: var(--dark); }
.button-small { min-height: 44px; padding-inline: 19px; border-radius: 12px; font-size: 14px; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.text-link span { color: var(--accent); font-size: 18px; transition: transform .2s; }
.text-link:hover span { transform: translate(2px,2px); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 7px; }
.menu-button span:not(.sr-only) { width: 22px; height: 2px; border-radius: 99px; background: var(--ink); transition: .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { padding-top: 155px; min-height: 780px; display: flex; align-items: center; position: relative; }
.hero::before { content: ""; position: absolute; width: 840px; height: 840px; right: -360px; top: -260px; border: 1px solid rgba(93,92,246,.11); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 68px; }
.hero-grid > * { min-width: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #575b66; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.eyebrow > span { width: 20px; height: 2px; background: var(--accent); }
.hero h1 { max-width: 690px; margin: 22px 0 24px; font-size: clamp(52px, 6.1vw, 84px); line-height: .98; letter-spacing: -.065em; font-weight: 760; }
.hero-text { max-width: 610px; margin: 0; font-size: 20px; line-height: 1.55; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 62px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; gap: 5px; }
.hero-proof strong { font-size: 14px; }
.hero-proof span { color: var(--muted); font-size: 13px; line-height: 1.35; }

.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .5; }
.glow-one { width: 270px; height: 270px; background: rgba(93,92,246,.2); right: 8%; top: 6%; }
.glow-two { width: 230px; height: 230px; background: rgba(105,220,195,.17); left: 5%; bottom: 10%; }
.browser-card { width: 625px; max-width: 100%; background: #fff; border: 1px solid rgba(16,17,20,.08); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; position: relative; z-index: 2; transform: rotate(-2deg); }
.browser-top { height: 42px; display: grid; grid-template-columns: 80px 1fr 80px; align-items: center; border-bottom: 1px solid #eceef3; background: #fafbfc; padding: 0 14px; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d6d9df; }
.browser-url { height: 22px; border-radius: 7px; background: #eff1f5; color: #9b9fa8; display: grid; place-items: center; font-size: 9px; }
.browser-icon { text-align: right; color: #9b9fa8; font-size: 11px; }
.store-head { height: 57px; padding: 0 24px; display: flex; align-items: center; gap: 26px; border-bottom: 1px solid #f0f1f4; }
.store-logo { font-size: 16px; font-weight: 900; letter-spacing: .14em; }
.store-nav { display: flex; gap: 16px; color: #686c75; font-size: 9px; }
.store-actions { margin-left: auto; display: flex; gap: 10px; font-size: 9px; }
.store-hero { min-height: 280px; padding: 30px 34px; display: grid; grid-template-columns: .95fr 1.05fr; background: #e9e8e2; overflow: hidden; }
.store-hero-copy { z-index: 2; }
.store-hero-copy small { font-size: 8px; letter-spacing: .15em; color: #77786f; }
.store-hero-copy h2 { margin: 14px 0 20px; font-size: 29px; line-height: 1.08; letter-spacing: -.05em; }
.store-hero-copy button { border: 0; border-radius: 8px; background: var(--ink); color: #fff; padding: 10px 14px; font-size: 9px; }
.product-stage { position: relative; min-height: 240px; }
.shape-back { position: absolute; width: 210px; height: 210px; border-radius: 45% 55% 50% 50% / 58% 45% 55% 42%; background: #d7cfbd; right: -20px; top: 10px; transform: rotate(18deg); }
.product-bottle { position: absolute; bottom: 12px; border-radius: 25px 25px 16px 16px; z-index: 2; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 16px 30px rgba(53,47,39,.16); }
.product-bottle::before { content: ""; position: absolute; width: 28%; height: 19px; left: 36%; top: -12px; border-radius: 6px 6px 1px 1px; background: inherit; }
.product-bottle::after { content: "NOMA"; position: absolute; inset: 38% 0 auto; text-align: center; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.bottle-one { width: 86px; height: 172px; right: 104px; background: #35383d; transform: rotate(-6deg); }
.bottle-two { width: 74px; height: 142px; right: 35px; background: #a5a18d; transform: rotate(7deg); }
.product-shadow { position: absolute; width: 220px; height: 34px; bottom: 0; right: 4px; border-radius: 50%; background: rgba(67,62,52,.18); filter: blur(7px); }
.store-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 20px 20px; }
.store-products article { min-width: 0; }
.product-thumb { aspect-ratio: 1.25; border-radius: 11px; background: #f1f2f4; position: relative; overflow: hidden; }
.product-thumb::before { content: ""; position: absolute; width: 27%; height: 60%; border-radius: 9px 9px 6px 6px; left: 37%; bottom: 15%; background: #3c3f45; }
.product-thumb::after { content: ""; position: absolute; width: 10%; height: 8%; left: 45%; top: 16%; background: #3c3f45; border-radius: 3px; }
.thumb-b { background: #e8e1d7; }
.thumb-b::before, .thumb-b::after { background: #a98562; }
.thumb-c { background: #e6eaeb; }
.thumb-c::before { width: 49%; height: 45%; left: 25%; border-radius: 50% 50% 25% 25%; background: #68747a; }
.thumb-c::after { display: none; }
.store-products p { margin: 8px 0 3px; font-size: 9px; color: #555862; }
.store-products strong { font-size: 10px; }
.floating-card { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px); } }
.metric-card { position: absolute; z-index: 4; background: rgba(255,255,255,.95); backdrop-filter: blur(16px); border: 1px solid rgba(16,17,20,.08); box-shadow: 0 18px 45px rgba(18,19,23,.12); border-radius: 17px; }
.metric-orders { top: 65px; right: -2px; padding: 16px 18px; display: grid; min-width: 145px; }
.metric-orders span, .metric-orders small { font-size: 10px; color: #777b84; }
.metric-orders strong { margin: 3px 0; color: var(--success); font-size: 26px; letter-spacing: -.05em; }
.metric-import { left: -8px; bottom: 58px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; }
.import-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--accent); font-weight: 800; }
.metric-import div:last-child { display: flex; flex-direction: column; gap: 3px; }
.metric-import strong { font-size: 11px; }
.metric-import span { color: #777b84; font-size: 10px; }

.logo-strip { border-block: 1px solid var(--line); }
.logo-strip-inner { min-height: 88px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px; color: #7a7e87; font-size: 13px; }
.market-logo { font-weight: 900; letter-spacing: -.03em; }
.market-logo.wb { color: #9c168d; }
.market-logo.ozon { color: #005bff; letter-spacing: .02em; }
.market-logo.ym { color: #222; }
.logo-strip .muted { color: #a2a5ac; }

.section-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .process-intro h2, .economics-copy h2, .faq-heading h2, .lead-copy h2 { margin: 18px 0 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.055em; }
.section-heading > p, .process-intro > p, .economics-copy > p, .faq-heading > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 20px; }
.benefit-card { min-height: 370px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.76); position: relative; overflow: hidden; }
.benefit-card h3 { max-width: 390px; margin: 26px 0 10px; font-size: 24px; letter-spacing: -.035em; }
.benefit-card p { max-width: 450px; margin: 0; color: var(--muted); line-height: 1.55; }
.card-number { position: absolute; top: 25px; right: 26px; color: #9b9fa8; font-size: 11px; font-weight: 800; }
.large-card { grid-row: span 2; min-height: 760px; display: flex; flex-direction: column; justify-content: flex-end; }
.large-card h3 { font-size: 31px; }
.wide-card { grid-column: span 2; min-height: 370px; display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 28px; }
.wide-card h3 { font-size: 30px; }
.benefit-visual { margin: 0 0 auto; }
.customers-visual { position: absolute; inset: 70px 26px auto; min-height: 380px; border-radius: 18px; background: #17191e; overflow: hidden; }
.customers-visual::before { content: "CUSTOMERS"; position: absolute; left: 24px; top: 22px; color: #8d929d; font-size: 10px; letter-spacing: .14em; }
.customer-stack { position: absolute; top: 72px; left: 30px; display: flex; }
.customer-stack span { width: 48px; height: 48px; margin-left: -8px; border: 4px solid #17191e; border-radius: 50%; display: grid; place-items: center; background: #e6e9ef; color: #3f424a; font-size: 11px; font-weight: 800; }
.customer-stack span:first-child { margin-left: 0; background: #b9c6ff; }
.customer-stack span:nth-child(2) { background: #e2c3ff; }
.customer-stack span:nth-child(3) { background: #bce6d7; }
.customer-stack span:last-child { width: 58px; color: #fff; background: var(--accent); }
.mini-chart { position: absolute; inset: auto 27px 35px; height: 175px; display: flex; align-items: end; gap: 9px; border-bottom: 1px solid #393c43; }
.mini-chart::before, .mini-chart::after { content: ""; position: absolute; inset: 33% 0 auto; border-top: 1px solid #292c32; }
.mini-chart::after { inset: 66% 0 auto; }
.mini-chart i { flex: 1; border-radius: 7px 7px 0 0; background: linear-gradient(180deg, #7776f7, #4645ba); position: relative; z-index: 2; }
.benefit-icon { width: 118px; height: 118px; border-radius: 30px; margin-top: 35px; background: var(--surface-2); position: relative; }
.icon-store::before { content: ""; position: absolute; width: 62px; height: 48px; left: 28px; top: 41px; border: 3px solid var(--ink); border-radius: 8px; }
.icon-store::after { content: ""; position: absolute; width: 74px; height: 28px; left: 22px; top: 25px; border: 3px solid var(--ink); border-radius: 9px 9px 14px 14px; background: var(--surface-2); transform: skew(-8deg); }
.icon-store span { position: absolute; width: 3px; height: 42px; background: var(--ink); left: 58px; top: 46px; z-index: 2; }
.icon-control { display: grid; align-content: center; gap: 13px; padding: 23px; }
.icon-control span { height: 3px; background: var(--ink); position: relative; border-radius: 5px; }
.icon-control span::after { content: ""; position: absolute; width: 14px; height: 14px; border: 3px solid var(--ink); border-radius: 50%; top: 50%; transform: translateY(-50%); background: var(--surface-2); }
.icon-control span:nth-child(1)::after { left: 12px; }
.icon-control span:nth-child(2)::after { right: 12px; }
.icon-control span:nth-child(3)::after { left: 31px; }
.order-panel { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 20px; box-shadow: 0 20px 50px rgba(18,19,23,.07); }
.order-panel-head, .order-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.order-panel-head { padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.order-panel-head span { font-weight: 800; }
.order-panel-head b { color: #1a8c5e; background: #e6f6ef; border-radius: 20px; padding: 6px 10px; font-size: 10px; }
.order-item { display: flex; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.order-photo { width: 54px; height: 54px; border-radius: 11px; background: #e8e6df; position: relative; }
.order-photo::before { content: ""; position: absolute; width: 18px; height: 36px; border-radius: 7px 7px 4px 4px; background: #45484e; left: 18px; top: 10px; }
.order-item div:last-child { display: flex; flex-direction: column; gap: 5px; }
.order-item strong { font-size: 12px; }
.order-item span, .order-row span { color: var(--muted); font-size: 11px; }
.order-row { padding-top: 14px; font-size: 12px; }
.order-row.total { margin-top: 4px; font-size: 15px; }

.section-dark { background: var(--dark); color: #fff; }
.section-heading.light > p { color: #a9adb8; }
.eyebrow-light { color: #a9adb8; }
.included-layout { display: grid; grid-template-columns: .36fr .64fr; gap: 24px; }
.included-tabs { display: flex; flex-direction: column; gap: 7px; }
.included-tab { min-height: 78px; padding: 0 20px; border: 1px solid #2d3038; border-radius: 15px; color: #a9adb8; background: transparent; display: flex; align-items: center; gap: 18px; text-align: left; cursor: pointer; transition: .25s ease; }
.included-tab span { color: #6d717b; font-size: 11px; }
.included-tab:hover { border-color: #4a4e59; color: #fff; }
.included-tab.active { background: #fff; color: var(--ink); border-color: #fff; }
.included-tab.active span { color: var(--accent); }
.included-panel { min-height: 510px; border: 1px solid #2d3038; border-radius: 24px; background: var(--dark-2); overflow: hidden; }
.tab-content { display: none; min-height: 510px; grid-template-columns: .92fr 1.08fr; align-items: stretch; }
.tab-content.active { display: grid; animation: panelIn .35s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel-copy { padding: 46px 34px; display: flex; flex-direction: column; justify-content: center; }
.panel-label { color: #9c9fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.panel-copy h3 { margin: 18px 0 25px; font-size: 34px; line-height: 1.08; letter-spacing: -.045em; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.check-list li { position: relative; padding-left: 28px; color: #c4c7cf; font-size: 14px; line-height: 1.45; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(93,92,246,.18); color: #aaaaff; font-size: 10px; font-weight: 900; }
.panel-visual { min-height: 430px; margin: 28px; border-radius: 19px; background: #f5f6f8; color: var(--ink); position: relative; overflow: hidden; }
.catalog-panel { display: grid; grid-template-columns: 105px 1fr; }
.catalog-sidebar { padding: 28px 18px; background: #eceef2; display: grid; align-content: start; gap: 18px; }
.catalog-sidebar::before { content: "V"; width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: var(--accent); font-size: 12px; font-weight: 900; margin-bottom: 20px; }
.catalog-sidebar i { height: 8px; border-radius: 5px; background: #d3d6dd; }
.catalog-sidebar i:nth-child(2), .catalog-sidebar i:nth-child(4) { width: 70%; }
.catalog-main { padding: 28px 23px; }
.catalog-toolbar { display: flex; justify-content: space-between; margin-bottom: 24px; }
.catalog-toolbar span { width: 120px; height: 18px; border-radius: 7px; background: #d7d9df; }
.catalog-toolbar b { width: 62px; height: 18px; border-radius: 7px; background: #d7d9df; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.catalog-grid i { aspect-ratio: .8; border-radius: 12px; background: #e4e5e7; position: relative; }
.catalog-grid i::before { content: ""; position: absolute; width: 28%; height: 50%; left: 36%; top: 18%; border-radius: 8px 8px 4px 4px; background: #898d95; }
.catalog-grid i:nth-child(2n) { background: #e8e3dc; }
.catalog-grid i:nth-child(3n)::before { background: #7d746a; }
.checkout-panel { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
.checkout-line { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #e0e2e7; color: #767a84; font-size: 13px; }
.checkout-line strong { color: var(--ink); }
.checkout-line.total { color: var(--ink); font-size: 18px; font-weight: 800; }
.fake-input { height: 44px; border: 1px solid #dfe2e8; background: #fff; border-radius: 10px; margin-top: 18px; }
.fake-input.short { margin-top: 10px; width: 66%; }
.fake-button { height: 48px; margin-top: 14px; border-radius: 11px; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 13px; font-weight: 800; }
.infra-panel { background: #17191f; display: grid; place-items: center; }
.server-core { width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; color: #fff; background: var(--accent); font-size: 24px; font-weight: 900; z-index: 3; }
.server-ring { position: absolute; border: 1px solid #3e424c; border-radius: 50%; display: flex; align-items: flex-start; justify-content: center; }
.server-ring span { color: #bfc3cc; background: #17191f; padding: 0 8px; font-size: 10px; transform: translateY(-7px); }
.server-ring.one { width: 150px; height: 150px; }
.server-ring.two { width: 250px; height: 250px; transform: rotate(48deg); }
.server-ring.two span { transform: translateY(-7px) rotate(-48deg); }
.server-ring.three { width: 355px; height: 355px; transform: rotate(-45deg); }
.server-ring.three span { transform: translateY(-7px) rotate(45deg); }
.support-panel { padding: 40px 30px; display: flex; flex-direction: column; justify-content: center; gap: 16px; background: #eff1f5; }
.chat-bubble { max-width: 82%; padding: 16px 18px; border-radius: 16px; font-size: 13px; line-height: 1.45; }
.chat-bubble.left { align-self: flex-start; background: #fff; border-bottom-left-radius: 5px; }
.chat-bubble.right { align-self: flex-end; color: #fff; background: var(--accent); border-bottom-right-radius: 5px; }
.support-status { margin-top: 22px; align-self: center; color: #757983; font-size: 11px; }
.support-status i { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--success); margin-right: 6px; }

.process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro h2 { margin-bottom: 25px; }
.process-intro > p { margin-bottom: 28px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-item { min-height: 178px; padding: 34px 0; display: grid; grid-template-columns: 54px 1fr 70px; gap: 24px; align-items: start; border-bottom: 1px solid var(--line); }
.step-num { color: var(--accent); font-size: 12px; font-weight: 800; }
.process-item h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.035em; }
.process-item p { margin: 0; color: var(--muted); line-height: 1.55; }
.step-time { justify-self: end; padding: 6px 9px; border: 1px solid var(--line); border-radius: 20px; color: #848892; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.section-muted { background: #eceef3; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.showcase-card { padding: 14px; border: 1px solid #d8dbe2; border-radius: 24px; background: rgba(255,255,255,.72); }
.showcase-top { height: 42px; display: flex; justify-content: space-between; align-items: center; padding: 0 7px; }
.showcase-top span { color: #9599a2; font-size: 11px; }
.showcase-top b { font-size: 12px; }
.showcase-window { min-height: 470px; border-radius: 16px; position: relative; overflow: hidden; }
.demo-nav { position: absolute; z-index: 4; top: 0; left: 0; right: 0; height: 54px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.demo-nav span { font-size: 7px; font-weight: 600; letter-spacing: 0; }
.fashion-demo { color: #fff; background: #303136; }
.fashion-copy { position: absolute; z-index: 3; left: 25px; bottom: 35px; }
.fashion-copy small, .home-copy small, .tech-copy small { font-size: 8px; letter-spacing: .16em; }
.fashion-copy strong { display: block; margin: 12px 0 20px; font-size: 30px; line-height: 1.03; letter-spacing: -.05em; }
.fashion-copy button, .tech-copy button { border: 0; border-radius: 8px; padding: 9px 12px; background: #fff; color: #222; font-size: 9px; }
.fashion-art { position: absolute; width: 250px; height: 390px; right: -45px; top: 70px; border-radius: 130px 130px 0 0; background: #d5cbc4; overflow: hidden; }
.fashion-art i { position: absolute; width: 118px; height: 300px; left: 68px; top: 78px; border-radius: 58px 58px 14px 14px; background: #15161a; transform: rotate(-8deg); }
.fashion-art b { position: absolute; width: 82px; height: 82px; left: 85px; top: 18px; border-radius: 50%; background: #b58d77; }
.home-demo { background: #dcd3c6; color: #342f29; }
.home-art { position: absolute; inset: 54px 0 0; }
.home-table { position: absolute; left: 0; right: 0; bottom: 0; height: 132px; background: #8c674d; }
.home-vase { position: absolute; width: 100px; height: 165px; left: 54px; bottom: 102px; border-radius: 50% 50% 25px 25px; background: #ebe7df; z-index: 2; }
.home-vase::before { content: ""; position: absolute; width: 30px; height: 36px; left: 35px; top: -20px; background: #ebe7df; }
.home-lamp { position: absolute; width: 130px; height: 70px; right: 34px; bottom: 224px; border-radius: 50% 50% 15px 15px; background: #64554b; }
.home-lamp::before { content: ""; position: absolute; width: 5px; height: 155px; background: #64554b; left: 63px; top: 60px; }
.home-copy { position: absolute; z-index: 3; left: 26px; bottom: 28px; color: #fff; }
.home-copy strong { display: block; margin-top: 8px; font-size: 28px; letter-spacing: -.05em; }
.home-copy p { margin: 5px 0 0; font-size: 10px; }
.tech-demo { color: #fff; background: #111318; }
.tech-copy { position: absolute; left: 25px; top: 92px; z-index: 3; }
.tech-copy strong { display: block; max-width: 190px; margin: 12px 0 18px; font-size: 33px; line-height: 1.02; letter-spacing: -.06em; }
.tech-device { position: absolute; width: 330px; height: 330px; right: -100px; bottom: -25px; border-radius: 50%; border: 1px solid #393d45; background: radial-gradient(circle at 38% 32%, #4b4d54, #1d2026 55%, #0d0f13 70%); }
.tech-device i { position: absolute; width: 145px; height: 145px; border-radius: 34px; left: 74px; top: 78px; background: #20232a; box-shadow: inset 0 0 0 2px #555860, 0 25px 40px #000; transform: rotate(-18deg); }
.tech-device i::after { content: "V"; position: absolute; inset: 0; display: grid; place-items: center; color: #767b86; font-size: 28px; font-style: normal; font-weight: 900; }
.tech-device b { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #6dffb0; left: 180px; top: 104px; box-shadow: 0 0 18px #6dffb0; }
.tech-device span { position: absolute; width: 170px; height: 2px; background: linear-gradient(90deg, transparent, #717782, transparent); transform: rotate(55deg); left: 45px; top: 150px; }

.economics-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 95px; align-items: center; }
.economics-copy > p { margin-top: 25px; }
.economics-points { margin-top: 38px; display: grid; gap: 18px; }
.economics-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; }
.economics-points span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #e8e9ff; color: var(--accent); font-size: 10px; font-weight: 900; }
.economics-points p { margin: 3px 0 0; color: var(--muted); line-height: 1.55; }
.economics-points strong { color: var(--ink); }
.quote-card { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 25px 60px rgba(18,19,23,.08); }
.quote-head { display: flex; justify-content: space-between; margin-bottom: 26px; }
.quote-head span { color: var(--muted); font-size: 12px; }
.quote-head b { font-size: 13px; }
.quote-row { min-height: 43px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; color: #696d76; font-size: 12px; }
.quote-row i { border-bottom: 1px dashed #d3d6dc; }
.quote-row strong { color: var(--ink); font-size: 12px; }
.quote-divider { margin: 15px 0 20px; border-top: 1px solid var(--line); }
.quote-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.quote-total span { font-size: 13px; }
.quote-total strong { font-size: 18px; letter-spacing: -.03em; }
.quote-card > small { display: block; margin-top: 12px; text-align: center; color: #8a8e97; font-size: 10px; }

.faq-section { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > p { margin-top: 22px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 92px; padding: 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; cursor: pointer; font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.accordion-item button i { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-size: 18px; transition: .25s ease; }
.accordion-item.open button i { transform: rotate(45deg); color: #fff; border-color: var(--accent); background: var(--accent); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-content p { margin: -4px 50px 28px 0; color: var(--muted); line-height: 1.65; }

.lead-section { padding: 0 0 80px; }
.lead-card { min-height: 590px; padding: 70px; border-radius: 32px; display: grid; grid-template-columns: 1fr .82fr; gap: 80px; align-items: center; color: #fff; background: var(--dark); position: relative; overflow: hidden; }
.lead-card::before { content: ""; position: absolute; width: 620px; height: 620px; left: -240px; bottom: -430px; border: 1px solid #30333b; border-radius: 50%; }
.lead-card::after { content: ""; position: absolute; width: 300px; height: 300px; left: 20%; bottom: -240px; border: 1px solid #30333b; border-radius: 50%; }
.lead-copy, .lead-form { position: relative; z-index: 2; }
.lead-copy h2 { margin-bottom: 22px; }
.lead-copy > p { color: #b4b8c1; font-size: 17px; line-height: 1.62; }
.lead-note { margin-top: 30px; display: flex; align-items: center; gap: 10px; color: #d3d6dc; font-size: 13px; }
.lead-note i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #9ef0c9; background: rgba(51,184,122,.16); font-style: normal; }
.lead-form { padding: 28px; border-radius: 22px; background: #fff; color: var(--ink); }
.lead-form label { display: block; }
.lead-form label > span { display: flex; justify-content: space-between; margin-bottom: 8px; color: #555963; font-size: 11px; font-weight: 700; }
.lead-form label em { color: #a0a4ad; font-style: normal; font-weight: 500; }
.lead-form input, .lead-form textarea { width: 100%; border: 1px solid #dfe2e8; border-radius: 11px; background: #f8f9fb; color: var(--ink); outline: 0; transition: .2s ease; }
.lead-form input { height: 48px; padding: 0 14px; }
.lead-form textarea { min-height: 84px; padding: 13px 14px; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(93,92,246,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
.lead-form > label:nth-of-type(2) { margin-bottom: 14px; }
.form-legal { margin: 12px 0 0; color: #9a9ea7; text-align: center; font-size: 9px; line-height: 1.45; }
.form-legal a { text-decoration: underline; }
.form-status { min-height: 18px; margin-top: 8px; text-align: center; font-size: 11px; color: var(--success); }

.site-footer { padding: 72px 0 28px; background: #eceef3; }
.footer-top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; padding-bottom: 58px; }
.brand-footer { margin-bottom: 17px; }
.footer-top > div:first-child p { max-width: 300px; margin: 0; color: var(--muted); line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links span { margin-bottom: 6px; color: #979ba4; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.footer-links a { color: #565a64; font-size: 13px; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { min-height: 55px; padding-top: 22px; border-top: 1px solid #d6d9df; display: flex; justify-content: space-between; color: #8e929b; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 790px; }
  .hero-visual { min-height: 650px; }
  .browser-card { width: 690px; }
  .metric-orders { right: 8%; }
  .metric-import { left: 8%; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .large-card { grid-row: auto; min-height: 520px; }
  .customers-visual { min-height: 245px; }
  .mini-chart { height: 100px; }
  .wide-card { grid-column: span 2; }
  .included-layout { grid-template-columns: 1fr; }
  .included-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .included-tab { min-height: 64px; }
  .process-grid { gap: 60px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card:last-child { grid-column: span 2; }
  .showcase-card:last-child .showcase-window { min-height: 400px; }
  .lead-card { padding: 55px; gap: 50px; }
}

@media (max-width: 820px) {
  .section-space { padding: 88px 0; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: flex; }
  .mobile-menu { position: fixed; inset: 78px 0 0; display: block; background: rgba(246,247,251,.98); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .2s ease; }
  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu-inner { padding-top: 38px; display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
  .mobile-menu a:not(.button) { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 700; }
  .mobile-menu .button { margin-top: 18px; }
  .hero { padding-top: 135px; }
  .hero h1 { font-size: clamp(48px, 12vw, 70px); }
  .hero-proof { grid-template-columns: 1fr; gap: 13px; }
  .hero-proof div { display: grid; grid-template-columns: 160px 1fr; }
  .hero-visual { min-height: 540px; }
  .browser-card { width: 620px; transform: scale(.9) rotate(-2deg); }
  .metric-orders { right: 0; top: 28px; }
  .metric-import { left: 0; bottom: 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; grid-template-columns: 1fr; }
  .included-tabs { grid-template-columns: 1fr 1fr; }
  .tab-content.active { grid-template-columns: 1fr; }
  .panel-visual { min-height: 330px; }
  .process-grid, .economics-grid, .faq-grid, .lead-card, .footer-top { grid-template-columns: 1fr; }
  .process-intro, .faq-heading { position: static; }
  .process-grid, .faq-grid { gap: 50px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card:last-child { grid-column: auto; }
  .lead-card { gap: 40px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section-space { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero h1 { margin-top: 18px; font-size: clamp(39px, 10.8vw, 44px); overflow-wrap: normal; }
  .hero-text { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { justify-content: center; }
  .hero-proof div { grid-template-columns: 1fr; gap: 2px; }
  .hero-visual { width: 100%; min-width: 0; min-height: 430px; margin-inline: 0; }
  .browser-card { width: 112%; max-width: none; transform: scale(.82) rotate(-2deg); }
  .floating-card { animation: none; }
  .metric-orders { top: 15px; right: 5px; transform: scale(.84); transform-origin: top right; }
  .metric-import { left: 5px; bottom: 22px; transform: scale(.84); transform-origin: bottom left; }
  .logo-strip-inner { padding: 24px 0; gap: 17px; }
  .logo-strip-inner > span:first-child, .logo-strip .muted { width: 100%; text-align: center; }
  .section-heading h2, .process-intro h2, .economics-copy h2, .faq-heading h2, .lead-copy h2 { font-size: 41px; }
  .benefit-card { min-height: 340px; padding: 22px; }
  .large-card { min-height: 500px; }
  .customers-visual { inset: 65px 20px auto; }
  .wide-card { gap: 20px; }
  .included-tabs { display: flex; overflow-x: auto; margin-right: -12px; padding-right: 12px; scroll-snap-type: x mandatory; }
  .included-tab { flex: 0 0 210px; scroll-snap-align: start; }
  .included-panel, .tab-content { min-height: auto; }
  .panel-copy { padding: 35px 24px 18px; }
  .panel-copy h3 { font-size: 29px; }
  .panel-visual { min-height: 290px; margin: 18px; }
  .catalog-panel { grid-template-columns: 72px 1fr; }
  .catalog-grid { gap: 8px; }
  .process-item { grid-template-columns: 40px 1fr; gap: 15px; }
  .step-time { display: none; }
  .showcase-window { min-height: 420px; }
  .economics-grid { gap: 45px; }
  .quote-card { padding: 23px; }
  .quote-row { grid-template-columns: auto 1fr; }
  .quote-row i { display: none; }
  .quote-row strong { justify-self: end; }
  .accordion-item button { min-height: 82px; font-size: 17px; }
  .accordion-content p { margin-right: 0; }
  .lead-section { padding-bottom: 28px; }
  .lead-card { width: 100%; border-radius: 0; padding: 58px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { padding-top: 55px; }
  .footer-top { gap: 45px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

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


/* --- Commercial update: benefits, references and fixed pricing --- */
.seller-benefits { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seller-benefits article { min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.seller-benefits article > span { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: #ececff; color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.seller-benefits h3 { margin: 34px 0 11px; font-size: 23px; line-height: 1.1; letter-spacing: -.035em; }
.seller-benefits p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }

.reference-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.reference-card { padding: 12px; border: 1px solid #d8dbe2; border-radius: 22px; background: rgba(255,255,255,.8); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.reference-card:hover { transform: translateY(-5px); border-color: #c4c7d0; box-shadow: 0 20px 45px rgba(18,19,23,.08); }
.reference-preview { min-height: 270px; border-radius: 14px; position: relative; overflow: hidden; }
.reference-preview::after { content: ""; position: absolute; inset: auto 16px 16px; height: 45px; border-radius: 10px; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); }
.ref-logo { position: absolute; z-index: 3; top: 18px; left: 18px; font-size: 12px; font-weight: 900; letter-spacing: .06em; }
.reference-preview em { position: absolute; z-index: 3; left: 18px; bottom: 31px; font-size: 8px; font-style: normal; letter-spacing: .16em; }
.reference-preview i, .reference-preview b { position: absolute; display: block; }
.ref-fashion-one { color: #fff; background: #23252a; }
.ref-fashion-one i { width: 155px; height: 230px; right: 18px; top: 40px; border-radius: 90px 90px 15px 15px; background: #bba89b; }
.ref-fashion-one b { width: 70px; height: 180px; right: 58px; top: 84px; border-radius: 35px 35px 8px 8px; background: #17181b; transform: rotate(-7deg); }
.ref-fashion-two { color: #282824; background: #d9d8cf; }
.ref-fashion-two i { width: 62%; height: 68%; right: -8%; top: 17%; border-radius: 50% 0 0 50%; background: #a7a899; }
.ref-fashion-two b { width: 28%; height: 58%; right: 13%; top: 25%; border-radius: 40px 40px 9px 9px; background: #31322f; }
.ref-jewelry-one { color: #251b28; background: #e9c9f1; }
.ref-jewelry-one i { width: 175px; height: 175px; right: -15px; top: 45px; border-radius: 50%; border: 24px solid #8e4ca4; }
.ref-jewelry-one b { width: 90px; height: 90px; left: 33px; top: 100px; border-radius: 50%; background: #f7e46c; box-shadow: 0 0 0 12px rgba(255,255,255,.25); }
.ref-tech-one { color: #fff; background: #121315; }
.ref-tech-one i { width: 125px; height: 190px; right: 35px; top: 45px; border-radius: 63px 63px 22px 22px; background: linear-gradient(145deg, #76797c, #1d1f22); box-shadow: -25px 18px 55px rgba(255,255,255,.12); }
.ref-tech-one b { width: 68px; height: 8px; right: 63px; top: 73px; border-radius: 999px; background: #a2a5a8; }
.ref-home-one { color: #243226; background: #d9ead8; }
.ref-home-one i { width: 135px; height: 74px; right: 28px; bottom: 55px; border-radius: 45px 45px 12px 12px; background: #6c8069; }
.ref-home-one b { width: 75px; height: 120px; right: 56px; top: 55px; border-radius: 50% 50% 16px 16px; background: #f5efe2; }
.ref-beauty-one { color: #111; background: #c8ff32; }
.ref-beauty-one i { width: 72px; height: 165px; right: 42px; top: 62px; border-radius: 20px 20px 10px 10px; background: #ff716b; transform: rotate(8deg); }
.ref-beauty-one b { width: 55px; height: 125px; right: 115px; top: 95px; border-radius: 30px 30px 8px 8px; background: #6a50ff; transform: rotate(-9deg); }
.ref-jewelry-two { color: #4d3427; background: #f0ded1; }
.ref-jewelry-two i { width: 155px; height: 155px; right: 22px; top: 58px; border-radius: 50%; border: 17px solid #d7aa56; }
.ref-jewelry-two b { width: 18px; height: 18px; right: 91px; top: 48px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 7px #d7aa56; }
.ref-fashion-three { color: #fff; background: #704e45; }
.ref-fashion-three i { width: 150px; height: 235px; right: 18px; top: 34px; border-radius: 75px 75px 10px 10px; background: #d9b9a5; }
.ref-fashion-three b { width: 75px; height: 185px; right: 54px; top: 80px; border-radius: 36px 36px 9px 9px; background: #f0e8df; }
.reference-meta { padding: 18px 8px 10px; }
.reference-meta > div { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.reference-meta strong { font-size: 15px; }
.reference-meta span { color: #8d919a; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.reference-meta p { min-height: 62px; margin: 13px 0 15px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.reference-meta u { color: var(--ink); font-size: 11px; font-weight: 800; text-decoration: none; }
.reference-disclaimer { max-width: 760px; margin: 28px 0 0; color: #898d96; font-size: 11px; line-height: 1.55; }

.pricing-section { background: #f7f8fb; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card { min-height: 610px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: #fff; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 24px 65px rgba(93,92,246,.13); }
.popular-label { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 7px 12px; border-radius: 999px; color: #fff; background: var(--accent); font-size: 9px; font-weight: 900; white-space: nowrap; text-transform: uppercase; letter-spacing: .08em; }
.price-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price-card-head > span { font-size: 19px; font-weight: 900; letter-spacing: -.03em; }
.price-card-head b { padding: 6px 8px; border-radius: 999px; color: #6f7380; background: #f0f1f5; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.price { margin: 30px 0 17px; display: flex; flex-direction: column; gap: 5px; }
.price strong { font-size: 31px; letter-spacing: -.045em; }
.price small { color: #969aa3; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.price-card > p { min-height: 60px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.price-card > ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.price-card > ul li { position: relative; padding-left: 24px; color: #565a64; font-size: 12px; line-height: 1.4; }
.price-card > ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.price-card > .button { margin-top: auto; }
.button-outline { border: 1px solid #d5d8df; color: var(--ink); background: #fff; }
.button-outline:hover { border-color: var(--ink); }

.support-pricing { margin-top: 55px; padding: 42px; border-radius: 28px; color: #fff; background: var(--dark); }
.support-pricing-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 34px; }
.support-pricing-head > div > span { color: #9c9fff; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.support-pricing-head h3 { max-width: 620px; margin: 13px 0 0; font-size: 32px; line-height: 1.08; letter-spacing: -.04em; }
.support-pricing-head p { margin: 0; color: #aeb2bc; font-size: 14px; line-height: 1.6; }
.support-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.support-tier-grid article { padding: 25px; border: 1px solid #30333b; border-radius: 19px; background: #1e2026; }
.support-tier-grid article.support-featured { border-color: #7776f7; background: #25263a; }
.support-tier-grid article > div { display: flex; align-items: baseline; gap: 7px; }
.support-tier-grid strong { font-size: 24px; letter-spacing: -.04em; }
.support-tier-grid article > div span { color: #979ba5; font-size: 10px; }
.support-tier-grid h4 { margin: 13px 0 22px; font-size: 16px; }
.support-tier-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.support-tier-grid li { position: relative; padding-left: 19px; color: #b7bbc4; font-size: 12px; line-height: 1.42; }
.support-tier-grid li::before { content: "·"; position: absolute; left: 2px; color: #9c9fff; font-weight: 900; }

.relief-banner { margin-top: 20px; min-height: 170px; padding: 30px 34px; border-radius: 26px; display: grid; grid-template-columns: 110px 1fr auto; gap: 28px; align-items: center; color: #252018; background: #f2d68b; }
.relief-icon { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; background: #252018; color: #f2d68b; font-size: 26px; font-weight: 900; letter-spacing: -.05em; }
.relief-banner span { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.relief-banner h3 { max-width: 700px; margin: 8px 0 7px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.relief-banner p { margin: 0; color: #665b40; font-size: 11px; line-height: 1.5; }
.button-light { background: #fff; color: var(--ink); white-space: nowrap; }

.lead-form select { width: 100%; height: 48px; padding: 0 42px 0 14px; border: 1px solid #dfe2e8; border-radius: 11px; background: #f8f9fb; color: var(--ink); outline: 0; appearance: none; background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%); background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.lead-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(93,92,246,.1); }
.form-store-field { margin-top: 14px; }

@media (max-width: 1180px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card { min-height: 560px; }
  .reference-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .seller-benefits { grid-template-columns: 1fr; }
  .seller-benefits article { min-height: auto; }
  .reference-grid { grid-template-columns: 1fr 1fr; }
  .support-pricing-head { grid-template-columns: 1fr; gap: 20px; }
  .support-tier-grid { grid-template-columns: 1fr; }
  .relief-banner { grid-template-columns: 90px 1fr; }
  .relief-icon { width: 82px; height: 82px; font-size: 22px; }
  .relief-banner .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 620px) {
  .pricing-grid, .reference-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card > p { min-height: auto; }
  .support-pricing { padding: 28px 20px; border-radius: 22px; }
  .support-pricing-head h3 { font-size: 27px; }
  .relief-banner { grid-template-columns: 1fr; padding: 25px; }
  .relief-icon { width: 72px; height: 72px; }
  .relief-banner .button { grid-column: auto; width: 100%; }
  .reference-preview { min-height: 310px; }
}

/* Demo and original concept catalogue */
.hero-demo-badge {
  position: absolute;
  z-index: 5;
  top: 23px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
  padding: 11px 13px;
  border: 1px solid rgba(16,17,20,.09);
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 38px rgba(18,19,23,.1);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-demo-badge:hover { transform: translateY(-3px); box-shadow: 0 21px 45px rgba(18,19,23,.14); }
.hero-demo-badge > i { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: #35bf7d; box-shadow: 0 0 0 5px rgba(53,191,125,.13); }
.hero-demo-badge > span { display: grid; gap: 2px; }
.hero-demo-badge strong { font-size: 12px; }
.hero-demo-badge small { color: var(--muted); font-size: 9px; }
.hero-demo-badge > b { margin-left: auto; color: var(--accent); font-size: 15px; }

.demo-section { padding-top: 96px; background: #fff; }
.demo-heading { margin-bottom: 38px; }
.demo-stage { padding: 16px; border: 1px solid #dfe2e8; border-radius: 30px; background: #f3f4f7; box-shadow: 0 30px 90px rgba(22,24,31,.1); }
.demo-stage-toolbar { min-height: 58px; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 18px; padding: 0 8px 14px; }
.demo-theme-switch, .demo-screen-switch { display: inline-flex; gap: 5px; padding: 4px; border: 1px solid #dddfe5; border-radius: 12px; background: #fff; }
.demo-theme-switch button, .demo-screen-switch button { min-height: 34px; padding: 0 12px; border: 0; border-radius: 8px; background: transparent; color: #777b84; font-size: 11px; font-weight: 750; cursor: pointer; }
.demo-theme-switch button.active, .demo-screen-switch button.active { color: #fff; background: var(--ink); }
.demo-open-link { justify-self: end; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; }
.demo-open-link span { color: var(--accent); }
.demo-browser { --demo-accent:#1b1d20; --demo-bg:#e9e4dc; --demo-object:#2b2d31; min-height: 670px; overflow: hidden; border-radius: 21px; border: 1px solid #d9dce2; background: #fff; box-shadow: 0 18px 55px rgba(18,19,23,.1); transition: background .35s ease; }
.demo-browser[data-theme="beauty"] { --demo-accent:#e95a88; --demo-bg:#ffd9e6; --demo-object:#ff7aa4; }
.demo-browser[data-theme="home"] { --demo-accent:#37554a; --demo-bg:#e2dfcf; --demo-object:#887864; }
.demo-browser-top { height: 42px; display: grid; grid-template-columns: 90px 1fr 90px; align-items: center; padding: 0 14px; border-bottom: 1px solid #eceef2; background: #fafbfc; }
.demo-browser-top > div { display: flex; gap: 6px; }
.demo-browser-top i { width: 7px; height: 7px; border-radius: 50%; background: #d2d5dc; }
.demo-browser-top > span { justify-self: center; min-width: 220px; padding: 6px 18px; border-radius: 7px; background: #eff1f5; color: #989ca5; text-align: center; font-size: 9px; }
.demo-browser-top > b { justify-self: end; color: #999da6; font-size: 11px; }
.demo-store-header { height: 76px; display: flex; align-items: center; gap: 42px; padding: 0 35px; border-bottom: 1px solid #eceef2; }
.demo-store-header > strong { min-width: 155px; font-size: 17px; letter-spacing: .13em; }
.demo-store-header nav { display: flex; gap: 26px; color: #575b64; font-size: 10px; }
.demo-store-header > div { margin-left: auto; display: flex; gap: 17px; color: #484b53; font-size: 10px; }
.demo-screen { min-height: 550px; display: none; }
.demo-screen.active { display: grid; animation: demoFade .28s ease both; }
@keyframes demoFade { from { opacity:0; transform:translateY(5px); } to { opacity:1; transform:none; } }
.demo-screen-home { grid-template-columns: .82fr 1.18fr; background: var(--demo-bg); transition: background .35s ease; }
.demo-home-copy { padding: 86px 0 60px 72px; align-self: center; z-index: 2; }
.demo-home-copy small, .demo-product-info > small, .demo-catalog-title small { color: rgba(19,20,23,.55); font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.demo-home-copy h3 { max-width: 500px; margin: 22px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px,5vw,72px); line-height: .96; letter-spacing: -.055em; font-weight: 500; }
.demo-home-copy p { max-width: 390px; margin: 0 0 30px; color: #62656c; font-size: 14px; line-height: 1.6; }
.demo-home-copy a { min-height: 45px; padding: 0 19px; display: inline-flex; align-items: center; border-radius: 4px; color: #fff; background: var(--demo-accent); font-size: 11px; font-weight: 800; transition: background .35s ease; }
.demo-home-art { position: relative; min-height: 550px; overflow: hidden; }
.demo-home-art::before { content:""; position:absolute; width:520px; height:520px; right:-45px; top:20px; border-radius:52% 48% 58% 42% / 45% 55% 45% 55%; background:rgba(255,255,255,.35); transform:rotate(15deg); }
.demo-home-art i { position:absolute; width:240px; height:430px; right:180px; bottom:0; border-radius:120px 120px 25px 25px; background:var(--demo-object); box-shadow:0 35px 75px rgba(19,20,23,.22); transition: background .35s ease; }
.demo-home-art i::before { content:""; position:absolute; width:58px; height:58px; left:91px; top:-31px; border-radius:50%; background:inherit; }
.demo-home-art b { position:absolute; width:170px; height:320px; right:44px; bottom:-10px; border-radius:85px 85px 20px 20px; background:rgba(255,255,255,.62); box-shadow:0 25px 65px rgba(19,20,23,.15); transform:rotate(8deg); }
.demo-home-art span { position:absolute; width:240px; height:34px; right:68px; bottom:18px; border-radius:50%; background:rgba(32,33,36,.18); filter:blur(10px); }
.demo-browser[data-theme="beauty"] .demo-home-art i { width:150px; height:350px; right:220px; bottom:55px; border-radius:36px 36px 16px 16px; transform:rotate(-6deg); }
.demo-browser[data-theme="beauty"] .demo-home-art i::before { width:62px; height:32px; left:44px; top:-20px; border-radius:10px 10px 3px 3px; }
.demo-browser[data-theme="beauty"] .demo-home-art b { width:130px; height:285px; right:76px; bottom:45px; border-radius:65px 65px 20px 20px; background:#f6b7cc; }
.demo-browser[data-theme="home"] .demo-home-art i { width:310px; height:230px; right:128px; bottom:85px; border-radius:155px 155px 38px 38px; }
.demo-browser[data-theme="home"] .demo-home-art i::before { display:none; }
.demo-browser[data-theme="home"] .demo-home-art b { width:120px; height:300px; right:75px; bottom:70px; border-radius:60px 60px 16px 16px; background:#cbbca3; }

.demo-screen-catalog { grid-template-columns: 220px 1fr; background:#fff; }
.demo-screen-catalog aside { padding:38px 26px; border-right:1px solid #eceef2; display:flex; flex-direction:column; gap:18px; }
.demo-screen-catalog aside > strong { margin-bottom:8px; font-size:20px; }
.demo-screen-catalog aside > span { display:flex; justify-content:space-between; color:#555861; font-size:11px; }
.demo-screen-catalog aside > span b { color:#a0a3aa; font-weight:600; }
.demo-screen-catalog aside em { margin-top:12px; font-style:normal; font-size:10px; font-weight:850; text-transform:uppercase; letter-spacing:.1em; }
.demo-screen-catalog aside > div { height:4px; border-radius:999px; background:linear-gradient(90deg,var(--demo-accent) 0 65%,#e4e6ea 65%); }
.demo-screen-catalog aside ul { margin:0; padding:0; list-style:none; display:flex; gap:8px; }
.demo-screen-catalog aside li { width:19px; height:19px; border-radius:50%; background:#1f2124; }
.demo-screen-catalog aside li:nth-child(2) { background:#e7dfd0; }
.demo-screen-catalog aside li:nth-child(3) { background:#816e58; }
.demo-screen-catalog aside li:nth-child(4) { background:#b6c2b7; }
.demo-catalog-main { padding:38px 34px 32px; }
.demo-catalog-title { display:flex; justify-content:space-between; align-items:end; margin-bottom:30px; }
.demo-catalog-title h3 { margin:8px 0 0; font-family:Georgia,serif; font-size:42px; font-weight:500; letter-spacing:-.04em; }
.demo-catalog-title > span { color:#737780; font-size:10px; }
.demo-product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.demo-product-grid article { position:relative; }
.demo-product-grid article > i { display:block; aspect-ratio:.76; border-radius:5px; background:#e6e2dc; position:relative; overflow:hidden; }
.demo-product-grid article > i::before { content:""; position:absolute; width:62%; height:74%; left:19%; bottom:0; border-radius:48% 48% 7px 7px; background:var(--demo-object); }
.demo-product-grid article:nth-child(2) > i { background:#ebdfe2; }
.demo-product-grid article:nth-child(2) > i::before { height:57%; bottom:17%; border-radius:50% 50% 13px 13px; background:#b7878f; }
.demo-product-grid article:nth-child(3) > i { background:#e1e4df; }
.demo-product-grid article:nth-child(3) > i::before { width:72%; left:14%; height:78%; background:#7a817b; }
.demo-product-grid article:nth-child(4) > i { background:#dfd7cc; }
.demo-product-grid article:nth-child(4) > i::before { width:70%; height:48%; left:15%; bottom:20%; border-radius:50% 50% 20% 20%; background:#806b59; }
.demo-product-grid article > span { position:absolute; top:10px; left:10px; width:26px; height:26px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.85); font-size:8px; }
.demo-product-grid p { margin:12px 0 5px; color:#565a63; font-size:11px; }
.demo-product-grid strong { font-size:12px; }

.demo-screen-product { grid-template-columns:1.08fr .92fr; background:#fff; }
.demo-product-gallery { padding:32px; background:#f2f0ed; display:grid; grid-template-columns:1fr 72px; gap:14px; }
.demo-main-product { position:relative; overflow:hidden; border-radius:6px; background:#e1ddd6; }
.demo-main-product::before { content:""; position:absolute; width:46%; height:82%; left:27%; bottom:0; border-radius:50% 50% 8px 8px; background:var(--demo-object); }
.demo-main-product i { position:absolute; width:110px; height:110px; top:40px; left:50%; border-radius:50%; background:rgba(255,255,255,.2); transform:translateX(-50%); }
.demo-main-product b { position:absolute; width:220px; height:25px; left:50%; bottom:18px; border-radius:50%; background:rgba(27,29,32,.13); filter:blur(8px); transform:translateX(-50%); }
.demo-thumbs { display:grid; grid-template-rows:repeat(3,1fr); gap:10px; }
.demo-thumbs span { border:1px solid #d8d4ce; border-radius:4px; background:#e7e2dc; }
.demo-thumbs span:first-child { border-color:var(--demo-accent); }
.demo-product-info { padding:54px 54px 38px; }
.demo-product-info h3 { margin:13px 0 9px; font-family:Georgia,serif; font-size:42px; font-weight:500; letter-spacing:-.04em; }
.demo-rating { margin-bottom:27px; color:#202226; font-size:10px; letter-spacing:.1em; }
.demo-rating span { margin-left:9px; color:#8c9098; letter-spacing:0; }
.demo-product-info > strong { font-size:22px; }
.demo-product-info > p { margin:22px 0; color:#696d75; font-size:12px; line-height:1.65; }
.demo-product-info label { display:block; margin:19px 0 10px; font-size:10px; font-weight:800; }
.demo-swatches { display:flex; gap:8px; }
.demo-swatches i { width:21px; height:21px; border-radius:50%; background:#292b2f; box-shadow:0 0 0 1px #fff,0 0 0 2px #292b2f; }
.demo-swatches i:nth-child(2) { background:#c3b29d; box-shadow:none; }
.demo-swatches i:nth-child(3) { background:#778171; box-shadow:none; }
.demo-swatches i:nth-child(4) { background:#d6d1ca; box-shadow:none; }
.demo-sizes { display:grid; grid-template-columns:repeat(4,1fr); gap:7px; }
.demo-sizes button { height:35px; border:1px solid #dfe1e5; border-radius:3px; background:#fff; font-size:10px; }
.demo-product-info > a { min-height:48px; margin-top:24px; display:flex; align-items:center; justify-content:center; border-radius:4px; color:#fff; background:var(--demo-accent); font-size:11px; font-weight:850; }
.demo-product-info ul { list-style:none; margin:20px 0 0; padding:0; display:grid; gap:7px; }
.demo-product-info li { color:#777b83; font-size:9px; }
.demo-product-info li::before { content:"✓"; margin-right:8px; color:var(--demo-accent); font-weight:900; }
.demo-stage-foot { min-height:94px; padding:18px 10px 2px; display:grid; grid-template-columns:repeat(3,1fr) auto; gap:22px; align-items:center; }
.demo-stage-foot > div { display:flex; align-items:center; gap:10px; }
.demo-stage-foot strong { font-size:25px; letter-spacing:-.04em; }
.demo-stage-foot span { max-width:125px; color:#747881; font-size:10px; line-height:1.4; }

.portfolio-filter { margin:-8px 0 30px; display:flex; flex-wrap:wrap; gap:7px; }
.portfolio-filter button { min-height:38px; padding:0 15px; border:1px solid #d6d9e0; border-radius:999px; background:rgba(255,255,255,.7); color:#666a73; font-size:11px; font-weight:750; cursor:pointer; }
.portfolio-filter button.active { color:#fff; border-color:var(--ink); background:var(--ink); }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.portfolio-card { min-width:0; padding:11px; border:1px solid #d8dbe2; border-radius:23px; background:rgba(255,255,255,.88); transition:transform .25s ease,box-shadow .25s ease,opacity .25s ease; }
.portfolio-card:hover { transform:translateY(-5px); box-shadow:0 22px 50px rgba(18,19,23,.09); }
.portfolio-card.is-hidden { display:none; }
.portfolio-card-large { grid-column:span 2; }
.portfolio-card-wide { grid-column:span 2; }
.portfolio-preview { min-height:320px; padding:22px; border-radius:15px; position:relative; overflow:hidden; }
.portfolio-card-large .portfolio-preview, .portfolio-card-wide .portfolio-preview { min-height:390px; }
.concept-top { position:relative; z-index:5; display:flex; justify-content:space-between; align-items:center; }
.concept-top strong { font-size:12px; letter-spacing:.12em; }
.concept-top span { font-size:7px; letter-spacing:.09em; }
.concept-copy { position:absolute; z-index:4; left:24px; bottom:26px; }
.concept-copy small { font-size:7px; letter-spacing:.18em; }
.concept-copy h3 { margin:11px 0 0; font-family:Georgia,serif; font-size:33px; line-height:.97; letter-spacing:-.045em; font-weight:500; }
.portfolio-card-large .concept-copy h3, .portfolio-card-wide .concept-copy h3 { font-size:47px; }
.concept-copy button { margin-top:19px; padding:9px 13px; border:0; border-radius:3px; color:inherit; background:rgba(255,255,255,.18); font-size:8px; }
.portfolio-preview > i, .portfolio-preview > b { position:absolute; display:block; }
.portfolio-preview > em { position:absolute; z-index:4; right:18px; bottom:18px; font-style:normal; font-size:7px; letter-spacing:.12em; }
.concept-atelier { color:#f8f5ef; background:#1d1e20; }
.concept-atelier > i { width:250px; height:420px; right:15%; bottom:-72px; border-radius:125px 125px 20px 20px; background:#9e8c7e; transform:rotate(-7deg); }
.concept-atelier > b { width:110px; height:325px; right:24%; bottom:-25px; border-radius:55px 55px 12px 12px; background:#18191b; }
.concept-luma { color:#401927; background:#ffd6e4; }
.concept-luma > i { width:135px; height:250px; right:30px; bottom:31px; border-radius:26px 26px 12px 12px; background:#f16e9b; transform:rotate(7deg); }
.concept-luma > i::before { content:""; position:absolute; width:55px; height:27px; top:-16px; left:40px; border-radius:8px 8px 2px 2px; background:#f16e9b; }
.concept-luma > b { width:105px; height:205px; right:128px; bottom:35px; border-radius:53px 53px 18px 18px; background:#fff0f5; transform:rotate(-8deg); }
.concept-forma { color:#2b352f; background:#dce4d9; }
.concept-forma > i { width:210px; height:138px; right:33px; bottom:47px; border-radius:105px 105px 24px 24px; background:#667c6b; }
.concept-forma > b { width:90px; height:205px; right:95px; top:50px; border-radius:45px 45px 13px 13px; background:#f4ead9; }
.concept-north { color:#fff; background:#101114; }
.concept-north > i { width:165px; height:250px; right:45px; bottom:29px; border-radius:83px 83px 22px 22px; background:linear-gradient(145deg,#83878b,#202226 62%); box-shadow:-35px 28px 70px rgba(255,255,255,.12); }
.concept-north > b { width:80px; height:9px; right:87px; top:94px; border-radius:999px; background:#9a9da0; }
.concept-vela { color:#fff9f3; background:#7b5148; }
.concept-vela > i { width:180px; height:310px; right:25px; bottom:-12px; border-radius:90px 90px 13px 13px; background:#d1a992; }
.concept-vela > b { width:82px; height:230px; right:74px; bottom:0; border-radius:41px 41px 9px 9px; background:#f1e5da; }
.concept-kin { color:#334131; background:#d8e0c8; }
.concept-kin > i { width:100px; height:230px; right:40px; bottom:35px; border-radius:19px 19px 8px 8px; background:#6d805d; transform:rotate(6deg); }
.concept-kin > b { width:128px; height:128px; right:125px; top:80px; border-radius:50%; border:20px solid #f0dfb8; }
.concept-petra { color:#4a342a; background:#eadcd0; }
.concept-petra > i { width:190px; height:190px; right:29px; bottom:35px; border-radius:50%; background:#b48a6d; }
.concept-petra > b { width:118px; height:118px; right:65px; bottom:72px; border-radius:50%; background:#f0d8c3; box-shadow:0 0 0 16px rgba(255,255,255,.23); }
.concept-pulse { color:#fff; background:#3f4ef3; }
.concept-pulse > i { width:265px; height:265px; right:90px; top:70px; border-radius:50%; border:45px solid rgba(255,255,255,.9); }
.concept-pulse > b { width:95px; height:220px; right:175px; top:100px; border-radius:48px; background:#17191f; transform:rotate(-15deg); }
.portfolio-meta { min-height:160px; padding:18px 8px 8px; display:flex; flex-direction:column; justify-content:space-between; gap:18px; }
.portfolio-meta > div > span { color:#8a8e97; font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.portfolio-meta strong { display:block; margin:8px 0; font-size:18px; }
.portfolio-meta p { margin:0; color:var(--muted); font-size:12px; line-height:1.55; }
.portfolio-meta > button { align-self:flex-start; padding:0; border:0; background:transparent; font-size:11px; font-weight:850; cursor:pointer; }
.portfolio-note { margin-top:22px; padding:24px 27px; display:flex; justify-content:space-between; align-items:center; gap:28px; border:1px solid #d9dce2; border-radius:20px; background:rgba(255,255,255,.76); }
.portfolio-note > div { max-width:770px; }
.portfolio-note strong { font-size:11px; text-transform:uppercase; letter-spacing:.11em; }
.portfolio-note p { margin:8px 0 0; color:var(--muted); font-size:12px; line-height:1.6; }
.form-style-field { margin-top:14px; }

@media (max-width: 1100px) {
  .demo-stage-toolbar { grid-template-columns:1fr 1fr; }
  .demo-open-link { grid-column:1/-1; justify-self:start; }
  .demo-store-header nav { display:none; }
  .demo-product-grid { grid-template-columns:repeat(2,1fr); }
  .demo-product-grid article:nth-child(n+3) { display:none; }
  .portfolio-grid { grid-template-columns:repeat(2,1fr); }
  .portfolio-card-large,.portfolio-card-wide { grid-column:span 1; }
  .portfolio-card-large .portfolio-preview,.portfolio-card-wide .portfolio-preview { min-height:320px; }
}

@media (max-width: 820px) {
  .hero-demo-badge { left:5px; top:30px; }
  .demo-browser { min-height:580px; }
  .demo-store-header { padding:0 20px; }
  .demo-store-header > div { display:none; }
  .demo-screen-home { grid-template-columns:1fr; position:relative; }
  .demo-home-copy { padding:58px 36px; }
  .demo-home-art { position:absolute; inset:0 0 0 42%; opacity:.75; }
  .demo-home-copy h3 { font-size:50px; }
  .demo-screen-catalog { grid-template-columns:150px 1fr; }
  .demo-screen-catalog aside { padding:28px 17px; }
  .demo-catalog-main { padding:28px 20px; }
  .demo-screen-product { grid-template-columns:1fr 1fr; }
  .demo-product-gallery { padding:20px; grid-template-columns:1fr; }
  .demo-thumbs { display:none; }
  .demo-product-info { padding:35px 25px; }
  .demo-product-info h3 { font-size:34px; }
  .demo-stage-foot { grid-template-columns:repeat(3,1fr); }
  .demo-stage-foot .button { grid-column:1/-1; }
  .portfolio-note { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 620px) {
  .hero-actions { align-items:flex-start; flex-direction:column; gap:18px; }
  .hero-demo-badge { top:0; left:0; min-width:200px; }
  .demo-section { padding-top:72px; }
  .demo-stage { padding:9px; border-radius:22px; }
  .demo-stage-toolbar { grid-template-columns:1fr; gap:8px; padding:0 0 10px; }
  .demo-theme-switch,.demo-screen-switch { width:100%; }
  .demo-theme-switch button,.demo-screen-switch button { flex:1; padding-inline:5px; }
  .demo-open-link { display:none; }
  .demo-browser { min-height:520px; border-radius:15px; }
  .demo-browser-top { grid-template-columns:65px 1fr 35px; }
  .demo-browser-top > span { min-width:0; }
  .demo-store-header { height:60px; padding:0 14px; }
  .demo-store-header > strong { min-width:0; font-size:12px; }
  .demo-screen { min-height:415px; }
  .demo-home-copy { padding:42px 22px; }
  .demo-home-copy h3 { font-size:39px; }
  .demo-home-copy p { max-width:250px; font-size:11px; }
  .demo-home-art { left:35%; min-height:415px; }
  .demo-home-art::before { width:360px; height:360px; }
  .demo-home-art i { width:145px; height:285px; right:65px; }
  .demo-home-art b { width:105px; height:220px; right:3px; }
  .demo-screen-catalog { grid-template-columns:1fr; }
  .demo-screen-catalog aside { display:none; }
  .demo-catalog-main { padding:22px 14px; }
  .demo-catalog-title h3 { font-size:32px; }
  .demo-product-grid { gap:8px; }
  .demo-product-grid p { font-size:9px; }
  .demo-screen-product { grid-template-columns:.9fr 1.1fr; }
  .demo-product-gallery { padding:10px; }
  .demo-product-info { padding:22px 13px; }
  .demo-product-info h3 { font-size:24px; }
  .demo-product-info > p,.demo-product-info ul,.demo-rating { display:none; }
  .demo-sizes { gap:3px; }
  .demo-sizes button { height:29px; }
  .demo-product-info > a { min-height:40px; margin-top:15px; }
  .demo-stage-foot { grid-template-columns:1fr 1fr; padding-top:14px; }
  .demo-stage-foot > div:nth-child(3) { display:none; }
  .demo-stage-foot .button { grid-column:1/-1; }
  .portfolio-grid { grid-template-columns:1fr; }
  .portfolio-preview,.portfolio-card-large .portfolio-preview,.portfolio-card-wide .portfolio-preview { min-height:330px; }
  .portfolio-card-large .concept-copy h3,.portfolio-card-wide .concept-copy h3 { font-size:37px; }
  .portfolio-filter { flex-wrap:nowrap; overflow-x:auto; padding-bottom:5px; }
  .portfolio-filter button { flex:0 0 auto; }
}

/* ===== Final realistic demo + portfolio refinement ===== */
.hero {
  min-height: 680px;
  padding-top: 118px;
  padding-bottom: 54px;
}
.hero-grid {
  grid-template-columns: .94fr 1.06fr;
  gap: 48px;
}
.hero h1 {
  max-width: 650px;
  margin: 18px 0 20px;
  font-size: clamp(48px, 5.45vw, 76px);
}
.hero-text {
  max-width: 570px;
  font-size: 18px;
  line-height: 1.52;
}
.hero-actions { margin-top: 30px; }
.hero-proof {
  margin-top: 38px;
  padding-top: 20px;
}
.hero-visual { min-height: 520px; }
.hero-demo-badge {
  top: 28px;
  left: -2px;
  z-index: 6;
}
.hero-store-card {
  width: 590px;
  max-width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  transform: none;
  position: relative;
  z-index: 2;
}
.hero-store-card:hover { transform: translateY(-4px); }
.hero-store-card > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 24px 42px rgba(18,19,23,.14));
}
.hero-store-cta {
  position: absolute;
  left: 25px;
  bottom: 24px;
  min-width: 235px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 16px;
  align-items: center;
  border: 1px solid rgba(18,19,23,.08);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(18,19,23,.12);
}
.hero-store-cta b { font-size: 12px; }
.hero-store-cta small { color: var(--muted); font-size: 9px; }
.hero-store-cta i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
}
.metric-import { left: 4px; bottom: 28px; }

/* Make the existing interactive demo feel photographic without changing its place or controls. */
.demo-home-art {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.demo-browser[data-theme="fashion"] .demo-home-art { background-image: url("assets/demo-fashion.jpg"); }
.demo-browser[data-theme="beauty"] .demo-home-art { background-image: url("assets/demo-beauty.jpg"); }
.demo-browser[data-theme="home"] .demo-home-art { background-image: url("assets/demo-home.jpg"); }
.demo-home-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(18,19,23,.08));
}
.demo-home-art::before,
.demo-home-art > i,
.demo-home-art > b,
.demo-home-art > span { display: none !important; }
.demo-screen-home { background: #f2f0eb; }
.demo-browser[data-theme="beauty"] .demo-screen-home { background: #f5e7ea; }
.demo-browser[data-theme="home"] .demo-screen-home { background: #e8e1d6; }
.demo-home-copy {
  position: relative;
  padding-left: 62px;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.8) 72%, rgba(255,255,255,0) 100%);
}
.demo-home-copy h3 { font-size: clamp(42px, 4.4vw, 64px); }

/* Realistic, deliberately different work examples. */
.portfolio-grid-real {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.work-card {
  padding: 10px;
  overflow: hidden;
  background: #fff;
}
.work-preview {
  min-height: 0;
  aspect-ratio: 1.88 / 1;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #ece9e2;
}
.work-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.work-card:hover .work-preview img { transform: scale(1.035); }
.work-status {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 26px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(18,19,23,.08);
  border-radius: 999px;
  color: #25272b;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.work-card-dark { background: #f2efe9; }
.work-card-fashion { background: #f4f2f1; }
.work-card-kids { background: #fff6ec; }
.work-card-terra { background: #eee6dc; }
.work-card-wellness { background: #eef7ec; }
.work-card .portfolio-meta { min-height: 170px; padding: 18px 8px 8px; }
.work-card .portfolio-meta > button {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(93,92,246,.3);
  text-underline-offset: 4px;
}
.work-card .portfolio-meta > button:hover { color: var(--accent); }

/* Testimonials & references */
.testimonials-section { padding: 110px 0 120px; background: #fff; }
.testimonials-section .section-heading { margin-bottom: 50px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.testimonial-card { padding: 32px; border-radius: var(--radius-md); background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; }
.testimonial-card .stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p { margin: 0 0 24px; font-size: 16px; line-height: 1.65; color: var(--ink); flex-grow: 1; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author i { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-style: normal; font-weight: 700; font-size: 15px; }
.testimonial-card .author b { display: block; font-size: 15px; }
.testimonial-card .author span { font-size: 13px; color: var(--muted); }

.references-section { padding: 110px 0 20px; background: var(--bg); }
.references-section .section-heading { margin-bottom: 42px; }
.references-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.reference-card { padding: 22px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.reference-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.reference-card a { display: flex; flex-direction: column; height: 100%; }
.reference-card b { font-size: 16px; letter-spacing: -0.02em; margin-bottom: 6px; }
.reference-card span { font-size: 13px; color: var(--muted); margin-top: auto; word-break: break-all; }
.reference-card .domain { color: var(--accent); font-weight: 600; }

@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .references-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .references-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .references-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonial-card { padding: 24px; }
  .reference-card { padding: 18px; }
}

@media (max-width: 1100px) {
  .hero { min-height: auto; padding-top: 124px; }
  .hero-grid { gap: 38px; }
  .hero-visual { min-height: 535px; }
  .hero-store-card { width: min(660px, 94vw); }
  .portfolio-grid-real { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .hero { padding-top: 112px; padding-bottom: 34px; }
  .hero h1 { font-size: clamp(46px, 11vw, 66px); }
  .hero-visual { min-height: 490px; }
  .hero-demo-badge { top: 12px; left: 8px; }
  .metric-import { bottom: 8px; }
  .demo-home-copy { padding-left: 36px; }
}

@media (max-width: 620px) {
  .hero { padding-top: 104px; }
  .hero h1 { font-size: clamp(38px, 10.4vw, 44px); }
  .hero-text { font-size: 16px; }
  .hero-proof { margin-top: 30px; }
  .hero-visual { min-height: 390px; }
  .hero-store-card { width: 100%; }
  .hero-store-card > img { border-radius: 18px; }
  .hero-store-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }
  .hero-demo-badge { display: none; }
  .metric-import { display: none; }
  .portfolio-grid-real { grid-template-columns: 1fr; }
  .work-preview { aspect-ratio: 1.82 / 1; }
  .work-card .portfolio-meta { min-height: 145px; }
  .demo-home-copy {
    padding-left: 22px;
    background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 70%, rgba(255,255,255,0) 100%);
  }
}


/* ===== Works grid (new) ===== */
.works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.work-card-new { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); transition: transform .2s, box-shadow .2s; }
.work-card-new:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.work-card-wide { grid-column: span 2; }
@media (max-width: 700px) { .work-card-wide { grid-column: span 1; } }
.work-preview-new { display: block; aspect-ratio: 4/3; overflow: hidden; }
.work-preview-new img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-meta-new { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.work-meta-new strong { font-size: 16px; }
.work-meta-new span { font-size: 13px; color: #666; }

/* ===== Form hint ===== */
.form-hint { display: block; margin-top: 6px; font-size: 12px; color: #777; line-height: 1.4; }

/* Telegram button */
.button-telegram { background: #0088cc; color: #fff; margin-top: 10px; }
.button-telegram:hover { background: #0099dd; }
