:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-muted: #f1f5fa;
    --surface-blue: #eef8ff;
    --text: #07111f;
    --text-soft: #26364c;
    --muted: #728196;
    --line: #dde8f3;
    --line-soft: rgba(221, 232, 243, 0.72);
    --blue: #0098ea;
    --blue-dark: #087bc0;
    --green: #2bae6f;
    --orange: #ef7b52;
    --dark: #152033;
    --shadow: 0 24px 70px rgba(21, 42, 70, 0.12);
    --shadow-soft: 0 14px 36px rgba(21, 42, 70, 0.08);
    --radius: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: geometricPrecision;
}

body.is-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

section {
    scroll-margin-top: 86px;
}

main {
    background:
        radial-gradient(ellipse 68% 14% at 50% 0%, rgba(0, 152, 234, 0.1), transparent 70%),
        radial-gradient(ellipse 56% 16% at 82% 31%, rgba(0, 152, 234, 0.055), transparent 72%),
        radial-gradient(ellipse 58% 15% at 18% 57%, rgba(0, 152, 234, 0.052), transparent 72%),
        radial-gradient(ellipse 62% 16% at 84% 77%, rgba(0, 152, 234, 0.045), transparent 74%),
        linear-gradient(180deg, #eef8ff 0%, #ffffff 18%, #f7fbff 34%, #ffffff 52%, #f4f9fd 72%, #ffffff 100%);
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: 72px;
    border-bottom: 1px solid rgba(221, 232, 243, 0.72);
    background: rgba(247, 249, 252, 0.86);
    backdrop-filter: blur(22px);
}

.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(var(--container), calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.logo__mark {
    display: block;
    width: 34px;
    height: auto;
    flex: 0 0 auto;
}

.logo__name {
    font-size: 18px;
}

.nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    justify-self: center;
    min-height: 44px;
    padding: 5px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.nav a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
    background: var(--surface-blue);
    color: var(--blue-dark);
}

.nav__mobile-actions {
    display: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switch {
    position: relative;
    display: inline-flex;
}

.language-switch__button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-soft);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(21, 42, 70, 0.06);
}

.language-switch__button:hover,
.language-switch__button:focus-visible,
.language-switch.is-open .language-switch__button {
    border-color: rgba(0, 152, 234, 0.28);
    background: var(--surface-blue);
    color: var(--blue-dark);
    outline: 0;
}

.language-switch__button svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.3;
}

.language-switch img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(7, 17, 31, 0.08);
}

.language-switch__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 70;
    display: grid;
    gap: 4px;
    min-width: 178px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.language-switch.is-open .language-switch__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switch__menu button {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.language-switch__menu button:hover,
.language-switch__menu button:focus-visible,
.language-switch__menu button.is-active {
    background: var(--surface-blue);
    color: var(--blue-dark);
    outline: 0;
}

.language-switch--mobile {
    width: 100%;
}

.language-switch--mobile .language-switch__button {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
    box-shadow: none;
}

.language-switch--mobile .language-switch__menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.language-switch--mobile.is-open .language-switch__menu {
    display: grid;
}

.header__link {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.header__link:hover,
.header__link:focus-visible {
    color: var(--blue-dark);
}

.header__button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 152, 234, 0.22);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible,
.header__button:hover,
.header__button:focus-visible {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 152, 234, 0.24);
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: rgba(0, 152, 234, 0.35);
    background: var(--surface-blue);
    color: var(--blue-dark);
    box-shadow: none;
}

.menu-button {
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    appearance: none;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.menu-button::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 99px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.hero {
    padding: 126px 0 82px;
    background:
        linear-gradient(180deg, rgba(238, 248, 255, 0.78) 0%, rgba(247, 249, 252, 0.24) 42%, rgba(255, 255, 255, 0) 100%);
}

.hero__inner {
    display: grid;
    gap: 28px;
    justify-items: center;
}

.hero__copy {
    width: min(100%, 850px);
    max-width: 850px;
    min-width: 0;
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
}

.hero h1,
.section-head h2,
.inside-copy h2,
.lead__box h2 {
    margin: 0;
    color: var(--text);
    font-weight: 800;
    line-height: 1.04;
}

.hero h1 {
    font-size: 64px;
    overflow-wrap: anywhere;
}

.hero__lead {
    width: min(100%, 690px);
    max-width: 690px;
    margin: 22px auto 0;
    color: var(--text-soft);
    font-size: 20px;
    line-height: 1.6;
}

.hero__actions,
.pricing__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.hero__note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 800;
}

.hero__note svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--blue);
    stroke-width: 2.4;
}

.hero__note span {
    min-width: 0;
}

.hero-window {
    --tg-bg: #f4f4f7;
    --tg-surface: #ffffff;
    --tg-border: #e7e7ec;
    --tg-separator: #ececf1;
    --tg-text: #11181f;
    --tg-muted: #8e8e93;
    --tg-accent: #0098ea;
    --tg-accent-dark: #087bc0;
    width: min(1060px, calc(100% - 64px));
    margin-top: 18px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(205, 218, 232, 0.9);
    border-radius: 30px;
    background: #f8fafc;
    box-shadow: 0 34px 92px rgba(21, 42, 70, 0.14);
}

.hero-window__bar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(221, 232, 243, 0.9);
    background: rgba(255, 255, 255, 0.86);
}

.hero-window__controls {
    display: flex;
    gap: 8px;
}

.hero-window__controls i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e66b5f;
}

.hero-window__controls i:nth-child(2) {
    background: #e7bd4f;
}

.hero-window__controls i:nth-child(3) {
    background: #61bd72;
}

.hero-window__bar strong {
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}

.hero-window__today {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.hero-window__body {
    height: clamp(560px, 42vw, 600px);
    padding: 0;
    background: var(--tg-bg);
}

.product-stage {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: #f8f9fc;
    box-shadow: none;
}

.stage-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.75);
}

.stage-bar strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.stage-bar em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.stage-dots {
    display: flex;
    gap: 7px;
}

.stage-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b5f;
}

.stage-dots span:nth-child(2) {
    background: #f6c85f;
}

.stage-dots span:nth-child(3) {
    background: #42c079;
}

.stage-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.tgui-panel,
.workspace-panel,
.mode-card,
.role-matrix,
.seo-panel,
.price-list article,
.price-card,
.faq-list details,
.lead__box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.tgui-panel {
    padding: 16px;
    background: #f7f9fc;
}

.mini-head,
.workspace-top,
.focus-card,
.workspace-bottom,
.phone-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mini-head span,
.workspace-top span,
.workspace-bottom span,
.phone-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.mini-head b,
.workspace-top strong {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--surface-blue);
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.mini-segment {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 16px 0;
    padding: 4px;
    border-radius: 999px;
    background: #e8eef6;
}

.mini-segment span {
    display: grid;
    place-items: center;
    min-height: 34px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.mini-segment .is-active {
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 8px 18px rgba(21, 42, 70, 0.08);
}

.mini-list {
    display: grid;
    gap: 10px;
}

.mini-list article,
.role-list article,
.phone-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.mini-icon,
.scenario-icon,
.mode-icon,
.icon-surface {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--surface-blue);
    color: var(--blue);
}

.mini-icon svg,
.scenario-icon svg,
.mode-icon svg,
.icon-surface svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

.mini-icon--green,
.scenario-icon--green,
.icon-surface--green {
    background: #eaf8f1;
    color: var(--green);
}

.mini-icon--orange {
    background: #fff1eb;
    color: var(--orange);
}

.mini-list b,
.role-list b,
.phone-list span {
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.mini-list p,
.role-list p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.mini-list em {
    color: var(--blue-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.workspace-panel {
    padding: 22px;
}

.workspace-top h2 {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 30px;
    line-height: 1.15;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.metric-row article {
    min-height: 102px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fbfdff;
}

.metric-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.metric-row b {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 32px;
    line-height: 1;
}

.focus-card {
    margin-top: 12px;
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--dark);
    color: #ffffff;
}

.focus-card div {
    position: relative;
    padding-left: 20px;
}

.status-dot {
    position: absolute;
    top: 8px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

.focus-card b {
    font-size: 17px;
}

.focus-card p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.focus-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.workspace-bottom {
    margin-top: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fbfdff;
}

.workspace-bottom b {
    display: block;
    margin-top: 6px;
    font-size: 30px;
    line-height: 1;
}

.bars {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    width: min(320px, 48%);
    height: 82px;
}

.bars i {
    height: var(--bar);
    min-height: 20px;
    border-radius: 10px 10px 0 0;
    background: var(--blue);
}

.bars i:nth-child(2n) {
    background: var(--green);
}

.bars i:nth-child(3n) {
    background: var(--orange);
}

.app-sidebar {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 16px 12px;
    border-right: 1px solid rgba(17, 24, 31, 0.06);
    background: #f8f9fc;
}

.hero-window .app-sidebar {
    gap: 12px;
    min-height: 0;
    padding: 14px 10px;
}

.hero-window .app-sidebar__current,
.hero-window .app-sidebar__access {
    padding: 13px;
}

.hero-window .app-sidebar__list span {
    min-height: 44px;
}

.hero-window .app-sidebar__section:nth-child(3) {
    display: none;
}

.app-sidebar__section {
    display: grid;
    gap: 8px;
}

.app-sidebar__title,
.app-section-title {
    color: #8e8e93;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-sidebar__title {
    padding: 0 14px;
}

.app-sidebar__current,
.app-sidebar__list,
.app-sidebar__access,
.app-metrics,
.app-section,
.app-order-card {
    border: 1px solid #e7e7ec;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
}

.app-sidebar__current,
.app-sidebar__access {
    padding: 15px;
}

.app-sidebar__current span,
.app-sidebar__access span {
    color: #8e8e93;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.app-sidebar__current strong {
    display: block;
    margin-top: 6px;
    color: #11181f;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.3;
}

.app-sidebar__list {
    display: grid;
}

.app-sidebar__list span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    color: #11181f;
    border-top: 1px solid #ececf1;
}

.app-sidebar__list span:first-child {
    border-top: 0;
}

.app-sidebar__list span.is-active {
    background: #eef6fd;
    color: var(--blue);
}

.app-sidebar__list i,
.app-search i,
.app-order-card p i,
.app-action i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.app-sidebar__list svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.15;
}

.app-sidebar__list b {
    min-width: 0;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
}

.app-sidebar__access {
    display: grid;
    gap: 10px;
}

.app-sidebar__access div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.app-sidebar__access b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e8f6ee;
    color: #1f8a4c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.app-sidebar__access p {
    margin: 0;
    color: #8e8e93;
    font-size: 12px;
    line-height: 1.45;
}

.app-main {
    min-width: 0;
    padding: 18px;
}

.hero-window .app-main {
    min-height: 0;
    padding: 16px;
    overflow: hidden;
}

.hero-window .app-topbar {
    margin-bottom: 12px;
}

.hero-window .app-topbar h2 {
    font-size: 28px;
}

.app-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.app-topbar > div > span {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.app-topbar h2 {
    margin: 3px 0 0;
    color: #11181f;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.08;
}

.app-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 11px;
    background: var(--blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.app-action svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.6;
}

.app-action span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.app-layout {
    display: grid;
    grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.hero-window .app-layout {
    gap: 14px;
}

.app-overview,
.app-content {
    display: grid;
    gap: 12px;
    min-height: 0;
}

.app-metrics {
    display: grid;
}

.app-metrics article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    padding: 11px 14px;
    border-top: 1px solid #ececf1;
}

.app-metrics article:first-child {
    border-top: 0;
}

.app-metrics span {
    color: #6d7787;
    font-size: 12px;
    font-weight: 600;
}

.app-metrics b {
    color: #11181f;
    font-size: 16px;
    font-weight: 800;
}

.app-section {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.hero-window .app-section {
    padding: 12px;
}

.app-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.app-section__head em {
    color: #8e8e93;
    font-size: 12px;
    font-style: normal;
    font-weight: 650;
}

.app-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 7px 0 12px;
    border: 1px solid #e7e7ec;
    border-radius: 14px;
    background: #f8f8fb;
}

.app-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.app-search svg {
    width: 17px;
    height: 17px;
    color: #8e8e93;
}

.app-search span {
    min-width: 0;
    color: #8e8e93;
    font-size: 13px;
    font-weight: 600;
}

.app-search button {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #e7e7ec;
    border-radius: 10px;
    background: #ffffff;
    color: var(--blue-dark);
    font: inherit;
    font-size: 12px;
    font-weight: 750;
}

.app-orders {
    display: grid;
    gap: 10px;
}

.hero-window .app-order-card:nth-child(n + 3) {
    display: none;
}

.app-order-card {
    display: grid;
}

.app-order-card__main {
    display: grid;
    gap: 7px;
    padding: 13px 14px 10px;
}

.hero-window .app-order-card__main {
    padding: 11px 12px 9px;
}

.app-order-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.app-order-card h3 {
    margin: 0;
    color: #11181f;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.app-badge--warning {
    background: #fff3db;
    color: #b26a00;
}

.app-badge--active {
    background: #e8f6ee;
    color: #1f8a4c;
}

.app-badge--inactive {
    background: #f1f2f5;
    color: #6b7280;
}

.app-order-card p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #8e8e93;
    font-size: 12px;
    line-height: 1.35;
}

.app-order-card p svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
}

.app-order-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #ececf1;
    background: #fafbfd;
}

.app-order-card__stats span {
    display: grid;
    gap: 4px;
    min-height: 58px;
    padding: 10px;
    border-left: 1px solid #ececf1;
}

.hero-window .app-order-card__stats span {
    min-height: 52px;
    padding: 8px 10px;
}

.app-order-card__stats span:first-child {
    border-left: 0;
}

.app-order-card__stats b {
    color: #8e8e93;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.app-order-card__stats strong {
    color: #11181f;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.25;
}

.app-order-card > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-top: 1px solid #ececf1;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.hero-window .app-order-card > a {
    display: none;
}

.hero-window .product-stage {
    grid-template-columns: minmax(200px, 230px) minmax(0, 1fr);
    border: 0;
    border-radius: 0;
    background: var(--tg-bg);
    box-shadow: none;
}

.hero-window .app-sidebar {
    display: grid;
    padding: 20px 14px;
    border-right-color: var(--tg-separator);
    background: #f4f4f7;
}

.hero-window .app-main {
    padding: 20px;
    background: var(--tg-bg);
}

.hero-window .app-topbar {
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.hero-window .app-topbar > div > span {
    display: none;
}

.hero-window .app-topbar h2 {
    margin: 0;
    color: var(--tg-text);
    font-size: clamp(25px, 2.15vw, 30px);
    font-weight: 700;
    letter-spacing: -0.028em;
}

.hero-window .app-action {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--tg-accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-window .app-action:hover,
.hero-window .app-action:focus-visible {
    background: var(--tg-accent-dark);
    color: #ffffff;
}

.hero-window .app-layout {
    grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
    gap: 16px;
}

.hero-window .app-overview,
.hero-window .app-content {
    gap: 12px;
}

.hero-window .app-section-title {
    padding: 0 14px;
    color: var(--tg-muted);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.08em;
}

.hero-window .app-metrics {
    border-color: var(--tg-border);
    border-radius: 18px;
    background: var(--tg-surface);
}

.hero-window .app-metrics article {
    min-height: 52px;
    padding: 12px 16px;
    border-top-color: var(--tg-separator);
}

.hero-window .app-metrics span {
    color: #6d7787;
    font-size: 13px;
    font-weight: 500;
}

.hero-window .app-metrics b {
    color: var(--tg-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-window .app-section {
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.hero-window .app-section__head {
    padding: 0 14px;
}

.hero-window .app-search {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 0;
    padding: 10px;
    border-color: var(--tg-border);
    border-radius: 18px;
    background: var(--tg-surface);
}

.hero-window .app-search__field {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--tg-border);
    border-radius: 14px;
    background: #f8f8fb;
}

.hero-window .app-search svg {
    width: 18px;
    height: 18px;
    color: var(--tg-muted);
}

.hero-window .app-search span {
    color: #8e8e93;
    font-size: 15px;
    font-weight: 500;
}

.hero-window .app-search button {
    min-height: 42px;
    padding: 0 14px;
    border-color: var(--tg-border);
    border-radius: 12px;
    background: var(--tg-surface);
    color: var(--tg-accent);
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-window .app-search button:hover,
.hero-window .app-search button:focus-visible {
    background: #f8f8fb;
    color: var(--tg-accent-dark);
}

.hero-window .app-orders {
    gap: 8px;
}

.hero-window .app-order-card {
    border-color: var(--tg-border);
    border-radius: 18px;
    background: var(--tg-surface);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-window .app-order-card:hover,
.hero-window .app-order-card:focus-within {
    background: #f8f8fb;
}

.hero-window .app-order-card__main {
    gap: 5px;
    padding: 10px 14px 7px;
    transition: background-color 0.2s ease;
}

.hero-window .app-order-card__head {
    align-items: center;
}

.hero-window .app-order-card h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-window .app-order-card p {
    color: var(--tg-muted);
    font-size: 12px;
}

.hero-window .app-order-card p svg {
    width: 14px;
    height: 14px;
    color: #a4adbb;
}

.hero-window .app-order-card__stats {
    border-top-color: var(--tg-separator);
    background: #fafbfd;
}

.hero-window .app-order-card__stats span {
    min-height: 46px;
    padding: 7px 12px;
    border-left-color: var(--tg-separator);
}

.hero-window .app-order-card__stats b {
    color: var(--tg-muted);
    font-size: 11px;
    font-weight: 650;
}

.hero-window .app-order-card__stats strong {
    color: var(--tg-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-window .app-order-card > a {
    display: flex;
    min-height: 34px;
    background: #fcfcfe;
    color: var(--tg-accent);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-window .app-order-card > a:hover,
.hero-window .app-order-card > a:focus-visible {
    background: #f3f5f9;
    color: var(--tg-accent-dark);
}

.value,
.scenarios,
.inside,
.seo-block,
.pricing,
.faq,
.lead {
    position: relative;
    padding: 86px 0;
}

.value::before,
.scenarios::before,
.inside::before,
.seo-block::before,
.pricing::before,
.faq::before,
.lead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(var(--container), calc(100% - 48px));
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(126, 158, 194, 0.24) 18%, rgba(0, 152, 234, 0.18) 50%, rgba(126, 158, 194, 0.24) 82%, transparent 100%);
    transform: translateX(-50%);
}

.value::after,
.scenarios::after,
.inside::after,
.seo-block::after,
.pricing::after,
.faq::after,
.lead::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: min(860px, calc(100% - 48px));
    height: 92px;
    background: radial-gradient(ellipse at center top, rgba(0, 152, 234, 0.055), transparent 70%);
    pointer-events: none;
    transform: translateX(-50%);
}

.value > .container,
.scenarios > .container,
.inside > .container,
.seo-block > .container,
.pricing > .container,
.faq > .container,
.lead > .container {
    position: relative;
    z-index: 1;
}

.value,
.inside,
.pricing,
.faq {
    background: var(--surface);
}

.scenarios,
.lead {
    background: var(--surface-muted);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head--center {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head h2,
.inside-copy h2,
.lead__box h2 {
    font-size: 44px;
}

.section-head p:not(.eyebrow),
.inside-copy p,
.lead__box p {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

.value-intro {
    max-width: 790px;
    margin: 0 auto 36px;
    text-align: center;
}

.value-intro h2 {
    margin: 0;
    color: var(--text);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
}

.value-intro p {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

.workflow-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.workflow-table__header,
.workflow-table article {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: center;
}

.workflow-table__header {
    min-height: 50px;
    padding: 0 24px;
    background: var(--surface-muted);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.workflow-table article {
    min-height: 118px;
    padding: 22px 24px;
    border-top: 1px solid var(--line);
}

.workflow-table__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.workflow-table__title span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--surface-blue);
    color: var(--blue);
}

.workflow-table article:nth-child(3) .workflow-table__title span {
    background: #eaf8f1;
    color: var(--green);
}

.workflow-table article:nth-child(4) .workflow-table__title span {
    background: #edf1f6;
    color: var(--dark);
}

.workflow-table__title svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

.workflow-table__title b {
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

.workflow-table p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.55;
}

.workflow-table strong {
    color: var(--text);
    font-weight: 800;
}

.value-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(760px, 100%);
    margin: 24px auto 0;
    padding: 14px 16px;
    border: 1px solid rgba(0, 152, 234, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(21, 42, 70, 0.08);
}

.value-summary span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--surface-blue);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.value-summary p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
}

.scenario-intro {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.scenario-intro h2 {
    margin: 0;
    color: var(--text);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
}

.scenario-intro p {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

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

.mode-card {
    display: grid;
    gap: 22px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.mode-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mode-card__top p {
    margin: 0 0 5px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.mode-card__top h3 {
    margin: 0;
    color: var(--text);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.12;
}

.mode-card--green .mode-icon {
    background: #eaf8f1;
    color: var(--green);
}

.mode-card__text {
    max-width: 560px;
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.65;
}

.mode-flow {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--surface-muted);
}

.mode-flow span {
    display: grid;
    place-items: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.mode-flow i {
    display: block;
    height: 2px;
    min-width: 20px;
    border-radius: 999px;
    background: rgba(0, 152, 234, 0.28);
}

.mode-card--green .mode-flow i {
    background: rgba(43, 174, 111, 0.28);
}

.mode-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mode-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--surface-blue);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.mode-card--green .mode-points span {
    background: #eaf8f1;
    color: #188653;
}

.inside__grid,
.pricing__grid,
.faq__grid,
.lead__box {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.inside-preview {
    display: grid;
    justify-items: center;
}

.inside-intro {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.inside-intro h2 {
    margin: 0;
    color: var(--text);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
}

.inside-intro p {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

.role-matrix {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.role-matrix__header,
.role-matrix article {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) minmax(0, 1.18fr);
    gap: 22px;
    align-items: center;
}

.role-matrix__header {
    min-height: 50px;
    padding: 0 24px;
    background: var(--surface-muted);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.role-matrix article {
    min-height: 104px;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
}

.role-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.role-name span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--surface-blue);
    color: var(--blue);
}

.role-name svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.2;
}

.role-name b,
.role-name em {
    display: block;
}

.role-name b {
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

.role-name em {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.role-matrix p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.55;
}

.role-matrix strong {
    color: var(--text);
    font-weight: 800;
}

.inside-phone {
    width: min(360px, 100%);
    padding: 16px;
    box-shadow: var(--shadow);
}

.phone-head {
    min-height: 42px;
    padding: 0 4px 12px;
}

.phone-head b {
    font-size: 16px;
}

.phone-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eaf8f1;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.phone-card {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--blue);
    color: #ffffff;
}

.phone-card span,
.phone-card p {
    color: rgba(255, 255, 255, 0.74);
}

.phone-card b {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.12;
}

.phone-card p {
    margin: 8px 0 0;
    font-size: 14px;
}

.phone-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.phone-list article {
    background: var(--surface-muted);
}

.phone-list svg,
.role-list svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
    stroke-width: 2.2;
}

.phone-list b {
    color: var(--text);
    font-size: 18px;
}

.role-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.role-list article {
    min-height: 84px;
    border: 1px solid var(--line);
}

.seo-block {
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 152, 234, 0.1), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}

.seo-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.seo-panel__copy {
    max-width: 560px;
}

.seo-panel__copy h2 {
    margin: 0;
    color: var(--text);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.06;
}

.seo-panel__copy p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.seo-points {
    display: grid;
    gap: 12px;
    padding-right: 0;
}

.seo-points article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.seo-points span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--surface-blue);
    color: var(--blue);
}

.seo-points svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

.seo-points b {
    display: block;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.seo-points p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.pricing {
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 152, 234, 0.08), transparent 30%),
        var(--surface);
}

.pricing__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: stretch;
}

.pricing-head {
    max-width: 820px;
}

.pricing-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.08;
}

.pricing-head p:not(.eyebrow) {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    padding: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--line);
}

.price-card.is-featured {
    border-color: rgba(0, 152, 234, 0.42);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 54px rgba(21, 42, 70, 0.11);
}

.price-card.is-featured::before {
    background: var(--blue);
}

.price-card__header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    min-height: 78px;
}

.price-card__header span {
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.price-card__header p {
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.price-card__header b {
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.price-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
    min-height: 72px;
    margin-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
}

.price-card__price strong {
    color: var(--text);
    max-width: 100%;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.02;
    overflow-wrap: anywhere;
}

.price-card__price em {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.price-card__note {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.price-card ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.35;
}

.price-card li svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: var(--blue);
    stroke-width: 2.6;
}

.price-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: auto;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-blue);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.price-card.is-featured a {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 152, 234, 0.24);
}

.price-card a:hover,
.price-card a:focus-visible {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
    outline: 0;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 152, 234, 0.2);
}

.price-card.is-featured a:hover,
.price-card.is-featured a:focus-visible {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
    box-shadow: 0 20px 42px rgba(8, 123, 192, 0.28);
}

.faq {
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 152, 234, 0.07), transparent 30%),
        radial-gradient(circle at 18% 100%, rgba(0, 152, 234, 0.055), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 58%, #f4f9fd 100%);
}

.faq__grid {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: 52px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 104px;
    max-width: 440px;
}

.faq-intro h2 {
    margin: 0;
    color: var(--text);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.08;
}

.faq-intro > p {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.faq-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.faq-note span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--surface-blue);
    color: var(--blue);
}

.faq-note svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.2;
}

.faq-note b {
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

.faq-note p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
    border-color: rgba(0, 152, 234, 0.34);
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 0 22px;
    cursor: pointer;
    list-style: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::marker {
    content: "";
}

.faq-list summary svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--blue);
    stroke-width: 2.4;
    transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
    transform: rotate(180deg);
}

.faq-list p {
    max-width: 660px;
    margin: 0;
    padding: 0 58px 22px 22px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.lead {
    background:
        radial-gradient(circle at 18% 42%, rgba(0, 152, 234, 0.055), transparent 38%),
        linear-gradient(180deg, #f4f9fd 0%, #f8fbff 48%, #ffffff 100%);
}

main > section.value,
main > section.scenarios,
main > section.inside,
main > section.seo-block,
main > section.pricing,
main > section.faq,
main > section.lead {
    background: transparent;
}

main > .hero {
    background:
        linear-gradient(180deg, rgba(238, 248, 255, 0.78) 0%, rgba(247, 249, 252, 0.24) 42%, rgba(255, 255, 255, 0) 100%);
}

.lead__box {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.72fr);
    gap: 78px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.lead-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.lead-copy h2 {
    max-width: 640px;
    margin: 0;
    color: var(--text);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.08;
}

.lead-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.lead-checklist {
    display: grid;
    gap: 12px;
    max-width: 520px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.lead-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.lead-checklist svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    color: var(--blue);
    stroke-width: 2.7;
}

.lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.lead-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
}

.lead-meta svg {
    width: 17px;
    height: 17px;
    color: var(--blue);
    stroke-width: 2.3;
}

.lead-form {
    display: grid;
    align-content: start;
    gap: 11px;
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.lead-form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-form__head {
    margin-bottom: 4px;
}

.lead-form__head b {
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
}

.lead-form__head p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.45;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field span {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-muted);
    color: var(--text);
    font: inherit;
    font-size: 15px;
    outline: 0;
}

.lead-form input,
.lead-form select {
    min-height: 50px;
    padding: 0 15px;
}

.lead-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, #7d8fa4 50%) calc(100% - 18px) 21px / 7px 7px no-repeat,
        linear-gradient(135deg, #7d8fa4 50%, transparent 50%) calc(100% - 13px) 21px / 7px 7px no-repeat,
        var(--surface-muted);
}

.lead-form textarea {
    min-height: 92px;
    padding: 14px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(0, 152, 234, 0.12);
}

.lead-form .button {
    width: 100%;
    min-height: 50px;
    margin-top: 2px;
}

.lead-form .form-note {
    min-height: 20px;
    margin: 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.lead-form .form-note.is-error {
    color: #dc3545;
}

.footer {
    padding: 48px 0 22px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(136px, 0.62fr) minmax(166px, 0.72fr) minmax(230px, 0.86fr);
    gap: 36px;
    align-items: start;
    color: var(--muted);
    font-size: 14px;
}

.footer__brand {
    max-width: 430px;
}

.footer__brand .logo {
    margin-bottom: 18px;
}

.footer__brand .logo__mark {
    width: 42px;
}

.footer__brand .logo__name {
    font-size: 21px;
}

.footer p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.footer__nav,
.footer__actions {
    display: grid;
    gap: 9px;
    justify-items: start;
}

.footer__nav b,
.footer__actions b {
    min-width: 126px;
    margin-bottom: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.footer__nav a,
.footer__link {
    color: var(--text-soft);
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__link:hover,
.footer__link:focus-visible {
    color: var(--blue-dark);
    outline: 0;
}

.language-switch--footer {
    margin-top: 18px;
}

.language-switch--footer .language-switch__menu {
    top: auto;
    bottom: calc(100% + 8px);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(221, 232, 243, 0.82);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 1120px) {
    .hero h1 {
        font-size: 54px;
    }

    .hero-window {
        width: min(960px, 100%);
    }

    .product-stage {
        height: 100%;
    }

    .stage-grid,
    .inside__grid,
    .pricing__grid,
    .faq__grid,
    .lead__box {
        grid-template-columns: 1fr;
    }

    .inside-phone,
    .price-list,
    .price-cards,
    .faq-list,
    .lead-form {
        max-width: 760px;
    }

    .faq-intro {
        position: static;
        max-width: 760px;
    }

    .price-cards {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0 auto;
    }

    .price-card {
        min-height: auto;
    }

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

    .footer__brand {
        max-width: none;
    }
}

@media (min-width: 861px) and (max-width: 1120px) {
    .header__inner {
        gap: 14px;
    }

    .nav {
        gap: 2px;
        padding: 4px;
    }

    .nav a {
        min-height: 32px;
        padding: 0 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .header__actions {
        gap: 8px;
    }

    .header__button {
        min-height: 42px;
        padding: 0 16px;
        font-size: 13px;
    }

    .header__actions .language-switch__button {
        min-height: 36px;
        padding: 0 9px;
    }

    .value,
    .scenarios,
    .inside,
    .seo-block,
    .pricing,
    .faq,
    .lead {
        padding: 72px 0;
    }

    .section-head h2,
    .value-intro h2,
    .scenario-intro h2,
    .inside-intro h2,
    .inside-copy h2,
    .pricing-head h2,
    .faq-intro h2,
    .seo-panel__copy h2,
    .lead__box h2 {
        font-size: 40px;
    }

    .value-intro,
    .scenario-intro,
    .inside-intro,
    .pricing-head {
        margin-bottom: 30px;
    }

    .workflow-table__header,
    .workflow-table article {
        grid-template-columns: 170px minmax(0, 1fr) minmax(0, 1.08fr);
        gap: 16px;
    }

    .role-matrix__header,
    .role-matrix article {
        grid-template-columns: 190px minmax(0, 1fr) minmax(0, 1.08fr);
        gap: 16px;
    }

    .role-name,
    .workflow-table__title {
        align-items: flex-start;
    }

    .pricing__grid {
        gap: 28px;
    }
}

@media (min-width: 1000px) and (max-width: 1120px) {
    .price-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: none;
    }

    .price-card {
        padding: 20px;
    }

    .price-card__header {
        flex-direction: column;
        gap: 12px;
    }

    .price-card__header span {
        font-size: 22px;
    }

    .price-card__price strong {
        font-size: 30px;
    }
}

@media (min-width: 720px) and (max-width: 999px) {
    .price-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
    }

    .price-card[data-plan-code="enterprise"] {
        grid-column: 1 / -1;
    }
}

@media (min-width: 820px) and (max-width: 999px) {
    .price-card[data-plan-code="enterprise"] {
        display: grid;
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
        column-gap: 28px;
        align-items: stretch;
    }

    .price-card[data-plan-code="enterprise"] .price-card__header,
    .price-card[data-plan-code="enterprise"] .price-card__price,
    .price-card[data-plan-code="enterprise"] .price-card__note {
        grid-column: 1;
        align-self: start;
    }

    .price-card[data-plan-code="enterprise"] .price-card__price {
        min-height: auto;
        margin-top: 10px;
    }

    .price-card[data-plan-code="enterprise"] ul,
    .price-card[data-plan-code="enterprise"] a {
        grid-column: 2;
    }

    .price-card[data-plan-code="enterprise"] ul {
        align-content: start;
        margin: 0 0 22px;
    }

    .price-card[data-plan-code="enterprise"] a {
        align-self: end;
        width: 100%;
    }
}

@media (min-width: 900px) and (max-width: 1120px) {
    .faq__grid {
        grid-template-columns: minmax(318px, 0.72fr) minmax(0, 1fr);
        gap: 30px;
    }

    .faq-intro,
    .faq-list {
        max-width: none;
    }

    .faq-note {
        grid-template-columns: 1fr;
        align-items: start;
        margin-top: 24px;
    }

    .lead__box {
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
        gap: 38px;
        align-items: start;
    }

    .lead-form {
        max-width: none;
    }
}

@media (max-width: 980px) {
    .header__inner {
        grid-template-columns: auto auto;
        width: min(calc(100% - 32px), var(--container));
    }

    .menu-button {
        display: grid;
        justify-self: end;
    }

    .nav,
    .header__actions {
        display: none;
    }

    .nav.is-open {
        position: fixed;
        top: 72px;
        right: auto;
        bottom: 0;
        left: 50%;
        z-index: 80;
        display: grid;
        align-content: start;
        justify-content: stretch;
        justify-self: auto;
        gap: 8px;
        width: 100vw;
        max-width: none;
        height: calc(100dvh - 72px);
        padding: 18px 12px calc(18px + env(safe-area-inset-bottom));
        border: 0;
        border-radius: 0;
        background: var(--bg);
        box-shadow: none;
        overflow-y: auto;
        transform: translateX(-50%);
    }

    .nav.is-open a {
        justify-content: flex-start;
        min-height: 54px;
        padding: 0 18px;
        border-radius: 16px;
        background: #ffffff;
        font-size: 17px;
        font-weight: 800;
    }

    .nav__mobile-actions {
        display: grid;
        gap: 12px;
        margin-top: 14px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .language-switch--mobile .language-switch__button {
        min-height: 54px;
        padding: 0 18px;
        border-radius: 16px;
        background: #ffffff;
        font-size: 16px;
    }

    .language-switch--mobile .language-switch__menu {
        margin-top: 8px;
        padding: 6px;
        border-radius: 16px;
        background: #ffffff;
    }

    .nav__mobile-actions > a[data-app-link] {
        justify-content: center;
        min-height: 56px;
        background: var(--blue);
        color: #ffffff;
        box-shadow: 0 14px 32px rgba(0, 152, 234, 0.22);
    }

    .nav__mobile-actions > a[data-app-link]:hover,
    .nav__mobile-actions > a[data-app-link]:focus-visible {
        background: var(--blue-dark);
        color: #ffffff;
    }

    .mode-switch {
        grid-template-columns: 1fr;
    }

    .mode-card {
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 860px) {
    .container,
    .header__inner {
        width: min(calc(100% - 32px), var(--container));
    }

    .header__inner {
        grid-template-columns: auto auto;
    }

    .menu-button {
        display: grid;
        justify-self: end;
    }

    .nav,
    .header__actions {
        display: none;
    }

    .nav.is-open {
        position: fixed;
        top: 72px;
        right: auto;
        bottom: 0;
        left: 50%;
        z-index: 80;
        display: grid;
        align-content: start;
        justify-content: stretch;
        justify-self: auto;
        gap: 8px;
        width: 100vw;
        max-width: none;
        height: calc(100dvh - 72px);
        padding: 18px 12px calc(18px + env(safe-area-inset-bottom));
        border: 0;
        border-radius: 0;
        background: var(--bg);
        box-shadow: none;
        overflow-y: auto;
        transform: translateX(-50%);
    }

    .nav.is-open a {
        justify-content: flex-start;
        min-height: 54px;
        padding: 0 18px;
        border-radius: 16px;
        background: #ffffff;
        font-size: 17px;
        font-weight: 800;
    }

    .nav__mobile-actions {
        display: grid;
        gap: 12px;
        margin-top: 14px;
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .language-switch--mobile .language-switch__button {
        min-height: 54px;
        padding: 0 18px;
        border-radius: 16px;
        background: #ffffff;
        font-size: 16px;
    }

    .language-switch--mobile .language-switch__menu {
        margin-top: 8px;
        padding: 6px;
        border-radius: 16px;
        background: #ffffff;
    }

    .nav__mobile-actions > a[data-app-link] {
        justify-content: center;
        min-height: 56px;
        background: var(--blue);
        color: #ffffff;
        box-shadow: 0 14px 32px rgba(0, 152, 234, 0.22);
    }

    .nav__mobile-actions > a[data-app-link]:hover,
    .nav__mobile-actions > a[data-app-link]:focus-visible {
        background: var(--blue-dark);
        color: #ffffff;
    }

    .hero {
        padding: 104px 0 62px;
    }

    .hero-window {
        border-radius: 24px;
    }

    .hero-window__bar {
        min-height: 54px;
        padding: 0 16px;
    }

    .hero-window__body {
        height: auto;
        padding: 8px;
    }

    .hero-window .product-stage {
        grid-template-columns: 1fr;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-window .app-sidebar {
        display: none;
    }

    .hero-window .app-main {
        padding: 14px;
        overflow: visible;
    }

    .hero-window .app-topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hero-window .app-topbar h2 {
        font-size: 24px;
    }

    .hero-window .app-action {
        width: 100%;
    }

    .hero-window .app-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero__lead {
        font-size: 18px;
    }

    .product-stage {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .app-sidebar {
        display: none;
    }

    .app-layout {
        grid-template-columns: 1fr;
    }

    .app-metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
        padding: 1px;
        background: #ececf1;
    }

    .app-metrics article {
        display: grid;
        align-content: center;
        border-top: 0;
        background: #ffffff;
    }

    .stage-bar {
        grid-template-columns: 1fr auto;
    }

    .stage-dots {
        display: none;
    }

    .workspace-top,
    .focus-card,
    .workspace-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .bars {
        width: 100%;
    }

    .metric-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .metric-row article {
        padding: 14px 10px;
    }

    .metric-row span {
        font-size: 12px;
    }

    .metric-row b {
        font-size: 25px;
    }

    .section-head h2,
    .value-intro h2,
    .scenario-intro h2,
    .inside-intro h2,
    .inside-copy h2,
    .pricing-head h2,
    .faq-intro h2,
    .seo-panel__copy h2,
    .lead__box h2 {
        font-size: 34px;
    }

    .value,
    .scenarios,
    .inside,
    .seo-block,
    .pricing,
    .faq,
    .lead {
        padding: 64px 0;
    }

    .workflow-table__header {
        display: none;
    }

    .role-matrix__header {
        display: none;
    }

    .workflow-table article {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: auto;
        padding: 18px;
    }

    .role-matrix article {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: auto;
        padding: 18px;
    }

    .workflow-table p::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: var(--blue-dark);
        font-size: 12px;
        font-weight: 800;
    }

    .role-matrix p::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: var(--blue-dark);
        font-size: 12px;
        font-weight: 800;
    }

    .value-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .seo-panel__copy {
        max-width: none;
    }

    .seo-points article:nth-child(2),
    .seo-points article:nth-child(3) {
        transform: none;
    }

    .seo-points {
        padding-right: 0;
    }

    .mode-switch {
        grid-template-columns: 1fr;
    }

    .price-list article {
        grid-template-columns: 1fr auto;
    }

    .price-list p {
        grid-column: 1 / -1;
        order: 3;
    }

    .price-card__header {
        min-height: auto;
    }
}

@media (min-width: 720px) and (max-width: 860px) {
    .hero {
        padding: 104px 0 58px;
    }

    .hero h1 {
        max-width: 760px;
        font-size: clamp(44px, 6.3vw, 52px);
    }

    .hero__lead {
        max-width: 660px;
    }

    .hero-window {
        width: min(780px, 100%);
        border-radius: 26px;
    }

    .hero-window__body {
        height: 610px;
        padding: 0;
    }

    .hero-window .product-stage {
        grid-template-columns: minmax(178px, 200px) minmax(0, 1fr);
        height: 100%;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-window .app-sidebar {
        display: grid;
        gap: 10px;
        padding: 14px 10px;
    }

    .hero-window .app-sidebar__current,
    .hero-window .app-sidebar__access {
        padding: 12px;
    }

    .hero-window .app-sidebar__list span {
        min-height: 40px;
        padding: 0 12px;
    }

    .hero-window .app-sidebar__list b {
        font-size: 12px;
    }

    .hero-window .app-main {
        padding: 16px;
        overflow: hidden;
    }

    .hero-window .app-topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }

    .hero-window .app-action {
        width: 100%;
    }

    .hero-window .app-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-window .app-metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
        padding: 1px;
        background: var(--tg-separator);
    }

    .hero-window .app-metrics article {
        min-height: 58px;
        padding: 10px 12px;
        border-top: 0;
        background: var(--tg-surface);
    }

    .hero-window .app-search {
        padding: 8px;
    }

    .hero-window .app-search__field,
    .hero-window .app-search button {
        min-height: 38px;
    }

    .hero-window .app-order-card__main {
        padding: 10px 12px 8px;
    }

    .hero-window .app-order-card__stats span {
        min-height: 48px;
        padding: 7px 8px;
    }
}

@media (max-width: 560px) {
    .container,
    .header__inner {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero {
        padding: 90px 0 38px;
    }

    .hero__inner {
        gap: 22px;
    }

    .eyebrow {
        margin-bottom: 10px;
    }

    .hero h1 {
        max-width: 13ch;
        margin-inline: auto;
        font-size: 30px;
        line-height: 1.08;
    }

    .hero__lead {
        max-width: 330px;
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.58;
    }

    .hero__note {
        align-items: center;
        max-width: 330px;
        margin-top: 14px;
        line-height: 1.45;
        text-align: left;
    }

    .hero__actions,
    .pricing__actions,
    .button {
        width: 100%;
    }

    .hero__actions {
        max-width: min(330px, calc(100vw - 24px));
        margin-top: 22px;
        margin-right: auto;
        margin-left: auto;
    }

    .stage-grid,
    .workspace-panel,
    .tgui-panel {
        padding: 12px;
    }

    .product-stage {
        width: 100%;
        height: auto;
        margin-top: 0;
        border: 1px solid rgba(221, 232, 243, 0.92);
        border-radius: 20px;
        box-shadow: var(--shadow-soft);
    }

    .hero-window {
        margin-top: 6px;
    }

    .hero-window__bar {
        min-height: 50px;
        padding: 0 12px;
    }

    .hero-window__bar strong {
        font-size: 15px;
    }

    .hero-window__controls {
        gap: 6px;
    }

    .hero-window__controls i {
        width: 9px;
        height: 9px;
    }

    .hero-window__today {
        display: none;
    }

    .hero-window__body {
        height: auto;
        padding: 6px;
    }

    .hero-window .app-main {
        padding: 10px;
    }

    .hero-window .app-topbar {
        gap: 10px;
        margin-bottom: 12px;
    }

    .hero-window .app-layout {
        gap: 10px;
    }

    .hero-window .app-section-title {
        padding: 0 8px;
    }

    .hero-window .app-section__head {
        padding: 0;
    }

    .hero-window .app-section__head em {
        padding-right: 8px;
    }

    .hero-window .app-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 1px;
        background: var(--tg-separator);
    }

    .hero-window .app-metrics article {
        min-height: 66px;
        padding: 10px 12px;
        border-top: 0;
        background: var(--tg-surface);
    }

    .hero-window .app-search {
        padding: 8px;
    }

    .hero-window .app-search__field {
        min-height: 42px;
        padding: 0 12px;
    }

    .hero-window .app-order-card__main {
        padding: 12px 12px 8px;
    }

    .hero-window .app-order-card__stats span {
        min-height: 48px;
        padding: 7px 8px;
    }

    .app-main {
        padding: 12px;
    }

    .app-topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .app-topbar h2 {
        font-size: 24px;
    }

    .app-action {
        width: 100%;
    }

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

    .app-section,
    .app-order-card__main {
        padding: 12px;
    }

    .app-search {
        grid-template-columns: auto minmax(0, 1fr);
        padding-right: 12px;
    }

    .app-search button {
        display: none;
    }

    .app-order-card:nth-child(n + 2) {
        display: none;
    }

    .app-order-card__head {
        align-items: flex-start;
    }

    .app-order-card__stats span {
        min-width: 0;
        padding: 9px 8px;
    }

    .app-order-card__stats strong {
        overflow-wrap: anywhere;
    }

    .lead__box {
        padding: 0;
    }

    .seo-panel {
        padding: 0;
    }

    .stage-bar {
        padding: 0 14px;
    }

    .workspace-top h2 {
        font-size: 24px;
    }

    .mode-card,
    .mini-list article,
    .role-list article,
    .phone-list article {
        grid-template-columns: 1fr;
    }

    .value,
    .scenarios,
    .inside,
    .seo-block,
    .pricing,
    .faq,
    .lead {
        padding: 44px 0;
    }

    .value::before,
    .scenarios::before,
    .inside::before,
    .seo-block::before,
    .pricing::before,
    .faq::before,
    .lead::before {
        width: min(var(--container), calc(100% - 24px));
    }

    .value::after,
    .scenarios::after,
    .inside::after,
    .seo-block::after,
    .pricing::after,
    .faq::after,
    .lead::after {
        width: min(420px, calc(100% - 24px));
        height: 64px;
    }

    .value {
        padding-top: 38px;
    }

    .value-intro,
    .scenario-intro,
    .inside-intro,
    .pricing-head {
        margin-bottom: 24px;
    }

    .section-head p:not(.eyebrow),
    .value-intro p,
    .scenario-intro p,
    .inside-intro p,
    .pricing-head p:not(.eyebrow),
    .faq-intro > p,
    .seo-panel__copy p:not(.eyebrow),
    .lead-copy > p:not(.eyebrow) {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.62;
    }

    .workflow-table,
    .role-matrix,
    .mode-switch,
    .seo-points,
    .price-cards,
    .faq-list {
        gap: 10px;
    }

    .workflow-table article,
    .role-matrix article,
    .seo-points article,
    .price-card,
    .faq-list summary,
    .mode-card {
        min-height: auto;
        padding: 16px;
    }

    .faq-list p {
        padding: 0 16px 16px;
    }

    .faq-note {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 18px;
    }

    .price-card__header {
        flex-direction: column;
        gap: 10px;
    }

    .price-card__price strong {
        font-size: 32px;
    }

    .price-card__price {
        min-height: auto;
        margin-top: 8px;
        padding-bottom: 16px;
    }

    .price-card ul {
        gap: 10px;
        margin: 18px 0 20px;
    }

    .mode-card__top {
        align-items: flex-start;
    }

    .mode-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 10px;
    }

    .mode-flow i {
        display: none;
    }

    .mode-flow span {
        width: 100%;
        min-height: 36px;
        white-space: normal;
        text-align: center;
    }

    .section-head h2,
    .value-intro h2,
    .scenario-intro h2,
    .inside-intro h2,
    .inside-copy h2,
    .pricing-head h2,
    .faq-intro h2,
    .seo-panel__copy h2,
    .lead__box h2 {
        font-size: 28px;
    }

    .faq-list summary {
        min-height: 62px;
        font-size: 16px;
    }

    .lead-form {
        padding: 18px;
    }

    .footer {
        padding: 38px 0 20px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand .logo__mark {
        width: 38px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 30px;
    }
}
