:root {
    color-scheme: dark;
    --bg: #07090d;
    --bg-soft: #0d1117;
    --bg-elevated: rgba(18, 24, 33, 0.86);
    --panel: rgba(20, 26, 36, 0.72);
    --panel-strong: rgba(24, 31, 43, 0.94);
    --panel-highlight: rgba(255, 255, 255, 0.06);
    --ink: #f5f7fb;
    --muted: #9aa5b5;
    --muted-strong: #c4ccd8;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --accent: #0a84ff;
    --accent-soft: #5ac8fa;
    --accent-strong: #409cff;
    --danger: #ff453a;
    --success: #32d74b;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.24);
    --radius-xl: 32px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: var(--ink);
    background:
        radial-gradient(circle at 14% 18%, rgba(10, 132, 255, 0.22), transparent 0 26%),
        radial-gradient(circle at 88% 10%, rgba(90, 200, 250, 0.18), transparent 0 18%),
        radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08), transparent 0 28%),
        linear-gradient(180deg, #040507 0%, #07090d 38%, #0b1016 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
    opacity: 0.38;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

textarea,
input,
button,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 56px;
}

.topbar {
    position: sticky;
    top: 18px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(12, 16, 23, 0.78);
    backdrop-filter: blur(26px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        var(--shadow-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7dc3ff 0%, var(--accent) 45%, #003cff 100%);
    box-shadow:
        0 0 0 8px rgba(10, 132, 255, 0.12),
        0 0 30px rgba(10, 132, 255, 0.34);
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    padding: 0;
}

.nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav a {
    position: relative;
    padding: 9px 12px;
    border-radius: 999px;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease;
}

.nav .nav-cta {
    min-height: 40px;
    padding: 10px 16px;
    color: #fff;
}

.nav .nav-cta:hover {
    background: linear-gradient(180deg, #3ba0ff 0%, var(--accent-strong) 100%);
}

.nav a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.nav-link.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.nav a.nav-gift {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 10px;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, #ff6257 0%, var(--danger) 100%);
    border: 1px solid rgba(255, 69, 58, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 10px 22px rgba(255, 69, 58, 0.24);
}

.nav a.nav-gift:hover {
    color: #fff;
    background: linear-gradient(180deg, #ff786f 0%, #ff584d 100%);
    border-color: rgba(255, 69, 58, 0.62);
}

.nav a.nav-gift .nav-icon {
    opacity: 1;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.nav-telegram {
    color: #cbe9ff;
    background: rgba(10, 132, 255, 0.12);
    border: 1px solid rgba(90, 200, 250, 0.2);
}

.nav-telegram:hover {
    color: #f2f8ff;
    background: rgba(10, 132, 255, 0.2);
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    opacity: 0.9;
}

.lang-switcher {
    display: inline-flex;
    gap: 6px;
    margin: 0;
    padding-left: 6px;
    border-left: 1px solid var(--line);
}

.lang-switcher button {
    min-width: 42px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    transition:
        border-color 160ms ease,
        color 160ms ease,
        background-color 160ms ease;
}

.lang-switcher button:hover {
    border-color: var(--line-strong);
    color: var(--ink);
}

.lang-switcher button.active {
    background: linear-gradient(180deg, rgba(31, 42, 57, 0.96) 0%, rgba(20, 28, 39, 0.96) 100%);
    color: var(--ink);
    border-color: rgba(90, 200, 250, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page {
    padding-top: 30px;
}

.site-footer {
    margin-top: 26px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(12, 16, 23, 0.52);
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer a {
    color: var(--muted-strong);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.site-footer-item {
    color: var(--muted);
}

.site-footer a:hover {
    color: var(--ink);
    border-bottom-color: rgba(90, 200, 250, 0.4);
}

.hero,
.section,
.form-shell,
.detail-layout {
    margin-top: 24px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: 22px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.form-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(21, 27, 37, 0.88) 0%, rgba(14, 19, 27, 0.82) 100%);
    backdrop-filter: blur(22px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        var(--shadow);
}

.hero-copy::before,
.hero-panel::before,
.card::before,
.form-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, transparent 20%, transparent 100%);
}

.hero-copy {
    padding: 40px 42px;
}

.hero-copy h1 {
    max-width: 11.5ch;
    margin: 12px 0 16px;
    font-size: clamp(2.3rem, 5.2vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.hero-panel {
    display: grid;
    gap: 16px;
    padding: 20px;
    background:
        radial-gradient(circle at top right, rgba(90, 200, 250, 0.28), transparent 30%),
        linear-gradient(180deg, rgba(14, 21, 31, 0.96) 0%, rgba(8, 13, 21, 0.98) 100%);
}

.hero-panel-card,
.hero-proof {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
}

.hero-panel-card h2 {
    margin: 8px 0 14px;
    font-size: 1.3rem;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.support-card {
    background:
        radial-gradient(circle at top right, rgba(10, 132, 255, 0.14), transparent 38%),
        rgba(255, 255, 255, 0.045);
}

.support-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(10, 132, 255, 0.14);
    border: 1px solid rgba(90, 200, 250, 0.22);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-panel-grid {
    display: grid;
    gap: 10px;
}

.metric {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
}

.metric span,
.hero-panel .metric strong {
    display: block;
}

.metric span,
.eyebrow,
.muted {
    color: var(--muted);
}

.hero-panel .metric strong {
    margin-top: 4px;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.lead {
    max-width: 56ch;
    color: var(--muted-strong);
    font-size: 1rem;
    line-height: 1.68;
}

.hero-proof {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.proof-item strong,
.proof-item span {
    display: block;
}

.proof-item strong {
    color: var(--ink);
    letter-spacing: -0.03em;
}

.proof-item span {
    margin-top: 4px;
    color: var(--muted);
}

.actions,
.price-line,
.section-head,
.list-row,
.nav,
.client-cloud,
.steps {
    display: flex;
}

.actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition:
        transform 180ms ease,
        opacity 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(180deg, #2f95ff 0%, var(--accent) 100%);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 30px rgba(10, 132, 255, 0.28);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line);
    color: var(--ink);
}

.button.ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--muted-strong);
}

.button.danger {
    background: linear-gradient(180deg, #ff6257 0%, var(--danger) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 69, 58, 0.22);
}

.section-head {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-head h1,
.section-head h2,
.card h2,
.card h3 {
    margin: 0;
    letter-spacing: -0.04em;
    margin-top: 10px;
}

.section-head h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.section-head a {
    color: var(--accent-soft);
}

.grid {
    display: grid;
    gap: 18px;
}

.faq-layout,
.faq-grid {
    display: grid;
    gap: 18px;
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-intro-card {
    background:
        radial-gradient(circle at top right, rgba(10, 132, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(20, 28, 40, 0.96) 0%, rgba(13, 19, 29, 0.98) 100%);
}

.faq-intro-card h2,
.faq-item h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.faq-item p:last-child,
.page-content-card p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.7;
}

.page-content-card {
    display: grid;
    gap: 14px;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.two-up {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    padding: 24px;
}

.card.empty {
    opacity: 0.82;
}

.spotlight {
    background:
        radial-gradient(circle at top right, rgba(10, 132, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(20, 28, 40, 0.96) 0%, rgba(13, 19, 29, 0.98) 100%);
}

.price-line {
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 5px 0;
}

.price-line strong {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.price-per-device-note {
    margin: 0 0 10px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.feature-list,
.steps {
    flex-direction: column;
    gap: 10px;
    padding-left: 18px;
    color: var(--muted-strong);
}

.feature-list li::marker,
.steps li::marker {
    color: var(--accent-soft);
}

.client-cloud {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.chip {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted-strong);
}

.chip strong {
    color: var(--ink);
}

.client-cloud-item,
.client-directory-card {
    position: relative;
}

.client-cloud-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.client-cloud-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.client-cloud-copy strong {
    color: var(--ink);
    letter-spacing: -0.03em;
}

.client-cloud-copy span {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.app-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 0 35%),
        linear-gradient(180deg, rgba(75, 118, 255, 0.95) 0%, rgba(10, 132, 255, 0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 16px 28px rgba(10, 132, 255, 0.18);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.app-icon.large {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    font-size: 1.05rem;
}

.client-card-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 16px;
}

.client-card-head p {
    margin: 6px 0 0;
}

.client-platform-pills {
    margin-bottom: 12px;
}

.client-platform-actions .button {
    min-height: 42px;
}

.form-shell {
    width: min(100%, 760px);
    margin-inline: auto;
    padding: 30px;
}

.form-shell.narrow {
    max-width: 540px;
}

.auth-shell {
    display: grid;
    gap: 20px;
}

.oauth-separator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 0;
    color: var(--muted);
}

.oauth-separator::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    border-top: 1px solid var(--line);
    transform: translateY(-50%);
}

.oauth-separator span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 0 8px;
    background: rgba(19, 26, 37, 0.95);
    color: var(--muted);
}

.oauth-panel {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.oauth-panel > .button {
    width: min(100%, 360px);
    justify-self: center;
    justify-content: center;
}

.oauth-google-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.oauth-google-button > div {
    max-width: 360px;
}

.oauth-google-button iframe {
    margin: 0 auto;
}

.oauth-telegram-button {
    min-height: 44px;
}

.oauth-panel > .oauth-route-button {
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border-color: rgba(34, 158, 217, 0.72);
    background: linear-gradient(180deg, #2aabee 0%, #229ed9 100%);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 14px 24px rgba(34, 158, 217, 0.28);
}

.oauth-panel > .oauth-route-button:hover {
    border-color: rgba(42, 171, 238, 0.9);
    background: linear-gradient(180deg, #3bb6f4 0%, #2aabee 100%);
    color: #fff;
}

.oauth-route-icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #fff;
}

.oauth-route-icon svg {
    width: 16px;
    height: 16px;
}

.oauth-route-copy {
    display: grid;
    gap: 0;
}

.oauth-route-copy strong {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.telegram-login-panel {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(10, 132, 255, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.035);
}

.telegram-login-copy h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    letter-spacing: -0.05em;
}

.telegram-login-copy p {
    margin: 0;
}

.telegram-widget-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 50px;
}

.hidden-auth-form {
    display: none;
}

.stack {
    display: grid;
    gap: 14px;
}

.promo-form {
    margin-top: 18px;
}

.promo-field {
    display: grid;
    gap: 10px;
}

.promo-field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.promo-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.promo-plan-option {
    position: relative;
    display: block;
}

.promo-plan-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.promo-plan-card {
    display: grid;
    gap: 10px;
    min-height: 116px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.promo-plan-option:hover .promo-plan-card {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.05);
}

.promo-plan-option input:checked + .promo-plan-card {
    border-color: rgba(90, 200, 250, 0.28);
    background:
        radial-gradient(circle at top right, rgba(90, 200, 250, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 4px rgba(10, 132, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.promo-plan-option input:focus-visible + .promo-plan-card {
    border-color: rgba(10, 132, 255, 0.48);
    box-shadow:
        0 0 0 4px rgba(10, 132, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.promo-plan-top,
.promo-plan-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.promo-plan-top {
    align-items: flex-start;
}

.promo-plan-top strong {
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.promo-plan-meta {
    margin-top: auto;
    color: var(--muted);
    font-size: 0.92rem;
}

.promo-plan-price {
    display: grid;
    justify-items: end;
    gap: 2px;
}

.promo-plan-per-device {
    font-size: 0.82rem;
    line-height: 1.3;
}

.promo-field-error {
    margin: 0;
    color: #ffb4ad;
    font-size: 0.9rem;
}

.promo-submit {
    width: 100%;
}

form p {
    display: grid;
    gap: 8px;
    margin: 0;
}

label {
    color: var(--muted-strong);
    font-size: 0.95rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(154, 165, 181, 0.76);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(10, 132, 255, 0.48);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 0 4px rgba(10, 132, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

.checkout-pay-button {
    display: inline-flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.checkout-pay-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    flex: 0 0 28px;
}

.checkout-pay-icon svg {
    width: 18px;
    height: 18px;
}

.checkout-pay-icon-image {
    display: block;
    width: 18px;
    height: 18px;
}

.checkout-pay-label {
    line-height: 1.1;
    text-align: left;
}

.checkout-pay-button:hover {
    transform: translateY(-1px);
}

.checkout-pay-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.16);
}

.checkout-pay-button-card {
    border-color: rgba(90, 200, 250, 0.28);
    background: linear-gradient(180deg, rgba(43, 143, 255, 0.24) 0%, rgba(10, 132, 255, 0.18) 100%);
}

.checkout-pay-button-card:hover {
    border-color: rgba(90, 200, 250, 0.42);
    box-shadow: 0 16px 26px rgba(10, 132, 255, 0.22);
}

.checkout-pay-button-card .checkout-pay-icon svg .outline {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.checkout-pay-button-card .checkout-pay-icon svg .chip {
    fill: currentColor;
}

.checkout-pay-button-sbp {
    border-color: rgba(50, 215, 75, 0.26);
    background: linear-gradient(180deg, rgba(50, 215, 75, 0.2) 0%, rgba(35, 178, 61, 0.16) 100%);
}

.checkout-pay-button-sbp:hover {
    border-color: rgba(95, 235, 116, 0.42);
    box-shadow: 0 16px 26px rgba(50, 215, 75, 0.2);
}

.checkout-pay-button-sbp .checkout-pay-icon {
    background: #fff;
}

.checkout-pay-icon-image-sbp {
    width: 20px;
    height: 20px;
}

.detail-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
}

.checkout-status-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        var(--shadow-soft);
}

.checkout-status-banner-success {
    border-color: rgba(50, 215, 75, 0.3);
    background:
        radial-gradient(circle at top right, rgba(50, 215, 75, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(17, 31, 22, 0.94) 0%, rgba(14, 24, 18, 0.92) 100%);
}

.checkout-status-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(50, 215, 75, 0.16);
    color: #dfffea;
    border: 1px solid rgba(50, 215, 75, 0.24);
}

.checkout-status-icon svg {
    width: 24px;
    height: 24px;
}

.checkout-status-icon svg circle,
.checkout-status-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.checkout-status-copy {
    min-width: 0;
}

.checkout-status-copy h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.24rem, 2.2vw, 1.62rem);
    letter-spacing: -0.04em;
}

.checkout-status-copy p {
    margin: 0;
    color: #d9f8e2;
    line-height: 1.55;
}

.checkout-status-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.delivery-shell {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.delivery-top {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.82fr);
    margin-bottom: 20px;
}

.delivery-overview-card,
.delivery-side-card,
.delivery-manual-card {
    min-width: 0;
}

.delivery-step-grid,
.delivery-side-list {
    display: grid;
}

.delivery-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.delivery-step-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.delivery-step-card span,
.delivery-step-card strong,
.delivery-step-card p {
    display: block;
}

.delivery-step-card span {
    color: var(--accent-soft);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.delivery-step-card strong {
    margin-top: 10px;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.delivery-step-card p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.delivery-side-card {
    display: grid;
    gap: 16px;
    align-content: start;
}

.delivery-side-block h2,
.delivery-manual-card h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.3rem, 2.3vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.delivery-side-list {
    gap: 0;
}

.delivery-side-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.delivery-side-row strong {
    color: var(--ink);
}

.delivery-app-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: end;
}

.delivery-app-actions .button {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.94rem;
    line-height: 1.15;
    font-weight: 400;
}

.delivery-app-actions .button.primary {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 14px rgba(10, 132, 255, 0.18);
}

.delivery-access-card,
.delivery-links-card {
    min-width: 0;
}

.delivery-access-card h2,
.delivery-qr-card h2,
.delivery-links-card h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.delivery-access-card .lead,
.delivery-qr-card .muted {
    margin-bottom: 18px;
}

.delivery-subcopy {
    max-width: 62ch;
    margin: 10px 0 0;
    line-height: 1.6;
}

.download-panel {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.download-panel.prominent {
    margin-bottom: 20px;
    padding: 22px;
    border-color: rgba(90, 200, 250, 0.22);
    background:
        radial-gradient(circle at top right, rgba(90, 200, 250, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.04);
}

.download-panel h3 {
    margin: 0;
    letter-spacing: -0.04em;
    font-size: 1.2rem;
}

.download-panel p {
    margin: 0;
}

.delivery-access-card .download-panel + .actions {
    margin-top: 18px;
}

.delivery-raw {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.delivery-qr-card {
    display: grid;
    align-content: start;
    justify-items: start;
}

.qr-frame {
    display: grid;
    place-items: center;
    width: min(100%, 280px);
    margin: 4px 0 18px;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 244, 251, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 20px 40px rgba(0, 0, 0, 0.24);
}

.qr-frame img {
    width: min(100%, 220px);
    aspect-ratio: 1;
    border-radius: 18px;
}

.section-head.compact {
    align-items: flex-start;
    margin-bottom: 16px;
}

.delivery-client-grid {
    display: grid;
    gap: 14px;
}

.delivery-client-item {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.delivery-client-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.delivery-client-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.delivery-client-head strong {
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.delivery-client-head span {
    color: var(--muted);
    font-size: 0.88rem;
}

.delivery-client-status.recommended {
    color: #ffe3b8;
}

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

.delivery-platform-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.delivery-platform-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.delivery-platform-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.delivery-platform-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.platform-media {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.platform-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 0 35%),
        linear-gradient(180deg, rgba(75, 118, 255, 0.95) 0%, rgba(10, 132, 255, 0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 12px 22px rgba(10, 132, 255, 0.18);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.platform-copy {
    display: grid;
    gap: 8px;
}

.platform-link-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.platform-link-title:hover {
    color: var(--accent-soft);
}

.platform-link-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    opacity: 0.78;
}

.platform-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.platform-download-links {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    width: 100%;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-strong);
    font-size: 0.86rem;
    line-height: 1.35;
    text-decoration: none;
    overflow-wrap: anywhere;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-download-link::after {
    content: "";
    width: 14px;
    height: 14px;
    margin-left: auto;
    flex: 0 0 14px;
    opacity: 0.82;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 3h7v7M13 3 3 13' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6 3h7v7M13 3 3 13' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.platform-download-link:hover {
    border-color: rgba(90, 200, 250, 0.28);
    color: var(--ink);
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(10, 132, 255, 0.12);
    border: 1px solid rgba(90, 200, 250, 0.16);
    color: var(--muted-strong);
    font-size: 0.92rem;
    font-weight: 500;
}

.delivery-qr-center {
    justify-self: center;
    margin-inline: auto;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.messages {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.message {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(18, 24, 33, 0.82);
    color: var(--muted-strong);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.message.error {
    border-color: rgba(255, 69, 58, 0.22);
}

.message.success {
    border-color: rgba(50, 215, 75, 0.22);
}

.message.warning {
    border-color: rgba(255, 159, 10, 0.24);
}

.list-row {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.list-row:last-child {
    border-bottom: 0;
}

.list-row strong {
    display: block;
    color: var(--ink);
}

.list-row span {
    color: var(--muted);
}

.card-footer-action {
    margin-top: 18px;
}

.home-top {
    margin-top: 24px;
}

.home-page .card {
    padding: 20px;
}

.home-page .hero-copy {
    padding: 34px 36px;
}

.home-top-list-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.home-top-reason-card,
.home-top-process-card {
    display: grid;
    gap: 14px;
}

.home-benefit-card {
    display: grid;
    gap: 8px;
}

.home-top-process-card .steps,
.home-top-reason-card .stack {
    margin: 0;
}

.home-top-reason-card .eyebrow,
.home-top-process-card .eyebrow {
    margin-bottom: 10px;
}

.home-benefit-card .eyebrow {
    margin: 0;
    line-height: 1.15;
}

.home-top-reason-card h3,
.home-top-process-card h3 {
    margin: 0 0 10px;
    line-height: 1.18;
}

.home-benefit-card .lead {
    margin: 0;
    line-height: 1.42;
}

.home-benefits-section {
    margin-top: 28px;
}

.home-benefits-grid {
    gap: 14px;
}

.home-benefits-grid .home-benefit-card {
    padding-top: 18px;
    padding-bottom: 18px;
}

.home-benefits-grid .home-benefit-card h3 {
    margin: 0 0 6px;
    line-height: 1.2;
}

.home-benefits-grid .home-benefit-card .eyebrow {
    margin: 0 0 6px;
}

#plans-home .client-cloud > article > .eyebrow {
    margin-bottom: 8px;
}

#plans-home .client-cloud > article > h3 {
    margin: 0 0 10px;
}

.home-page > section:nth-of-type(4) .detail-layout > article > p.lead {
    margin: 8px 0 0;
}

.home-page > section:nth-of-type(5) .detail-layout > article > ul.feature-list {
    margin: 8px 0 0;
}

.device-card {
    display: grid;
    gap: 18px;
}

.device-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.device-card-head p,
.device-meta p,
.device-cooldown p {
    margin: 0;
}

.device-meta {
    display: grid;
    gap: 10px;
    color: var(--muted-strong);
}

.device-status {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.device-status.ready {
    color: #dfffea;
    background: rgba(50, 215, 75, 0.14);
    border: 1px solid rgba(50, 215, 75, 0.2);
}

.device-status.blocked {
    color: #ffd9a8;
    background: rgba(255, 159, 10, 0.14);
    border: 1px solid rgba(255, 159, 10, 0.2);
}

.device-cooldown {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.steps {
    margin: 0;
}

textarea[rows] {
    resize: vertical;
}

.landing-hero,
.landing-objection-grid,
.landing-compare-grid,
.landing-value-grid,
.landing-plan-grid,
.landing-clients-layout,
.landing-setup-shell,
.landing-faq-layout {
    display: grid;
    gap: 20px;
}

.landing-hero {
    grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.landing-hero-main,
.landing-hero-side,
.landing-plan-intro,
.landing-clients-copy,
.landing-setup-copy,
.landing-final-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(22px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        var(--shadow);
}

.landing-hero-main {
    padding: 42px;
    background:
        radial-gradient(circle at top left, rgba(255, 159, 10, 0.22), transparent 24%),
        radial-gradient(circle at 78% 22%, rgba(90, 200, 250, 0.16), transparent 26%),
        linear-gradient(135deg, rgba(28, 19, 11, 0.98) 0%, rgba(17, 21, 31, 0.96) 52%, rgba(8, 14, 24, 0.98) 100%);
}

.landing-hero-main::before,
.landing-hero-side::before,
.landing-plan-intro::before,
.landing-clients-copy::before,
.landing-setup-copy::before,
.landing-final-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, transparent 24%, transparent 100%);
}

.landing-chip-row,
.landing-device-grid,
.landing-proof-strip,
.landing-objection-grid,
.landing-value-grid,
.landing-plan-grid,
.landing-client-grid,
.landing-setup-grid,
.landing-faq-list {
    display: grid;
}

.landing-chip-row {
    grid-template-columns: repeat(3, max-content);
    gap: 10px;
    margin-bottom: 24px;
}

.landing-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted-strong);
    font-size: 0.86rem;
    white-space: nowrap;
}

.landing-chip-hot {
    border-color: rgba(255, 159, 10, 0.24);
    background: rgba(255, 159, 10, 0.14);
    color: #fff0d6;
}

.landing-kicker {
    margin: 0;
    color: #ffc670;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.landing-hero-main h1 {
    max-width: 8ch;
    margin: 14px 0 18px;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.landing-lead,
.landing-clients-copy p,
.landing-final-copy p,
.landing-side-panel p,
.landing-plan-intro-copy p,
.landing-value-card p,
.landing-objection-card p,
.landing-setup-copy p,
.landing-setup-card p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.68;
}

.landing-action-row {
    margin-top: 24px;
}

.landing-device-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.landing-device-card,
.landing-proof-pill,
.landing-side-panel,
.landing-objection-card,
.landing-compare-card,
.landing-value-card,
.landing-plan-card,
.landing-client-card,
.landing-setup-card,
.landing-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
}

.landing-device-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.landing-device-card strong,
.landing-proof-pill strong,
.landing-route-list strong,
.landing-plan-proof strong,
.landing-objection-card h2,
.landing-compare-card h3,
.landing-value-card h3,
.landing-setup-card h3 {
    color: var(--ink);
    letter-spacing: -0.04em;
}

.landing-device-card span,
.landing-proof-pill span {
    color: var(--muted);
    line-height: 1.52;
}

.landing-device-card:hover,
.landing-plan-card:hover,
.landing-faq-item:hover,
.landing-client-card:hover,
.landing-objection-card:hover,
.landing-value-card:hover,
.landing-setup-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
}

.landing-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.landing-proof-pill {
    padding: 18px;
}

.landing-proof-pill strong,
.landing-proof-pill span {
    display: block;
}

.landing-proof-pill span {
    margin-top: 6px;
}

.landing-hero-side {
    display: grid;
    gap: 14px;
    padding: 20px;
    background:
        radial-gradient(circle at top right, rgba(90, 200, 250, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(10, 16, 25, 0.97) 0%, rgba(7, 12, 20, 0.99) 100%);
}

.landing-side-panel,
.landing-plan-intro,
.landing-clients-copy,
.landing-setup-copy {
    padding: 24px;
}

.landing-side-panel h2,
.landing-plan-intro-copy h2,
.landing-clients-copy h2,
.landing-setup-copy h2,
.landing-final-copy h2,
.landing-section-head h2,
.landing-faq-side h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.5rem, 2.7vw, 2.3rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.landing-route-list {
    display: grid;
    gap: 16px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.landing-route-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.landing-route-list li > span,
.landing-setup-step {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffa94d 0%, #ff8a1f 100%);
    color: #1a1207;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow: 0 16px 28px rgba(255, 138, 31, 0.24);
}

.landing-route-list p {
    margin: 5px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.landing-no-risk-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 159, 10, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.05);
}

.landing-check-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.landing-check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted-strong);
    line-height: 1.6;
}

.landing-check-list li::before {
    content: "";
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #7de8ff 0%, #0a84ff 100%);
    box-shadow: 0 0 0 5px rgba(10, 132, 255, 0.12);
}

.landing-check-list-problem li::before {
    background: linear-gradient(180deg, #ff9b8c 0%, #ff453a 100%);
    box-shadow: 0 0 0 5px rgba(255, 69, 58, 0.12);
}

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

.landing-objection-card,
.landing-compare-card,
.landing-value-card,
.landing-setup-card {
    padding: 26px;
    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.landing-objection-card h2,
.landing-compare-card h3,
.landing-value-card h3,
.landing-plan-card h3,
.landing-setup-card h3 {
    margin: 8px 0 10px;
}

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

.landing-compare-card {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 36%),
        rgba(255, 255, 255, 0.04);
}

.landing-compare-bad {
    background:
        radial-gradient(circle at top left, rgba(255, 69, 58, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(28, 18, 21, 0.94) 0%, rgba(20, 19, 27, 0.94) 100%);
}

.landing-compare-good {
    background:
        radial-gradient(circle at top right, rgba(90, 200, 250, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(16, 25, 35, 0.96) 0%, rgba(11, 18, 29, 0.96) 100%);
}

.landing-section-head {
    align-items: end;
}

.landing-section-head .eyebrow,
.landing-section-head h2 {
    margin: 0;
}

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

.landing-plan-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 20px;
    align-items: start;
    margin-bottom: 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 159, 10, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(24, 18, 10, 0.92) 0%, rgba(16, 20, 30, 0.96) 100%);
}

.landing-plan-intro-copy {
    display: grid;
    gap: 10px;
}

.landing-plan-intro-copy .eyebrow,
.landing-plan-intro-copy h2,
.landing-plan-intro-copy p {
    margin: 0;
}

.landing-plan-points,
.landing-plan-top,
.landing-plan-numbers,
.landing-plan-actions,
.landing-final-actions {
    display: flex;
}

.landing-plan-points {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.landing-plan-point {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted-strong);
    white-space: nowrap;
}

.landing-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.landing-plan-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.landing-plan-card-featured {
    background:
        radial-gradient(circle at top right, rgba(255, 159, 10, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(90, 200, 250, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(25, 24, 20, 0.96) 0%, rgba(17, 22, 31, 0.98) 100%);
    border-color: rgba(255, 159, 10, 0.18);
}

.landing-plan-top {
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.landing-plan-flag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 159, 10, 0.14);
    border: 1px solid rgba(255, 159, 10, 0.18);
    color: #ffe3b8;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.landing-plan-copy {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.62;
}

.landing-plan-numbers {
    gap: 10px;
    flex-wrap: wrap;
}

.landing-plan-numbers article {
    flex: 1 1 140px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-plan-numbers strong,
.landing-plan-numbers span {
    display: block;
}

.landing-plan-numbers strong {
    color: var(--ink);
    font-size: 1.2rem;
    letter-spacing: -0.05em;
}

.landing-plan-numbers span {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.5;
}

.landing-plan-proof {
    margin-top: auto;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.landing-plan-proof p {
    margin: 6px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.landing-plan-actions {
    gap: 12px;
    flex-wrap: wrap;
}

.landing-plan-actions .button {
    flex: 1 1 180px;
}

.landing-clients-layout {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.2fr);
    align-items: start;
}

.landing-clients-copy {
    background:
        radial-gradient(circle at top right, rgba(255, 159, 10, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(24, 18, 10, 0.9) 0%, rgba(16, 20, 30, 0.94) 100%);
}

.landing-client-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.landing-client-card {
    background:
        radial-gradient(circle at top right, rgba(90, 200, 250, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.045);
    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.landing-setup-shell {
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
}

.landing-setup-copy {
    background:
        radial-gradient(circle at top left, rgba(255, 159, 10, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(24, 18, 10, 0.92) 0%, rgba(15, 21, 31, 0.97) 100%);
}

.landing-setup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.landing-setup-step {
    margin-bottom: 18px;
}

.landing-faq-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
}

.landing-faq-side {
    padding: 28px;
}

.landing-faq-side p {
    margin: 0 0 18px;
    color: var(--muted-strong);
    line-height: 1.65;
}

.landing-faq-list {
    gap: 12px;
}

.landing-faq-item {
    padding: 0;
    overflow: hidden;
    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.landing-faq-item summary {
    position: relative;
    padding: 22px 56px 22px 22px;
    list-style: none;
    cursor: pointer;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.landing-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--accent-soft);
    font-size: 1.35rem;
    font-weight: 400;
}

.landing-faq-item[open] summary::after {
    content: "-";
}

.landing-faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted-strong);
    line-height: 1.62;
}

.landing-final-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 159, 10, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(10, 132, 255, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(26, 18, 12, 0.96) 0%, rgba(16, 22, 33, 0.98) 100%);
}

.landing-final-copy {
    display: grid;
    gap: 10px;
}

.landing-final-copy .eyebrow,
.landing-final-copy h2,
.landing-final-copy p {
    margin: 0;
}

.landing-final-actions {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 920px) {
    .shell {
        width: min(100% - 20px, 1200px);
    }

    .topbar {
        position: static;
        border-radius: 24px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
    }

    .hero,
    .detail-layout,
    .delivery-shell,
    .delivery-top {
        grid-template-columns: 1fr;
    }

    .nav,
    .section-head,
    .price-line,
    .list-row,
    .client-card-head,
    .device-card-head,
    .delivery-client-head,
    .delivery-platform-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-toggle {
        position: relative;
        display: inline-flex;
        justify-self: end;
    }

    .nav {
        display: none;
        width: 100%;
        grid-column: 1 / -1;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid var(--line);
    }

    .nav.is-open {
        display: flex;
    }

    .lang-switcher {
        padding-left: 0;
        border-left: 0;
    }

    .hero-copy,
    .card,
    .form-shell {
        padding: 22px;
    }

    .site-footer {
        border-radius: 14px;
        padding: 12px 14px;
    }

    .landing-hero,
    .landing-compare-grid,
    .landing-clients-layout,
    .landing-setup-shell,
    .landing-faq-layout,
    .landing-final-card,
    .landing-plan-intro {
        grid-template-columns: 1fr;
    }

    .landing-chip-row,
    .landing-proof-strip,
    .landing-objection-grid,
    .landing-value-grid,
    .landing-setup-grid {
        grid-template-columns: 1fr;
    }

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

    .landing-chip-row {
        justify-items: start;
    }

    .landing-hero-main,
    .landing-clients-copy,
    .landing-setup-copy,
    .landing-final-card {
        padding: 24px;
    }

    .landing-hero-main h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .landing-plan-points,
    .landing-plan-top,
    .landing-plan-numbers,
    .landing-plan-actions,
    .landing-final-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-plan-point,
    .landing-plan-numbers article,
    .landing-plan-actions .button,
    .landing-final-actions .button {
        width: 100%;
    }

    .landing-faq-item summary {
        padding-right: 52px;
    }

    .promo-plan-grid {
        grid-template-columns: 1fr;
    }

    .promo-plan-top,
    .promo-plan-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-pay-grid {
        grid-template-columns: 1fr;
    }

    .checkout-status-banner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .checkout-status-actions {
        justify-content: flex-start;
    }

    .landing-client-grid {
        grid-template-columns: 1fr;
    }

    .delivery-step-grid {
        grid-template-columns: 1fr;
    }

    .delivery-platform-card-grid {
        grid-template-columns: 1fr;
    }
}
