@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Variable.ttf") format("truetype");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f2f5f8;
    --bg-accent: #e5ebf2;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-soft: #f6f8fb;
    --landing-block-surface: rgba(255, 255, 255, 0.88);
    --ink: #17233a;
    --ink-soft: #546176;
    --line: rgba(23, 35, 58, 0.12);
    --line-strong: rgba(23, 35, 58, 0.24);
    --brand: #4f73bd;
    --brand-deep: #304f8f;
    --brand-soft: rgba(79, 115, 189, 0.1);
    --accent: #d07a51;
    --footer: #172131;
    --shadow: 0 18px 40px rgba(23, 35, 58, 0.06);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --page-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", "Segoe UI", "Arial", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top center, rgba(79, 115, 189, 0.08), transparent 36rem),
        linear-gradient(180deg, #f5f8fc 0%, #eef3f7 58%, #e9eff5 100%);
}

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

h1,
h2,
h3,
p,
ul {
    margin-top: 0;
}

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

.header,
.hero,
.section,
.footer {
    width: 100%;
    margin: 0 auto;
}

.header,
.section,
.footer {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.74);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: block;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(23, 35, 58, 0.14);
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav,
.hero-actions,
.footer-links,
.footer-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a,
.footer-links a {
    color: var(--ink-soft);
    font-size: 15px;
    transition: color 0.18s ease;
}

.nav {
    justify-self: center;
}

.nav a:hover,
.footer-links a:hover {
    color: var(--ink);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.button > span {
    position: relative;
    z-index: 1;
}

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

.button:focus-visible {
    outline: 3px solid rgba(79, 115, 189, 0.28);
    outline-offset: 4px;
}

.button:active {
    transform: translateY(1px) scale(0.99);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 10px 22px rgba(48, 79, 143, 0.18);
}

.button-launch {
    box-shadow: 0 16px 34px rgba(48, 79, 143, 0.26);
}

.button-launch::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.35) 48%, transparent 62%, transparent 100%);
    transform: translateX(-130%);
    animation: button-launch-shine 2.8s ease-in-out 2s infinite;
}

@keyframes button-launch-shine {
    0%,
    68% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(130%);
    }
}

.button-launch:hover,
.button-launch:focus-visible {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 22px 42px rgba(48, 79, 143, 0.34);
}

.button-launch:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 10px 22px rgba(48, 79, 143, 0.2);
}

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

.button-basic-plan {
    color: var(--brand-deep);
    border-width: 2px;
    border-color: var(--brand);
    background: rgba(255, 255, 255, 0.98);
}

.button-large {
    min-height: 60px;
    min-width: 240px;
    padding-inline: 34px;
    font-size: 17px;
}

.button-full {
    width: 100%;
}

.button-disabled,
.button:disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.62;
    box-shadow: none;
    transform: none;
}

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

.docs-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    align-items: start;
}

.docs-sidebar,
.docs-content {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.docs-sidebar {
    position: sticky;
    top: 18px;
    padding: 24px;
}

.docs-sidebar .eyebrow {
    margin-bottom: 16px;
}

.docs-nav {
    display: grid;
    gap: 10px;
}

.docs-nav a {
    display: block;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    line-height: 1.25;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.docs-nav a:hover {
    color: var(--ink);
    border-color: var(--brand);
    background: rgba(255, 255, 255, 0.94);
}

.docs-content {
    padding: clamp(28px, 4vw, 54px);
}

.docs-section {
    scroll-margin-top: 24px;
}

.docs-anchor {
    display: block;
    scroll-margin-top: 24px;
}

.docs-section + .docs-section {
    margin-top: 44px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.docs-content h1 {
    max-width: 900px;
    margin-bottom: 20px;
}

.docs-content h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: clamp(24px, 2.6vw, 32px);
}

.docs-content p,
.docs-list {
    max-width: 880px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.62;
}

.docs-lead {
    color: var(--ink);
    font-size: 20px;
}

.docs-list {
    margin: 0 0 22px;
    padding-left: 24px;
}

.docs-list li + li {
    margin-top: 8px;
}

.docs-requirements {
    max-width: 880px;
}

.docs-hero-panel {
    position: relative;
    isolation: isolate;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 30px 0 22px;
    padding: clamp(22px, 3.2vw, 34px);
    border: 1px solid rgba(47, 112, 244, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(47, 112, 244, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(247, 250, 255, 0.98), rgba(255, 255, 255, 0.82));
    overflow: hidden;
}

.docs-hero-panel::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -96px;
    z-index: -1;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(84, 198, 216, 0.16);
}

.docs-hero-panel h2 {
    max-width: 620px;
    margin-top: 12px;
    margin-bottom: 10px;
}

.docs-hero-panel p {
    max-width: 680px;
    margin: 0;
}

.docs-hero-list {
    max-width: 760px;
    margin: 0;
    padding-left: 22px;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.55;
}

.docs-hero-list li {
    padding-left: 4px;
}

.docs-hero-list li + li {
    margin-top: 6px;
}

.docs-pill,
.docs-card-kicker,
.docs-prep-grid span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.docs-prep-grid {
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.docs-prep-grid article {
    padding: 18px;
    border: 1px solid rgba(47, 112, 244, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
}

.docs-prep-grid strong {
    display: block;
    margin-top: 14px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.docs-prep-grid p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.5;
}

.docs-action-grid {
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 6px;
}

.docs-action-card {
    padding: clamp(20px, 2.8vw, 30px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 36px rgba(17, 38, 78, 0.06);
}

.docs-action-card h2 {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(23px, 2.2vw, 30px);
}

.docs-action-card p {
    max-width: none;
    margin: 0;
    font-size: 17px;
    line-height: 1.58;
}

.docs-action-card p + p {
    margin-top: 12px;
}

.docs-action-card-accent {
    border-color: rgba(41, 186, 110, 0.28);
    background:
        radial-gradient(circle at top right, rgba(41, 186, 110, 0.16), transparent 38%),
        rgba(246, 255, 250, 0.9);
}

.docs-action-card-accent .docs-card-kicker {
    background: rgba(41, 186, 110, 0.14);
    color: #0b6b3a;
}

.docs-checklist {
    position: relative;
    max-width: 920px;
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
}

.docs-checklist::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 26px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(47, 112, 244, 0.2), rgba(41, 186, 110, 0.32));
}

.docs-check-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: clamp(18px, 2.6vw, 26px);
    border: 1px solid rgba(47, 112, 244, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(17, 38, 78, 0.055);
}

.docs-check-card h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.2vw, 30px);
}

.docs-check-card p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.docs-check-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eaf1ff;
    box-shadow: inset 0 0 0 1px rgba(47, 112, 244, 0.12);
}

.docs-check-icon::before {
    content: "";
    width: 18px;
    height: 10px;
    border-left: 4px solid var(--brand);
    border-bottom: 4px solid var(--brand);
    transform: rotate(-45deg) translate(2px, -1px);
}

.docs-check-card-accent {
    border-color: rgba(41, 186, 110, 0.28);
    background:
        radial-gradient(circle at right center, rgba(41, 186, 110, 0.13), transparent 38%),
        rgba(246, 255, 250, 0.92);
}

.docs-check-card-accent .docs-check-icon {
    background: rgba(41, 186, 110, 0.14);
    box-shadow: inset 0 0 0 1px rgba(41, 186, 110, 0.16);
}

.docs-check-card-accent .docs-check-icon::before {
    border-color: #0b8f4d;
}

.docs-help-panel {
    max-width: 920px;
    margin-top: 22px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(245, 166, 35, 0.24);
    border-radius: 26px;
    background: rgba(255, 248, 233, 0.72);
}

.docs-help-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.2vw, 28px);
}

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

.docs-help-grid p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.48;
}

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

.docs-flow {
    max-width: 960px;
    display: grid;
    gap: 18px;
    margin: 30px 0 34px;
}

.docs-step-block,
.docs-response-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
}

.docs-step-block {
    padding: clamp(22px, 3vw, 32px);
}

.docs-step-block h2 {
    margin-top: 14px;
}

.docs-step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--brand-dark);
    font-weight: 900;
}

.docs-ordered-list {
    counter-reset: docs-step;
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.docs-ordered-list li {
    counter-increment: docs-step;
    position: relative;
    min-height: 42px;
    padding: 12px 14px 12px 58px;
    border: 1px solid rgba(47, 112, 244, 0.16);
    border-radius: 18px;
    background: rgba(247, 250, 255, 0.92);
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.55;
}

.docs-ordered-list li::before {
    content: counter(docs-step);
    position: absolute;
    top: 12px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.docs-note {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(41, 186, 110, 0.22);
    border-radius: 18px;
    background: rgba(229, 250, 239, 0.72);
    color: #0b6b3a;
    font-weight: 700;
    line-height: 1.55;
}

.docs-note-warning {
    border-color: rgba(245, 166, 35, 0.28);
    background: rgba(255, 247, 230, 0.86);
    color: #895a04;
}

.docs-response-grid {
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.docs-response-card {
    padding: 18px;
}

.docs-response-card strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    margin-bottom: 10px;
}

.docs-response-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.docs-response-success {
    border-color: rgba(41, 186, 110, 0.32);
}

.docs-response-pending {
    border-color: rgba(245, 166, 35, 0.36);
}

.docs-response-error {
    border-color: rgba(235, 64, 86, 0.3);
}

.docs-response-info {
    border-color: rgba(47, 112, 244, 0.28);
}

.hero {
    display: block;
    background: transparent;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-copy,
.section {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--landing-block-surface);
    box-shadow: var(--shadow);
    overflow: hidden;
    background-clip: padding-box;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(32px, 4vw, 48px);
    text-align: center;
}

.hero-copy .eyebrow,
.hero-actions {
    justify-content: center;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    max-width: 1040px;
    margin-bottom: 20px;
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-text,
.feature-card p,
.module-card p,
.step-card p,
.faq-card p,
.price-list,
.footer-brand p,
.footer-meta,
.quote-translation {
    color: var(--ink-soft);
    line-height: 1.55;
}

.hero-text {
    max-width: 980px;
    margin-bottom: 28px;
    font-size: 18px;
    color: #617088;
}

.tariffs-lead {
    max-width: 820px;
    margin: 18px auto 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.55;
}

.section {
    padding: clamp(26px, 3vw, 38px);
}

.section-head {
    max-width: 920px;
    margin: 0 auto 24px;
    text-align: center;
}

.section-head.compact {
    max-width: 980px;
}

.section-head .eyebrow {
    margin-bottom: 14px;
}

.quote-panel {
    max-width: 1080px;
    margin: 0 auto;
    display: block;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
}

.quote-block {
    margin: 0;
    text-align: center;
}

.quote-original {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.quote-translation {
    margin-bottom: 0;
    font-size: 16px;
}

.faq-link {
    color: var(--brand-deep);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.faq-link:hover {
    color: var(--brand);
}

.feature-grid,
.module-grid,
.steps-grid,
.pricing-grid,
.faq-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

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

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

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

.steps-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

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

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

.feature-card,
.module-card,
.step-card,
.pricing-card,
.faq-card {
    padding: 24px;
    border: 1px solid var(--brand);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    min-height: 100%;
}

.module-card-soon {
    border-color: var(--line);
}

.feature-card,
.module-card,
.faq-card {
    text-align: left;
}

.step-card {
    position: relative;
    padding-top: 72px;
}

.step-number {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-deep);
    font-weight: 800;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card .button {
    margin-top: auto;
}

.pricing-card-accent {
    background:
        radial-gradient(circle at top right, rgba(43, 99, 245, 0.12), transparent 16rem),
        rgba(255, 255, 255, 0.95);
}

.pricing-card-trial {
    background:
        radial-gradient(circle at top right, rgba(79, 115, 189, 0.09), transparent 15rem),
        rgba(255, 255, 255, 0.94);
}

.price-label {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.price-value {
    margin-bottom: 0;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.price-value span {
    color: var(--ink-soft);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.price-list {
    margin: 0;
    padding-left: 20px;
}

.tariff-plans-shell {
    max-width: 1080px;
    margin: 0 auto;
}

.tariff-plans-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.tariff-plans-counter {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 850;
}

.tariff-plans-arrows {
    display: inline-flex;
    gap: 10px;
}

.tariff-arrow {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--brand-deep);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(48, 79, 143, 0.12);
}

.tariff-arrow:disabled {
    opacity: 0.42;
    cursor: default;
}

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

.tariff-plan-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 3vw, 30px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(48, 79, 143, 0.08);
    overflow: hidden;
}

.tariff-plan-card-accent {
    border-color: rgba(79, 115, 189, 0.52);
    background:
        radial-gradient(circle at top right, rgba(79, 115, 189, 0.13), transparent 17rem),
        rgba(255, 255, 255, 0.97);
}

.tariff-plan-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tariff-plan-name {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.tariff-plan-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 7px 12px;
    background: #eef4ff;
    color: #395487;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.tariff-plan-badge-accent {
    background: var(--brand);
    color: #ffffff;
}

.tariff-plan-price {
    color: var(--ink);
    font-size: clamp(38px, 4.8vw, 54px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.tariff-plan-price span {
    color: var(--ink-soft);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
}

.tariff-plan-tagline {
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.5;
}

.tariff-plan-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #334466;
    font-size: 16px;
    line-height: 1.4;
}

.tariff-plan-list li {
    position: relative;
    padding-left: 24px;
}

.tariff-plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(79, 115, 189, 0.1);
}

.tariffs-cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.tariffs-trial-note {
    max-width: 720px;
    margin: 26px auto 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.5;
    text-align: center;
}

.footer {
    margin-top: 18px;
    padding: 26px 28px;
    background: linear-gradient(180deg, #1a2434 0%, #131c2a 100%);
    color: rgba(255, 255, 255, 0.94);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
}

.footer-brand strong {
    display: inline;
    font-size: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.footer-links {
    align-items: center;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-actions {
    justify-content: center;
    grid-column: 1 / -1;
    margin-top: 6px;
}

.footer-actions .button-large {
    min-width: 280px;
}

@media (max-width: 1120px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-actions {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .feature-grid,
    .module-grid,
    .steps-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .header {
        grid-template-columns: 1fr;
        padding: 16px 18px;
        justify-items: flex-start;
    }

    .section,
    .hero-copy {
        padding: 24px;
    }

    .nav {
        justify-self: start;
    }

    .docs-shell {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
    }

    .docs-hero-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .docs-prep-grid,
    .docs-action-grid,
    .docs-help-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        max-width: none;
    }

    .tariff-plans {
        gap: 14px;
    }

    .tariff-plan-card {
        border-radius: 22px;
        padding: 22px;
    }
}

@media (max-width: 760px) {
    .tariff-plans-nav {
        display: flex;
    }

    .tariff-plans {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 4px 2px 12px;
    }

    .tariff-plans::-webkit-scrollbar {
        display: none;
    }

    .tariff-plan-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    .page {
        width: min(100% - 16px, 100%);
        padding: 12px 0 28px;
    }

    .header,
    .section,
    .footer,
    .hero-copy,
    .docs-sidebar,
    .docs-content {
        border-radius: 22px;
    }

    .hero,
    .main {
        gap: 14px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

    .hero-text {
        font-size: 17px;
    }

    .quote-original {
        font-size: 38px;
    }

    .docs-content {
        padding: 24px;
    }

    .docs-content p,
    .docs-list {
        font-size: 17px;
    }

    .docs-checklist::before {
        left: 22px;
    }

    .docs-check-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        border-radius: 22px;
    }

    .docs-check-icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .docs-check-icon::before {
        width: 15px;
        height: 8px;
        border-left-width: 3px;
        border-bottom-width: 3px;
    }

    .docs-check-card p {
        font-size: 16px;
    }

    .docs-response-grid {
        grid-template-columns: 1fr;
    }

    .docs-ordered-list li {
        padding-left: 52px;
    }

    .tariff-plans-nav {
        margin-bottom: 8px;
    }

    .tariff-plan-card {
        gap: 12px;
        padding: 18px;
        border-radius: 20px;
    }

    .tariff-plan-card-header {
        flex-wrap: wrap;
    }

    .tariff-plan-name {
        font-size: 28px;
    }

    .tariff-plan-price {
        font-size: 36px;
    }

    .tariff-plan-tagline,
    .tariff-plan-list {
        font-size: 15px;
    }

    .tariffs-cta .button-large {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button-launch::after {
        animation: none;
    }
}
