.whmcs-frontend {
    --whmcs-surface: #ffffff;
    --whmcs-surface-alt: #f4f8fd;
    --whmcs-card: #ffffff;
    --whmcs-border: #dfe7f3;
    --whmcs-border-strong: #c8d6ea;
    --whmcs-text: #101828;
    --whmcs-muted: #61708a;
    --whmcs-primary: #0f6fff;
    --whmcs-primary-soft: #2d8dff;
    --whmcs-dark: #04111f;
    --whmcs-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    color: var(--whmcs-text);
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.whmcs-frontend * {
    box-sizing: border-box;
}

.whmcs-frontend.is-light {
    --whmcs-surface: #ffffff;
    --whmcs-surface-alt: #f4f8fd;
    --whmcs-card: #ffffff;
    --whmcs-border: #dfe7f3;
    --whmcs-border-strong: #c8d6ea;
    --whmcs-text: #101828;
    --whmcs-muted: #61708a;
}

.whmcs-frontend__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    margin-bottom: 22px;
    padding: 28px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 18%, rgba(53, 146, 255, 0.22), transparent 22%),
        linear-gradient(135deg, #04111f 0%, #05162b 44%, #061c38 100%);
    border: 1px solid rgba(80, 183, 255, 0.16);
    box-shadow: 0 28px 70px rgba(1, 10, 24, 0.22);
    color: #ffffff;
}

.whmcs-frontend__hero h2,
.whmcs-frontend__hero p {
    color: inherit;
}

.whmcs-frontend__eyebrow {
    color: #8fcbff;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
}

.whmcs-frontend__meta {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.whmcs-frontend__meta--stack {
    flex-direction: column;
    align-items: stretch;
}

.whmcs-frontend__meta span,
.whmcs-status-card,
.whmcs-product-card,
.whmcs-panel,
.whmcs-empty-state,
.whmcs-notice {
    background: var(--whmcs-card);
    border: 1px solid var(--whmcs-border);
    border-radius: 18px;
    box-shadow: var(--whmcs-shadow);
}

.whmcs-frontend__meta span {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    box-shadow: none;
}

.whmcs-product-grid,
.whmcs-status-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whmcs-product-card,
.whmcs-panel,
.whmcs-empty-state,
.whmcs-status-card,
.whmcs-notice {
    padding: 24px;
}

.whmcs-product-card h3,
.whmcs-panel h2,
.whmcs-panel h3,
.whmcs-panel h4 {
    margin-top: 0;
    color: #0f172a;
}

.whmcs-product-card p,
.whmcs-panel p {
    color: var(--whmcs-muted);
}

.whmcs-product-description {
    color: var(--whmcs-muted);
    line-height: 1.7;
}

.whmcs-product-description p {
    margin: 0 0 12px;
}

.whmcs-product-description ul,
.whmcs-product-description ol {
    margin: 0 0 14px 18px;
    padding: 0;
}

.whmcs-product-description li {
    margin-bottom: 6px;
}

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

.whmcs-product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.whmcs-product-card__features {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.whmcs-product-card__features li {
    position: relative;
    padding-left: 20px;
    color: var(--whmcs-text);
    font-size: 13px;
    line-height: 1.55;
}

.whmcs-product-card__features li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--whmcs-primary);
    box-shadow: 0 0 0 4px rgba(15, 111, 255, 0.08);
}

.whmcs-button,
.whmcs-product-card button,
.whmcs-form-frontend button {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--whmcs-primary) 0%, var(--whmcs-primary-soft) 100%);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(15, 111, 255, 0.22);
}

.whmcs-button--ghost {
    background: #ffffff;
    border: 1px solid var(--whmcs-border);
    color: var(--whmcs-text);
    box-shadow: none;
}

.whmcs-button--small {
    min-height: 38px;
}

.whmcs-form-frontend {
    display: grid;
    gap: 14px;
    max-width: 460px;
}

.whmcs-form-frontend--wide {
    max-width: none;
}

.whmcs-field {
    display: grid;
    gap: 8px;
}

.whmcs-field span,
.whmcs-checkbox span,
.whmcs-status-card span,
.whmcs-record-list em,
.whmcs-inline-form {
    color: var(--whmcs-muted);
}

.whmcs-form-frontend input,
.whmcs-form-frontend select,
.whmcs-form-frontend textarea {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid var(--whmcs-border);
    padding: 0 14px;
    background: #ffffff;
    color: inherit;
}

.whmcs-form-frontend textarea {
    min-height: 136px;
    padding: 14px;
    resize: vertical;
}

.whmcs-checkbox {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.whmcs-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.whmcs-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

.whmcs-link-row a {
    color: var(--whmcs-primary);
    text-decoration: none;
    font-weight: 700;
}

.whmcs-inline-form {
    display: inline-flex;
}

.whmcs-notice {
    margin-bottom: 18px;
}

.whmcs-notice.is-success {
    border-color: rgba(34, 197, 94, 0.22);
}

.whmcs-notice.is-error {
    border-color: rgba(248, 113, 113, 0.25);
}

.whmcs-dashboard-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.whmcs-dashboard-grid--order {
    margin-bottom: 18px;
}

.whmcs-status-grid--summary {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.whmcs-record-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.whmcs-record-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--whmcs-border);
}

.whmcs-record-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.whmcs-record-list strong,
.whmcs-status-card strong {
    display: block;
}

.whmcs-status-card strong {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 800;
}

.whmcs-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.whmcs-chip-row--catalog {
    margin: 22px 0 0;
}

.whmcs-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--whmcs-border);
    background: #ffffff;
}

.whmcs-chip.is-active {
    border-color: var(--whmcs-primary);
    color: var(--whmcs-primary);
}

.whmcs-order-status {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--whmcs-border);
    background: var(--whmcs-card);
}

.whmcs-order-status.is-available {
    border-color: rgba(34, 197, 94, 0.22);
}

.whmcs-order-status.is-unavailable {
    border-color: rgba(248, 113, 113, 0.25);
}

.whmcs-order-summary {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--whmcs-border);
    background: var(--whmcs-card);
}

.whmcs-order-steps {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 18px;
}

.whmcs-order-steps--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-order-steps--cart {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-order-steps__item {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--whmcs-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: var(--whmcs-text);
    text-decoration: none;
}

.whmcs-order-steps__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(15, 111, 255, 0.08);
    color: var(--whmcs-primary);
    font-size: 12px;
    font-weight: 800;
}

.whmcs-order-steps__item strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.4;
}

.whmcs-order-steps__item.is-active {
    border-color: rgba(15, 111, 255, 0.22);
    box-shadow: 0 16px 32px rgba(15, 111, 255, 0.08);
}

.whmcs-order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.whmcs-hosting-detail {
    display: grid;
    gap: 18px;
}

.whmcs-hosting-detail__hero {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.72fr);
    align-items: start;
}

.whmcs-hosting-detail__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.5;
}

.whmcs-hosting-detail__breadcrumbs a,
.whmcs-hosting-detail__breadcrumbs strong {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.whmcs-hosting-detail__hero-main {
    padding: 8px 0 0;
}

.whmcs-hosting-detail__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--whmcs-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.whmcs-hosting-detail__hero-main h1 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.06;
}

.whmcs-hosting-detail__hero-main > p {
    margin: 0;
    max-width: 620px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.whmcs-hosting-detail__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.whmcs-hosting-detail__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 10px;
    background: #eaf2ff;
    color: #155eef;
    font-size: 13px;
    font-weight: 700;
}

.whmcs-hosting-detail__badge.is-success {
    background: #eafbf0;
    color: #12b76a;
}

.whmcs-hosting-detail__price-card {
    display: grid;
    gap: 14px;
    padding: 22px 22px 20px;
    border-radius: 18px;
    border: 1px solid #e4e7ec;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.whmcs-hosting-detail__price-card > span {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.whmcs-hosting-detail__price-card strong {
    color: #0f172a;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.whmcs-hosting-detail__price-card strong small {
    margin-left: 4px;
    color: #667085;
    font-size: 13px;
    font-weight: 600;
}

.whmcs-hosting-detail__price-card .whmcs-button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
}

.whmcs-hosting-detail__steps {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.whmcs-hosting-detail__steps--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-hosting-detail__step {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
}

.whmcs-hosting-detail__step + .whmcs-hosting-detail__step {
    border-left: 1px solid #e4e7ec;
}

.whmcs-hosting-detail__step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #eff4ff;
    color: #155eef;
    font-size: 12px;
    font-weight: 800;
}

.whmcs-hosting-detail__step strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.3;
}

.whmcs-hosting-detail__step small {
    display: block;
    margin-top: 2px;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.45;
}

.whmcs-hosting-detail__step.is-active {
    background: #f8fbff;
}

.whmcs-hosting-detail__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.46fr) minmax(320px, 0.94fr);
}

.whmcs-hosting-detail__aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.whmcs-hosting-detail__card {
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.whmcs-hosting-detail__card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.3;
}

.whmcs-hosting-detail__card h3 i {
    color: #155eef;
    font-size: 16px;
}

.whmcs-hosting-detail__card p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-hosting-detail__feature-table {
    display: grid;
}

.whmcs-hosting-detail__feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #eaecf0;
}

.whmcs-hosting-detail__feature-row:last-child {
    border-bottom: 0;
}

.whmcs-hosting-detail__feature-label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.whmcs-hosting-detail__feature-label i {
    color: #155eef;
    font-size: 13px;
}

.whmcs-hosting-detail__feature-row strong {
    color: #475467;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

.whmcs-hosting-detail__check-list,
.whmcs-hosting-detail__link-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.whmcs-hosting-detail__check-list li,
.whmcs-hosting-detail__link-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #475467;
    font-size: 14px;
    line-height: 1.6;
}

.whmcs-hosting-detail__check-list i {
    margin-top: 4px;
    color: #12b76a;
}

.whmcs-hosting-detail__link-list li {
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f2f4f7;
}

.whmcs-hosting-detail__link-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.whmcs-hosting-detail__link-list i {
    margin-top: 4px;
    color: #155eef;
}

.whmcs-hosting-detail__support-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.whmcs-hosting-detail__support-card .whmcs-button {
    min-width: 146px;
}

.whmcs-hosting-detail__footer-strip {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr));
    padding: 18px 22px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #f8fafc;
}

.whmcs-hosting-detail__footer-strip article {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #344054;
    font-size: 13px;
    line-height: 1.5;
}

.whmcs-hosting-detail__footer-strip article i {
    color: #155eef;
}

.whmcs-hosting-detail__footer-strip strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
}

.whmcs-hosting-detail__footer-strip span {
    color: #667085;
}

.whmcs-hosting-config {
    display: grid;
    gap: 22px;
}

.whmcs-hosting-config__topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.whmcs-hosting-config__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #155eef;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.whmcs-hosting-config__progress {
    display: flex;
    gap: 26px;
    color: #98a2b3;
    font-size: 12px;
    font-weight: 700;
}

.whmcs-hosting-config__progress span {
    position: relative;
}

.whmcs-hosting-config__progress span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 999px;
    background: #d0d5dd;
    vertical-align: middle;
}

.whmcs-hosting-config__progress .is-active {
    color: #0f172a;
}

.whmcs-hosting-config__progress .is-active::before,
.whmcs-hosting-config__progress .is-complete::before {
    background: var(--whmcs-primary);
}

.whmcs-hosting-config__hero,
.whmcs-hosting-config__section {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.whmcs-hosting-config__hero {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: start;
}

.whmcs-hosting-config__hero h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.15;
}

.whmcs-hosting-config__hero p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.whmcs-hosting-config__product-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #d0d5dd;
    background: #f8fbff;
}

.whmcs-hosting-config__product-card strong {
    color: #0f172a;
    font-size: 16px;
    line-height: 1.4;
}

.whmcs-hosting-config__feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.whmcs-hosting-config__feature-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe3f0;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

.whmcs-hosting-config__section-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.whmcs-hosting-config__section-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.3;
}

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

.whmcs-hosting-config__cycle-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #d0d5dd;
    background: #ffffff;
    text-decoration: none;
}

.whmcs-hosting-config__cycle-card strong {
    color: #0f172a;
    font-size: 15px;
}

.whmcs-hosting-config__cycle-card span {
    color: var(--whmcs-primary);
    font-size: 18px;
    font-weight: 800;
}

.whmcs-hosting-config__cycle-card small {
    color: #98a2b3;
    font-size: 12px;
}

.whmcs-hosting-config__cycle-card.is-active {
    border-color: var(--whmcs-primary);
    box-shadow: 0 0 0 2px rgba(21, 94, 239, 0.08);
}

.whmcs-hosting-config__domain-form,
.whmcs-hosting-config__inline-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1.9fr) minmax(220px, 1fr) minmax(160px, 0.72fr) auto;
}

.whmcs-hosting-config__domain-form {
    align-items: end;
}

.whmcs-hosting-config__domain-form .whmcs-field {
    gap: 10px;
}

.whmcs-hosting-config__domain-form .whmcs-field > span {
    color: #344054;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whmcs-hosting-config__domain-form input,
.whmcs-hosting-config__domain-form select {
    min-height: 54px;
    border-radius: 12px;
    border-color: #d0d5dd;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
}

.whmcs-hosting-config__domain-form input:focus,
.whmcs-hosting-config__domain-form select:focus {
    border-color: var(--whmcs-primary);
    box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
    outline: 0;
}

.whmcs-hosting-config__domain-field input {
    font-size: 15px;
}

.whmcs-hosting-config__compact-field select {
    background-position: right 14px center;
}

.whmcs-hosting-config__domain-form .whmcs-button,
.whmcs-hosting-config__domain-submit {
    align-self: end;
    min-height: 54px;
}

.whmcs-hosting-config__domain-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 0 22px;
}

.whmcs-hosting-config__price-rows {
    margin-top: 16px;
}

.whmcs-hosting-config__cart-form {
    display: grid;
    gap: 22px;
}

.whmcs-hosting-config__summary-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    background: #f8fafc;
}

.whmcs-hosting-config__total-card {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(21, 94, 239, 0.16);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.whmcs-hosting-config__total-card .whmcs-detail-list__row strong,
.whmcs-hosting-config__total-card .whmcs-detail-list__row span {
    color: #0f172a;
}

.whmcs-hosting-config__total-card .whmcs-detail-list__row.is-total {
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid rgba(21, 94, 239, 0.16);
}

.whmcs-hosting-config__total-card .whmcs-detail-list__row.is-total strong,
.whmcs-hosting-config__total-card .whmcs-detail-list__row.is-total span {
    font-size: 18px;
    font-weight: 800;
}

.whmcs-hosting-config__option-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-hosting-config__option-card {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #d0d5dd;
    background: #ffffff;
}

.whmcs-hosting-config__option-card > span {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.whmcs-hosting-config__actions {
    display: flex;
    justify-content: flex-end;
}

.whmcs-hosting-config__actions .whmcs-button {
    min-width: 240px;
    min-height: 50px;
}

.whmcs-cart-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
    margin-top: 22px;
}

.whmcs-cart-items {
    display: grid;
    gap: 18px;
}

.whmcs-cart-item {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--whmcs-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--whmcs-shadow);
}

.whmcs-cart-item__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.whmcs-cart-item__head h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.25;
}

.whmcs-cart-item__head p {
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.6;
}

.whmcs-cart-summary {
    display: grid;
    gap: 18px;
    align-content: start;
}

.whmcs-cart-summary .whmcs-stack,
.whmcs-cart-item .whmcs-stack {
    display: grid;
    gap: 12px;
}

.whmcs-panel--checkout-shell {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.whmcs-checkout-shell {
    display: grid;
    gap: 22px;
    width: min(100%, 1180px);
    margin: 0 auto;
}

.whmcs-checkout-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
    margin: 0 auto 0;
    padding: 0;
}

.whmcs-checkout-progress__item {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 8px;
    text-decoration: none;
    color: #98a2b3;
}

.whmcs-checkout-progress__item::before {
    content: "";
    position: absolute;
    top: 15px;
    left: calc(-50% + 24px);
    width: calc(100% - 48px);
    height: 1px;
    border-top: 2px solid #d6dae4;
}

.whmcs-checkout-progress__item:first-child::before {
    display: none;
}

.whmcs-checkout-progress__item span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f4f6fb;
    border: 2px solid #d6dae4;
    color: #7b8597;
    font-size: 13px;
    font-weight: 800;
}

.whmcs-checkout-progress__item strong {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.whmcs-checkout-progress__item.is-complete,
.whmcs-checkout-progress__item.is-active {
    color: #344054;
}

.whmcs-checkout-progress__item.is-complete span,
.whmcs-checkout-progress__item.is-active span {
    background: #2f6df6;
    border-color: #2f6df6;
    color: #ffffff;
}

.whmcs-checkout-progress__item.is-complete span::before {
    content: "\2713";
    font-size: 13px;
    line-height: 1;
}

.whmcs-checkout-progress__item.is-complete span {
    font-size: 0;
}

.whmcs-checkout-progress__item.is-active strong {
    color: #101828;
}

.whmcs-checkout-card {
    display: grid;
    gap: 0;
}

.whmcs-checkout-card--confirmed {
    display: block;
}

.whmcs-checkout-card--payment {
    display: block;
}

.whmcs-checkout-switches {
    display: inline-flex;
    gap: 0;
    width: fit-content;
    margin-left: 0;
    margin-bottom: -1px;
}

.whmcs-checkout-switches__item {
    min-height: 36px;
    padding: 0 20px;
    border: 1px solid #d0d5dd;
    background: #f3f4f6;
    color: #344054;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whmcs-checkout-switches__item:first-child {
    border-radius: 10px 10px 0 0;
}

.whmcs-checkout-switches__item:last-child {
    margin-left: 8px;
    border-radius: 10px 10px 0 0;
}

.whmcs-checkout-switches__item.is-active {
    background: linear-gradient(135deg, var(--whmcs-primary) 0%, var(--whmcs-primary-soft) 100%);
    border-color: var(--whmcs-primary);
    color: #ffffff;
}

.whmcs-checkout-card__surface {
    display: grid;
    gap: 18px;
    padding: 18px 20px 18px;
    border-radius: 14px;
    border: 1px solid #dde3ef;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
}

.whmcs-checkout-card__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.whmcs-checkout-card__head h3,
.whmcs-checkout-section h4 {
    margin: 0;
    color: #101828;
    font-size: 15px;
    font-weight: 800;
}

.whmcs-checkout-card__head p,
.whmcs-checkout-section p,
.whmcs-checkout-note {
    margin: 6px 0 0;
    color: #667085;
}

.whmcs-checkout-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.whmcs-checkout-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    background: #ffffff;
    color: #344054;
    font-size: 11px;
    font-weight: 700;
}

.whmcs-checkout-main {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.76fr) minmax(280px, 0.7fr);
    align-items: start;
}

.whmcs-checkout-main--customer {
    grid-template-columns: 1fr;
}

.whmcs-checkout-main__content {
    display: grid;
    gap: 20px;
}

.whmcs-checkout-card__surface--primary {
    border-radius: 14px;
}

.whmcs-checkout-sidebar {
    display: grid;
    gap: 14px;
    align-content: start;
}

.whmcs-checkout-form,
.whmcs-checkout-payment-form,
.whmcs-checkout-section {
    display: grid;
    gap: 18px;
}

.whmcs-checkout-divider {
    height: 1px;
    background: #e4e7ec;
}

.whmcs-checkout-section__eyebrow {
    margin: 0;
    color: #2f6df6;
    font-size: 14px;
    font-weight: 800;
}

.whmcs-checkout-form__grid {
    display: grid;
    gap: 12px 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-checkout-form__grid--login {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.whmcs-field--compact {
    max-width: 96px;
}

.whmcs-field--full {
    grid-column: 1 / -1;
}

.whmcs-checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.whmcs-checkout-actions--footer {
    justify-content: flex-end;
    padding-top: 8px;
}

.whmcs-checkout-profile {
    display: grid;
    gap: 20px;
}

.whmcs-checkout-profile__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-checkout-profile__grid div {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    background: #f8fafc;
}

.whmcs-checkout-sidebar--customer {
    display: none;
}

.whmcs-checkout-profile__grid span {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.whmcs-checkout-profile__grid strong {
    color: #101828;
    font-size: 15px;
    font-weight: 700;
}

.whmcs-checkout-note {
    font-size: 12px;
    line-height: 1.7;
}

.whmcs-checkout-payment-product {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.whmcs-checkout-payment-product__main {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.whmcs-checkout-payment-product__main div {
    display: grid;
    gap: 2px;
}

.whmcs-checkout-payment-product__main strong,
.whmcs-checkout-payment-product__price {
    color: #101828;
    font-size: 13px;
    font-weight: 800;
}

.whmcs-checkout-payment-product__main span:last-child {
    color: #667085;
    font-size: 12px;
}

.whmcs-checkout-customer-list .whmcs-detail-list__row strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whmcs-checkout-customer-list .whmcs-detail-list__row strong i {
    color: #2f6df6;
    font-size: 13px;
}

.whmcs-checkout-payment-form--screen {
    gap: 16px;
}

.whmcs-checkout-payment-form--screen fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.whmcs-payment-method-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-payment-method-card {
    position: relative;
    display: grid;
    grid-template-columns: 16px 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-height: 54px;
    padding: 12px 12px 10px;
    border: 1px solid #dbe2f0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whmcs-payment-method-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.whmcs-payment-method-card__control {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1.5px solid #b7c2d6;
    margin-top: 4px;
    background: #ffffff;
}

.whmcs-payment-method-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #2f6df6;
    font-size: 15px;
}

.whmcs-payment-method-card__content {
    display: grid;
    gap: 2px;
}

.whmcs-payment-method-card__content strong {
    color: #101828;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.whmcs-payment-method-card__content small {
    color: #667085;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
}

.whmcs-payment-method-card.is-selected,
.whmcs-payment-method-card:has(input:checked) {
    border-color: #2f6df6;
    background: #f8fbff;
    box-shadow: 0 0 0 1px rgba(47, 109, 246, 0.1);
}

.whmcs-payment-method-card.is-selected .whmcs-payment-method-card__control,
.whmcs-payment-method-card:has(input:checked) .whmcs-payment-method-card__control {
    border-color: #2f6df6;
    box-shadow: inset 0 0 0 3px #ffffff;
    background: #2f6df6;
}

.whmcs-checkout-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    padding: 12px;
    border: 1px solid #e5e9f2;
    border-radius: 10px;
    background: #f8fafc;
}

.whmcs-checkout-promo .whmcs-field {
    display: grid;
    gap: 6px;
}

.whmcs-checkout-promo .whmcs-field input {
    min-height: 42px;
    border-radius: 8px;
    border-color: #d7deea;
    background: #ffffff;
}

.whmcs-button--promo {
    min-width: 128px;
    min-height: 42px;
    border-radius: 8px;
    padding-inline: 20px;
    border-color: #d7deea;
    background: #ffffff;
    color: #344054;
    font-weight: 700;
}

.whmcs-button--promo:hover {
    border-color: #2f6df6;
    color: #2f6df6;
    background: #f8fbff;
}

.whmcs-checkout-payment-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #dbe5ff;
    border-radius: 6px;
    background: #f4f8ff;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
}

.whmcs-checkout-payment-info i {
    color: #2f6df6;
}

.whmcs-checkout-card--confirmed .whmcs-checkout-card__head h3 {
    font-size: 18px;
    line-height: 1.25;
}

.whmcs-checkout-card--confirmed .whmcs-checkout-card__head p {
    max-width: 760px;
    font-size: 13px;
    line-height: 1.55;
}

.whmcs-checkout-profile-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-checkout-profile-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid #e5e9f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fafcff 0%, #f6f8fc 100%);
}

.whmcs-checkout-profile-card__icon,
.whmcs-checkout-summary-card__icon,
.whmcs-checkout-trust-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #2f6df6;
    background: #eef4ff;
    font-size: 14px;
}

.whmcs-checkout-profile-card__body {
    display: grid;
    gap: 3px;
}

.whmcs-checkout-profile-card__body span {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.whmcs-checkout-profile-card__body strong {
    color: #101828;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.whmcs-checkout-sidebar--summary {
    display: grid;
}

.whmcs-checkout-summary-card {
    display: grid;
    gap: 14px;
    padding: 16px 16px 14px;
    border-radius: 14px;
    border: 1px solid #dde3ef;
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.whmcs-checkout-summary-card h4 {
    margin: 0;
    color: #101828;
    font-size: 16px;
    font-weight: 800;
}

.whmcs-checkout-summary-card__product {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.whmcs-checkout-summary-card__product div {
    display: grid;
    gap: 2px;
}

.whmcs-checkout-summary-card__product strong {
    color: #101828;
    font-size: 14px;
    font-weight: 800;
}

.whmcs-checkout-summary-card__product span,
.whmcs-checkout-summary-card__product small {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.whmcs-checkout-summary-card__product small {
    color: #2f6df6;
}

.whmcs-checkout-summary-card__rows {
    display: grid;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}

.whmcs-checkout-summary-card__row,
.whmcs-checkout-summary-card__total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.whmcs-checkout-summary-card__row span,
.whmcs-checkout-summary-card__row strong {
    color: #475467;
    font-size: 12px;
}

.whmcs-checkout-summary-card__row strong {
    color: #101828;
    font-weight: 700;
}

.whmcs-checkout-summary-card__total {
    flex-wrap: wrap;
}

.whmcs-checkout-summary-card__total span {
    color: #101828;
    font-size: 14px;
    font-weight: 800;
}

.whmcs-checkout-summary-card__total strong {
    color: #2f6df6;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-left: auto;
}

.whmcs-checkout-summary-card__total small {
    width: 100%;
    text-align: right;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.whmcs-checkout-summary-card__rows--compact {
    padding: 10px 0;
}

.whmcs-checkout-summary-card__total--compact strong {
    font-size: 18px;
}

.whmcs-checkout-summary-card--payment {
    gap: 12px;
}

.whmcs-checkout-summary-card__actions {
    display: grid;
    gap: 10px;
}

.whmcs-button--summary-primary,
.whmcs-button--summary-secondary {
    width: 100%;
    justify-content: center;
}

.whmcs-button--summary-primary::after {
    content: "\2192";
    margin-left: 8px;
}

.whmcs-button--payment-submit::before {
    content: "\f023";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.whmcs-button--payment-submit::after {
    content: none;
}

.whmcs-button--edit {
    gap: 8px;
}

.whmcs-checkout-summary-card__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 2px;
}

.whmcs-checkout-summary-card__trust span,
.whmcs-checkout-trust-note span,
.whmcs-checkout-trust-note div span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
}

.whmcs-checkout-security-card {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border: 1px solid #dbe5ff;
    border-radius: 8px;
    background: #f7faff;
}

.whmcs-checkout-security-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f6df6;
    font-size: 12px;
    font-weight: 800;
}

.whmcs-checkout-security-card p {
    margin: 0;
    color: #667085;
    font-size: 11px;
    line-height: 1.45;
}

.whmcs-checkout-sidebar--payment {
    gap: 10px;
}

.whmcs-checkout-sidebar__actions {
    display: grid;
    gap: 10px;
}

.whmcs-checkout-trust-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #dde3ef;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.whmcs-checkout-trust-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 18px;
    align-items: start;
    border-right: 1px solid #e4e7ec;
}

.whmcs-checkout-trust-item:last-child {
    border-right: 0;
}

.whmcs-checkout-trust-item div {
    display: grid;
    gap: 4px;
}

.whmcs-checkout-trust-item strong {
    color: #101828;
    font-size: 14px;
    font-weight: 800;
}

.whmcs-checkout-trust-item p {
    margin: 0;
    color: #667085;
    font-size: 11px;
    line-height: 1.55;
}

.whmcs-checkout-trust-note {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #dbe5ff;
    border-radius: 12px;
    background: #f7faff;
}

.whmcs-checkout-trust-note > div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.whmcs-checkout-form .whmcs-field > span,
.whmcs-checkout-payment-form .whmcs-field > span {
    color: #344054;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

.whmcs-checkout-form input,
.whmcs-checkout-form select,
.whmcs-checkout-payment-form input,
.whmcs-checkout-payment-form select {
    min-height: 40px;
    border-radius: 4px;
    border-color: #d0d5dd;
    padding: 0 12px;
    font-size: 14px;
    box-shadow: none;
}

.whmcs-checkout-form .whmcs-checkbox,
.whmcs-checkout-payment-form .whmcs-checkbox {
    margin-top: 2px;
}

.whmcs-checkout-form .whmcs-button,
.whmcs-checkout-payment-form .whmcs-button {
    min-width: 118px;
    min-height: 40px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: none;
}

.whmcs-checkout-item-list {
    display: grid;
    gap: 0;
}

.whmcs-checkout-item-list__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--whmcs-border);
}

.whmcs-checkout-item-list__row:first-child {
    padding-top: 0;
}

.whmcs-checkout-item-list__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.whmcs-checkout-item-list__row div {
    display: grid;
    gap: 4px;
}

.whmcs-checkout-item-list__row strong {
    color: #101828;
    font-size: 14px;
}

.whmcs-checkout-item-list__row span {
    color: #667085;
    font-size: 13px;
}

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

.whmcs-checkbox--card {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--whmcs-border);
    background: var(--whmcs-card);
}

.whmcs-product-card.is-selected {
    border-color: var(--whmcs-primary);
    box-shadow: 0 0 0 2px rgba(15, 111, 255, 0.08), var(--whmcs-shadow);
}

.whmcs-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.whmcs-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--whmcs-surface-alt);
    border: 1px solid var(--whmcs-border);
}

.whmcs-detail-list {
    display: grid;
    gap: 12px;
}

.whmcs-detail-list__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--whmcs-border);
}

.whmcs-reply-thread {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.whmcs-reply-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--whmcs-border);
    background: var(--whmcs-surface-alt);
}

.whmcs-reply-card p {
    margin-bottom: 0;
}

.whmcs-reply-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 14px;
    margin-bottom: 12px;
}

.whmcs-ticket-shell {
    display: grid;
    gap: 20px;
}

.whmcs-ticket-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px 24px;
    padding: 6px 2px 0;
}

.whmcs-ticket-header h3,
.whmcs-ticket-card h4 {
    margin: 8px 0 10px;
}

.whmcs-ticket-header p,
.whmcs-ticket-card p {
    margin: 0;
    color: var(--whmcs-muted);
}

.whmcs-ticket-form-panel {
    max-width: 1180px;
    width: 100%;
}

.whmcs-ticket-create {
    display: grid;
    gap: 18px;
}

.whmcs-ticket-create__overview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whmcs-ticket-create__card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--whmcs-border);
    box-shadow: var(--whmcs-shadow);
}

.whmcs-ticket-create__card span,
.whmcs-ticket-form-panel__top p,
.whmcs-ticket-create__section h5 {
    color: var(--whmcs-muted);
}

.whmcs-ticket-create__card span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.whmcs-ticket-create__card strong {
    color: #0f172a;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
}

.whmcs-ticket-create__card small {
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.65;
}

.whmcs-ticket-form-panel {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.whmcs-ticket-form-panel__top {
    display: grid;
    gap: 8px;
}

.whmcs-ticket-form-panel__top h4 {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    line-height: 1.15;
}

.whmcs-ticket-form-panel__top p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-ticket-create__form {
    gap: 20px;
}

.whmcs-ticket-create__section {
    display: grid;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-ticket-create__section h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-ticket-create__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.whmcs-ticket-overview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whmcs-domain-shell {
    display: grid;
    gap: 20px;
}

.whmcs-service-shell {
    display: grid;
    gap: 20px;
}

.whmcs-invoice-shell {
    display: grid;
    gap: 20px;
}

.whmcs-service-overview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whmcs-domain-overview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whmcs-invoice-overview {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.whmcs-domain-overview__card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--whmcs-border);
    box-shadow: var(--whmcs-shadow);
}

.whmcs-service-overview__card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--whmcs-border);
    box-shadow: var(--whmcs-shadow);
}

.whmcs-invoice-overview__card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--whmcs-border);
    box-shadow: var(--whmcs-shadow);
}

.whmcs-service-overview__card span,
.whmcs-service-detail__stat span,
.whmcs-service-detail__feature span,
.whmcs-service-row__label,
.whmcs-service-table__head span,
.whmcs-domain-overview__card span,
.whmcs-domain-detail__stat span,
.whmcs-domain-detail__feature span,
.whmcs-domain-row__label,
.whmcs-domain-table__head span,
.whmcs-invoice-overview__card span,
.whmcs-invoice-detail__stat span,
.whmcs-invoice-row__label,
.whmcs-invoice-table__head span,
.whmcs-invoice-item__label {
    color: #61708a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-domain-overview__card strong {
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.whmcs-service-overview__card strong {
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.whmcs-invoice-overview__card strong {
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.whmcs-domain-overview__card small {
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.6;
}

.whmcs-service-overview__card small {
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.6;
}

.whmcs-invoice-overview__card small {
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.6;
}

.whmcs-service-table {
    display: grid;
    gap: 12px;
}

.whmcs-domain-table {
    display: grid;
    gap: 12px;
}

.whmcs-invoice-table {
    display: grid;
    gap: 12px;
}

.whmcs-service-table__head,
.whmcs-service-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) minmax(160px, 1fr) minmax(120px, 0.8fr) minmax(140px, 0.9fr) minmax(170px, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.whmcs-domain-table__head,
.whmcs-domain-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.55fr) minmax(150px, 1fr) minmax(120px, 0.8fr) minmax(170px, 1fr) minmax(120px, 0.8fr) auto;
    gap: 16px;
    align-items: center;
}

.whmcs-invoice-table__head,
.whmcs-invoice-row {
    display: grid;
    grid-template-columns: minmax(210px, 1.3fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) minmax(140px, 0.9fr) minmax(140px, 0.9fr) auto;
    gap: 16px;
    align-items: center;
}

.whmcs-service-table__head {
    padding: 0 18px;
}

.whmcs-domain-table__head {
    padding: 0 18px;
}

.whmcs-invoice-table__head {
    padding: 0 18px;
}

.whmcs-service-list {
    display: grid;
    gap: 12px;
}

.whmcs-domain-list {
    display: grid;
    gap: 12px;
}

.whmcs-invoice-list {
    display: grid;
    gap: 12px;
}

.whmcs-service-row {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e5f3;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.whmcs-domain-row {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e5f3;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.whmcs-invoice-row {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e5f3;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.whmcs-service-row__cell {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.whmcs-domain-row__cell {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.whmcs-invoice-row__cell {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.whmcs-service-row__cell strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.45;
}

.whmcs-domain-row__cell strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.45;
}

.whmcs-invoice-row__cell strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.45;
}

.whmcs-service-row__cell--action {
    justify-items: end;
}

.whmcs-domain-row__cell--action {
    justify-items: end;
}

.whmcs-invoice-row__cell--action {
    justify-items: end;
}

.whmcs-service-row__label {
    display: none;
}

.whmcs-domain-row__label {
    display: none;
}

.whmcs-invoice-row__label {
    display: none;
}

.whmcs-service-row__product-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.whmcs-service-row__product-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.whmcs-service-row__product-copy strong {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whmcs-service-row__product-copy small {
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.5;
}

.whmcs-service-detail {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.whmcs-service-detail__hero {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(15, 111, 255, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-service-detail__hero-main {
    display: grid;
    gap: 12px;
}

.whmcs-service-detail__identity {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.whmcs-service-detail__hero h4 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    font-weight: 800;
}

.whmcs-service-detail__hero p {
    max-width: 760px;
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-service-detail__stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-service-detail__stat,
.whmcs-service-detail__feature {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dbe7f4;
}

.whmcs-service-detail__stat strong,
.whmcs-service-detail__feature strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;
}

.whmcs-service-detail__layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.whmcs-service-detail__section {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-service-detail__section h5,
.whmcs-service-detail__credentials h6 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.whmcs-service-detail__feature-grid {
    display: grid;
    gap: 14px;
}

.whmcs-service-detail__credentials {
    display: grid;
    gap: 14px;
}

.whmcs-domain-row__domain-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.whmcs-domain-row__domain-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.whmcs-invoice-row__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.whmcs-domain-row__domain-copy strong {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whmcs-invoice-row__copy strong {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whmcs-domain-row__domain-copy small {
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.5;
}

.whmcs-invoice-row__copy small {
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.5;
}

.whmcs-domain-detail {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.whmcs-invoice-detail {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.whmcs-domain-detail__hero {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(15, 111, 255, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-invoice-detail__hero {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(15, 111, 255, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-domain-detail__hero-main {
    display: grid;
    gap: 12px;
}

.whmcs-invoice-detail__hero-main {
    display: grid;
    gap: 12px;
}

.whmcs-domain-detail__identity {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.whmcs-domain-detail__hero h4 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    font-weight: 800;
}

.whmcs-invoice-detail__hero h4 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    font-weight: 800;
}

.whmcs-domain-detail__hero p {
    max-width: 760px;
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-invoice-detail__hero p {
    max-width: 760px;
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-invoice-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.whmcs-invoice-detail__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #dbe7f4;
    color: #43526b;
    font-size: 12px;
    font-weight: 700;
}

.whmcs-domain-detail__stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-invoice-detail__stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-domain-detail__stat,
.whmcs-domain-detail__feature {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dbe7f4;
}

.whmcs-invoice-detail__stat {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dbe7f4;
}

.whmcs-domain-detail__stat strong,
.whmcs-domain-detail__feature strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;
}

.whmcs-invoice-detail__stat strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;
}

.whmcs-domain-detail__layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.whmcs-invoice-detail__layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
}

.whmcs-domain-detail__section {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-invoice-detail__section {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-invoice-detail__section--aside {
    align-content: start;
    gap: 18px;
}

.whmcs-domain-detail__section h5,
.whmcs-domain-detail__nameservers h6 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.whmcs-invoice-detail__section h5 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.whmcs-domain-detail__feature-grid {
    display: grid;
    gap: 12px;
}

.whmcs-invoice-items {
    display: grid;
    gap: 12px;
}

.whmcs-invoice-items__head,
.whmcs-invoice-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.whmcs-invoice-items__head {
    padding: 0 18px;
}

.whmcs-invoice-items__list {
    display: grid;
    gap: 12px;
}

.whmcs-invoice-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.whmcs-invoice-item__cell {
    display: grid;
    gap: 6px;
}

.whmcs-invoice-item__cell strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.55;
}

.whmcs-invoice-item__cell--amount {
    justify-items: end;
}

.whmcs-invoice-item__label {
    display: none;
}

.whmcs-invoice-summary {
    display: grid;
    gap: 0;
    padding: 4px 0 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dbe7f4;
    background: #ffffff;
}

.whmcs-invoice-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #e7eef7;
}

.whmcs-invoice-summary__row:last-child {
    border-bottom: 0;
}

.whmcs-invoice-summary__row strong {
    color: #43526b;
    font-size: 13px;
    font-weight: 700;
}

.whmcs-invoice-summary__row span {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.whmcs-invoice-summary__row.is-total {
    background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
}

.whmcs-invoice-summary__row.is-balance {
    background: linear-gradient(180deg, rgba(15, 111, 255, 0.08) 0%, rgba(15, 111, 255, 0.04) 100%);
}

.whmcs-invoice-facts {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whmcs-invoice-facts__card {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-invoice-facts__card span,
.whmcs-invoice-detail__note span {
    color: #61708a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-invoice-facts__card strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;
}

.whmcs-invoice-detail__note {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-invoice-detail__note p {
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-invoice-detail__download {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(15, 111, 255, 0.05);
    border: 1px solid rgba(15, 111, 255, 0.14);
}

.whmcs-invoice-detail__download p {
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.6;
}

.whmcs-domain-detail__nameservers {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.whmcs-domain-search-shell {
    display: grid;
    gap: 16px;
}

.whmcs-domain-search-stage,
.whmcs-domain-search-result {
    display: grid;
    gap: 16px;
    padding: 22px 22px 18px;
    border-radius: 14px;
    border: 1px solid #e1e8f2;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.whmcs-domain-search-stage__head {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) 124px;
    align-items: center;
}

.whmcs-domain-search-stage__intro {
    display: grid;
    gap: 4px;
}

.whmcs-domain-search-stage__intro h2,
.whmcs-domain-search-result h3 {
    margin: 0;
    color: #0f172a;
}

.whmcs-domain-search-stage__intro h2 {
    font-size: 32px;
    line-height: 1.04;
}

.whmcs-domain-search-stage__intro p,
.whmcs-domain-tld-list__item p {
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.55;
}

.whmcs-domain-search-stage__search-art {
    position: relative;
    width: 110px;
    height: 82px;
    border-radius: 16px;
    justify-self: end;
    background:
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    border: 1px solid #dbe6f3;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.whmcs-domain-search-stage__search-art > i {
    position: absolute;
    top: 23px;
    left: 36px;
    color: #2d7dff;
    font-size: 30px;
}

.whmcs-domain-search-stage__search-art-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: #2d7dff;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-domain-lookup-form__grid {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1.9fr) minmax(128px, 0.64fr) minmax(96px, 0.5fr) auto;
    align-items: end;
}

.whmcs-domain-lookup-form__field {
    display: grid;
    gap: 6px;
    align-content: end;
}

.whmcs-domain-lookup-form__label {
    color: #6d7d95;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.whmcs-domain-lookup-form__control {
    position: relative;
}

.whmcs-domain-lookup-form__control input,
.whmcs-domain-lookup-form__control select {
    min-height: 42px;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    border: 1px solid #d8e3f0;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.whmcs-domain-lookup-form__control--domain input {
    padding-left: 38px;
}

.whmcs-domain-lookup-form__control--domain i {
    position: absolute;
    top: 13px;
    left: 14px;
    color: #8a99af;
    font-size: 13px;
    pointer-events: none;
}

.whmcs-domain-lookup-form__submit {
    min-width: 156px;
    min-height: 42px;
    border-radius: 8px;
    font-size: 12px;
    align-self: end;
}

.whmcs-domain-search-stage__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.whmcs-domain-search-stage__tab {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #dbe5f2;
    background: #ffffff;
    color: #475569;
    font-size: 10px;
    font-weight: 600;
}

.whmcs-domain-search-stage__tld-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding-top: 2px;
}

.whmcs-domain-search-stage__tld-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.08;
}

.whmcs-domain-search-stage__tld-head a {
    color: #2d7dff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.whmcs-domain-search-stage__tab.is-active {
    color: #2d7dff;
    border-color: rgba(45, 125, 255, 0.22);
    background: rgba(45, 125, 255, 0.08);
}

.whmcs-domain-search-stage__tlds {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.whmcs-domain-search-stage__tld-card {
    display: grid;
    gap: 5px;
    min-height: 82px;
    padding: 13px 12px 11px;
    border-radius: 10px;
    border: 1px solid #e3ebf5;
    background: #ffffff;
}

.whmcs-domain-search-stage__tld-card strong,
.whmcs-domain-tld-list__item strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.whmcs-domain-search-stage__tld-card p {
    margin: 0;
    color: #7b8ba2;
    font-size: 9px;
    line-height: 1.45;
}

.whmcs-domain-search-stage__tld-card span,
.whmcs-domain-tld-list__item span {
    color: #2d7dff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.whmcs-domain-search-stage__meta {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 2px;
}

.whmcs-domain-search-stage__meta-item {
    display: grid;
    gap: 3px;
    padding-top: 10px;
    border-top: 1px solid #ecf1f7;
}

.whmcs-domain-search-stage__meta-item i {
    color: #2d7dff;
    font-size: 14px;
}

.whmcs-domain-search-stage__meta-item strong {
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
}

.whmcs-domain-search-stage__meta-item span {
    color: #7b8ba2;
    font-size: 10px;
    line-height: 1.5;
}

.whmcs-domain-search-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.whmcs-domain-search-result__eyebrow,
.whmcs-domain-tld-panel__head span {
    color: #2d7dff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.whmcs-domain-search-result h3 {
    font-size: 28px;
    line-height: 1.04;
}

.whmcs-domain-search-result__details,
.whmcs-domain-price-breakdown,
.whmcs-domain-tld-list {
    display: grid;
    gap: 0;
}

.whmcs-domain-search-result__row,
.whmcs-domain-tld-list__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e7eef7;
}

.whmcs-domain-search-result__row:first-child,
.whmcs-domain-tld-list__item:first-child {
    padding-top: 0;
}

.whmcs-domain-search-result__row:last-child,
.whmcs-domain-tld-list__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.whmcs-domain-search-result__row span {
    color: #64748b;
    font-size: 13px;
}

.whmcs-domain-search-result__row strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
}

.whmcs-domain-search-result__note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
    border: 1px solid #dbe8ff;
}

.whmcs-domain-search-result__note-icon {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 18px;
    border-radius: 50%;
    border: 2px solid #2d7dff;
}

.whmcs-domain-search-result__note-icon::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 2px;
    height: 6px;
    background: #2d7dff;
    border-radius: 999px;
}

.whmcs-domain-search-result__note-icon::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 6px;
    width: 2px;
    height: 2px;
    background: #2d7dff;
    border-radius: 999px;
}

.whmcs-domain-search-result__note p {
    margin: 0;
    color: #50627c;
    font-size: 13px;
    line-height: 1.55;
}

.whmcs-domain-search-result__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .whmcs-domain-search-stage__head,
    .whmcs-domain-search-stage__meta,
    .whmcs-domain-search-stage__tlds,
    .whmcs-domain-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whmcs-domain-lookup-form__grid {
        grid-template-columns: minmax(0, 1fr) minmax(160px, 0.7fr) minmax(112px, 0.55fr);
    }

    .whmcs-domain-lookup-form__submit {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .whmcs-domain-search-stage__head,
    .whmcs-domain-search-stage__meta,
    .whmcs-domain-search-stage__tlds,
    .whmcs-domain-search-grid,
    .whmcs-domain-lookup-form__grid {
        grid-template-columns: 1fr;
    }

    .whmcs-domain-search-stage__tld-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .whmcs-domain-search-result h3 {
        font-size: 26px;
    }

    .whmcs-domain-search-result__row,
    .whmcs-domain-tld-list__item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.whmcs-ticket-overview__card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--whmcs-border);
    box-shadow: var(--whmcs-shadow);
}

.whmcs-ticket-overview__card span,
.whmcs-ticket-card__meta-item span {
    color: var(--whmcs-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.whmcs-ticket-overview__card strong {
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.whmcs-ticket-overview__card small {
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.6;
}

.whmcs-ticket-list {
    display: grid;
    gap: 12px;
}

.whmcs-ticket-table {
    display: grid;
    gap: 12px;
}

.whmcs-ticket-table__head,
.whmcs-ticket-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.55fr) minmax(140px, 1fr) minmax(120px, 0.9fr) minmax(120px, 0.8fr) minmax(170px, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.whmcs-ticket-table__head {
    padding: 0 18px;
}

.whmcs-ticket-table__head span {
    color: #61708a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-ticket-row {
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e5f3;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.whmcs-ticket-row__cell {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.whmcs-ticket-row__cell strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.45;
}

.whmcs-ticket-row__cell--subject {
    gap: 10px;
}

.whmcs-ticket-row__subject-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.whmcs-ticket-row__subject-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.whmcs-ticket-row__subject-copy strong {
    display: block;
    overflow: hidden;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whmcs-ticket-row__subject-copy small {
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.5;
}

.whmcs-ticket-row__label {
    display: none;
    color: #61708a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-ticket-card__number {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #04111f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

.whmcs-ticket-row__cell--action {
    justify-items: end;
}

.whmcs-ticket-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
}

.whmcs-ticket-badge.is-open {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.22);
    color: #15803d;
}

.whmcs-ticket-badge.is-answered {
    background: rgba(15, 111, 255, 0.12);
    border-color: rgba(15, 111, 255, 0.18);
    color: #0f6fff;
}

.whmcs-ticket-badge.is-customer-reply {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.2);
    color: #c2410c;
}

.whmcs-ticket-badge.is-closed {
    background: rgba(100, 116, 139, 0.12);
    border-color: rgba(100, 116, 139, 0.18);
    color: #475569;
}

.whmcs-ticket-badge.is-neutral {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.18);
    color: #475569;
}

.whmcs-ticket-badge--priority.is-high {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.whmcs-ticket-badge--priority.is-medium {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.whmcs-ticket-badge--priority.is-low {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.2);
    color: #0284c7;
}

.whmcs-ticket-detail-layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
}

.whmcs-ticket-detail {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.whmcs-ticket-detail__hero {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(15, 111, 255, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe7f4;
}

.whmcs-ticket-detail__hero-main {
    display: grid;
    gap: 12px;
}

.whmcs-ticket-detail__identity {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.whmcs-ticket-detail__hero h4 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    font-weight: 800;
}

.whmcs-ticket-detail__hero p {
    max-width: 760px;
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-ticket-detail__stats {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-ticket-detail__stat,
.whmcs-ticket-detail__fact {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dbe7f4;
}

.whmcs-ticket-detail__stat span,
.whmcs-ticket-detail__fact span {
    color: #61708a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.whmcs-ticket-detail__stat strong,
.whmcs-ticket-detail__fact strong {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;
}

.whmcs-ticket-detail__body {
    display: grid;
    gap: 16px;
}

.whmcs-ticket-message {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.whmcs-ticket-message__rail {
    position: relative;
}

.whmcs-ticket-message__rail::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -16px;
    left: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.45), rgba(148, 163, 184, 0.08));
}

.whmcs-ticket-message:last-child .whmcs-ticket-message__rail::before {
    bottom: 24px;
}

.whmcs-ticket-message__dot {
    position: absolute;
    top: 22px;
    left: 1px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0f6fff;
    border: 4px solid #dbeafe;
    box-shadow: 0 0 0 6px rgba(15, 111, 255, 0.08);
}

.whmcs-ticket-message__card {
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid #dbe7f4;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.whmcs-ticket-message--origin .whmcs-ticket-message__card {
    background:
        radial-gradient(circle at top right, rgba(15, 111, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.whmcs-ticket-message--staff .whmcs-ticket-message__dot {
    background: #0f6fff;
}

.whmcs-ticket-message--customer .whmcs-ticket-message__dot,
.whmcs-ticket-message--origin .whmcs-ticket-message__dot {
    background: #10b981;
    border-color: #d1fae5;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
}

.whmcs-ticket-message__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 16px;
    margin-bottom: 14px;
}

.whmcs-ticket-message__meta strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.3;
}

.whmcs-ticket-message__meta span,
.whmcs-ticket-message__meta time {
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.6;
}

.whmcs-ticket-message__content {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.75;
}

.whmcs-ticket-message__content > :first-child {
    margin-top: 0;
}

.whmcs-ticket-message__content > :last-child {
    margin-bottom: 0;
}

.whmcs-ticket-reply-box {
    display: grid;
    gap: 18px;
    margin-top: 10px;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #dbe7f4;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.whmcs-ticket-reply-box__top {
    display: grid;
    gap: 8px;
}

.whmcs-ticket-reply-box__top h4 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.2;
}

.whmcs-ticket-reply-box__top p {
    margin: 0;
    color: var(--whmcs-muted);
    font-size: 13px;
    line-height: 1.65;
}

.whmcs-ticket-detail__facts {
    display: grid;
    gap: 12px;
}

.whmcs-reply-thread--ticket-detail {
    margin-top: 0;
}

.whmcs-frontend--login,
.whmcs-frontend--register,
.whmcs-frontend--reset_password,
.whmcs-frontend--logout {
    margin: 0 auto;
    max-width: 1180px;
}

.whmcs-frontend--scope-hosting .whmcs-panel > h2,
.whmcs-frontend--scope-hosting .whmcs-panel > p {
    max-width: 860px;
}

.whmcs-frontend--scope-hosting .whmcs-panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.whmcs-hosting-stage__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 16px;
}

.whmcs-hosting-stage__copy h2 {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.08;
}

.whmcs-hosting-stage__billing {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid #dbe7f4;
    background: #f6f9fe;
}

.whmcs-hosting-stage__billing span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: #7b8ba2;
    font-size: 10px;
    font-weight: 700;
}

.whmcs-hosting-stage__billing .is-active {
    background: #2d7dff;
    color: #ffffff;
}

.whmcs-hosting-stage__billing .is-discount {
    color: #2d7dff;
}

.whmcs-frontend--scope-hosting .whmcs-chip-row--catalog {
    display: none;
}

.whmcs-frontend--scope-hosting .whmcs-product-grid {
    margin-top: 0;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whmcs-frontend--scope-hosting .whmcs-product-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 470px;
    padding: 22px 18px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e5f3;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.whmcs-frontend--scope-hosting .whmcs-product-card.is-featured {
    border-color: #2d7dff;
    box-shadow: 0 22px 48px rgba(45, 125, 255, 0.16);
}

.whmcs-frontend--scope-hosting .whmcs-product-card.is-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 12px 12px 0 0;
    background: #2d7dff;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    min-height: 22px;
    padding: 0 12px;
    border-radius: 999px;
    background: #2d7dff;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__group {
    color: #7b8ba2;
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.whmcs-frontend--scope-hosting .whmcs-product-card h3 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.whmcs-frontend--scope-hosting .whmcs-product-card p {
    margin: 0;
    min-height: 18px;
    font-size: 12px;
    line-height: 1.5;
    color: #7b8ba2;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__price {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    margin-top: 14px;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__price strong {
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__price span {
    padding-bottom: 2px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 600;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__features {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__features li {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding-left: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #475467;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__features li::before {
    display: none;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__features li > i {
    margin-top: 2px;
    color: #2d7dff;
    font-size: 11px;
    line-height: 1;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__features li > span {
    display: block;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__footer {
    margin-top: auto;
    padding-top: 22px;
    align-items: stretch;
    justify-content: stretch;
}

.whmcs-frontend--scope-hosting .whmcs-product-card__footer .whmcs-button {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #2d7dff;
    background: #ffffff;
    border: 1px solid rgba(45, 125, 255, 0.55);
    box-shadow: none;
}

@media (max-width: 1180px) {
    .whmcs-hosting-stage__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .whmcs-frontend--scope-hosting .whmcs-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .whmcs-hosting-stage__copy h2 {
        font-size: 28px;
    }

    .whmcs-frontend--scope-hosting .whmcs-product-grid {
        grid-template-columns: 1fr;
    }
}

.whmcs-auth-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.whmcs-auth-stage {
    padding: 30px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 18%, rgba(53, 146, 255, 0.24), transparent 22%),
        linear-gradient(135deg, #04111f 0%, #05162b 44%, #061c38 100%);
    border: 1px solid rgba(80, 183, 255, 0.16);
    box-shadow: 0 28px 70px rgba(1, 10, 24, 0.22);
    color: #ffffff;
}

.whmcs-auth-stage h2 {
    margin: 12px 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.06;
    font-weight: 800;
}

.whmcs-auth-stage p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7;
}

.whmcs-auth-stage__facts {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.whmcs-auth-stage__facts span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
}

.whmcs-frontend--login .whmcs-panel,
.whmcs-frontend--register .whmcs-panel,
.whmcs-frontend--reset_password .whmcs-panel,
.whmcs-frontend--logout .whmcs-panel {
    padding: 30px;
    align-self: stretch;
}

.whmcs-frontend--login .whmcs-panel,
.whmcs-frontend--reset_password .whmcs-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whmcs-frontend--login .whmcs-form-frontend,
.whmcs-frontend--reset_password .whmcs-form-frontend {
    max-width: none;
}

.whmcs-frontend--login .whmcs-panel h2,
.whmcs-frontend--reset_password .whmcs-panel h2 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.08;
}

.whmcs-frontend--login .whmcs-panel p,
.whmcs-frontend--reset_password .whmcs-panel p {
    max-width: 560px;
    margin-bottom: 18px;
}

.whmcs-frontend--login .whmcs-link-row,
.whmcs-frontend--reset_password .whmcs-link-row {
    margin-top: 18px;
}

.whmcs-form-frontend input:focus,
.whmcs-form-frontend select:focus,
.whmcs-form-frontend textarea:focus {
    outline: 0;
    border-color: var(--whmcs-primary);
    box-shadow: 0 0 0 4px rgba(15, 111, 255, 0.08);
}

.whmcs-field > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.whmcs-required {
    color: #ef4444;
    font-weight: 800;
}

.whmcs-form-note {
    margin: 0 0 8px;
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.6;
}

.whmcs-form-hint {
    margin: 12px 0 0;
    color: var(--whmcs-muted);
    font-size: 12px;
    line-height: 1.6;
}

.whmcs-form-section {
    display: grid;
    gap: 14px;
    padding-top: 6px;
}

.whmcs-form-section + .whmcs-form-section {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--whmcs-border);
}

.whmcs-form-section h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.whmcs-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.whmcs-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 18px;
}

.whmcs-checkbox span {
    color: var(--whmcs-text);
    line-height: 1.55;
}

.whmcs-frontend--register .whmcs-panel {
    padding: 30px;
}

.whmcs-frontend--register .whmcs-form-frontend--wide {
    max-width: none;
}

.whmcs-frontend--register .whmcs-form-columns {
    gap: 16px 14px;
}

.whmcs-frontend--register .whmcs-button,
.whmcs-frontend--login .whmcs-button {
    width: fit-content;
}

.whmcs-frontend--register .whmcs-link-row,
.whmcs-frontend--login .whmcs-link-row {
    gap: 18px;
}

.whmcs-fixed-route--customer_dashboard .dn24host2-topbar--portal,
.whmcs-fixed-route--customer_profile .dn24host2-topbar--portal,
.whmcs-fixed-route--customer_tickets .dn24host2-topbar--portal,
.whmcs-fixed-route--customer_invoices .dn24host2-topbar--portal,
.whmcs-fixed-route--customer_domains .dn24host2-topbar--portal,
.whmcs-fixed-route--customer_logout .dn24host2-topbar--portal,
.whmcs-fixed-route--customer_dashboard .dn24host2-navshell--portal,
.whmcs-fixed-route--customer_profile .dn24host2-navshell--portal,
.whmcs-fixed-route--customer_tickets .dn24host2-navshell--portal,
.whmcs-fixed-route--customer_invoices .dn24host2-navshell--portal,
.whmcs-fixed-route--customer_domains .dn24host2-navshell--portal,
.whmcs-fixed-route--customer_logout .dn24host2-navshell--portal {
    background: linear-gradient(135deg, rgba(5, 22, 43, 0.98) 0%, rgba(7, 31, 59, 0.98) 100%);
}

.whmcs-portal-header__email {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 700;
}

.dn24host2-header__bar--portal {
    min-height: 78px;
}

.dn24host2-nav--portal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
}

.dn24host2-nav--portal > a,
.dn24host2-nav__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    text-decoration: none;
    font-weight: 700;
}

.dn24host2-nav__dropdown-toggle {
    gap: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.dn24host2-nav__dropdown-toggle svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.7;
    fill: none;
    transition: transform .2s ease;
}

.dn24host2-nav--portal > a:hover,
.dn24host2-nav__dropdown:hover .dn24host2-nav__dropdown-toggle,
.dn24host2-nav__dropdown:focus-within .dn24host2-nav__dropdown-toggle {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dn24host2-nav--portal > a.is-active,
.dn24host2-nav__dropdown.is-active .dn24host2-nav__dropdown-toggle {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(15, 111, 255, 0.22), rgba(80, 183, 255, 0.14));
    border-color: rgba(80, 183, 255, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dn24host2-nav__dropdown:hover .dn24host2-nav__dropdown-toggle svg,
.dn24host2-nav__dropdown:focus-within .dn24host2-nav__dropdown-toggle svg {
    transform: rotate(180deg);
}

.dn24host2-nav__dropdown {
    position: relative;
}

.dn24host2-nav__dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.dn24host2-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    display: none;
    gap: 8px;
    min-width: 280px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(80, 183, 255, 0.16);
    background: linear-gradient(180deg, rgba(7, 21, 42, 0.98) 0%, rgba(6, 18, 36, 0.98) 100%);
    box-shadow: 0 24px 60px rgba(1, 10, 24, 0.32);
}

.dn24host2-nav__dropdown:hover .dn24host2-nav__dropdown-menu,
.dn24host2-nav__dropdown:focus-within .dn24host2-nav__dropdown-menu {
    display: grid;
}

.dn24host2-nav__dropdown-link {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.dn24host2-nav__dropdown-link strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.dn24host2-nav__dropdown-link span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.45;
}

.dn24host2-nav__dropdown-link:hover,
.dn24host2-nav__dropdown-link.is-active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(80, 183, 255, 0.22);
}

.dn24host2-nav__dropdown-link.is-active {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dn24host2-header__actions--portal {
    gap: 12px;
}

@media (max-width: 900px) {
    .whmcs-frontend__hero,
    .whmcs-product-grid,
    .whmcs-status-grid,
    .whmcs-dashboard-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .whmcs-frontend__hero {
        padding: 24px;
    }

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

    .whmcs-ticket-overview,
    .whmcs-service-overview,
    .whmcs-domain-overview,
    .whmcs-invoice-overview,
    .whmcs-ticket-create__overview,
    .whmcs-ticket-header,
    .whmcs-ticket-detail-layout,
    .whmcs-service-detail__layout,
    .whmcs-domain-detail__layout,
    .whmcs-invoice-detail__layout,
    .whmcs-domain-search-grid,
    .whmcs-domain-tld-grid {
        grid-template-columns: 1fr;
    }

    .whmcs-service-table__head {
        display: none;
    }

    .whmcs-ticket-table__head {
        display: none;
    }

    .whmcs-ticket-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .whmcs-domain-table__head {
        display: none;
    }

    .whmcs-invoice-table__head {
        display: none;
    }

    .whmcs-service-row,
    .whmcs-domain-lookup-form__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .whmcs-domain-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .whmcs-invoice-row,
    .whmcs-invoice-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .whmcs-ticket-row__label {
        display: inline-block;
    }

    .whmcs-service-row__label {
        display: inline-block;
    }

    .whmcs-domain-row__label {
        display: inline-block;
    }

    .whmcs-invoice-row__label,
    .whmcs-invoice-item__label {
        display: inline-block;
    }

    .whmcs-ticket-row__cell--action {
        justify-items: start;
    }

    .whmcs-service-row__cell--action {
        justify-items: start;
    }

    .whmcs-domain-row__cell--action {
        justify-items: start;
    }

    .whmcs-invoice-row__cell--action,
    .whmcs-invoice-item__cell--amount {
        justify-items: start;
    }

    .whmcs-ticket-row__subject-copy strong {
        white-space: normal;
    }

    .whmcs-service-row__product-copy strong {
        white-space: normal;
    }

    .whmcs-domain-row__domain-copy strong {
        white-space: normal;
    }

    .whmcs-invoice-row__copy strong {
        white-space: normal;
    }

    .whmcs-invoice-facts {
        grid-template-columns: 1fr;
    }

    .whmcs-ticket-detail {
        padding: 22px;
    }

    .whmcs-service-detail {
        padding: 22px;
    }

    .whmcs-domain-detail {
        padding: 22px;
    }

    .whmcs-invoice-detail {
        padding: 22px;
    }

    .whmcs-ticket-form-panel {
        padding: 22px;
    }

    .whmcs-ticket-detail__hero,
    .whmcs-ticket-detail__stats,
    .whmcs-service-detail__hero,
    .whmcs-service-detail__stats,
    .whmcs-domain-detail__hero,
    .whmcs-domain-detail__stats,
    .whmcs-invoice-detail__hero,
    .whmcs-invoice-detail__stats {
        grid-template-columns: 1fr;
    }

    .whmcs-order-steps,
    .whmcs-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .whmcs-hosting-detail__hero,
    .whmcs-hosting-detail__grid,
    .whmcs-hosting-detail__steps,
    .whmcs-hosting-detail__footer-strip,
    .whmcs-hosting-config__hero,
    .whmcs-hosting-config__cycle-grid,
    .whmcs-hosting-config__inline-grid,
    .whmcs-hosting-config__option-grid {
        grid-template-columns: 1fr;
    }

    .whmcs-hosting-config__domain-form {
        grid-template-columns: 1fr;
    }

    .whmcs-hosting-detail__step + .whmcs-hosting-detail__step {
        border-left: 0;
        border-top: 1px solid #e4e7ec;
    }

    .whmcs-hosting-detail__support-card,
    .whmcs-hosting-detail__footer-strip article,
    .whmcs-hosting-config__topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .whmcs-hosting-detail__feature-row {
        grid-template-columns: 1fr;
    }

    .whmcs-checkout-progress {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }

    .whmcs-checkout-progress__item {
        justify-items: start;
        grid-template-columns: 30px auto;
        align-items: center;
    }

    .whmcs-checkout-progress__item::before {
        display: none;
    }

    .whmcs-checkout-switches {
        width: 100%;
        margin-left: 0;
    }

    .whmcs-checkout-switches__item {
        flex: 1 1 0;
        padding: 0 14px;
        text-align: center;
    }

    .whmcs-checkout-card__surface {
        padding: 22px;
    }

    .whmcs-checkout-card__head,
    .whmcs-checkout-main,
    .whmcs-checkout-profile__grid,
    .whmcs-checkout-profile-grid,
    .whmcs-checkout-trust-grid,
    .whmcs-checkout-trust-item {
        grid-template-columns: 1fr;
        display: grid;
    }

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

    .whmcs-checkout-promo {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .whmcs-checkout-promo .whmcs-field input,
    .whmcs-button--promo {
        border-radius: 8px;
    }

    .whmcs-checkout-badges {
        justify-content: flex-start;
    }

    .whmcs-checkout-summary-card__total strong {
        font-size: 28px;
    }

    .whmcs-checkout-trust-item {
        border-right: 0;
        border-bottom: 1px solid #e4e7ec;
    }

    .whmcs-checkout-trust-item:last-child {
        border-bottom: 0;
    }

    .whmcs-checkout-trust-note {
        border-radius: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .whmcs-checkout-trust-note > div {
        width: 100%;
    }

    .whmcs-checkout-payment-product {
        align-items: flex-start;
        flex-direction: column;
    }

    .whmcs-checkout-form__grid {
        grid-template-columns: 1fr;
    }

    .whmcs-field--compact,
    .whmcs-field--full {
        max-width: none;
        grid-column: auto;
    }

    .whmcs-hosting-detail__feature-row strong {
        text-align: left;
    }

    .whmcs-cart-layout {
        grid-template-columns: 1fr;
    }

    .whmcs-cart-item__head {
        flex-direction: column;
        align-items: stretch;
    }

    .whmcs-order-actions {
        flex-direction: column;
    }

    .whmcs-ticket-message {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .whmcs-ticket-message__rail {
        display: none;
    }

    .dn24host2-header__bar--portal {
        align-items: flex-start;
    }

    .dn24host2-nav--portal,
    .dn24host2-header__actions--portal {
        width: 100%;
        justify-content: flex-start;
    }

    .dn24host2-nav__dropdown {
        width: 100%;
    }

    .dn24host2-nav__dropdown::after {
        display: none;
    }

    .dn24host2-nav--portal > a,
    .dn24host2-nav__dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dn24host2-nav__dropdown-menu {
        display: none;
        position: static;
        min-width: 0;
        margin-top: 8px;
    }

    .dn24host2-nav__dropdown:hover .dn24host2-nav__dropdown-menu,
    .dn24host2-nav__dropdown:focus-within .dn24host2-nav__dropdown-menu {
        display: grid;
    }

    .whmcs-auth-stage,
    .whmcs-frontend--login .whmcs-panel,
    .whmcs-frontend--register .whmcs-panel,
    .whmcs-frontend--reset_password .whmcs-panel,
    .whmcs-frontend--logout .whmcs-panel {
        padding: 24px;
    }

    .whmcs-frontend__meta {
        flex-wrap: wrap;
    }

    .whmcs-record-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .whmcs-form-columns,
    .whmcs-detail-list__row,
    .whmcs-checkbox-grid,
    .whmcs-status-grid--summary,
    .whmcs-domain-lookup-form__grid,
    .whmcs-domain-search-grid,
    .whmcs-domain-tld-grid {
        grid-template-columns: 1fr;
        display: grid;
    }
}
