/* === [AUTO-CSS] TAGS ============================= */

a {
    color: inherit;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Arial,
    Helvetica,
    sans-serif;
    line-height: 1.5;
    margin: 0;
}

button {
    font: inherit;
}

div, td, input {
    box-sizing: content-box;
    position: relative;
}

footer {
    background: var(--panel);
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    margin-top: 64px;
    padding: 28px 0;
}

h1 {
    font-size: clamp(
    34px,
    5vw,
    54px
    );
    line-height: 1.05;
    margin: 10px 0 16px;
    max-width: 800px;
}

h2 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
}

h3 {
    font-size: 17px;
    margin-bottom: 8px;
    margin-top: 0;
}

header {
    background: var(--panel);
    border-bottom: 1px solid var(--border);
}

li {
    color: var(--muted);
    margin: 8px 0;
}

main {
    padding: 56px 0;
}

p {
    color: var(--muted);
    max-width: 760px;
}

section {
    margin-top: 56px;
}

section:first-child {
    margin-top: 0;
}

ul {
    margin: 0;
    padding-left: 20px;
}



/* === [AUTO-CSS] CLASSES ========================== */

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

.brand {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.button.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.button.primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.button:hover {
    background: var(--soft);
}

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
}

.card p:last-child {
    margin-bottom: 0;
}

.hero-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.language button {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
    cursor: pointer;
    padding: 6px 9px;
}

.language button.active {
    background: var(--text);
    border-color: var(--text);
    color: #ffffff;
}

.language button:hover {
    background: var(--soft);
    color: var(--text);
}

.lead {
    font-size: 18px;
    max-width: 700px;
}

.navigation {
    align-items: center;
    display: flex;
    gap: 18px;
}

.navigation a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
}

.navigation a:hover {
    color: var(--text);
}

.notice p:last-child {
    margin-bottom: 0;
}

.number {
    background: var(--soft);
    border-radius: 50%;
    display: grid;
    font-weight: bold;
    height: 34px;
    place-items: center;
    width: 34px;
}

.step {
    align-items: start;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns:
    42px 1fr;
    padding: 18px;
}

.step p {
    margin-bottom: 0;
    margin-top: 5px;
}



/* === [AUTO-CSS] OTHER ============================ */

/* === CLASSES ===================================== */
.wrap {
    margin: 0 auto;
    width: min(
    var(--max-width),
    calc(100% - 32px)
    );
}

/* === MEDIA ======================================= */
@media (max-width: 800px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .navigation {
        flex-wrap: wrap;
    }

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

/* === ROOT ======================================== */
:root {
    --accent: #3f6f8f;
    --accent-dark: #315a74;
    --bg: #f5f6f7;
    --border: #d9dde2;
    --max-width: 1100px;
    --muted: #667085;
    --panel: #ffffff;
    --soft: #eef1f4;
    --success: #4f7d61;
    --text: #24292f;
}

/* === TAGS ======================================== */
html {
    scroll-behavior: smooth;
}

/* === UNIVERSAL =================================== */
* {
    box-sizing: border-box;
}

/* Buttons */
.button {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: inline-block;
    font-size: 14px;
    padding: 11px 16px;
    text-decoration: none;
}

/* Cards */
.grid {
    display: grid;
    gap: 18px;
    grid-template-columns:
    repeat(3, 1fr);
    margin-top: 28px;
}

/* Contact */
.contact {
    padding-top: 10px;
}

/* Footer */
.footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Header */
.topbar {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 64px;
}

/* Hero */
.hero {
    margin-bottom: 64px;
    max-width: 820px;
}

/* KISS */
.notice {
    background: var(--panel);
    border: 1px solid var(--border);
    border-left: 4px solid var(--success);
    border-radius: 8px;
    padding: 24px;
}

/* Language */
.language {
    display: flex;
    gap: 4px;
}

/* Payment */
.payment-info {
    margin-top: 22px;
}

/* Process */
.steps {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

/* === [AUTO-CSS] MEDIA ============================ */

@media (max-width: 500px) {

/* === [AUTO-CSS] TAGS ============================= */

main {
        padding-top: 36px;
}



/* === [AUTO-CSS] CLASSES ========================== */

.navigation {
        gap: 10px;
}

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

}
