@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

:root {
    --bg: #ffffff;
    --soft: #f6f4f5;
    --text: #141114;
    --muted: #777177;
    --light: #aaa4aa;
    --line: #e9e4e7;
    --field: #f8f7f8;
    --granat: #ff6b01;
    --granat-hover: #d95700;
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

button,
input {
    font-family: inherit;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 50% 50%;
    background: var(--bg);
}

.auth-panel {
    min-height: 100vh;
    position: relative;
    padding: 42px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand {
    position: absolute;
    top: 38px;
    left: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--granat);
}

.brand-title {
    font-size: 13px;
    line-height: 1.1;
    color: var(--text);
    font-weight: 500;
}

.brand-subtitle {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.2;
    color: var(--muted);
}

.form-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.step-label {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    max-width: 390px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: .98;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.lead {
    margin: 18px 0 34px;
    max-width: 380px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.field-label {
    color: var(--text);
    font-size: 13px;
    line-height: 1.3;
}

.phone-field {
    height: 56px;
    display: grid;
    grid-template-columns: 82px 54px 1fr;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--field);
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease;
}

.phone-field:focus-within {
    border-color: #cdbfc5;
    background: #fff;
}

.phone-prefix {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--granat);
    border-right: 1px solid var(--line);
    font-size: 14px;
}

.operator-input,
.phone-input,
.text-input {
    width: 100%;
    height: 56px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
}

.operator-input {
    padding: 0 0 0 14px;
}

.phone-input {
    padding: 0 16px 0 4px;
}

.text-input {
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--field);
    transition: border-color .18s ease, background .18s ease;
}

.text-input:focus {
    border-color: #cdbfc5;
    background: #fff;
}

input::placeholder {
    color: #b6b0b5;
}

.hint {
    min-height: 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.main-btn {
    margin-top: 6px;
    height: 52px;
    border: 0;
    border-radius: var(--radius);
    background: var(--granat);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background .18s ease, opacity .18s ease;
}

.main-btn:hover {
    background: var(--granat-hover);
}

.main-btn:disabled {
    opacity: .62;
    cursor: default;
}

.link-btn {
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--granat);
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
}

.code-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.code-input {
    width: 100%;
    height: 60px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--field);
    outline: none;
    text-align: center;
    font-size: 24px;
    color: var(--text);
    font-weight: 400;
    transition: border-color .18s ease, background .18s ease;
}

.code-input:focus {
    border-color: #cdbfc5;
    background: #fff;
}

.notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #e7dce1;
    border-radius: var(--radius);
    background: #faf7f8;
    color: var(--granat);
    line-height: 1.5;
    font-size: 13px;
}

.notice.error {
    border-color: #efd0d8;
    background: #fff6f8;
    color: #9b1b38;
}

.auth-footer {
    position: absolute;
    left: 56px;
    bottom: 38px;
    color: var(--light);
    font-size: 12px;
}

.visual-panel {
    min-height: 100vh;
    padding: 14px 14px 14px 0;
    background: var(--bg);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 28px);
    border-radius: 24px;
    background:
        linear-gradient(rgba(20, 17, 20, .18), rgba(20, 17, 20, .18)),
        #eee;
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 38px;
    color: #fff;
    overflow: hidden;
}

.photo-placeholder span {
    display: block;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 500;
    max-width: 340px;
}

.photo-placeholder p {
    margin: 12px 0 0;
    max-width: 320px;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
    font-size: 13px;
}

.dashboard-page {
    min-height: 100vh;
    background: var(--soft);
    padding: 32px;
}

.dashboard-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
}

.logout-link {
    color: var(--granat);
    text-decoration: none;
    font-size: 14px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dash-card,
.dash-wide {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}

.dash-label {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.dash-value {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.dash-wide {
    margin-top: 12px;
}

.dash-wide h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.dash-wide p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

[hidden] {
    display: none !important;
}

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

    .auth-panel {
        min-height: auto;
        padding: 96px 20px 34px;
    }

    .brand {
        left: 20px;
        top: 24px;
    }

    .form-wrap {
        max-width: 460px;
    }

    .auth-footer {
        position: static;
        margin: 28px auto 0;
        text-align: center;
    }

    .visual-panel {
        min-height: auto;
        padding: 0 20px 20px;
    }

    .photo-placeholder {
        min-height: 320px;
        border-radius: 20px;
        padding: 24px;
    }

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

    .dashboard-page {
        padding: 18px;
    }

    .dashboard-top {
        gap: 16px;
    }
}

/* === IT LOBSTER PHONE FIELD FIX START === */
.brand-title {
    text-transform: none;
}

.phone-field {
    grid-template-columns: 118px 72px minmax(0, 1fr);
    height: 64px;
}

.phone-prefix {
    font-size: 20px;
    justify-content: center;
    color: var(--granat);
}

.operator-input,
.phone-input {
    height: 64px;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.operator-input {
    padding-left: 28px;
}

.phone-input {
    padding-left: 4px;
    padding-right: 24px;
    min-width: 0;
}

.field-label {
    font-size: 14px;
}

.hint {
    font-size: 13px;
}

.main-btn {
    font-size: 15px;
}

@media (max-width: 560px) {
    .phone-field {
        grid-template-columns: 92px 58px minmax(0, 1fr);
        height: 58px;
    }

    .phone-prefix {
        font-size: 17px;
    }

    .operator-input,
    .phone-input {
        height: 58px;
        font-size: 18px;
    }

    .operator-input {
        padding-left: 18px;
    }

    .phone-input {
        padding-right: 14px;
    }
}
/* === IT LOBSTER PHONE FIELD FIX END === */

/* === SIMPLE PHONE MASK FIX START === */
.phone-field {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    height: 66px;
}

.phone-prefix {
    font-size: 21px;
    height: 66px;
}

.phone-input {
    height: 66px;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.03em;
    padding-left: 26px;
    padding-right: 26px;
}

.operator-input {
    display: none !important;
}

@media (max-width: 560px) {
    .phone-field {
        grid-template-columns: 92px minmax(0, 1fr) !important;
        height: 60px;
    }

    .phone-prefix {
        height: 60px;
        font-size: 18px;
    }

    .phone-input {
        height: 60px;
        font-size: 19px;
        padding-left: 18px;
        padding-right: 16px;
    }
}
/* === SIMPLE PHONE MASK FIX END === */

/* === PHONE FIELD UI TUNE START === */

.phone-field {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    height: 54px !important;
    border-radius: 12px;
    background: #f7f6f7;
    border-color: #e4dee2;
}

.phone-field:focus-within {
    background: #fff;
    border-color: #cfc4ca;
}

.phone-prefix {
    height: 54px !important;
    font-size: 17px !important;
    line-height: 1;
    justify-content: center;
    color: #55172b;
    border-right-color: #e4dee2;
    padding: 0;
}

.phone-input {
    height: 54px !important;
    font-size: 19px !important;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.025em;
    padding: 0 18px 0 18px !important;
}

.phone-input::placeholder {
    color: #aaa4a9;
}

.field-label {
    margin-bottom: -2px;
    font-size: 13px;
    color: #171317;
}

.hint {
    margin-top: -2px;
    font-size: 12px;
    color: #817980;
}

.auth-form {
    gap: 12px;
}

.main-btn {
    height: 50px;
    margin-top: 4px;
    border-radius: 12px;
    font-size: 14px;
}

.notice {
    padding: 11px 13px;
    font-size: 13px;
    border-radius: 12px;
}

/* code inputs теж робимо стриманіші */
.code-row {
    gap: 8px;
}

.code-input {
    height: 54px;
    border-radius: 12px;
    font-size: 22px;
    background: #f7f6f7;
    border-color: #e4dee2;
}

.code-input:focus {
    background: #fff;
    border-color: #cfc4ca;
}

@media (max-width: 560px) {
    .phone-field {
        grid-template-columns: 78px minmax(0, 1fr) !important;
        height: 52px !important;
    }

    .phone-prefix {
        height: 52px !important;
        font-size: 16px !important;
    }

    .phone-input {
        height: 52px !important;
        font-size: 18px !important;
        padding: 0 14px !important;
    }

    .code-input {
        height: 52px;
        font-size: 21px;
    }
}

/* === PHONE FIELD UI TUNE END === */

/* === SUPPORT HERO IMAGE START === */
.support-photo {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 28px);
    border-radius: 24px;
    border: 1px solid var(--line);
    background-image: url("image/support.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.photo-placeholder {
    display: none !important;
}

@media (max-width: 980px) {
    .support-photo {
        min-height: 360px;
        border-radius: 20px;
        background-position: center center;
    }
}
/* === SUPPORT HERO IMAGE END === */

/* === LOGO HEADER START === */
.brand {
    gap: 0;
}

.brand-logo {
    display: block;
    width: 148px;
    height: auto;
}

.brand-mark,
.brand-title,
.brand-subtitle {
    display: none !important;
}

@media (max-width: 560px) {
    .brand-logo {
        width: 132px;
    }
}
/* === LOGO HEADER END === */

/* === PAGE SKELETON START === */

.auth-page.is-loading {
    opacity: 0;
    pointer-events: none;
}

.auth-page {
    transition: opacity .35s ease;
}

.page-skeleton {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: 50% 50%;
    background: #fff;
    transition: opacity .35s ease, visibility .35s ease;
}

.page-skeleton.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.skeleton-left {
    position: relative;
    min-height: 100vh;
    padding: 42px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skeleton-right {
    min-height: 100vh;
    padding: 14px 14px 14px 0;
}

.sk-logo {
    position: absolute;
    top: 38px;
    left: 56px;
    width: 148px;
    height: 34px;
    border-radius: 10px;
    background: #f1eef0;
}

.sk-content {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.sk-pill {
    width: 128px;
    height: 28px;
    border-radius: 100px;
    background: #f1eef0;
    margin-bottom: 20px;
}

.sk-title {
    height: 48px;
    border-radius: 12px;
    background: #f1eef0;
}

.sk-title-1 {
    width: 92%;
    margin-bottom: 8px;
}

.sk-title-2 {
    width: 68%;
    margin-bottom: 24px;
}

.sk-text {
    height: 14px;
    border-radius: 100px;
    background: #f1eef0;
}

.sk-text-1 {
    width: 88%;
    margin-bottom: 10px;
}

.sk-text-2 {
    width: 72%;
    margin-bottom: 34px;
}

.sk-label {
    width: 112px;
    height: 14px;
    border-radius: 100px;
    background: #f1eef0;
    margin-bottom: 12px;
}

.sk-input {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    background: #f1eef0;
    margin-bottom: 12px;
}

.sk-hint {
    width: 190px;
    height: 12px;
    border-radius: 100px;
    background: #f1eef0;
    margin-bottom: 18px;
}

.sk-button {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background: #ded5da;
}

.sk-footer {
    position: absolute;
    left: 56px;
    bottom: 38px;
    width: 260px;
    height: 12px;
    border-radius: 100px;
    background: #f1eef0;
}

.sk-photo {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 28px);
    border-radius: 24px;
    background: #f1eef0;
    border: 1px solid #e9e4e7;
}

.sk-logo,
.sk-pill,
.sk-title,
.sk-text,
.sk-label,
.sk-input,
.sk-hint,
.sk-button,
.sk-footer,
.sk-photo {
    position: relative;
    overflow: hidden;
}

.sk-logo:after,
.sk-pill:after,
.sk-title:after,
.sk-text:after,
.sk-label:after,
.sk-input:after,
.sk-hint:after,
.sk-button:after,
.sk-footer:after,
.sk-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );
    animation: skeletonMove 1.15s ease-in-out infinite;
}

@keyframes skeletonMove {
    100% {
        transform: translateX(100%);
    }
}

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

    .skeleton-left {
        min-height: auto;
        padding: 96px 20px 34px;
    }

    .sk-logo {
        left: 20px;
        top: 24px;
        width: 132px;
        height: 30px;
    }

    .sk-content {
        max-width: 460px;
    }

    .sk-footer {
        position: static;
        margin: 28px auto 0;
    }

    .skeleton-right {
        min-height: auto;
        padding: 0 20px 20px;
    }

    .sk-photo {
        min-height: 320px;
        border-radius: 20px;
    }
}

/* === PAGE SKELETON END === */

/* === SKELETON ALIGN FIX START === */

.skeleton-left {
    display: grid !important;
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    padding: 38px 56px !important;
}

.sk-logo {
    position: static !important;
    width: 148px;
    height: 34px;
    margin: 0;
}

.sk-content {
    align-self: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.sk-footer {
    position: static !important;
    width: 260px;
    height: 12px;
    margin: 0;
}

.sk-pill {
    width: 124px;
    height: 28px;
    margin-bottom: 24px;
}

.sk-title {
    height: 46px;
    border-radius: 12px;
}

.sk-title-1 {
    width: 88%;
    margin-bottom: 10px;
}

.sk-title-2 {
    width: 68%;
    margin-bottom: 26px;
}

.sk-text-1 {
    width: 86%;
    margin-bottom: 11px;
}

.sk-text-2 {
    width: 70%;
    margin-bottom: 36px;
}

.sk-label {
    width: 112px;
    height: 13px;
    margin-bottom: 13px;
}

.sk-input {
    height: 54px;
    margin-bottom: 13px;
}

.sk-hint {
    width: 190px;
    height: 12px;
    margin-bottom: 20px;
}

.sk-button {
    height: 50px;
}

@media (max-width: 980px) {
    .skeleton-left {
        min-height: 100vh !important;
        grid-template-rows: auto 1fr auto;
        padding: 24px 20px 34px !important;
    }

    .sk-logo {
        width: 132px;
        height: 30px;
    }

    .sk-content {
        max-width: 460px;
        align-self: center;
    }

    .sk-footer {
        width: 240px;
        margin: 0 auto;
    }
}

/* === SKELETON ALIGN FIX END === */

/* === AUTH UX POLISH START === */

.form-wrap {
    min-height: 590px;
}

.notice {
    display: grid;
    grid-template-columns: 8px 1fr;
    gap: 12px;
    align-items: start;
    min-height: 58px;
    margin: 0 0 20px;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    transition: opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease;
}

.notice.is-empty {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-2px);
}

.notice.is-success {
    border-color: #e8e1e5;
    background: #fbf9fa;
    color: #171317;
}

.notice.is-error {
    border-color: #efd5dd;
    background: #fff8fa;
    color: #171317;
}

.notice-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    margin-top: 6px;
    background: var(--granat);
}

.notice.is-error .notice-dot {
    background: #b42343;
}

.notice-title {
    font-size: 13px;
    line-height: 1.35;
    color: #171317;
    font-weight: 500;
    margin-bottom: 2px;
}

.notice-text {
    font-size: 13px;
    line-height: 1.5;
    color: #777177;
    font-weight: 400;
}

.auth-form {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

.auth-form.is-active {
    opacity: 1;
    transform: translateY(0);
}

.auth-form[hidden] {
    display: none !important;
}

.code-row {
    min-height: 54px;
}

.code-input {
    transition: border-color .16s ease, background .16s ease;
}

.link-btn {
    margin-top: 0;
}

#siteForm .link-btn {
    display: none !important;
}

.cabinet-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.cabinet-loader.is-visible {
    opacity: 1;
    visibility: visible;
}

.cabinet-loader-card {
    width: 100%;
    max-width: 360px;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid #e9e4e7;
    background: #fff;
    text-align: center;
}

.cabinet-loader-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--granat);
    margin: 0 auto 18px;
    position: relative;
}

.cabinet-loader-mark:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 10px;
    top: 11px;
    transform: rotate(-45deg);
}

.cabinet-loader-title {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.03em;
    font-weight: 500;
    color: #171317;
    margin-bottom: 8px;
}

.cabinet-loader-text {
    font-size: 13px;
    line-height: 1.5;
    color: #777177;
    margin-bottom: 20px;
}

.cabinet-loader-line {
    width: 100%;
    height: 4px;
    border-radius: 99px;
    overflow: hidden;
    background: #f0ecef;
}

.cabinet-loader-line span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: 99px;
    background: var(--granat);
    animation: loaderLine 1.05s ease-in-out infinite;
}

@keyframes loaderLine {
    0% {
        transform: translateX(-110%);
    }

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

@media (max-width: 560px) {
    .form-wrap {
        min-height: 560px;
    }

    .notice {
        min-height: 56px;
        margin-bottom: 18px;
    }
}

/* === AUTH UX POLISH END === */

/* === NOTICE EMPTY SPACE FIX START === */

.notice.is-empty {
    display: block;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: none;
}

.notice.is-success,
.notice.is-error {
    display: grid;
    min-height: 58px;
    height: auto;
    margin: 0 0 20px;
    padding: 13px 14px;
    border-width: 1px;
    overflow: visible;
}

/* === NOTICE EMPTY SPACE FIX END === */

/* === STRICT UX TRANSITIONS START === */

.form-wrap {
    min-height: 560px !important;
}

.notice {
    position: relative;
    width: 100%;
    min-height: 0 !important;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    transition:
        height .18s ease,
        opacity .14s ease,
        margin .18s ease,
        padding .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.notice.is-empty {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
}

.notice.is-success,
.notice.is-error {
    height: 66px !important;
    min-height: 66px !important;
    margin: 0 0 20px !important;
    padding: 12px 14px !important;
    border-width: 1px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
}

.notice-content {
    min-width: 0;
}

.notice-title,
.notice-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.forms-stage {
    position: relative;
    width: 100%;
    min-height: 186px;
}

.auth-form {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none !important;
    transition: opacity .16s ease, visibility .16s ease;
}

.auth-form.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auth-form[hidden] {
    display: flex !important;
}

#phoneForm {
    min-height: 186px;
}

#codeForm {
    min-height: 186px;
}

#siteForm {
    min-height: 140px;
}

.step-label,
.lead,
h1 {
    transition: opacity .12s ease;
}

.form-wrap.is-switching .step-label,
.form-wrap.is-switching .lead,
.form-wrap.is-switching h1 {
    opacity: .72;
}

.phone-field,
.text-input,
.code-input,
.main-btn {
    backface-visibility: hidden;
    transform: translateZ(0);
}

@media (max-width: 560px) {
    .form-wrap {
        min-height: 540px !important;
    }

    .forms-stage {
        min-height: 188px;
    }

    .notice.is-success,
    .notice.is-error {
        height: 72px !important;
        min-height: 72px !important;
    }

    .notice-title,
    .notice-text {
        white-space: normal;
    }
}

/* === STRICT UX TRANSITIONS END === */

/* === ALERT SOFT FADE ONLY START === */

.notice {
    transform: none !important;
    transition:
        opacity .18s ease,
        height .12s ease,
        margin .12s ease,
        padding .12s ease,
        border-color .12s ease,
        background .12s ease !important;
    will-change: opacity;
}

.notice.is-empty {
    transform: none !important;
}

.notice.is-success,
.notice.is-error {
    transform: none !important;
}

/* прибираємо будь-який "виїзд" */
.notice,
.notice *,
.notice.is-empty,
.notice.is-success,
.notice.is-error {
    translate: none !important;
}

/* щоб контент всередині теж не смикався */
.notice-content,
.notice-title,
.notice-text,
.notice-dot {
    transform: none !important;
    animation: none !important;
}

/* === ALERT SOFT FADE ONLY END === */

/* === CLIENT DASHBOARD V2 START === */

.dashboard-body {
    min-height: 100vh;
    background: #f7f6f7;
    color: #171317;
}

.client-dashboard {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 22px 46px;
}

.client-header {
    margin-bottom: 18px;
}

.client-brand {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.client-logo {
    width: 148px;
    height: auto;
    display: block;
}

.client-head-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid #e9e4e7;
    border-radius: 22px;
    background: #fff;
}

.client-id {
    display: inline-flex;
    height: 26px;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: #f4f1f3;
    color: #8a8389;
    font-size: 12px;
    line-height: 1;
}

.client-meta h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.client-domain {
    margin-top: 10px;
    color: #777177;
    font-size: 15px;
}

.dashboard-logout {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e4dee2;
    background: #fff;
    color: #777177;
    text-decoration: none;
    font-size: 14px;
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.dashboard-logout:hover {
    border-color: #d2c8ce;
    color: #171317;
    background: #fbfafb;
}

.dash-widgets {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.dashboard-widget {
    min-height: 154px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e9e4e7;
    background: #fff;
}

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

.widget-label {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.widget-value {
    color: #171317;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.widget-number {
    color: #171317;
    font-size: 44px;
    line-height: .95;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.widget-sub {
    margin-top: 12px;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.45;
}

.dashboard-widget p {
    margin: 20px 0 0;
    color: #777177;
    font-size: 13px;
    line-height: 1.5;
}

.widget-action {
    height: 34px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
    background: #f4f1f3;
    color: #ff6b01;
    text-decoration: none;
    font-size: 13px;
    transition: background .16s ease;
}

.widget-action:hover {
    background: #ece6ea;
}

.tasks-section {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid #e9e4e7;
    background: #fff;
}

.tasks-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-label {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.tasks-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.tasks-note {
    max-width: 330px;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.tasks-table-wrap {
    overflow-x: auto;
}

.tasks-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.tasks-table th {
    padding: 13px 0;
    border-bottom: 1px solid #eee9ec;
    color: #8a8389;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}

.tasks-table td {
    padding: 17px 0;
    border-bottom: 1px solid #f0ecef;
    color: #171317;
    font-size: 14px;
    vertical-align: middle;
}

.tasks-table tr:last-child td {
    border-bottom: 0;
}

.task-title {
    font-size: 14px;
    color: #171317;
    margin-bottom: 5px;
}

.task-date,
.task-muted {
    color: #9a9399;
    font-size: 12px;
}

.task-link {
    color: #ff6b01;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 1, .25);
}

.task-status {
    display: inline-flex;
    height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 100px;
    background: #f4f1f3;
    color: #ff6b01;
    font-size: 12px;
}

.tasks-empty {
    min-height: 250px;
    border-radius: 18px;
    border: 1px dashed #ddd5da;
    background: #fbfafb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777177;
    text-align: center;
    padding: 30px;
}

.tasks-empty-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    background: #f0ecef;
    margin-bottom: 16px;
}

.tasks-empty h3 {
    margin: 0 0 8px;
    color: #171317;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.tasks-empty p {
    margin: 0;
    max-width: 430px;
    font-size: 14px;
    line-height: 1.6;
}

#nameForm {
    min-height: 140px;
}

@media (max-width: 980px) {
    .client-dashboard {
        padding: 20px 16px 34px;
    }

    .client-head-card {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 18px;
        padding: 20px;
    }

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

    .dashboard-widget-plan {
        grid-column: 1 / -1;
    }

    .tasks-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tasks-note {
        text-align: left;
    }
}

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

    .client-logo {
        width: 132px;
    }

    .tasks-section {
        padding: 18px;
        border-radius: 18px;
    }

    .widget-number {
        font-size: 38px;
    }
}

/* === CLIENT DASHBOARD V2 END === */

/* === CLIENT DASHBOARD FINAL START === */
.dashboard-body {
    min-height: 100vh;
    background: #f7f6f7;
    color: #171317;
}

.client-dashboard {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 22px 46px;
}

.client-header {
    margin-bottom: 18px;
}

.client-brand {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.client-logo {
    width: 148px;
    height: auto;
    display: block;
}

.client-head-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid #e9e4e7;
    border-radius: 22px;
    background: #fff;
}

.client-id {
    display: inline-flex;
    height: 26px;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: #f4f1f3;
    color: #8a8389;
    font-size: 12px;
    line-height: 1;
}

.client-meta h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.client-domain {
    margin-top: 10px;
    color: #777177;
    font-size: 15px;
}

.dashboard-logout {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e4dee2;
    background: #fff;
    color: #777177;
    text-decoration: none;
    font-size: 14px;
}

.dash-widgets {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.dashboard-widget {
    min-height: 154px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e9e4e7;
    background: #fff;
}

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

.widget-label {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.widget-value {
    color: #171317;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.widget-number {
    color: #171317;
    font-size: 44px;
    line-height: .95;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.widget-sub {
    margin-top: 12px;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.45;
}

.dashboard-widget p {
    margin: 20px 0 0;
    color: #777177;
    font-size: 13px;
    line-height: 1.5;
}

.widget-action {
    height: 34px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
    background: #f4f1f3;
    color: #ff6b01;
    text-decoration: none;
    font-size: 13px;
}

.tasks-section {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid #e9e4e7;
    background: #fff;
}

.tasks-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-label {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.tasks-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.tasks-note {
    max-width: 330px;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.tasks-table-wrap {
    overflow-x: auto;
}

.tasks-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.tasks-table th {
    padding: 13px 0;
    border-bottom: 1px solid #eee9ec;
    color: #8a8389;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}

.tasks-table td {
    padding: 17px 0;
    border-bottom: 1px solid #f0ecef;
    color: #171317;
    font-size: 14px;
    vertical-align: middle;
}

.tasks-table tr:last-child td {
    border-bottom: 0;
}

.task-title {
    font-size: 14px;
    color: #171317;
    margin-bottom: 5px;
}

.task-date,
.task-muted {
    color: #9a9399;
    font-size: 12px;
}

.task-link {
    color: #ff6b01;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 1, .25);
}

.task-status {
    display: inline-flex;
    height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 100px;
    background: #f4f1f3;
    color: #ff6b01;
    font-size: 12px;
}

.tasks-empty {
    min-height: 250px;
    border-radius: 18px;
    border: 1px dashed #ddd5da;
    background: #fbfafb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777177;
    text-align: center;
    padding: 30px;
}

.tasks-empty-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    background: #f0ecef;
    margin-bottom: 16px;
}

.tasks-empty h3 {
    margin: 0 0 8px;
    color: #171317;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.tasks-empty p {
    margin: 0;
    max-width: 430px;
    font-size: 14px;
    line-height: 1.6;
}

#nameForm {
    min-height: 140px;
}

@media (max-width: 980px) {
    .client-dashboard {
        padding: 20px 16px 34px;
    }

    .client-head-card {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 18px;
        padding: 20px;
    }

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

    .dashboard-widget-plan {
        grid-column: 1 / -1;
    }

    .tasks-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tasks-note {
        text-align: left;
    }
}

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

    .client-logo {
        width: 132px;
    }

    .tasks-section {
        padding: 18px;
        border-radius: 18px;
    }

    .widget-number {
        font-size: 38px;
    }
}
/* === CLIENT DASHBOARD FINAL END === */

/* === EMPTY TASKS SVG ICON START === */
.tasks-empty-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f4f1f3;
    border: 1px solid #ebe5e8;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f6670;
}

.tasks-empty-mark svg {
    width: 24px;
    height: 24px;
    display: block;
}
/* === EMPTY TASKS SVG ICON END === */

/* === BETTER EMPTY TASKS ICON START === */
.tasks-empty-mark {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: #f6f2f4;
    border: 1px solid #ebe4e8;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b01;
}

.tasks-empty-mark svg {
    width: 38px;
    height: 38px;
    display: block;
}

.tasks-empty-mark .empty-icon-line {
    opacity: .38;
}
/* === BETTER EMPTY TASKS ICON END === */

/* === SIMPLE TASK EMPTY ICON START === */
.tasks-empty-mark {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #f6f2f4;
    border: 1px solid #ebe4e8;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b01;
}

.tasks-empty-mark svg {
    width: 40px;
    height: 40px;
    display: block;
}
/* === SIMPLE TASK EMPTY ICON END === */

/* === TELEGRAM CONNECT WIDGET START === */
.telegram-connect {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid #e9e4e7;
    background: #fff;
}

.telegram-connect-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #f4f1f3;
    border: 1px solid #ebe4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b01;
}

.telegram-connect-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.telegram-connect-label {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 7px;
}

.telegram-connect h2 {
    margin: 0;
    color: #171317;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.telegram-connect p {
    margin: 8px 0 0;
    color: #777177;
    font-size: 13px;
    line-height: 1.45;
}

.telegram-connect-btn {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 16px;
    border-radius: 12px;
    background: #ff6b01;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: background .16s ease;
}

.telegram-connect-btn:hover {
    background: #d95700;
}

@media (max-width: 760px) {
    .telegram-connect {
        grid-template-columns: 48px 1fr;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
    }

    .telegram-connect-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .telegram-connect-icon svg {
        width: 26px;
        height: 26px;
    }

    .telegram-connect-btn {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 2px;
    }

    .telegram-connect h2 {
        font-size: 20px;
    }
}
/* === TELEGRAM CONNECT WIDGET END === */

/* === TELEGRAM CONNECTED STATUS START === */
.telegram-connect.is-connected {
    background: #fff;
}

.telegram-connect.is-connected .telegram-connect-icon {
    background: #f5f8f6;
    border-color: #dfeae3;
    color: #2f7a4f;
}

.telegram-connected-badge {
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 12px;
    border-radius: 10px;
    background: #f5f8f6;
    border: 1px solid #dfeae3;
    color: #2f7a4f;
    font-size: 13px;
}

.telegram-username {
    color: #ff6b01;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .telegram-connected-badge {
        grid-column: 1 / -1;
        width: 100%;
    }
}
/* === TELEGRAM CONNECTED STATUS END === */

/* === PACKAGES MVP START === */
.support-body {
    margin: 0;
    background: #f7f4f5;
    color: #171317;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.packages-page,
.package-checkout-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 54px;
}

.packages-header {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.packages-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #e7e1e5;
    background: #fff;
    color: #ff6b01;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.packages-kicker {
    color: #8a8389;
    font-size: 13px;
    margin-bottom: 10px;
}

.packages-header h1,
.checkout-card h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: .96;
    letter-spacing: -0.065em;
    font-weight: 520;
}

.packages-header p,
.checkout-card p {
    max-width: 650px;
    margin: 16px 0 0;
    color: #716a71;
    font-size: 15px;
    line-height: 1.55;
}

.packages-client {
    min-width: 180px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #e7e1e5;
    background: #fff;
    text-align: right;
}

.packages-client div {
    font-size: 15px;
    color: #171317;
}

.packages-client span {
    display: block;
    margin-top: 4px;
    color: #8a8389;
    font-size: 13px;
}

.packages-group {
    margin-top: 28px;
}

.packages-group-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 14px;
}

.packages-group-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 520;
}

.packages-group-head p {
    max-width: 420px;
    margin: 0;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.45;
    text-align: right;
}

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

.package-card {
    position: relative;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #e7e1e5;
    background: #fff;
}

.package-card.is-popular {
    border-color: #ff6b01;
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #ff6b01;
    color: #fff;
    font-size: 12px;
}

.package-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.package-name {
    color: #8a8389;
    font-size: 13px;
    margin-bottom: 8px;
}

.package-hours {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 520;
}

.package-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #f6f2f4;
    border: 1px solid #ebe4e8;
    color: #ff6b01;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon svg {
    width: 26px;
    height: 26px;
}

.package-desc {
    min-height: 46px;
    margin: 18px 0 0;
    color: #716a71;
    font-size: 13px;
    line-height: 1.45;
}

.package-price {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #eee8eb;
}

.package-price strong {
    display: block;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 520;
}

.package-price span {
    display: block;
    margin-top: 8px;
    color: #8a8389;
    font-size: 13px;
}

.package-btn {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    border: 0;
    border-radius: 14px;
    background: #ff6b01;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.package-btn.is-secondary {
    background: #f3eef1;
    color: #ff6b01;
}

.package-checkout-page {
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: 18px;
}

.checkout-card {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid #e7e1e5;
    background: #fff;
}

.checkout-summary {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.checkout-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #eee8eb;
}

.checkout-summary span {
    color: #8a8389;
    font-size: 14px;
}

.checkout-summary strong {
    font-size: 16px;
    font-weight: 520;
}

.checkout-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.checkout-error {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff5f5;
    border: 1px solid #f1d0d0;
    color: #9b2c2c;
    font-size: 13px;
}

.checkout-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: #f5f8f6;
    border: 1px solid #dfeae3;
    color: #2f7a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.checkout-success-icon svg {
    width: 40px;
    height: 40px;
}

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

    .packages-client {
        text-align: left;
    }

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

    .packages-group-head {
        display: block;
    }

    .packages-group-head p {
        margin-top: 8px;
        text-align: left;
    }

    .checkout-actions {
        grid-template-columns: 1fr;
    }
}
/* === PACKAGES MVP END === */

/* === PACKAGES V2 START === */
.packages-page-v2 {
    width: min(1120px, calc(100% - 32px));
    padding: 22px 0 56px;
}

.packages-shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.packages-profile-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 8px;
    border-radius: 18px;
    border: 1px solid #e7e1e5;
    background: rgba(255,255,255,.76);
    color: #171317;
    text-decoration: none;
}

.packages-profile-link > span {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: #f4f1f3;
    color: #ff6b01;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-profile-link strong {
    display: block;
    font-size: 14px;
    line-height: 1.05;
    font-weight: 520;
}

.packages-profile-link small {
    display: block;
    margin-top: 3px;
    color: #8a8389;
    font-size: 12px;
}

.packages-shell-client {
    max-width: 260px;
    min-height: 48px;
    padding: 8px 14px;
    border-radius: 18px;
    border: 1px solid #e7e1e5;
    background: rgba(255,255,255,.76);
    text-align: right;
}

.packages-shell-client span {
    display: block;
    color: #8a8389;
    font-size: 12px;
    margin-bottom: 4px;
}

.packages-shell-client strong {
    display: block;
    color: #171317;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 520;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.packages-hero-v2 {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 16px;
}

.packages-hero-copy,
.packages-hero-card {
    border: 1px solid #e7e1e5;
    background: #fff;
    border-radius: 28px;
}

.packages-hero-copy {
    padding: clamp(24px, 4vw, 38px);
}

.packages-hero-copy .packages-kicker {
    margin-bottom: 14px;
}

.packages-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #171317;
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: .94;
    letter-spacing: -0.07em;
    font-weight: 520;
}

.packages-hero-copy p {
    max-width: 660px;
    margin: 18px 0 0;
    color: #716a71;
    font-size: 15px;
    line-height: 1.55;
}

.packages-hero-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 210px;
}

.packages-hero-card span {
    color: #8a8389;
    font-size: 13px;
}

.packages-hero-card strong {
    display: block;
    margin-top: 10px;
    color: #ff6b01;
    font-size: 34px;
    line-height: .95;
    letter-spacing: -0.055em;
    font-weight: 520;
}

.packages-hero-card small {
    display: block;
    margin-top: 8px;
    color: #8a8389;
    font-size: 13px;
}

.packages-marquee {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #e7e1e5;
    background: #fff;
    margin: 16px 0 18px;
}

.packages-marquee-track {
    display: flex;
    width: max-content;
    gap: 10px;
    padding: 12px;
    animation: packagesMarquee 32s linear infinite;
}

.packages-marquee-track span {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f6f2f4;
    color: #ff6b01;
    font-size: 13px;
    white-space: nowrap;
}

@keyframes packagesMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.packages-list-v2 {
    display: grid;
    gap: 12px;
}

.package-row-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 180px 190px 116px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid #e7e1e5;
    background: #fff;
}

.package-row-card.is-popular {
    border-color: rgba(255, 107, 1, .45);
    background:
        radial-gradient(circle at top right, rgba(255, 107, 1, .07), transparent 38%),
        #fff;
}

.package-row-main h2 {
    margin: 10px 0 0;
    color: #171317;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 520;
}

.package-row-main p {
    max-width: 430px;
    margin: 10px 0 0;
    color: #716a71;
    font-size: 13px;
    line-height: 1.45;
}

.package-row-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.package-row-meta span,
.package-row-meta em {
    height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
}

.package-row-meta span {
    background: #f6f2f4;
    color: #706870;
}

.package-row-meta em {
    background: #ff6b01;
    color: #fff;
}

.package-row-economy {
    padding: 14px;
    border-radius: 18px;
    background: #f8f5f6;
    border: 1px solid #eee8eb;
}

.package-row-economy span,
.package-rate small,
.package-total small {
    display: block;
    color: #8a8389;
    font-size: 12px;
}

.package-row-economy strong {
    display: block;
    margin-top: 7px;
    color: #2f7a4f;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 520;
}

.package-row-economy small {
    display: block;
    margin-top: 8px;
    color: #8a8389;
    font-size: 12px;
    line-height: 1.25;
}

.package-row-price {
    display: grid;
    gap: 12px;
}

.package-rate span {
    display: block;
    color: #ff6b01;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 520;
}

.package-total strong {
    display: block;
    color: #171317;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 520;
}

.package-row-btn {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #ff6b01;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.package-row-card:not(.is-popular) .package-row-btn {
    background: #f3eef1;
    color: #ff6b01;
}

.packages-note-v2 {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid #e7e1e5;
    background: #fff;
}

.packages-note-v2 strong {
    display: block;
    font-size: 15px;
    font-weight: 520;
}

.packages-note-v2 p {
    max-width: 720px;
    margin: 7px 0 0;
    color: #716a71;
    font-size: 13px;
    line-height: 1.45;
}

.packages-note-v2 a {
    min-width: 112px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f3eef1;
    color: #ff6b01;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 980px) {
    .packages-hero-v2 {
        grid-template-columns: 1fr;
    }

    .packages-hero-card {
        min-height: auto;
    }

    .package-row-card {
        grid-template-columns: 1fr;
    }

    .package-row-price {
        grid-template-columns: 1fr 1fr;
    }

    .package-row-btn {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .packages-page-v2 {
        width: min(100% - 24px, 1120px);
        padding-top: 14px;
    }

    .packages-shell-header {
        align-items: stretch;
        flex-direction: column;
    }

    .packages-shell-client {
        max-width: none;
        text-align: left;
    }

    .packages-hero-copy,
    .packages-hero-card {
        border-radius: 22px;
    }

    .packages-hero-copy h1 {
        font-size: 36px;
    }

    .package-row-card {
        border-radius: 22px;
        padding: 16px;
    }

    .package-row-price {
        grid-template-columns: 1fr;
    }

    .packages-note-v2 {
        display: block;
    }

    .packages-note-v2 a {
        width: 100%;
        margin-top: 14px;
    }
}
/* === PACKAGES V2 END === */

/* === PACKAGES SALES UPDATE START === */

/* прибрали бігаючу строку */
.packages-marquee {
    display: none !important;
}

.packages-hero-v2 {
    margin-bottom: 18px;
}

.package-row-card {
    grid-template-columns: minmax(260px, 1fr) 190px 210px 116px;
}

.package-row-card.is-popular {
    border-color: #e7e1e5;
    background:
        linear-gradient(135deg, rgba(255, 107, 1, .035), rgba(255,255,255,0) 38%),
        #fff;
}

.package-row-card.is-popular::before {
    display: none;
}

.package-row-meta span {
    background: #f6f2f4;
    color: #706870;
}

.package-row-meta .popular-pill {
    background: #fff2dc;
    color: #7a4300;
    border: 1px solid #f0d3a1;
}

.package-row-card.is-popular .package-row-meta .popular-pill {
    background: #ff6b01;
    color: #fff;
    border-color: #ff6b01;
}

.package-row-main h2 {
    font-size: 26px;
}

.package-row-tagline {
    display: inline-flex;
    margin-top: 8px;
    color: #ff6b01;
    font-size: 13px;
    line-height: 1.25;
}

.package-row-main p {
    margin-top: 9px;
}

.package-row-economy {
    background: #f7faf8;
    border-color: #ddebe2;
}

.package-row-economy span {
    color: #6d8475;
}

.package-row-economy strong {
    color: #2f7a4f;
    font-size: 22px;
}

.package-row-economy small {
    color: #6f8075;
}

.package-row-price {
    gap: 14px;
}

.package-total small {
    display: block;
    margin-bottom: 7px;
    color: #8a8389;
    font-size: 12px;
}

.package-total strong {
    font-size: 28px;
    color: #171317;
}

.package-rate {
    padding-top: 12px;
    border-top: 1px solid #eee8eb;
}

.package-rate span {
    font-size: 18px;
    color: #ff6b01;
}

.package-rate small {
    margin-top: 5px;
}

.package-row-card.is-popular .package-row-btn {
    background: #ff6b01;
    color: #fff;
}

.packages-hero-copy h1 {
    max-width: 820px;
}

@media (max-width: 980px) {
    .package-row-card {
        grid-template-columns: 1fr;
    }

    .package-row-card.is-popular::before {
        inset: 10px 10px auto 10px;
        width: auto;
        height: 4px;
    }
}

/* === PACKAGES SALES UPDATE END === */


/* === REMOVE PACKAGE BUTTON ARROW START === */
.package-row-card.is-popular .package-row-btn::after {
    content: none !important;
    display: none !important;
}
/* === REMOVE PACKAGE BUTTON ARROW END === */

/* === PACKAGE CHECKOUT V2 START === */
.checkout-page-v2 {
    width: min(1120px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 22px 0 56px;
}

.checkout-shell-header {
    margin-bottom: 22px;
}

.checkout-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    align-items: stretch;
}

.checkout-main-v2,
.checkout-summary-v2,
.checkout-success-v2 {
    border: 1px solid #e7e1e5;
    background: #fff;
    border-radius: 30px;
}

.checkout-main-v2 {
    padding: clamp(24px, 4vw, 40px);
}

.checkout-main-v2 h1,
.checkout-success-v2 h1 {
    margin: 0;
    color: #171317;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 520;
}

.checkout-subtitle {
    margin-top: 14px;
    color: #ff6b01;
    font-size: 18px;
    line-height: 1.2;
}

.checkout-main-v2 p,
.checkout-success-v2 p {
    max-width: 660px;
    margin: 18px 0 0;
    color: #716a71;
    font-size: 15px;
    line-height: 1.55;
}

.checkout-benefits-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.checkout-benefits-v2 div {
    min-height: 104px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid #eee8eb;
    background: #f8f5f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkout-benefits-v2 span {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.25;
}

.checkout-benefits-v2 strong {
    color: #171317;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 520;
}

.checkout-benefits-v2 div:last-child {
    background: #f7faf8;
    border-color: #ddebe2;
}

.checkout-benefits-v2 div:last-child strong {
    color: #2f7a4f;
}

.checkout-payment-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.checkout-pay-card {
    min-height: 116px;
    border: 1px solid #e7e1e5;
    border-radius: 22px;
    background: #fff;
    color: #171317;
    padding: 16px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-family: inherit;
}

.checkout-pay-card.is-main {
    border-color: rgba(255, 107, 1, .35);
    background:
        linear-gradient(135deg, rgba(255, 107, 1, .045), rgba(255,255,255,0) 42%),
        #fff;
}

.checkout-pay-card.is-disabled {
    opacity: .74;
}

.checkout-pay-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 15px;
    background: #f6f2f4;
    border: 1px solid #ebe4e8;
    color: #ff6b01;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.checkout-pay-card strong {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 520;
}

.checkout-pay-card small {
    display: block;
    margin-top: 8px;
    color: #8a8389;
    font-size: 12px;
    line-height: 1.35;
}

.checkout-summary-v2 {
    position: sticky;
    top: 18px;
    align-self: start;
    padding: 20px;
}

.checkout-popular-pill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #ff6b01;
    color: #fff;
    font-size: 13px;
    margin-bottom: 18px;
}

.checkout-summary-top {
    padding-bottom: 18px;
    border-bottom: 1px solid #eee8eb;
}

.checkout-summary-top span {
    display: block;
    color: #8a8389;
    font-size: 13px;
    margin-bottom: 10px;
}

.checkout-summary-top strong {
    display: block;
    color: #171317;
    font-size: 42px;
    line-height: .9;
    letter-spacing: -0.065em;
    font-weight: 520;
}

.checkout-summary-top small {
    display: block;
    margin-top: 10px;
    color: #8a8389;
    font-size: 13px;
}

.checkout-summary-list {
    display: grid;
    gap: 0;
    margin-top: 8px;
}

.checkout-summary-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #f0eaed;
}

.checkout-summary-list span {
    color: #8a8389;
    font-size: 13px;
}

.checkout-summary-list strong {
    color: #171317;
    font-size: 14px;
    font-weight: 520;
    text-align: right;
}

.checkout-summary-list div:nth-child(3) strong,
.checkout-summary-list div:nth-child(4) strong {
    color: #2f7a4f;
}

.checkout-summary-note {
    margin-top: 16px;
    padding: 14px;
    border-radius: 18px;
    background: #f8f5f6;
    color: #716a71;
    font-size: 13px;
    line-height: 1.45;
}

.checkout-success-v2 {
    max-width: 720px;
    margin: 80px auto 0;
    padding: clamp(24px, 4vw, 40px);
}

.checkout-success-v2 .checkout-success-icon {
    margin-bottom: 22px;
}

.checkout-success-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.checkout-success-actions .package-row-btn {
    width: auto;
    min-width: 220px;
}

.checkout-light-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff6b01;
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 940px) {
    .checkout-layout-v2 {
        grid-template-columns: 1fr;
    }

    .checkout-summary-v2 {
        position: static;
    }
}

@media (max-width: 680px) {
    .checkout-page-v2 {
        width: min(100% - 24px, 1120px);
        padding-top: 14px;
    }

    .checkout-main-v2,
    .checkout-summary-v2,
    .checkout-success-v2 {
        border-radius: 24px;
    }

    .checkout-main-v2 h1,
    .checkout-success-v2 h1 {
        font-size: 42px;
    }

    .checkout-benefits-v2,
    .checkout-payment-v2 {
        grid-template-columns: 1fr;
    }

    .checkout-success-actions {
        display: grid;
    }

    .checkout-success-actions .package-row-btn {
        width: 100%;
        min-width: 0;
    }
}
/* === PACKAGE CHECKOUT V2 END === */

/* === PACKAGE VALIDITY TOOLTIP START === */
.package-validity {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 11px;
    border-radius: 999px;
    background: #f8f5f6;
    border: 1px solid #eee8eb;
}

.package-validity > span:first-child {
    color: #ff6b01;
    font-size: 13px;
    line-height: 1.1;
}

.package-validity-help,
.checkout-validity-help {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2d9de;
    color: #8a6371;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    cursor: help;
}

.package-validity-tooltip,
.checkout-validity-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: 270px;
    padding: 11px 12px;
    border-radius: 14px;
    background: #171317;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    text-align: left;
    box-sizing: border-box;
}

.package-validity-tooltip::after,
.checkout-validity-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #171317;
}

.package-validity-help:hover .package-validity-tooltip,
.package-validity-help:focus .package-validity-tooltip,
.checkout-validity-help:hover .checkout-validity-tooltip,
.checkout-validity-help:focus .checkout-validity-tooltip {
    opacity: 1;
    visibility: visible;
}

.checkout-validity-box {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #eee8eb;
    background: #f8f5f6;
}

.checkout-validity-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe4e8;
    color: #ff6b01;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-validity-icon svg {
    width: 28px;
    height: 28px;
}

.checkout-validity-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.checkout-validity-content strong {
    display: inline-flex;
    align-items: center;
    color: #171317;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 520;
}

.checkout-summary-validity strong {
    color: #ff6b01 !important;
}

@media (max-width: 680px) {
    .package-validity-tooltip,
    .checkout-validity-tooltip {
        left: auto;
        right: 0;
        transform: none;
        width: min(270px, calc(100vw - 48px));
    }

    .package-validity-tooltip::after,
    .checkout-validity-tooltip::after {
        left: auto;
        right: 8px;
        transform: none;
    }
}
/* === PACKAGE VALIDITY TOOLTIP END === */

/* === PACKAGE VALIDITY MINIMAL STYLE START === */
.package-validity {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
}

.package-validity > span:first-child {
    color: #8a8389;
    font-size: 13px;
    line-height: 1.2;
}

.package-validity-help {
    position: relative;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #8a8389;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    cursor: help;
    padding: 0;
    border-radius: 0;
}

.package-validity-help:hover,
.package-validity-help:focus {
    color: #ff6b01;
}
/* === PACKAGE VALIDITY MINIMAL STYLE END === */

/* === PACKAGE VALIDITY LINE ICON START === */
.package-row-tagline {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: #ff6b01;
    font-size: 13px;
    line-height: 1.25;
}

.package-validity {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    margin-left: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    vertical-align: middle;
}

.package-validity::before {
    content: "";
    width: 1px;
    height: 14px;
    background: #ded7dc;
    margin-right: 5px;
}

.package-validity > span:first-child {
    color: #8a8389;
    font-size: 13px;
    line-height: 1.2;
}

.package-validity-help {
    position: relative;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    border-radius: 999px;
    background: #f6f2f4;
    border: 1px solid #e3dbe0;
    color: #8a6371;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    cursor: help;
    padding: 0;
}

.package-validity-help:hover,
.package-validity-help:focus {
    background: #ff6b01;
    border-color: #ff6b01;
    color: #fff;
}
/* === PACKAGE VALIDITY LINE ICON END === */

/* === PACKAGE VALIDITY ALIGN FIX START === */
.package-row-tagline {
    display: inline-flex !important;
    align-items: center !important;
    color: #ff6b01;
    font-size: 13px;
    line-height: 1.2;
    vertical-align: middle;
}

.package-validity {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    margin-top: 0 !important;
    margin-left: 12px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    vertical-align: middle;
    transform: translateY(-1px);
}

.package-validity::before {
    content: "";
    width: 1px;
    height: 15px;
    background: #ddd5da;
    margin-right: 8px;
    display: inline-block;
}

.package-validity > span:first-child {
    color: #8f878e !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
    display: inline-flex;
    align-items: center;
}

.package-validity-help {
    position: relative;
    width: 17px !important;
    height: 17px !important;
    flex: 0 0 17px !important;
    border-radius: 50% !important;
    background: #faf7f8 !important;
    border: 1px solid #e6dde2 !important;
    color: #9a8d94 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 500;
    padding: 0 !important;
    cursor: help;
    transform: translateY(0);
}

.package-validity-help:hover,
.package-validity-help:focus {
    background: #ff6b01 !important;
    border-color: #ff6b01 !important;
    color: #fff !important;
}

.package-validity-tooltip {
    font-weight: 400;
}
/* === PACKAGE VALIDITY ALIGN FIX END === */

/* === PACKAGE VALIDITY FINAL ALIGN START === */
.package-meta-line {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 8px;
}

.package-meta-line .package-row-tagline {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    color: #ff6b01;
    font-size: 13px !important;
    line-height: 18px !important;
    height: 18px;
    vertical-align: top;
}

.package-meta-line .package-validity {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 0 0 14px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    height: 18px;
    line-height: 18px;
    transform: none !important;
    vertical-align: top;
}

.package-meta-line .package-validity::before {
    content: "";
    display: block !important;
    width: 1px !important;
    height: 18px !important;
    background: #ded6db !important;
    margin: 0 14px 0 0 !important;
    flex: 0 0 1px;
}

.package-meta-line .package-validity > span:first-child {
    display: inline-flex !important;
    align-items: center !important;
    height: 18px !important;
    color: #8d858c !important;
    font-size: 13px !important;
    line-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.package-meta-line .package-validity-help {
    position: relative;
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    margin: 0 0 0 2px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #fbf8f9 !important;
    border: 1px solid #e3dbe0 !important;
    color: #9a8d94 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    line-height: 16px !important;
    font-weight: 500 !important;
    transform: none !important;
    cursor: help;
}

.package-meta-line .package-validity-help:hover,
.package-meta-line .package-validity-help:focus {
    background: #ff6b01 !important;
    border-color: #ff6b01 !important;
    color: #fff !important;
}

@media (max-width: 620px) {
    .package-meta-line {
        gap: 6px;
    }

    .package-meta-line .package-validity {
        margin-left: 0 !important;
    }

    .package-meta-line .package-validity::before {
        margin-right: 10px !important;
    }
}
/* === PACKAGE VALIDITY FINAL ALIGN END === */

/* === CHECKOUT PAYMENT REQUISITES START === */
.checkout-payment-form {
    margin-top: 26px;
}

.checkout-payment-title {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 12px;
}

.checkout-payment-title strong {
    color: #171317;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 520;
}

.checkout-payment-title span {
    max-width: 360px;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.4;
    text-align: right;
}

.checkout-payment-v2.is-selectable {
    margin-top: 0;
}

.checkout-payment-v2.is-selectable .checkout-pay-card {
    position: relative;
    cursor: pointer;
}

.checkout-payment-v2.is-selectable .checkout-pay-card:hover {
    border-color: rgba(255, 107, 1, .34);
}

.checkout-payment-v2.is-selectable .checkout-pay-card.is-selected {
    border-color: rgba(255, 107, 1, .7);
    background:
        linear-gradient(135deg, rgba(255, 107, 1, .055), rgba(255,255,255,0) 44%),
        #fff;
}

.checkout-pay-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #ded6db;
    background: #fff;
}

.checkout-pay-card.is-selected .checkout-pay-check {
    border-color: #ff6b01;
    background: #ff6b01;
}

.checkout-pay-card.is-selected .checkout-pay-check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.payment-requisites,
.payment-online-note {
    margin-top: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid #e7e1e5;
    background: #fff;
}

.payment-requisites {
    background:
        linear-gradient(135deg, rgba(255, 107, 1, .045), rgba(255,255,255,0) 42%),
        #fff;
}

.payment-requisites-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.payment-requisites-head strong {
    display: block;
    color: #171317;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 520;
}

.payment-requisites-head span {
    display: block;
    margin-top: 6px;
    color: #8a8389;
    font-size: 13px;
}

.payment-requisites-amount {
    white-space: nowrap;
    color: #ff6b01;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 520;
}

.payment-requisites-list {
    display: grid;
    gap: 0;
    border-top: 1px solid #eee8eb;
}

.payment-requisites-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #eee8eb;
}

.payment-requisites-list span {
    color: #8a8389;
    font-size: 13px;
}

.payment-requisites-list strong {
    color: #171317;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 520;
    overflow-wrap: anywhere;
}

.payment-requisites-note,
.payment-online-note {
    color: #716a71;
    font-size: 13px;
    line-height: 1.45;
}

.payment-requisites-note {
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 16px;
    background: #f8f5f6;
}

.payment-online-note {
    background: #f8f5f6;
}

.checkout-submit-btn {
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    border: 0;
    border-radius: 16px;
    background: #ff6b01;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
}

.checkout-submit-btn:disabled {
    cursor: not-allowed;
    background: #e4dce1;
    color: #9d9299;
}

.payment-success-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.payment-success-summary div {
    padding: 14px;
    border-radius: 18px;
    background: #f8f5f6;
    border: 1px solid #eee8eb;
}

.payment-success-summary span {
    display: block;
    color: #8a8389;
    font-size: 12px;
    margin-bottom: 8px;
}

.payment-success-summary strong {
    display: block;
    color: #171317;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 520;
}

@media (max-width: 680px) {
    .checkout-payment-title {
        display: block;
    }

    .checkout-payment-title span {
        display: block;
        margin-top: 7px;
        text-align: left;
    }

    .payment-requisites-head {
        display: block;
    }

    .payment-requisites-amount {
        margin-top: 12px;
    }

    .payment-requisites-list div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .payment-success-summary {
        grid-template-columns: 1fr;
    }
}
/* === CHECKOUT PAYMENT REQUISITES END === */

/* === DASHBOARD PLAN EXPIRES START === */
.dashboard-plan-expires {
    display: block;
    margin-top: 6px;
    color: #8a8389;
    font-size: 12px;
    line-height: 1.25;
}
/* === DASHBOARD PLAN EXPIRES END === */

/* === DASHBOARD PLAN EXPIRES FIX START === */
.dashboard-plan-expires {
    display: block;
    margin-top: 6px;
    color: #8a8389;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
}
/* === DASHBOARD PLAN EXPIRES FIX END === */

/* === DASHBOARD PLAN DATE START === */
.dashboard-widget-plan .widget-value {
    line-height: 1.15;
}

.dashboard-plan-expires {
    display: block;
    margin-top: 8px;
    color: #8a8389;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
}
/* === DASHBOARD PLAN DATE END === */

/* === DASHBOARD PLAN DATE HARD FIX START === */
.dashboard-widget-plan .widget-value {
    display: block !important;
    line-height: 1.15 !important;
}

.dashboard-widget-plan .dashboard-plan-expires {
    display: block !important;
    margin-top: 8px !important;
    color: #8a8389 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
}
/* === DASHBOARD PLAN DATE HARD FIX END === */

/* === FORCE SHOW PLAN EXPIRES === */
.dashboard-plan-expires {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 8px !important;
    color: #8a8389 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
}

/* === DASHBOARD PURCHASE HISTORY START === */
.dashboard-purchase-history {
    margin-top: 22px;
}

.dashboard-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 14px;
}

.dashboard-section-head h2 {
    margin: 0;
    color: #171317;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 480;
}

.dashboard-section-head p {
    margin: 7px 0 0;
    color: #8a8389;
    font-size: 14px;
    line-height: 1.35;
}

.purchase-history-list {
    display: grid;
    gap: 10px;
}

.purchase-history-item {
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #ebe4e8;
    background: rgba(255,255,255,.86);
    box-shadow: 0 12px 36px rgba(44, 28, 36, .045);
}

.purchase-history-main {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.purchase-history-main strong {
    display: block;
    color: #171317;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 480;
}

.purchase-history-main span {
    display: block;
    margin-top: 5px;
    color: #8a8389;
    font-size: 13px;
}

.purchase-history-price {
    color: #ff6b01;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.035em;
    white-space: nowrap;
    font-weight: 480;
}

.purchase-history-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: #8a8389;
    font-size: 12px;
}

.purchase-history-meta > span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f6f2f4;
}

.purchase-status {
    color: #6f656d !important;
}

.purchase-status-paid {
    background: #e4f5e7 !important;
    color: #1d6b35 !important;
}

.purchase-status-pending {
    background: #fff5d8 !important;
    color: #82620b !important;
}

.purchase-status-cancelled {
    background: #fde8e8 !important;
    color: #a32121 !important;
}

.dashboard-empty-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid #ebe4e8;
    background: rgba(255,255,255,.78);
    color: #8a8389;
}

.dashboard-empty-card strong {
    display: block;
    color: #171317;
    font-weight: 480;
}

.dashboard-empty-card span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
}

.dashboard-empty-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: #f6f2f4;
    color: #8a8389;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-empty-icon svg {
    width: 25px;
    height: 25px;
}

@media (max-width: 620px) {
    .purchase-history-main {
        display: block;
    }

    .purchase-history-price {
        margin-top: 12px;
    }

    .dashboard-empty-card {
        align-items: flex-start;
    }
}
/* === DASHBOARD PURCHASE HISTORY END === */

/* === PACKAGE CHECKOUT SUCCESS ORDER NUMBER START === */
.checkout-success-order-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    margin-top: 10px;
    border-radius: 999px;
    background: #f6f2f4;
    color: #ff6b01;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.01em;
    font-weight: 480;
}

.checkout-success h1,
.checkout-success h2,
.checkout-success-title,
.success-title {
    max-width: 620px;
    font-size: clamp(30px, 4.2vw, 48px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.checkout-success p,
.checkout-success-text,
.success-text {
    max-width: 560px;
}
/* === PACKAGE CHECKOUT SUCCESS ORDER NUMBER END === */

/* === SUCCESS PAGE REDESIGN START === */
.checkout-success-pro {
    padding: 10px 0 0;
}

.checkout-success-pro__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
}

.checkout-success-pro__main,
.checkout-success-pro__card,
.checkout-success-pro__note {
    background: #ffffff;
    border: 1px solid #ece4e7;
    border-radius: 28px;
}

.checkout-success-pro__main {
    padding: 32px;
}

.checkout-success-pro__icon {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    background: #f4faf6;
    border: 1px solid #d8e8dc;
    color: #2f7d4e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.checkout-success-pro__icon svg {
    width: 40px;
    height: 40px;
}

.checkout-success-pro__kicker {
    color: #8e858c;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.checkout-success-pro__main h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: .94;
    letter-spacing: -0.055em;
    font-weight: 500;
    color: #171116;
    max-width: 460px;
    text-wrap: balance;
}

.checkout-success-pro__order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f7f2f4;
    color: #ff6b01;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 18px;
}

.checkout-success-pro__order strong {
    font-weight: 500;
}

.checkout-success-pro__lead {
    max-width: 560px;
    margin: 0;
    color: #6f666d;
    font-size: 18px;
    line-height: 1.55;
}

.checkout-success-pro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.checkout-success-pro__side {
    display: grid;
    gap: 16px;
}

.checkout-success-pro__card,
.checkout-success-pro__note {
    padding: 24px;
}

.checkout-success-pro__card-label,
.checkout-success-pro__note-title {
    color: #8e858c;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.checkout-success-pro__stats {
    display: grid;
    gap: 14px;
}

.checkout-success-pro__stat {
    padding: 14px 0;
    border-top: 1px solid #f0e8eb;
}

.checkout-success-pro__stat:first-child {
    border-top: 0;
    padding-top: 0;
}

.checkout-success-pro__stat span {
    display: block;
    color: #8e858c;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.checkout-success-pro__stat strong {
    display: block;
    color: #171116;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.checkout-success-pro__note p {
    margin: 0;
    color: #6f666d;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .checkout-success-pro__wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .checkout-success-pro__main,
    .checkout-success-pro__card,
    .checkout-success-pro__note {
        padding: 22px;
        border-radius: 24px;
    }

    .checkout-success-pro__icon {
        width: 76px;
        height: 76px;
        border-radius: 24px;
        margin-bottom: 18px;
    }

    .checkout-success-pro__main h1 {
        font-size: 40px;
    }

    .checkout-success-pro__lead {
        font-size: 16px;
    }

    .checkout-success-pro__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-success-pro__actions .package-row-btn,
    .checkout-success-pro__actions .checkout-light-link {
        width: 100%;
        justify-content: center;
    }
}
/* === SUCCESS PAGE REDESIGN END === */

/* === SUCCESS PAGE BUTTONS FIX START === */
.checkout-success-pro__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 30px;
}

.checkout-success-pro__actions .package-row-btn,
.checkout-success-pro__actions .checkout-light-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1;
    font-weight: 480;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.checkout-success-pro__actions .package-row-btn {
    width: auto;
    min-width: 190px;
    background: #ff6b01;
    color: #fff;
    border: 1px solid #ff6b01;
}

.checkout-success-pro__actions .checkout-light-link {
    min-width: 185px;
    background: #f7f2f4;
    color: #ff6b01;
    border: 1px solid #eee2e7;
}

.checkout-success-pro__actions .checkout-light-link:hover {
    background: #f1e8ec;
}

.checkout-success-pro__actions .package-row-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .checkout-success-pro__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .checkout-success-pro__actions .package-row-btn,
    .checkout-success-pro__actions .checkout-light-link {
        width: 100%;
        min-width: 0;
    }
}
/* === SUCCESS PAGE BUTTONS FIX END === */

/* === DASHBOARD TOP PACKAGE BUTTON START === */
.dashboard-top-package-btn {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ff6b01;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 520;
    letter-spacing: -0.01em;
    box-shadow: 0 14px 34px rgba(255, 107, 1, .18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dashboard-top-package-btn:hover {
    transform: translateY(-1px);
    background: #ff6b01;
    box-shadow: 0 18px 42px rgba(255, 107, 1, .24);
}

.dashboard-page,
.cabinet-page,
.support-dashboard,
.dashboard-shell,
main {
    position: relative;
}

@media (max-width: 720px) {
    .dashboard-top-package-btn {
        top: 18px;
        right: 18px;
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }
}
/* === DASHBOARD TOP PACKAGE BUTTON END === */

/* === DASHBOARD TOP PACKAGE BUTTON START === */
.dashboard-top-package-btn {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ff6b01;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 520;
    letter-spacing: -0.01em;
    box-shadow: 0 14px 34px rgba(255, 107, 1, .18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dashboard-top-package-btn:hover {
    transform: translateY(-1px);
    background: #ff6b01;
    box-shadow: 0 18px 42px rgba(255, 107, 1, .24);
}

.dashboard-page,
.cabinet-page,
.support-dashboard,
.dashboard-shell,
main {
    position: relative;
}

@media (max-width: 720px) {
    .dashboard-top-package-btn {
        top: 18px;
        right: 18px;
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }
}
/* === DASHBOARD TOP PACKAGE BUTTON END === */

/* === MOBILE AUTH CENTER CLEAN START === */
@media (max-width: 768px) {
    body {
        min-height: 100svh;
        background: #ffffff;
    }

    .auth-page {
        min-height: 100svh;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 22px !important;
    }

    .auth-panel {
        width: 100% !important;
        max-width: 420px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .auth-side,
    .auth-banner,
    .auth-image,
    .auth-photo,
    .hero-side,
    .skeleton-right {
        display: none !important;
    }

    .brand {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 0 28px !important;
        text-align: center !important;
    }

    .brand-logo {
        display: block !important;
        max-width: 178px !important;
        width: 178px !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .form-wrap {
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .form-wrap h1 {
        font-size: 34px !important;
        line-height: 1.02 !important;
        letter-spacing: -0.055em !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .form-wrap .lead,
    .lead {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 340px !important;
    }

    .step-label {
        justify-content: center !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .auth-form {
        text-align: left !important;
    }

    .main-btn {
        width: 100% !important;
    }

    .page-skeleton {
        grid-template-columns: 1fr !important;
    }

    .skeleton-left {
        min-height: 100svh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 22px !important;
    }
}

@media (max-width: 420px) {
    .auth-page {
        padding: 18px !important;
    }

    .brand-logo {
        width: 158px !important;
        max-width: 158px !important;
    }

    .form-wrap h1 {
        font-size: 30px !important;
    }
}
/* === MOBILE AUTH CENTER CLEAN END === */

/* === MOBILE AUTH FINAL FIX START === */
@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        min-height: 100%;
        overflow-x: hidden;
        background: #ffffff !important;
    }

    body::before,
    body::after,
    .auth-page::before,
    .auth-page::after,
    .auth-panel::before,
    .auth-panel::after {
        display: none !important;
        content: none !important;
    }

    .auth-page {
        width: 100% !important;
        min-height: 100svh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 28px 22px !important;
        background: #ffffff !important;
        box-sizing: border-box !important;
    }

    .auth-panel {
        width: 100% !important;
        max-width: 430px !important;
        min-height: auto !important;
        height: auto !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 auto !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
        overflow: visible !important;
    }

    .auth-side,
    .auth-banner,
    .auth-image,
    .auth-photo,
    .hero-side,
    .skeleton-right {
        display: none !important;
    }

    .brand {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 0 26px !important;
        padding: 0 !important;
        text-align: center !important;
        position: static !important;
    }

    .brand-logo {
        display: block !important;
        width: 210px !important;
        max-width: 72vw !important;
        height: auto !important;
        margin: 0 auto !important;
        position: static !important;
        transform: none !important;
    }

    .form-wrap {
        width: 100% !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        position: static !important;
    }

    .step-label {
        width: fit-content !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 16px !important;
        padding: 9px 16px !important;
        font-size: 14px !important;
        line-height: 1 !important;
        position: static !important;
        transform: none !important;
    }

    .form-wrap h1 {
        max-width: 360px !important;
        margin: 0 auto 18px !important;
        font-size: 36px !important;
        line-height: .98 !important;
        letter-spacing: -0.055em !important;
        text-align: center !important;
    }

    .form-wrap .lead,
    .lead {
        max-width: 350px !important;
        margin: 0 auto 32px !important;
        color: #81787f !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
        text-align: center !important;
    }

    .forms-stage {
        width: 100% !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .auth-form {
        width: 100% !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .field-label {
        display: block !important;
        margin-bottom: 10px !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
        color: #21171e !important;
        text-align: left !important;
    }

    .phone-field {
        width: 100% !important;
        height: 62px !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
    }

    .phone-prefix {
        min-width: 96px !important;
        height: 62px !important;
        font-size: 18px !important;
    }

    .phone-input {
        height: 62px !important;
        font-size: 18px !important;
    }

    .hint {
        margin-top: 10px !important;
        font-size: 13px !important;
        color: #8d848a !important;
        text-align: left !important;
    }

    .main-btn {
        width: 100% !important;
        height: 62px !important;
        min-height: 62px !important;
        margin-top: 28px !important;
        border-radius: 18px !important;
        font-size: 17px !important;
    }

    .auth-footer,
    .form-footer {
        max-width: 340px !important;
        margin: 34px auto 0 !important;
        text-align: center !important;
        color: #a29aa0 !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    .page-skeleton {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .auth-page {
        align-items: flex-start !important;
        padding: 44px 18px 28px !important;
    }

    .brand {
        margin-bottom: 22px !important;
    }

    .brand-logo {
        width: 190px !important;
    }

    .form-wrap h1 {
        max-width: 310px !important;
        font-size: 32px !important;
    }

    .form-wrap .lead,
    .lead {
        max-width: 310px !important;
        font-size: 16px !important;
        margin-bottom: 28px !important;
    }

    .phone-field {
        height: 58px !important;
    }

    .phone-prefix {
        min-width: 88px !important;
        height: 58px !important;
        font-size: 17px !important;
    }

    .phone-input {
        height: 58px !important;
        font-size: 17px !important;
    }

    .main-btn {
        height: 58px !important;
        min-height: 58px !important;
    }
}
/* === MOBILE AUTH FINAL FIX END === */

/* === MOBILE AUTH HARD FIX START === */
@media (max-width: 768px) {
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        background: #fff !important;
    }

    .auth-page,
    .auth-panel,
    .form-wrap,
    .forms-stage,
    .auth-form {
        border: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;
    }

    .auth-page::before,
    .auth-page::after,
    .auth-panel::before,
    .auth-panel::after,
    .form-wrap::before,
    .form-wrap::after,
    .forms-stage::before,
    .forms-stage::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        content: none !important;
        width: 0 !important;
        height: 0 !important;
        border: 0 !important;
    }

    .auth-side,
    .auth-banner,
    .auth-image,
    .auth-photo,
    .hero-side,
    .side-panel,
    .auth-visual,
    .skeleton-right {
        display: none !important;
    }

    .auth-page {
        display: block !important;
        min-height: 100svh !important;
        padding: 42px 22px 30px !important;
        background: #fff !important;
        box-sizing: border-box !important;
    }

    .auth-panel {
        display: block !important;
        width: 100% !important;
        max-width: 430px !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        background: transparent !important;
        overflow: visible !important;
        position: relative !important;
    }

    .brand {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto 28px !important;
        padding: 0 !important;
        position: static !important;
        text-align: center !important;
    }

    .brand-logo {
        display: block !important;
        width: 210px !important;
        max-width: 76vw !important;
        height: auto !important;
        margin: 0 auto !important;
        position: static !important;
        transform: none !important;
    }

    .form-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        position: static !important;
        text-align: center !important;
    }

    .step-label {
        display: inline-flex !important;
        width: auto !important;
        max-width: max-content !important;
        margin: 0 auto 18px !important;
        padding: 9px 17px !important;
        position: static !important;
        transform: none !important;
        text-align: center !important;
    }

    .form-wrap h1 {
        max-width: 360px !important;
        margin: 0 auto 18px !important;
        text-align: center !important;
        font-size: 35px !important;
        line-height: .98 !important;
        letter-spacing: -0.055em !important;
    }

    .form-wrap .lead,
    .lead {
        max-width: 350px !important;
        margin: 0 auto 34px !important;
        text-align: center !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
        color: #80777e !important;
    }

    .forms-stage,
    .auth-form {
        width: 100% !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .field-label {
        display: block !important;
        margin: 0 0 10px !important;
        text-align: left !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
    }

    .phone-field {
        display: grid !important;
        grid-template-columns: 96px 1fr !important;
        width: 100% !important;
        height: 62px !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .phone-prefix {
        width: 96px !important;
        min-width: 96px !important;
        height: 62px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
    }

    .phone-input {
        width: 100% !important;
        height: 62px !important;
        min-width: 0 !important;
        font-size: 18px !important;
    }

    .hint {
        margin: 10px 0 0 !important;
        text-align: left !important;
        font-size: 13px !important;
    }

    .main-btn {
        width: 100% !important;
        height: 62px !important;
        min-height: 62px !important;
        margin-top: 28px !important;
        border-radius: 18px !important;
        font-size: 17px !important;
    }

    .auth-footer,
    .form-footer {
        width: 100% !important;
        max-width: 340px !important;
        margin: 40px auto 0 !important;
        text-align: center !important;
    }
}

@media (max-width: 420px) {
    .auth-page {
        padding: 38px 18px 28px !important;
    }

    .brand-logo {
        width: 190px !important;
    }

    .form-wrap h1 {
        max-width: 310px !important;
        font-size: 32px !important;
    }

    .form-wrap .lead,
    .lead {
        max-width: 310px !important;
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .phone-field {
        grid-template-columns: 88px 1fr !important;
        height: 58px !important;
    }

    .phone-prefix {
        width: 88px !important;
        min-width: 88px !important;
        height: 58px !important;
        font-size: 17px !important;
    }

    .phone-input {
        height: 58px !important;
        font-size: 17px !important;
    }

    .main-btn {
        height: 58px !important;
        min-height: 58px !important;
    }
}
/* === MOBILE AUTH HARD FIX END === */

/* === DASHBOARD TOP PACKAGE BUTTON FINAL START === */
.dashboard-top-package-btn {
    top: 22px !important;
    right: 28px !important;
    min-height: 46px !important;
    padding: 0 22px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 520 !important;
    box-shadow: 0 12px 28px rgba(255, 107, 1, .16) !important;
}

.dashboard-page,
.cabinet-page,
.support-dashboard,
.dashboard-shell {
    padding-top: 76px !important;
}

@media (max-width: 768px) {
    .dashboard-top-package-btn {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        min-height: 48px !important;
        margin: 14px 0 18px !important;
        border-radius: 12px !important;
    }

    .dashboard-page,
    .cabinet-page,
    .support-dashboard,
    .dashboard-shell {
        padding-top: 18px !important;
    }
}
/* === DASHBOARD TOP PACKAGE BUTTON FINAL END === */

/* === MOBILE HIDE AUTH BANNER ONLY START === */
@media (max-width: 768px) {
    .auth-visual,
    .auth-side,
    .auth-banner,
    .auth-image,
    .auth-photo,
    .auth-right,
    .auth-hero,
    .skeleton-right,
    .support-visual,
    .support-banner {
        display: none !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .auth-page {
        grid-template-columns: 1fr !important;
    }

    .auth-panel {
        grid-column: 1 / -1 !important;
    }
}
/* === MOBILE HIDE AUTH BANNER ONLY END === */

/* === MOBILE AUTH REAL BANNER REMOVE + COMPACT START === */
@media (max-width: 768px) {
    /* Прибираємо всі картинки на вході, крім лого */
    .auth-page img:not(.brand-logo),
    .auth-panel img:not(.brand-logo),
    main img:not(.brand-logo) {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
    }

    /* Прибираємо блоки, які містять банер/картинку */
    .auth-page section:has(img:not(.brand-logo)),
    .auth-page div:has(> img:not(.brand-logo)) {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* Прибираємо нижній текст під банером */
    .auth-footer,
    .form-footer,
    .auth-bottom,
    .auth-note-bottom {
        display: none !important;
    }

    .auth-page {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 100svh !important;
        padding: 24px 18px !important;
        background: #fff !important;
    }

    .auth-panel {
        width: 100% !important;
        max-width: 410px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .brand {
        margin: 0 auto 18px !important;
    }

    .brand-logo {
        width: 190px !important;
        max-width: 70vw !important;
    }

    .step-label {
        margin: 0 auto 14px !important;
        padding: 8px 15px !important;
        font-size: 14px !important;
    }

    .form-wrap h1 {
        max-width: 330px !important;
        margin: 0 auto 14px !important;
        font-size: 31px !important;
        line-height: .98 !important;
        letter-spacing: -0.055em !important;
    }

    .form-wrap .lead,
    .lead {
        max-width: 330px !important;
        margin: 0 auto 24px !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .field-label {
        margin-bottom: 8px !important;
        font-size: 14px !important;
    }

    .phone-field {
        height: 56px !important;
        border-radius: 17px !important;
        grid-template-columns: 86px 1fr !important;
    }

    .phone-prefix {
        width: 86px !important;
        min-width: 86px !important;
        height: 56px !important;
        font-size: 16px !important;
    }

    .phone-input {
        height: 56px !important;
        font-size: 16px !important;
    }

    .hint {
        margin-top: 8px !important;
        font-size: 12px !important;
    }

    .main-btn {
        height: 56px !important;
        min-height: 56px !important;
        margin-top: 24px !important;
        border-radius: 17px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 390px) {
    .auth-page {
        padding: 20px 16px !important;
    }

    .brand-logo {
        width: 175px !important;
    }

    .form-wrap h1 {
        font-size: 29px !important;
        max-width: 300px !important;
    }

    .form-wrap .lead,
    .lead {
        font-size: 15px !important;
        max-width: 300px !important;
        margin-bottom: 22px !important;
    }
}
/* === MOBILE AUTH REAL BANNER REMOVE + COMPACT END === */

/* === MOBILE AUTH FINAL REAL FIX START === */
@media (max-width: 768px) {
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-height: 100% !important;
        overflow-x: hidden !important;
        background: #fff !important;
    }

    .page-skeleton,
    .skeleton-left,
    .skeleton-right,
    .visual-panel,
    .support-photo {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .auth-page {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 100svh !important;
        padding: 18px 18px !important;
        box-sizing: border-box !important;
        background: #fff !important;
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
    }

    .auth-page.is-loading {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .auth-panel {
        width: 100% !important;
        max-width: 354px !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        overflow: visible !important;
    }

    .auth-panel::before,
    .auth-panel::after,
    .auth-page::before,
    .auth-page::after,
    .form-wrap::before,
    .form-wrap::after,
    .forms-stage::before,
    .forms-stage::after {
        display: none !important;
        content: none !important;
        border: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }

    .brand {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 14px !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .brand-logo {
        width: 175px !important;
        max-width: 68vw !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .form-wrap {
        width: 100% !important;
        max-width: 354px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .step-label {
        display: inline-flex !important;
        width: auto !important;
        margin: 0 auto 12px !important;
        padding: 8px 14px !important;
        font-size: 13px !important;
        line-height: 1 !important;
        border-radius: 999px !important;
    }

    .form-wrap h1 {
        max-width: 354px !important;
        margin: 0 auto 12px !important;
        font-size: 28px !important;
        line-height: .96 !important;
        letter-spacing: -0.055em !important;
        text-align: center !important;
    }

    .form-wrap .lead,
    .lead {
        max-width: 330px !important;
        margin: 0 auto 20px !important;
        font-size: 15px !important;
        line-height: 1.42 !important;
        color: #81787f !important;
        text-align: center !important;
    }

    .forms-stage,
    .auth-form {
        width: 100% !important;
        max-width: 354px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .field-label {
        display: block !important;
        margin: 0 0 8px !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .phone-field {
        display: grid !important;
        grid-template-columns: 82px 1fr !important;
        width: 100% !important;
        height: 54px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .phone-prefix {
        width: 82px !important;
        min-width: 82px !important;
        height: 54px !important;
        font-size: 16px !important;
    }

    .phone-input {
        height: 54px !important;
        min-width: 0 !important;
        font-size: 16px !important;
    }

    .hint {
        margin: 8px 0 0 !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }

    .main-btn {
        width: 100% !important;
        height: 54px !important;
        min-height: 54px !important;
        margin-top: 20px !important;
        border-radius: 16px !important;
        font-size: 16px !important;
    }

    .auth-footer {
        display: none !important;
    }
}

@media (max-width: 390px) {
    .auth-panel,
    .form-wrap,
    .forms-stage,
    .auth-form {
        max-width: 340px !important;
    }

    .brand-logo {
        width: 168px !important;
    }

    .form-wrap h1 {
        font-size: 27px !important;
    }

    .form-wrap .lead,
    .lead {
        font-size: 14.5px !important;
        margin-bottom: 18px !important;
    }
}
/* === MOBILE AUTH FINAL REAL FIX END === */

/* === MOBILE NOTICE LEFT ALIGN START === */
@media (max-width: 768px) {
    .notice {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
    }

    .notice-content {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .notice-title,
    .notice-text {
        text-align: left !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        width: 100% !important;
    }

    .notice-title {
        font-size: 14px !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }

    .notice-text {
        font-size: 13px !important;
        line-height: 1.35 !important;
    }

    .notice-dot {
        margin-top: 5px !important;
        flex: 0 0 auto !important;
    }
}
/* === MOBILE NOTICE LEFT ALIGN END === */

/* === DISABLED ONLINE PAYMENT START === */
.checkout-pay-card.is-disabled,
.checkout-pay-card:has(input[value="online"]:disabled) {
    opacity: .52 !important;
    cursor: not-allowed !important;
    filter: grayscale(.15) !important;
}

.checkout-pay-card.is-disabled *,
.checkout-pay-card:has(input[value="online"]:disabled) * {
    cursor: not-allowed !important;
}

.checkout-pay-card.is-disabled input,
.checkout-pay-card input[value="online"]:disabled {
    pointer-events: none !important;
}

.checkout-pay-disabled-note {
    margin-top: 6px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #8d7d83 !important;
}

@media (max-width: 768px) {
    .checkout-pay-disabled-note {
        font-size: 12px !important;
    }
}
/* === DISABLED ONLINE PAYMENT END === */

/* === REAL DISABLED ONLINE PAYMENT BUTTON START === */
.checkout-pay-card[data-payment="online"].is-disabled,
.checkout-pay-card[data-payment="online"]:disabled {
    opacity: .48 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(.2) !important;
    background: #f4f0f1 !important;
    border-color: rgba(35, 25, 31, .09) !important;
    box-shadow: none !important;
}

.checkout-pay-card[data-payment="online"].is-disabled *,
.checkout-pay-card[data-payment="online"]:disabled * {
    cursor: not-allowed !important;
}

.checkout-pay-card[data-payment="online"].is-disabled .checkout-pay-check,
.checkout-pay-card[data-payment="online"]:disabled .checkout-pay-check {
    opacity: .35 !important;
}

.checkout-pay-card[data-payment="online"].is-disabled small,
.checkout-pay-card[data-payment="online"]:disabled small {
    color: #8d7d83 !important;
    font-weight: 500 !important;
}
/* === REAL DISABLED ONLINE PAYMENT BUTTON END === */


/* === MONTH / QUARTER PACKAGES START === */
.billing-period-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 26px;
    padding: 6px;
    max-width: 520px;
    border: 1px solid rgba(35, 25, 31, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(35, 25, 31, .045);
}

.billing-period-switch a {
    flex: 1;
    min-height: 64px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: #2d2529;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: .18s ease;
}

.billing-period-switch a:hover {
    background: rgba(255, 107, 1, .055);
}

.billing-period-switch a.is-active {
    background: #ff6b01;
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 107, 1, .24);
}

.billing-period-switch span {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.billing-period-switch small {
    font-size: 12px;
    line-height: 1.2;
    opacity: .72;
}

.checkout-period-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 107, 1, .09);
    color: #d95700;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 640px) {
    .billing-period-switch {
        display: grid;
        max-width: none;
        margin-bottom: 20px;
    }

    .billing-period-switch a {
        min-height: 58px;
    }
}
/* === MONTH / QUARTER PACKAGES END === */


/* === CHECKOUT PERIOD FIXES START === */
.checkout-period-badge {
    margin-top: 10px !important;
    margin-bottom: 16px !important;
}

.checkout-main-v2 h1 + .checkout-period-badge {
    margin-top: 12px !important;
}
/* === CHECKOUT PERIOD FIXES END === */


/* === LOBSTER CHECKOUT PERIOD BADGE REMOVE + ORANGE FIX START === */
.checkout-main-v2 .checkout-period-badge {
    display: none !important;
}

.checkout-submit-btn,
.package-row-btn,
.checkout-pay-card.is-selected .checkout-pay-check,
.checkout-validity-icon,
.checkout-summary-v2 strong,
.payment-requisites-amount {
    border-color: #ff6b01;
}

.checkout-submit-btn,
.package-row-card.is-popular .package-row-btn,
.package-row-btn {
    background-color: #ff6b01;
}

.checkout-submit-btn:hover,
.package-row-btn:hover {
    background-color: #d95700;
}
/* === LOBSTER CHECKOUT PERIOD BADGE REMOVE + ORANGE FIX END === */

/* === INVOICE CHECKOUT FLOW START === */
.payment-invoice-builder {
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(35, 25, 31, .10);
    box-shadow: 0 16px 42px rgba(35, 25, 31, .055);
}

.invoice-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 16px;
}

.invoice-search-row input {
    min-height: 48px;
    border: 1px solid rgba(35, 25, 31, .14);
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
}

.invoice-search-row input:focus {
    border-color: #ff6b01;
    box-shadow: 0 0 0 3px rgba(255, 107, 1, .12);
}

.invoice-search-row button,
.invoice-ready a {
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    background: #ff6b01;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.invoice-search-row button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.invoice-message {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 107, 1, .08);
    color: #8a3a00;
    font-size: 14px;
}

.invoice-message.is-error {
    background: rgba(220, 38, 38, .08);
    color: #991b1b;
}

.invoice-results {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.invoice-result-card {
    width: 100%;
    border: 1px solid rgba(35, 25, 31, .12);
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    text-align: left;
    cursor: pointer;
    display: grid;
    gap: 4px;
}

.invoice-result-card strong {
    font-size: 15px;
    color: #1f1a1d;
}

.invoice-result-card span,
.invoice-result-card small {
    color: #70676c;
    font-size: 13px;
}

.invoice-result-card em {
    margin-top: 5px;
    color: #ff6b01;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
}

.invoice-result-card.is-selected {
    border-color: #ff6b01;
    box-shadow: 0 0 0 3px rgba(255, 107, 1, .10);
}

.invoice-ready {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(22, 163, 74, .08);
    border: 1px solid rgba(22, 163, 74, .18);
    display: grid;
    gap: 8px;
}

.invoice-ready strong {
    color: #166534;
}

.invoice-ready span {
    color: #31513b;
    font-size: 14px;
}

@media (max-width: 640px) {
    .invoice-search-row {
        grid-template-columns: 1fr;
    }
}
/* === INVOICE CHECKOUT FLOW END === */

/* === INVOICE FIELD UI FIX START === */
.payment-invoice-builder {
    margin-top: 22px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 107, 1, .055), transparent 34%),
        #fff;
    border: 1px solid rgba(35, 25, 31, .10);
    box-shadow: 0 18px 46px rgba(35, 25, 31, .06);
}

.payment-invoice-builder .payment-requisites-head {
    margin-bottom: 18px;
}

.payment-invoice-builder .payment-requisites-head strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    color: #19161a;
    margin-bottom: 8px;
}

.payment-invoice-builder .payment-requisites-head span {
    display: block;
    font-size: 16px;
    line-height: 1.45;
    color: #8a8389;
}

.invoice-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 12px;
    margin-top: 18px;
    align-items: stretch;
}

.invoice-search-row input {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(35, 25, 31, .14);
    border-radius: 16px;
    padding: 0 18px;
    background: #fff;
    color: #19161a;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    box-shadow: 0 8px 24px rgba(35, 25, 31, .035);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.invoice-search-row input::placeholder {
    color: #b7b0b6;
    font-weight: 500;
}

.invoice-search-row input:focus {
    border-color: #ff6b01;
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(255, 107, 1, .12),
        0 12px 30px rgba(35, 25, 31, .055);
}

.invoice-search-row button {
    min-height: 58px;
    border: 0;
    border-radius: 16px;
    padding: 0 22px;
    background: #ff6b01;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(255, 107, 1, .22);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.invoice-search-row button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(255, 107, 1, .28);
}

.invoice-search-row button:active {
    transform: translateY(0);
}

.invoice-search-row button:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.invoice-message {
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(255, 107, 1, .08);
    color: #8a3a00;
    font-size: 14px;
    line-height: 1.45;
    border: 1px solid rgba(255, 107, 1, .14);
}

.invoice-message.is-error {
    background: rgba(220, 38, 38, .08);
    color: #991b1b;
    border-color: rgba(220, 38, 38, .16);
}

.invoice-results {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.invoice-result-card {
    width: 100%;
    border: 1px solid rgba(35, 25, 31, .12);
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-align: left;
    cursor: pointer;
    display: grid;
    gap: 5px;
    box-shadow: 0 10px 28px rgba(35, 25, 31, .04);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.invoice-result-card:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 1, .45);
    box-shadow: 0 16px 38px rgba(35, 25, 31, .07);
}

.invoice-result-card strong {
    font-size: 16px;
    line-height: 1.3;
    color: #19161a;
}

.invoice-result-card span,
.invoice-result-card small {
    color: #8a8389;
    font-size: 14px;
    line-height: 1.35;
}

.invoice-result-card em {
    margin-top: 8px;
    color: #ff6b01;
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
}

.invoice-result-card.is-selected {
    border-color: #ff6b01;
    box-shadow:
        0 0 0 4px rgba(255, 107, 1, .10),
        0 18px 42px rgba(35, 25, 31, .08);
}

.invoice-ready {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(22, 163, 74, .08);
    border: 1px solid rgba(22, 163, 74, .18);
    display: grid;
    gap: 10px;
}

.invoice-ready strong {
    color: #166534;
    font-size: 17px;
}

.invoice-ready span {
    color: #31513b;
    font-size: 14px;
    line-height: 1.4;
}

.invoice-ready a {
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #16a34a;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .payment-invoice-builder {
        padding: 18px;
        border-radius: 20px;
    }

    .payment-invoice-builder .payment-requisites-head strong {
        font-size: 21px;
    }

    .payment-invoice-builder .payment-requisites-head span {
        font-size: 14px;
    }

    .invoice-search-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .invoice-search-row input,
    .invoice-search-row button {
        min-height: 54px;
        font-size: 15px;
    }
}
/* === INVOICE FIELD UI FIX END === */

/* === INVOICE FIELD COMPACT FIX START === */
.payment-invoice-builder {
    margin-top: 18px !important;
    padding: 20px 22px !important;
    border-radius: 22px !important;
}

.payment-invoice-builder .payment-requisites-head {
    margin-bottom: 14px !important;
}

.payment-invoice-builder .payment-requisites-head strong {
    font-size: 20px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
    letter-spacing: -.02em;
}

.payment-invoice-builder .payment-requisites-head span {
    max-width: 780px;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #8d858c !important;
}

.invoice-search-row {
    grid-template-columns: minmax(0, 1fr) 126px !important;
    gap: 10px !important;
    margin-top: 14px !important;
}

.invoice-search-row input {
    min-height: 48px !important;
    border-radius: 14px !important;
    padding: 0 15px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.invoice-search-row input::placeholder {
    font-size: 15px !important;
    font-weight: 500 !important;
}

.invoice-search-row button {
    min-height: 48px !important;
    border-radius: 14px !important;
    padding: 0 18px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 24px rgba(255, 107, 1, .18) !important;
}

.invoice-message {
    margin-top: 10px !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
}

.invoice-result-card {
    border-radius: 15px !important;
    padding: 14px !important;
}

.invoice-result-card strong {
    font-size: 15px !important;
}

.invoice-result-card span,
.invoice-result-card small,
.invoice-result-card em {
    font-size: 13px !important;
}

.invoice-ready {
    margin-top: 14px !important;
    padding: 14px !important;
    border-radius: 15px !important;
}

.invoice-ready strong {
    font-size: 15px !important;
}

.invoice-ready span {
    font-size: 13px !important;
}

.invoice-ready a {
    min-height: 42px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
}

@media (max-width: 640px) {
    .payment-invoice-builder {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .payment-invoice-builder .payment-requisites-head strong {
        font-size: 19px !important;
    }

    .payment-invoice-builder .payment-requisites-head span {
        font-size: 13px !important;
    }

    .invoice-search-row {
        grid-template-columns: 1fr !important;
    }

    .invoice-search-row input,
    .invoice-search-row button {
        min-height: 46px !important;
        font-size: 14px !important;
    }
}
/* === INVOICE FIELD COMPACT FIX END === */

/* === INVOICE READY SERIOUS STYLE START === */
.invoice-ready {
    margin-top: 16px !important;
    padding: 16px 18px !important;
    border-radius: 16px !important;
    background: #fff !important;
    border: 1px solid rgba(35, 25, 31, .12) !important;
    box-shadow: 0 12px 30px rgba(35, 25, 31, .055) !important;
    display: grid !important;
    gap: 8px !important;
}

.invoice-ready strong {
    color: #19161a !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

.invoice-ready span {
    color: #6f6870 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.invoice-ready a {
    width: fit-content !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    background: #19161a !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 24px rgba(25, 22, 26, .16) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.invoice-ready a:hover {
    background: #ff6b01 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 32px rgba(255, 107, 1, .22) !important;
}

.invoice-ready a:active {
    transform: translateY(0) !important;
}

@media (max-width: 640px) {
    .invoice-ready {
        padding: 14px !important;
        border-radius: 14px !important;
    }

    .invoice-ready a {
        width: 100% !important;
    }
}
/* === INVOICE READY SERIOUS STYLE END === */

/* === FIX HIDDEN INVOICE READY BLOCK START === */
.invoice-ready[hidden],
.payment-invoice-builder[hidden],
.invoice-results[hidden],
.invoice-message[hidden] {
    display: none !important;
}
/* === FIX HIDDEN INVOICE READY BLOCK END === */

/* === SAVED PAYERS COMPACT START === */
.invoice-saved-payers {
    margin: 12px 0 14px;
    padding: 12px;
    border: 1px solid rgba(35, 25, 31, .08);
    border-radius: 14px;
    background: rgba(35, 25, 31, .018);
}

.invoice-saved-payers-title {
    margin-bottom: 8px;
    color: #7c747b;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
}

.invoice-saved-payers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.invoice-saved-payer {
    max-width: 100%;
    border: 1px solid rgba(35, 25, 31, .10);
    background: #fff;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
    text-align: left;
    display: grid;
    gap: 2px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.invoice-saved-payer:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 1, .45);
    box-shadow: 0 10px 24px rgba(35, 25, 31, .055);
}

.invoice-saved-payer.is-selected {
    border-color: #ff6b01;
    box-shadow: 0 0 0 3px rgba(255, 107, 1, .10);
}

.invoice-saved-payer span {
    max-width: 280px;
    color: #242024;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.invoice-saved-payer small {
    color: #8a8389;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
}

@media (max-width: 640px) {
    .invoice-saved-payers-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .invoice-saved-payer span {
        max-width: 100%;
    }
}
/* === SAVED PAYERS COMPACT END === */

/* === CLIENT PROFILE PAGE START === */
.profile-page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 54px;
}

.profile-card {
    margin-top: 22px;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 107, 1, .055), transparent 32%),
        #fff;
    border: 1px solid rgba(35, 25, 31, .10);
    box-shadow: 0 22px 58px rgba(35, 25, 31, .07);
}

.profile-head h1 {
    margin: 6px 0 8px;
    color: #19161a;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.profile-head p {
    max-width: 680px;
    margin: 0;
    color: #8a8389;
    font-size: 16px;
    line-height: 1.5;
}

.profile-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.profile-form label {
    display: grid;
    gap: 7px;
}

.profile-form label span {
    color: #6f6870;
    font-size: 13px;
    font-weight: 600;
}

.profile-form label small {
    color: #aaa2a9;
    font-size: 12px;
    font-weight: 400;
}

.profile-form input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(35, 25, 31, .14);
    border-radius: 14px;
    padding: 0 15px;
    background: #fff;
    color: #19161a;
    font-size: 15px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.profile-form input:focus {
    border-color: #ff6b01;
    box-shadow: 0 0 0 4px rgba(255, 107, 1, .11);
}

.profile-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.profile-actions button {
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    background: #ff6b01;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(255, 107, 1, .20);
}

.profile-actions a {
    color: #6f6870;
    text-decoration: none;
    font-size: 14px;
}

.profile-alert {
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
}

.profile-alert-success {
    background: rgba(22, 163, 74, .08);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, .16);
}

.profile-alert-error {
    background: rgba(220, 38, 38, .08);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, .16);
}

.dashboard-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    background: #fff;
    color: #19161a;
    border: 1px solid rgba(35, 25, 31, .10);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 720px) {
    .profile-page {
        width: min(100% - 20px, 1120px);
        padding-top: 14px;
    }

    .profile-card {
        padding: 20px;
        border-radius: 22px;
    }

    .profile-head h1 {
        font-size: 28px;
    }

    .profile-head p {
        font-size: 14px;
    }

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

    .profile-actions {
        display: grid;
    }

    .profile-actions button {
        width: 100%;
    }
}
/* === CLIENT PROFILE PAGE END === */

/* === PROFILE BUTTON NEAR CLIENT NAME START === */
.dashboard-client-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.dashboard-client-title-row h1 {
    margin: 0 !important;
}

.dashboard-client-title-row .dashboard-profile-btn {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 107, 1, .08);
    color: #ff6b01;
    border: 1px solid rgba(255, 107, 1, .18);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    box-shadow: none;
}

.dashboard-client-title-row .dashboard-profile-btn:hover {
    background: #ff6b01;
    color: #fff;
}

@media (max-width: 640px) {
    .dashboard-client-title-row {
        gap: 8px;
    }

    .dashboard-client-title-row .dashboard-profile-btn {
        min-height: 32px;
        font-size: 12px;
        padding: 0 10px;
    }
}
/* === PROFILE BUTTON NEAR CLIENT NAME END === */

/* === PROFILE BUTTON UNDER CLIENT NAME EXACT START === */
.dashboard-client-title-row {
    display: grid !important;
    gap: 9px !important;
    align-items: start !important;
    justify-content: start !important;
    margin-bottom: 4px !important;
}

.dashboard-client-title-row h1 {
    margin: 0 !important;
}

.dashboard-edit-profile-link {
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 11px !important;
    background: rgba(35, 25, 31, .055) !important;
    color: #5f5860 !important;
    border: 1px solid rgba(35, 25, 31, .08) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.dashboard-edit-profile-link svg {
    width: 15px !important;
    height: 15px !important;
    flex: 0 0 15px !important;
}

.dashboard-edit-profile-link:hover {
    background: rgba(255, 107, 1, .08) !important;
    color: #ff6b01 !important;
    border-color: rgba(255, 107, 1, .16) !important;
}
/* === PROFILE BUTTON UNDER CLIENT NAME EXACT END === */

/* === PACKAGE CHOOSE BUTTON FIX START === */
.dashboard-widget-plan .widget-top > a[href="packages.php"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border-radius: 13px !important;
    background: #ff6b01 !important;
    color: #fff !important;
    border: 0 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 28px rgba(255, 107, 1, .18) !important;
}

.dashboard-widget-plan .widget-top > a[href="packages.php"]:hover {
    background: #e95f00 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.dashboard-widget-plan .widget-top {
    align-items: flex-start !important;
    gap: 16px !important;
}

@media (max-width: 640px) {
    .dashboard-widget-plan .widget-top {
        display: grid !important;
        gap: 14px !important;
    }

    .dashboard-widget-plan .widget-top > a[href="packages.php"] {
        width: fit-content !important;
        min-height: 40px !important;
        font-size: 13px !important;
        padding: 0 14px !important;
    }
}
/* === PACKAGE CHOOSE BUTTON FIX END === */

/* === CLIENT META FILLED DATA START === */
.client-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.client-meta-row .client-domain {
    margin: 0 !important;
}

.client-filled-data {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
    max-width: 760px;
}

.client-filled-data span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 260px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(35, 25, 31, .055);
    border: 1px solid rgba(35, 25, 31, .075);
    color: #5f5860;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-filled-data small {
    color: #9a9299;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
}

@media (max-width: 760px) {
    .client-meta-row {
        display: grid;
        gap: 10px;
    }

    .client-filled-data {
        justify-content: flex-start;
        max-width: 100%;
    }

    .client-filled-data span {
        max-width: 100%;
        min-height: 29px;
        font-size: 11px;
    }

    .client-filled-data small {
        font-size: 10px;
    }
}
/* === CLIENT META FILLED DATA END === */

/* === PACKAGE CHOOSE BUTTON SMALL FINAL START === */
.dashboard-widget-plan .widget-top > a[href="packages.php"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-height: 30px !important;
    padding: 0 8px !important;
    border-radius: 6px !important;
    background: #ff6b0e !important;
    color: #fff !important;
    border: 0 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

.dashboard-widget-plan .widget-top > a[href="packages.php"]:hover {
    background: #e95f00 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.dashboard-widget-plan .widget-top {
    align-items: flex-start !important;
    gap: 14px !important;
}

@media (max-width: 640px) {
    .dashboard-widget-plan .widget-top > a[href="packages.php"] {
        min-height: 30px !important;
        padding: 0 8px !important;
        border-radius: 6px !important;
        font-size: 13px !important;
        width: fit-content !important;
    }
}
/* === PACKAGE CHOOSE BUTTON SMALL FINAL END === */

/* === CLIENT META BORDER STYLE FINAL START === */
.client-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-top: 8px !important;
}

.client-meta-row .client-domain {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: transparent !important;
    border: 1px solid rgba(35, 25, 31, .11) !important;
    color: #6f6870 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.client-filled-data {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
}

.client-filled-data span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: 360px !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: transparent !important;
    border: 1px solid rgba(35, 25, 31, .11) !important;
    color: #5f5860 !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.client-filled-data small {
    color: #9a9299 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
}

@media (max-width: 760px) {
    .client-meta-row {
        gap: 7px !important;
    }

    .client-meta-row .client-domain,
    .client-filled-data span {
        max-width: 100% !important;
        min-height: 31px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
    }

    .client-filled-data small {
        font-size: 11px !important;
    }
}
/* === CLIENT META BORDER STYLE FINAL END === */

/* === DOMAIN LABEL SPACING FIX START === */
.client-meta-row .client-domain {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
}

.client-meta-row .client-domain small {
    display: inline-block !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
    color: #9a9299 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
}

.client-meta-row .client-domain small::after {
    content: "" !important;
}

@media (max-width: 760px) {
    .client-meta-row .client-domain {
        gap: 6px !important;
    }

    .client-meta-row .client-domain small {
        font-size: 11px !important;
    }
}
/* === DOMAIN LABEL SPACING FIX END === */
