:root {
    color-scheme: light;
    --bg: #f7f8fa;
    --bg-warm: #fbf7f1;
    --surface: #ffffff;
    --surface-soft: #fffaf3;
    --text: #17202a;
    --muted: #687381;
    --line: #e5e8ee;
    --line-strong: #d5dae3;
    --orange: #f47b20;
    --orange-dark: #d85f08;
    --amber: #f6b84b;
    --green: #24845a;
    --blue: #4078c0;
    --red: #c84638;
    --shadow: 0 18px 48px rgba(35, 42, 52, .1);
    --shadow-soft: 0 8px 28px rgba(35, 42, 52, .08);
    --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
p { color: var(--muted); }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(229, 232, 238, .84);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 20px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #151b22;
}
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #4d5865;
    font-size: 14px;
    font-weight: 650;
}
.desktop-nav a:hover, .signin:hover, .site-footer a:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.signin { color: #404a56; font-size: 14px; font-weight: 700; }
.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 3px;
    background: var(--surface);
}
.language-switcher a {
    min-width: 34px;
    border-radius: 7px;
    padding: 5px 7px;
    color: #626e7b;
    font-size: 12px;
    font-weight: 820;
    text-align: center;
}
.language-switcher a.active {
    background: #fff1e5;
    color: var(--orange-dark);
}
.language-switcher.mobile { width: fit-content; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 0 18px;
    background: var(--surface);
    color: var(--text);
    font-weight: 780;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .9);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); border-color: #cbd1dc; box-shadow: var(--shadow-soft); }
.button.primary {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 24px rgba(244, 123, 32, .2);
}
.button.primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.button.small { min-height: 40px; padding-inline: 15px; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 9px 12px;
    font-weight: 760;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 46px;
    width: 230px;
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 44px;
    min-height: calc(100vh - 68px);
    padding: 54px 0 34px;
}
.hero-copy { display: grid; gap: 22px; }
.eyebrow {
    width: fit-content;
    border: 1px solid #f4d3b7;
    border-radius: 999px;
    padding: 7px 12px;
    background: #fff4e8;
    color: #a84908;
    font-size: 13px;
    font-weight: 780;
}
.hero h1 {
    max-width: 620px;
    color: #121a23;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
}
.hero p { max-width: 560px; color: #596675; font-size: 19px; }
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: #48525e;
    font-size: 14px;
    font-weight: 680;
}
.check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.check::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: inset 0 0 0 5px #fff;
    border: 1px solid #f0c19b;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.product-visual { position: relative; padding: 24px 10px 34px; }
.desktop-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.window-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    border-bottom: 1px solid var(--line);
    padding: 0 16px;
    background: #fbfcfd;
}
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d7dce4; }
.window-dots span:nth-child(1) { background: #f2655f; }
.window-dots span:nth-child(2) { background: #f8bf43; }
.window-dots span:nth-child(3) { background: #42c779; }
.window-title { color: #596675; font-size: 13px; font-weight: 750; }
.app-layout { display: grid; grid-template-columns: 178px minmax(0, 1fr); min-height: 480px; }
.app-sidebar {
    border-right: 1px solid var(--line);
    background: #f8f9fb;
    padding: 18px 12px;
}
.app-side-item {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 6px;
    border-radius: 10px;
    padding: 10px 11px;
    color: #626e7b;
    font-size: 13px;
    font-weight: 720;
}
.app-side-item.active { background: #fff1e5; color: #9b470b; }
.app-side-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: #c5ccd6;
}
.app-side-item.active::before { background: var(--orange); }
.inventory-screen { min-width: 0; padding: 22px; }
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}
.app-header h2 { font-size: 26px; color: #151d27; }
.search-field {
    min-width: 245px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 12px;
    background: #fbfcfd;
    color: #7a8491;
    font-size: 13px;
}
.inventory-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}
.inventory-row {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.25fr .8fr .45fr .8fr;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    border-top: 1px solid var(--line);
    padding: 12px 14px;
    color: #2b3541;
    font-size: 13px;
}
.inventory-row:first-child { border-top: 0; min-height: 42px; background: #fafbfc; color: #7a8491; font-size: 12px; font-weight: 780; }
.inventory-row strong { color: #151d27; }
.status {
    width: fit-content;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 780;
}
.status.good { background: #e9f8ef; color: var(--green); }
.status.warn { background: #fff5db; color: #9b6200; }
.status.bad { background: #ffece8; color: var(--red); }
.floating-card {
    position: absolute;
    max-width: 210px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-soft);
}
.floating-card strong { display: block; margin-bottom: 4px; color: #151d27; }
.floating-card span { color: var(--muted); font-size: 13px; }
.float-low { left: -8px; top: 84px; }
.float-scan { right: -12px; bottom: 88px; }
.float-ai { left: 70px; bottom: 0; }

.trust-strip-section {
    border-block: 1px solid var(--line);
    background: var(--surface);
}
.trust-strip {
    display: grid;
    grid-template-columns: auto repeat(4, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px 0;
}
.trust-label { color: #7a8491; font-size: 13px; font-weight: 780; text-transform: uppercase; letter-spacing: .08em; }
.trust-type {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #293440;
    font-weight: 760;
}
.mono-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fafafa;
    color: #626e7b;
}

.section { padding: 92px 0; }
.section-head { display: grid; gap: 14px; max-width: 720px; margin-bottom: 28px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker { color: var(--orange-dark); font-size: 13px; font-weight: 820; text-transform: uppercase; letter-spacing: .1em; }
.section h2 { color: #141c25; font-size: clamp(34px, 4vw, 52px); line-height: 1.06; letter-spacing: 0; }
.section-head p { font-size: 18px; }
.problem-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
    align-items: center;
}
.location-card, .result-card, .workflow-panel, .pricing-card, .offline-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.location-card { padding: 22px; }
.location-stack { display: grid; gap: 10px; margin-top: 18px; }
.location-step {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    background: #fbfcfd;
    font-weight: 760;
}
.location-step span { color: var(--muted); font-weight: 650; }
.search-result-wrap { position: relative; padding: 28px; }
.connector {
    position: absolute;
    left: -18px;
    top: 50%;
    width: 52px;
    height: 2px;
    background: var(--orange);
}
.connector::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}
.result-card { padding: 22px; }
.result-card h3 { font-size: 24px; margin-bottom: 8px; }
.result-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.result-meta div { border-radius: 10px; background: #f8f9fb; padding: 12px; }
.result-meta span { display: block; color: var(--muted); font-size: 12px; }
.result-meta strong { display: block; margin-top: 4px; color: #151d27; }

.showcase {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: 46px;
    align-items: center;
}
.showcase.reverse { grid-template-columns: minmax(420px, 1fr) minmax(0, .9fr); }
.showcase.reverse .showcase-copy { order: 2; }
.showcase h2 { margin-bottom: 14px; }
.showcase-copy p { font-size: 18px; }
.workflow-panel { padding: 22px; }
.scan-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}
.flow-card {
    min-height: 112px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: #fbfcfd;
}
.flow-card strong { display: block; margin-bottom: 8px; }
.arrow { color: var(--orange); font-weight: 900; }
.barcode {
    height: 42px;
    margin-top: 10px;
    border-radius: 5px;
    background: repeating-linear-gradient(90deg, #212832 0 3px, transparent 3px 6px, #212832 6px 9px, transparent 9px 15px);
}
.low-stock-list { display: grid; gap: 10px; }
.stock-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: #fbfcfd;
}
.stock-count { color: var(--red); font-weight: 820; }
.panel-cta { margin-top: 16px; }
.ai-form { display: grid; gap: 12px; }
.input-row {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 14px;
    background: #fbfcfd;
    color: #151d27;
    font-weight: 780;
}
.suggestion-box {
    border: 1px solid #f2d5bc;
    border-radius: 12px;
    padding: 16px;
    background: #fff8f1;
}
.suggestion-box strong { display: block; margin-bottom: 8px; }
.compat-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.compat-list span {
    border: 1px solid #efd1b7;
    border-radius: 999px;
    padding: 6px 9px;
    background: #fff;
    font-size: 13px;
    font-weight: 720;
}
.confirm-note { color: #9b6200; font-weight: 780; }

.offline-section { background: var(--bg-warm); border-block: 1px solid #efe5d8; }
.offline-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 26px;
}
.offline-card { padding: 18px; text-align: center; }
.offline-card strong { display: block; color: #151d27; }
.offline-card span { color: var(--muted); font-size: 13px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 18px;
}
.pricing-card { padding: 26px; }
.pricing-card.featured { border-color: #f2c39c; box-shadow: 0 18px 50px rgba(244, 123, 32, .14); }
.plan-name { color: var(--orange-dark); font-weight: 860; letter-spacing: .08em; text-transform: uppercase; }
.price { margin: 14px 0 18px; color: #151d27; font-size: 42px; font-weight: 900; }
.price span { color: var(--muted); font-size: 18px; font-weight: 700; }
.features-list { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; color: #46515e; }
.features-list li::before { content: "✓"; margin-right: 8px; color: var(--orange); font-weight: 900; }

.final-cta {
    padding: 86px 0;
    background: #151d27;
    color: #fff;
}
.final-cta .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.final-cta h2 { max-width: 690px; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; }
.final-cta p { margin-top: 12px; color: #c2ccd7; }

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--surface);
    padding: 28px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    align-items: center;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }
.site-footer a { color: #5f6a77; font-size: 14px; font-weight: 680; }
.footer-brand span { color: #151d27; }

.download-hero {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
    gap: 42px;
    align-items: center;
    padding: 78px 0 40px;
}
.download-hero h1 { max-width: 620px; color: #151d27; font-size: clamp(44px, 5vw, 68px); line-height: 1.04; }
.download-hero p { margin-top: 16px; max-width: 560px; font-size: 18px; }
.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
}
.download-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--surface); box-shadow: var(--shadow-soft); }
.download-card h2 { margin-bottom: 12px; font-size: 28px; }
.release-box { display: grid; gap: 12px; margin-top: 22px; }
.spec { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 10px; color: #151d27; }
.spec span { color: var(--muted); }
code { border: 1px solid var(--line); border-radius: 7px; background: #fbfcfd; padding: 2px 6px; color: #333b46; }

@media (max-width: 1100px) {
    .hero, .download-hero { grid-template-columns: 1fr; min-height: auto; }
    .product-visual { padding-inline: 0; }
    .floating-card { position: static; max-width: none; margin-top: 10px; }
    .showcase, .showcase.reverse, .download-panel { grid-template-columns: 1fr; }
    .showcase.reverse .showcase-copy { order: 0; }
}
@media (max-width: 860px) {
    .desktop-nav, .nav-actions { display: none; }
    .mobile-menu { display: block; }
    .trust-strip, .offline-visual, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
    .app-layout { grid-template-columns: 1fr; }
    .app-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; border-right: 0; border-bottom: 1px solid var(--line); }
    .app-side-item { margin-bottom: 0; }
    .app-header { align-items: stretch; flex-direction: column; }
    .search-field { min-width: 0; }
    .inventory-row { grid-template-columns: 1fr 1fr; }
    .scan-flow { grid-template-columns: 1fr; }
    .arrow { transform: rotate(90deg); text-align: center; }
    .problem-layout { grid-template-columns: 1fr; }
    .connector { display: none; }
    .final-cta .shell { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
    .shell { width: calc(100% - 28px); }
    .nav { justify-content: flex-start; min-height: 64px; gap: 12px; }
    .brand img { width: 32px; height: 32px; }
    .mobile-menu { margin-left: 8px; }
    .window-title { display: none; }
    .hero-copy { width: 100%; max-width: 360px; min-width: 0; }
    .hero { padding: 42px 0 26px; }
    .hero h1, .download-hero h1 { font-size: 42px; }
    .hero p, .download-hero p, .section-head p, .showcase-copy p { font-size: 16px; }
    .hero-meta { display: grid; gap: 10px; }
    .check { min-width: 0; }
    .actions { max-width: 360px; }
    .actions .button { width: 100%; }
    .product-visual { padding-bottom: 14px; }
    .app-sidebar { grid-template-columns: 1fr; }
    .inventory-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section h2 { font-size: 34px; }
    .result-meta { grid-template-columns: 1fr; }
    .mobile-menu-panel { right: -2px; width: min(260px, calc(100vw - 28px)); }
}

/* Refined product marketing page */
.hero-v2 {
    grid-template-columns: minmax(360px, .78fr) minmax(560px, 1.22fr);
    gap: 58px;
    padding-top: 82px;
    padding-bottom: 76px;
}

.hero-v2 .hero-copy {
    position: relative;
    z-index: 2;
}

.hero-v2 h1 {
    max-width: 760px;
    letter-spacing: 0;
}

.hero-v2 p {
    max-width: 620px;
}

.hero-shot-wrap {
    position: relative;
    min-width: 0;
}

.hero-shot {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .18);
}

.hero-signal {
    position: absolute;
    display: grid;
    gap: 4px;
    max-width: 230px;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 50px rgba(15, 23, 42, .15);
    backdrop-filter: blur(14px);
}

.hero-signal strong {
    color: #101827;
    font-size: 15px;
}

.hero-signal span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.signal-stock {
    top: 16%;
    left: -28px;
}

.signal-sync {
    right: -20px;
    bottom: 13%;
}

.screenshot-section {
    padding: 70px 0 96px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading.wide {
    max-width: 880px;
}

.section-heading span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 7px 12px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 14px;
    color: #111827;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
}

.section-heading p {
    margin-top: 14px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.65;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.screenshot-card {
    display: grid;
    gap: 22px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 20px 58px rgba(15, 23, 42, .08);
}

.screenshot-card:nth-child(2),
.screenshot-card:nth-child(3) {
    background: #111827;
    border-color: #253142;
}

.screenshot-card:nth-child(2) h3,
.screenshot-card:nth-child(3) h3 {
    color: #fff;
}

.screenshot-card:nth-child(2) p,
.screenshot-card:nth-child(3) p {
    color: #aab6c7;
}

.shot-label {
    color: #ff7a1a;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.screenshot-card h3 {
    margin-top: 8px;
    color: #111827;
    font-size: 26px;
    line-height: 1.15;
}

.screenshot-card p {
    margin-top: 10px;
    color: #64748b;
    line-height: 1.6;
}

.screenshot-card img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .12);
}

.how-section {
    padding: 92px 0;
    background:
        linear-gradient(135deg, rgba(255, 122, 26, .12), transparent 32%),
        #101827;
    color: #fff;
}

.how-section .section-heading h2 {
    color: #fff;
}

.how-section .section-heading p {
    color: #b7c4d7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, .055);
}

.step-number {
    display: inline-flex;
    margin-bottom: 26px;
    color: #ffb26b;
    font-size: 14px;
    font-weight: 900;
}

.step-card h3 {
    color: #fff;
    font-size: 22px;
}

.step-card p {
    margin-top: 10px;
    color: #b7c4d7;
    line-height: 1.58;
}

.advantages-section {
    padding: 92px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.advantage-card {
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff3e8;
    color: #f97316;
    font-size: 14px;
    font-weight: 950;
}

.advantage-card h3 {
    margin-top: 20px;
    color: #111827;
    font-size: 22px;
}

.advantage-card p {
    margin-top: 10px;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .hero-v2 {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-signal {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .steps-grid,
    .advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .screenshot-grid,
    .steps-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .hero-v2 {
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .screenshot-section,
    .how-section,
    .advantages-section {
        padding: 64px 0;
    }
}
