:root {
    --bg: #0b1722;
    --surface: #102131;
    --surface-2: #13293d;
    --line: #1f3b53;
    --text: #eef5fb;
    --muted: #b7c9d8;
    --primary: #2f8ecb;
    --primary-soft: #59a9dc;
    --cta: #e58e38;
    --cta-hover: #f4a04e;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif;
    font-size: 20px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

a {
    color: inherit;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-soft);
    font-weight: 700;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.2;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

ul {
    margin: 8px 0 0 20px;
    padding: 0;
    color: var(--muted);
}

li {
    margin: 8px 0;
}

.check-list--ticks {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.check-list--ticks li {
    position: relative;
    padding-left: 24px;
}

.check-list--ticks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-soft);
    font-weight: 800;
}

blockquote {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-left: 3px solid var(--primary);
    background: rgba(47, 142, 203, 0.12);
    border-radius: 8px;
    color: var(--text);
    font-style: italic;
}

.container {
    width: 100%;
    max-width: var(--max);
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--cta);
    color: #1e1308;
    border: 1px solid #c9731f;
    transition: background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    background: var(--cta-hover);
}

.site-menu {
    background: rgba(11, 23, 34, 0.92);
    border-bottom: 1px solid #1f3b53;
}

.menu-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.menu-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.menu-logo {
    display: block;
    height: 120px;
    width: auto;
}

.menu-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.menu-links a {
    color: #b7c9d8;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 11px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.menu-links a:hover,
.menu-links a:focus-visible {
    color: #eef5fb;
    border-color: #1f3b53;
    background: #102131;
}

.menu-links .menu-cta {
    background: #e58e38;
    color: #0b1722;
    border-color: #e58e38;
    font-weight: 700;
}

.menu-links .menu-cta:hover,
.menu-links .menu-cta:focus-visible {
    background: #f4a04e;
    border-color: #f4a04e;
    color: #0b1722;
}

footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 34px;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

.footer-cta {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 38px 24px;
    max-width: 850px;
    margin: 0 auto 30px;
}

.footer-cta-title {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    color: var(--text);
}

.footer-cta-text {
    margin: 0 auto 16px;
    max-width: 760px;
}

.footer-cta-btn {
    margin-bottom: 18px;
}

.footer-meta {
    font-size: 0.95rem;
    color: var(--muted);
}

.footer-meta a {
    color: var(--muted);
    margin-left: 12px;
    text-decoration: underline;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
    color: var(--text);
}

.simple-plan {
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
}

.simple-plan--mini {
    padding: 34px 0;
}

.simple-plan__wrap {
    background:
        linear-gradient(
            135deg,
            rgba(89, 169, 220, 0.08) 0%,
            rgba(89, 169, 220, 0.03) 28%,
            rgba(16, 33, 49, 0) 68%
        ),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.simple-plan__title {
    font-size: 28px;
    margin-bottom: 14px;
}

.simple-plan__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.simple-plan--mini .simple-plan__steps {
    gap: 14px;
}

.simple-plan__step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
}

.simple-plan--mini .simple-plan__step {
    background: rgba(24, 49, 72, 0.9);
    padding: 22px 20px 20px;
}

.simple-plan__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-soft);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.simple-plan__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.simple-plan__title-row h3 {
    margin-bottom: 0;
}

.simple-plan--mini .icon-wrap {
    background: rgba(89, 169, 220, 0.18);
    margin-bottom: 0;
}

.simple-plan__actions {
    margin-top: 22px;
    text-align: center;
}

@media (max-width: 980px) {
    .simple-plan__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 880px) {
    .simple-plan {
        padding: 44px 0;
    }

    .simple-plan--mini {
        padding: 30px 0;
    }

    .simple-plan__title {
        font-size: 24px;
    }
}

@media (max-width: 880px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .menu-inner {
        min-height: 56px;
        padding: 8px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .footer-cta {
        padding: 30px 20px;
    }

    .footer-cta-title {
        font-size: 28px;
    }

    .footer-cta-btn {
        margin-bottom: 22px;
    }
}
