body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f7fb;
    color: #111827;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dbe2ea;
}

.language-switcher__label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.language-switcher__select {
    border: none;
    background: transparent;
    color: #111827;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.plan-desc {
    line-height: 1.5;
    margin-bottom: 10px;
}

.plan-points {
    margin: 0 0 14px;
    padding-left: 18px;
    color: #4b5563;
}

.plan-points li {
    margin-bottom: 6px;
    line-height: 1.45;
}

.price {
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0;
}

.price-period {
    font-size: 16px;
}

.btn {
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.01em;
    transition: 0.2s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-light {
    background: white;
    color: #111827;
    border: 1px solid #d1d5db;
}

.muted {
    color: #6b7280;
}

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

    body,
    .muted,
    .price-period {
        font-size: 16px;
    }

    .topbar {
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-actions {
        width: 100%;
    }

    .price {
        font-size: 38px;
    }

    .btn {
        font-size: 16px;
        min-height: 46px;
    }
}
