.brand-h,
.brand-name,
.hf-logo .title {
    letter-spacing: -0.03em;
}
#pricing-home .plan-price,
#pricing-home .toggle-btn.active {
    background: linear-gradient(135deg, #40257d 0, #3c2084 40%, #a959d3 100%);
}
.mobile-offcanvas {
    --bs-offcanvas-width: min(92vw, 420px);
}
:root {
    --paper-zebra: #fcfbff;
    --paper-soft: #faf8ff;
    --bg: #000;
    --text: #fff;
    --muted: #a7a7a7;
    --muted-2: #919191;
    --border: rgba(221, 221, 221, 0.64);
    --radius: 16px;
    --nav-h: 136px;
    --container: 1200px;
    --page-wrap: min(1712px, calc(100% - 208px));
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.45), 0 6px 18px rgba(0, 0, 0, 0.35);
}
* {
    box-sizing: border-box;
}
body,
html {
    height: 100%;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family:
        Nunito,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    letter-spacing: -0.5px;
}
.container-xxl {
    max-width: var(--container);
}
.site-header {
    position: relative;
    top: 0;
    z-index: 100;
}
.nav-hostina {
    background: 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
    width: var(--page-wrap);
    height: var(--nav-h);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 0 12px;
}
.brand-mark {
    width: 41px;
    height: 41px;
    background: #fff;
    border-radius: 72px;
    position: relative;
    box-shadow: var(--shadow-xl);
}
.brand-h {
    position: absolute;
    left: 12px;
    top: 8px;
    font-family: "Oleo Script", cursive;
    font-size: 24px;
    line-height: 1;
    color: #000;
}
.brand-name {
    font-family: "Open Sans", sans-serif;
    font-size: 27px;
}
.nav-center .nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0.25rem;
    position: relative;
}
.hf-bottom,
.nav-center .nav-link:focus,
.nav-center .nav-link:hover {
    color: #fff;
}
.caret {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    margin-left: 6px;
    transition: 0.25s;
}
.show > .nav-link .caret {
    transform: rotate(-135deg);
    border-color: #fff;
}
.currency-box {
    width: 141px;
    border: 1.04px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cur-inner,
.hf-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.flag {
    width: 29px;
    height: 29px;
    border-radius: 61px;
    background: linear-gradient(180deg, #fefefe, #d8d8d8);
    display: inline-block;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.cur {
    font-weight: 600;
    font-size: 19.66px;
    letter-spacing: 0.05em;
}
.account-box {
    border: 1.04px solid var(--border);
}
.acc-label {
    font-weight: 700;
    font-size: 20px;
    color: var(--muted);
}
.dropdown-menu-dark {
    --bs-dropdown-color: #fff;
    --bs-dropdown-bg: rgba(25, 25, 25, 0.75);
    --bs-dropdown-border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid var(--bs-dropdown-border-color);
    min-width: 260px;
    transform-origin: top center;
    animation: 0.2s both dropdownHide;
}
.dropdown-item {
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    color: #dcdcdc;
    transition: transform 0.15s;
}
.dropdown-item:hover,
.hf-link:hover {
    color: #fff;
    transform: translateX(3px);
}
.dropdown-item.rtl:hover,
.hf-link.rtl:hover {
    transform: translateX(-3px);
}
.show > .dropdown-menu {
    animation: 0.18s both dropdownShow;
}
@keyframes dropdownShow {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes dropdownHide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }
}
.nav-toggle {
    border: 0;
    background: 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: 0.25s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}
.card-item.card-hover-effect:hover figure::before,
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.hero-wrap {
    position: relative;
    min-height: 840px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    -webkit-box-shadow: 1px 4px 25px -14px #853fc4;
}
.hero {
    padding-top: 200px;
    padding-bottom: 140px;
}
.hero-title {
    font-weight: 800;
    font-size: 59px;
    line-height: 120%;
    text-align: center;
    margin: 0 auto;
    max-width: 928px;
    letter-spacing: -1px;
}
.hero-sub {
    margin: 24px auto 32px;
    max-width: 772px;
    color: var(--muted);
    font-size: 28px;
    line-height: 150%;
    text-align: center;
}
.domain-form {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.domain-input {
    position: relative;
    width: 641px;
    height: 80px;
}
.domain-input .domain {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    outline: 0;
    padding: 22px 64px 22px 24px;
    font-size: 24px;
    line-height: 36px;
    transition: 0.2s;
}
.domain-input .domain:focus {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}
.domain-input .domain::placeholder {
    color: var(--muted-2);
    text-align: left;
}
.kbd-ico {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    opacity: 0.9;
}
.btn-search {
    width: 295px;
    height: 80px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 48px;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: 0.3s;

}
.btn-search:hover {
    transform: translateY(-3px) scale(1.02);
}
.btn-search::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent 0, rgba(255, 255, 255, 0.5) 20%, transparent 40%);
    transform: rotate(25deg);
    transition: 0.6s;
}
.btn-search:hover::before {
    left: 100%;
}
.btn-search:active {
    transform: translateY(0) scale(0.98);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}
.dot {
    position: absolute;
    background: #fff;
    border-radius: 32px;
    opacity: 1;
    animation: 3.2s ease-in-out infinite twinkle;
}
.dot.w3 {
    width: 3px;
    height: 3px;
}
.dot.w4 {
    width: 4px;
    height: 4px;
}
.dot.w5 {
    width: 5px;
    height: 5px;
}
.dot.w9 {
    width: 9px;
    height: 9px;
}
.dot.a3 {
    opacity: 0.3;
}
.dot.a4 {
    opacity: 0.4;
}
@keyframes twinkle {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.center-ellipse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.25);
    animation: 6s ease-in-out infinite pulse;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
    }
    50% {
        box-shadow: 0 0 36px rgba(255, 255, 255, 0.32);
    }
}
.appear-up {
    opacity: 0;
    transform: translateY(12px);
    animation: 0.6s forwards appear;
}
.appear-up.d2 {
    animation-delay: 80ms;
}
.appear-up.d3 {
    animation-delay: 0.16s;
}
@keyframes appear {
    to {
        opacity: 1;
        transform: none;
    }
}
.mobile-offcanvas {
    backdrop-filter: blur(16px) saturate(130%);
}
.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-offcanvas .mm-section {
    padding: 18px 6px;
}
.mobile-offcanvas .mm-title {
    font:
        800 18px/1 Nunito,
        sans-serif;
    color: #fff;
    margin-bottom: 8px;
    opacity: 0.9;
}
.mobile-offcanvas .mm-link {
    display: block;
    padding: 10px 6px;
    color: #9b96b0;
    text-decoration: none;
    border-radius: 10px;
    transition:
        background 0.15s,
        transform 0.15s;
}
.mobile-offcanvas .mm-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(3px);
}
.mobile-offcanvas .mm-actions {
    display: flex;
    gap: 10px;
    padding: 12px 6px 6px;
}
.mobile-offcanvas .flag,
.mobile-offcanvas .user-ico {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
}
.mobile-offcanvas .mm-chip {
    flex: 1;
    padding: 12px 14px;
    border-radius: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(8px);
}
.mobile-offcanvas .flag {
    border-radius: 50%;
    background: linear-gradient(180deg, #fefefe, #d8d8d8);
}
.mobile-offcanvas .user-ico {
    border: 1.5px solid #fff;
    border-radius: 6px;
    opacity: 0.8;
}
.hostina-footer {
    position: relative;
    width: 100%;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    -webkit-box-shadow: 1px -4px 25px -14px #853fc4;
    box-shadow: 1px -4px 25px -14px #853fc4;
}
.hf-bottom,
.hf-copy,
.hf-link {
    color: var(--muted);
}
.hostina-footer::after,
.hostina-footer::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 200%;
    background:
        radial-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 2px) 0 0/120px 120px,
        radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 2px) 60px 40px/140px 140px;
    opacity: 0.25;
    animation: 28s linear infinite footer-drift;
    pointer-events: none;
}
.hf-col,
.hf-divider,
.hf-link,
.hf-logo .circle,
.hf-wrap {
    position: relative;
}
.hostina-footer::after {
    inset: auto -10% -30% -10%;
    transform: rotate(180deg);
    opacity: 0.18;
    animation-duration: 36s;
}
@keyframes footer-drift {
    to {
        transform: translateY(-80px);
    }
}
.hf-wrap {
    width: var(--page-wrap);
    margin: 0 auto;
    padding: 80px 0 0;
}
.hf-top {
    display: flex;
    gap: 71px;
    align-items: flex-start;
    min-height: 350px;
}
.hf-brand {
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.hf-logo .circle {
    width: 41px;
    height: 41px;
    border-radius: 72px;
    background: #fff;
}
.hf-logo .circle span {
    font-family: "Oleo Script", system-ui;
    color: #000;
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    left: 12px;
    top: 9px;
    line-height: 1;
}
.hf-logo .title {
    font:
        600 27px/1 "Open Sans",
        system-ui;
}
.hf-copy {
    width: 550px;
    height: 150px;
    font:
        700 24px/40px Nunito,
        system-ui;
}
.hf-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.hf-chip {
    width: 64px;
    height: 64px;
    border-radius: 160px;
    background: rgba(246, 246, 246, 0.22);
    display: grid;
    place-items: center;
    transition:
        transform 0.3s,
        background 0.3s,
        box-shadow 0.3s;
    backdrop-filter: saturate(180%) blur(2px);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.hf-chip svg {
    width: 33px;
    height: 33px;
    fill: #fff;
}
.hf-chip:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hf-divider::before,
.hf-link::after {
    content: "";
    position: absolute;
    background: #fff;
}
.hf-col {
    width: auto;
    min-width: 300px;
}
.hf-col .ttl {
    font:
        700 26px/29px Nunito,
        system-ui;
    margin-bottom: 32px;
}
.hf-contact-col .hf-contact,
.hf-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hf-link {
    font:
        700 24px/27px Nunito,
        system-ui;
    text-decoration: none;
    width: max-content;
    transition:
        color 0.25s,
        transform 0.25s;
}
.hf-link::after {
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    transition: width 0.25s;
}
.hf-link.rtl::after {
    right: 0;
}
.hf-link:hover::after {
    width: 100%;
}
.hf-divider {
    width: min(790.67px, 70%);
    margin: 12px auto 0;
    overflow: hidden;
}
.hf-divider::before {
    left: -20%;
    top: 0;
    width: 20%;
    height: 100%;
    filter: blur(1px);
    opacity: 0.25;
    animation: 4s ease-in-out infinite footer-shine;
}
#dedicated-pricing .btn-order.solid,
.header .dropdown,
.hf-bottom,
.nav-hostina .dropdown,
.nav-right .dropdown,
.navbar .dropdown {
    position: relative;
}
@keyframes footer-shine {
    50% {
        left: 100%;
    }
}
.hf-bottom {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 40px;
    font:
        700 24px/40px Nunito,
        system-ui;
}
.hf-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.4);
    animation: 6s ease-in-out infinite footer-floatY;
}
.hf-dot.d1 {
    left: 125px;
    top: 487px;
    animation-duration: 7s;
}
.hf-dot.d2 {
    left: 500px;
    top: 372px;
    animation-duration: 5.5s;
}
.hf-dot.d3 {
    right: 266px;
    top: 502px;
    animation-duration: 8s;
}
@keyframes footer-floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s,
        transform 0.6s;
}
.reveal.show {
    opacity: 1;
    transform: none;
}
@media (max-width: 1200px) {
    .hero {
        padding-top: 140px;
    }
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-sub {
        font-size: 20px;
    }
    .domain-input {
        width: min(560px, 100%);
    }
}
@media (max-width: 576px) {
    .btn-search,
    .domain-input {
        height: 64px;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 18px;
    }
    .btn-search {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row !important;
        align-items: center;
        margin-top: 10px;
        flex-direction: row !important;
        align-items: center;
    }
    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }
}
.account-box .user-ico,
.currency-box .flag {
    height: 18px;
    display: inline-block;
    width: 18px;
}
.navbar .dropdown-menu {
    margin-top: 12px;
    padding-top: 6px;
}
.account-box,
.currency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    min-width: 164px;
    justify-content: space-between;
}
.currency-box .flag {
    background: url("path-to-flag-icon.svg") center/cover no-repeat;
    border-radius: 50%;
}
.account-box .user-ico {
    background: url("path-to-user-icon.svg") center/cover no-repeat;
}
.account-box .acc-label,
.currency-box .cur {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.dropdown-toggle::after,
.tos-panel[hidden] {
    display: none;
}
.domain::placeholder {
    opacity: 0.9;
    transition: opacity 0.2s;
}
.domain:focus::placeholder {
    opacity: 0.5;
}
.w-260 {
    min-width: 260px;
}
.dropdown-list .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    color: #e6e6e6;
}
.dropdown-list .dropdown-item i {
    width: 18px;
    text-align: center;
    opacity: 0.9;
}
.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.12);
}
.mm-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}
.domain-input .domain,
.domain-input .domain:focus {
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.mm-chip i {
    font-size: 18px;
    color: #fff;
}
@media (max-width: 1399.98px) {
    .hf-wrap {
        width: min(1712px, calc(100% - 120px));
    }
    .hf-top {
        gap: 40px;
    }
    .hf-brand {
        width: 420px;
    }
    .hf-copy {
        width: auto;
        height: auto;
        font-size: 22px;
        line-height: 36px;
    }
}
@media (max-width: 1199.98px) {
    .hf-top {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        align-items: start;
        gap: 36px;
        min-height: auto;
    }
    .hf-brand {
        width: auto;
    }
    .hf-col {
        min-width: 0;
    }
    .hf-col .ttl {
        margin-bottom: 24px;
    }
    .hf-links {
        gap: 18px;
    }
    .hf-link {
        font-size: 20px;
        line-height: 24px;
    }
}
@media (max-width: 991.98px) {
    .hf-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .hf-copy {
        font-size: 18px;
        line-height: 32px;
    }
    .hf-chip {
        width: 56px;
        height: 56px;
    }
    .hf-col .ttl {
        font-size: 22px;
    }
    .hf-link {
        font-size: 18px;
        line-height: 22px;
    }
    .hf-divider {
        width: min(720px, 82%);
    }
    .hf-bottom {
        font-size: 16px;
        line-height: 32px;
        margin: 16px auto 32px;
    }
}
@media (max-width: 767.98px) {
    .hf-wrap {
        padding-top: 56px;
    }
    .hf-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hf-brand,
    .hf-col {
        text-align: left;
    }
    .hf-logo {
        justify-content: flex-start;
    }
    .hf-social {
        gap: 10px;
    }
    .hf-copy {
        font-size: 16px;
        line-height: 28px;
    }
    .hf-link {
        font-size: 17px;
        line-height: 21px;
    }
    .hf-divider {
        width: 84%;
        margin-top: 16px;
    }
    .hf-bottom {
        font-size: 14px;
        line-height: 28px;
        margin: 12px auto 28px;
    }
}
@media (max-width: 479.98px) {
    .hf-chip {
        width: 50px;
        height: 50px;
    }
    .hf-dot {
        display: none;
    }
    .hf-links {
        gap: 14px;
    }
}
:focus {
    outline: 0 !important;
    box-shadow: none !important;
}
#pricing-home .toggle-btn,
.hero-sub,
.hf-copy,
.hf-link,
.nav-center .nav-link {
    color: #fff;
}

.hf-link
 {
    color: #9b96b0;
}
.center-ellipse {
    width: 350px;
    height: 350px;
    top: 200px;
}
.nav-hostina {
    background: linear-gradient(90deg, #0a0118 0, #1b0e38 50%, #0a0118 100%);
    box-shadow: 1px 4px 25px -14px rgba(133, 63, 196, 0.25);
    -webkit-box-shadow: 1px 4px 25px -14px rgba(133, 63, 196, 0.25);
    -moz-box-shadow: 1px 4px 25px -14px rgba(133, 63, 196, 0.25);
}
.domain-input .domain {
    background: #ffffff0a;
    border-color: #ffffff0a;
}
.btn-search {
	background: linear-gradient(135deg, #2c185d 0, #3c2084 35%, #40257d 65%, #a959d3 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}
.dropdown-menu-dark {
    --bs-dropdown-bg: rgba(20, 11, 37, 0.82);
    --bs-dropdown-border-color: rgba(255, 255, 255, 0.14);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid var(--bs-dropdown-border-color);
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.nav-item a {
    color: #9b96b0;
    font-size: 1.5rem;
    transition: 0.3s linear;
}
.section-subheading {
    color: #9b96b0;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    animation: 10s linear infinite border-shift;
    box-shadow: 0 2px 8px rgba(133, 63, 196, 0.25);
    background: #fff;
    display: inline-block;
    margin-bottom: 1.4rem;
}
@keyframes border-shift {
    0%,
    100% {
        background-position:
            0 0,
            0 50%;
    }
    50% {
        background-position:
            0 0,
            100% 50%;
    }
}
#popular-domains .domain-name,
#popular-domains .domain-price,
.brand-name,
.cmp-table,
.plan-name,
.price,
.section-heading,
.tos-list li {
    color: #190c38;
}
#features-home figure {
    background: #fff;
}
#pricing-home {
    background: #fbf7ff;
}
#pricing-home .toggle-btn.active {
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(169, 89, 211, 0.3);
    transition: 0.3s;
}
#pricing-home .best-choice::after,
.mobile-offcanvas::after {
    position: absolute;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.05) 60%);
    height: 100%;
}
#popular-domains .domain-select-btn::after,
#pricing-home .best-choice::after,
.mobile-offcanvas::after {
    left: -80%;
    width: 60%;
    transform: skewX(-20deg);
    transition: 0.5s;
    top: 0;
    content: "";
}
.hostina-footer {
    background: linear-gradient(90deg, #0a0118 0, #1b0e38 50%, #0a0118 100%);
    padding-top: 50px;
}
#pricing-home .plan-price {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
#pricing-home .best-choice,
#testimonials-section .nav-btn {
    background: linear-gradient(135deg, #2c185d 0, #3c2084 35%, #40257d 65%, #a959d3 100%);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: 0.4s;
}
#pricing-home .best-choice {
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1.05rem;
    box-shadow:
        0 6px 20px rgba(169, 89, 211, 0.35),
        inset 0 2px 6px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    top: -20px;
}
#pricing-home .best-choice:hover {
    background: linear-gradient(135deg, #3c2084 0, #40257d 40%, #a959d3 80%, #ae5fd7 100%);
    box-shadow:
        0 8px 25px rgba(169, 89, 211, 0.55),
        inset 0 2px 8px rgba(255, 255, 255, 0.12);
}
#popular-domains .domain-select-btn:hover::after,
#pricing-home .best-choice:hover::after,
.mobile-offcanvas:hover::after {
    left: 120%;
}
.card-heading {
    color: #190c38 !important;
}
#features-home .card-desc,
.breadcrumb-item,
.breadcrumb-item + .breadcrumb-item::before {
    color: #9b96b0 !important;
}
.hf-logo img {
    width: 25%;
}
.card-num img {
    background: #fff;
    border-radius: 15%;
}
.mobile-offcanvas {
    background: linear-gradient(
        135deg,
        rgba(44, 24, 93, 0.9) 0,
        rgba(60, 32, 132, 0.85) 35%,
        rgba(64, 37, 125, 0.8) 65%,
        rgba(169, 89, 211, 0.75) 100%
    );
    backdrop-filter: blur(16px) saturate(140%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}
.mobile-offcanvas::after {
    pointer-events: none;
}
#testimonials-section .nav-btn.active,
#testimonials-section .nav-btn:hover,
.hero-pretitle::after {
    background: linear-gradient(135deg, #3c2084 0, #40257d 40%, #a959d3 80%, #ae5fd7 100%);
}
.pricing-card .plan-period,
.pricing-card .plan-price {
    transition: 0.5s ease-in-out;
    display: inline-block;
}
.domain-input .domain::placeholder {
    color: #9b96b0;
    opacity: 1;
}
.domain-input .domain::-webkit-input-placeholder {
    color: #9b96b0;
}
.domain-input .domain::-moz-placeholder {
    color: #9b96b0;
}
.domain-input .domain:-ms-input-placeholder {
    color: #9b96b0;
}
.domain-input .domain:-moz-placeholder {
    color: #9b96b0;
}
.card-item.card-hover-effect {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-16);
}
.card-item.card-hover-effect figure {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}
.card-item.card-hover-effect figure img.cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: filter 0.4s;
    filter: brightness(0.95);
}
.card-item.card-hover-effect figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 1, 24, 0.4) 0, rgba(27, 14, 56, 0.3) 50%, rgba(10, 1, 24, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
    transition: opacity 0.4s;
}
.card-item.card-hover-effect:hover figure img.cover {
    filter: brightness(1);
}
#testimonials-section .nav-btn {
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    box-shadow:
        0 4px 15px rgba(169, 89, 211, 0.35),
        inset 0 2px 6px rgba(255, 255, 255, 0.1);
}
#testimonials-section .nav-btn:hover {
    box-shadow:
        0 6px 20px rgba(169, 89, 211, 0.55),
        inset 0 2px 8px rgba(255, 255, 255, 0.12);
    cursor: pointer;
}
#testimonials-section .nav-btn.active {
    box-shadow:
        0 8px 25px rgba(169, 89, 211, 0.55),
        inset 0 2px 8px rgba(255, 255, 255, 0.12);
    color: #fff;
}
#mobileMenu img {
    width: 85%;
}
.nav-center .nav-item.dropdown:hover .dropdown-menu,
.nav-right .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-center .dropdown-menu,
.nav-right .dropdown-menu {
    transition:
        opacity 0.3s,
        transform 0.3s;
    transform: translateY(5px);
}
.card-item .card-body {
    padding-top: 40px;
    padding-bottom: 30px;
}
.hero-pretitle {
    position: relative;
    display: inline-block;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, #40257d 0, #3c2084 40%, #a959d3 100%);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    box-shadow:
        0 4px 15px rgba(133, 63, 196, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.hero-pretitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
    animation: 1s infinite alternate flashOverlay;
}
@keyframes flashOverlay {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
}
@media (max-width: 1280px) {
    .hf-copy,
    .hf-link,
    .nav-center .nav-link {
        font-size: 18px;
    }
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0118;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#preloader img {
    width: 120px;
    margin-bottom: 20px;
}
.progress-container {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #40257d 0, #3c2084 50%, #a959d3 100%);
    border-radius: 4px;
    transition: width 0.1s linear;
}
#dedicated-pricing .pretitle,
#popular-domains .domain-select-btn,
.feature-check {
    background: linear-gradient(135deg, #2c185d 0, #3c2084 35%, #40257d 65%, #a959d3 100%);
}
.breadcrumb-item + .breadcrumb-item.rtl::before {
    float: right;
    padding: 0 0.5rem;
}
.hero-wrap.sub-page {
    min-height: 55vh;
}
.hero-wrap.sub-page .content {
    margin-top: 20vh;
}
.hero-wrap.sub-page .hero-heading {
    margin-bottom: 1rem;
}
.hero-wrap.sub-page .center-ellipse {
    width: 700px;
    height: 700px;
    top: 400px;
}
.feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    z-index: 1;
}
.feature-check::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(270deg, #2c185d, #3c2084, #40257d, #a959d3);
    background-size: 400% 400%;
    animation: 5s infinite gradientMove;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.cmp-table,
.cmp-table .feat-col,
.cmp-wrap {
    background: var(--paper);
}
.feature-check:hover::before {
    opacity: 1;
}
.feature-check i,
.feature-check span {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.feature-check:hover {
    transform: scale(1.2) rotate(8deg);
    box-shadow:
        0 0 15px rgba(169, 89, 211, 0.8),
        0 0 30px rgba(60, 32, 132, 0.6);
}
@keyframes gradientMove {
    0%,
    100% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.cmp-table tbody tr:hover .feat-col,
.cmp-table tbody tr:hover td {
    background: rgba(169, 89, 211, 0.06);
    background: linear-gradient(180deg, rgba(64, 37, 125, 0.05), rgba(64, 37, 125, 0.02));
}
:root {
    --ink-900: #0b0a16;
    --ink-800: #13122a;
    --ink-700: #1f2937;
    --ink-500: #4b5563;
    --ink-400: #6b7280;
    --paper: #ffffff;
    --border: #ece7fb;
    --vio-900: #2c185d;
    --vio-800: #3c2084;
    --vio-700: #40257d;
    --vio-500: #a959d3;
    --shadow-1: 0 10px 28px rgba(64, 37, 125, 0.12);
    --shadow-2: 0 14px 36px rgba(64, 37, 125, 0.16);
}
.cmp-wrap {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-1);
    overflow: hidden;
}
.cmp-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    min-width: 1100px;
}
.cmp-table td,
.cmp-table th {
    box-sizing: border-box;
    padding: 16px 18px;
    border: 1px solid var(--border);
    vertical-align: middle;
    text-align: center;
    word-break: break-word;
    background: var(--paper);
}
.cmp-table .feat-col {
    text-align: left;
    font-weight: 800;
    color: var(--ink-700);
    box-shadow: 1px 0 0 var(--border);
    position: sticky;
    left: 0;
    z-index: 2;
}
.cmp-table .feat-col .feat-inner {
    position: relative;
    display: inline-block;
}
.cmp-table tbody tr:nth-child(2n) .feat-col,
.cmp-table tbody tr:nth-child(2n) td {
    background: var(--paper-zebra);
}
.cmp-table tbody tr {
    transition: transform 0.2s;
    position: relative;
    transform: none !important;
}
.cmp-table tbody tr:hover {
    transform: translateY(-1px);
}
.cmp-table tbody tr .feat-col,
.cmp-table tbody tr td {
    position: relative;
    overflow: hidden;
}
.cmp-table tbody tr:hover .feat-col::after,
.cmp-table tbody tr:hover td::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0,
        rgba(169, 89, 211, 0.1) 40%,
        rgba(169, 89, 211, 0.18) 50%,
        rgba(169, 89, 211, 0.1) 60%,
        transparent 100%
    );
    animation: 0.9s ease-out forwards rowSweep;
    pointer-events: none;
}
@keyframes rowSweep {
    to {
        left: 100%;
    }
}
.cmp-table tbody tr .feat-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--vio-800), var(--vio-500));
    border-radius: 8px;
    opacity: 0;
    transform: scaleY(0.5);
    transition:
        opacity 0.22s,
        transform 0.22s;
}
.cmp-table tbody tr:hover .feat-col::before {
    opacity: 1;
    transform: scaleY(1);
}
.plan-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
    color: var(--ink-700);
}
.brand-line {
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vio-900), var(--vio-500));
    box-shadow: 0 0 0 3px rgba(169, 89, 211, 0.15);
}
.brand-name {
    font-weight: 800;
    letter-spacing: 0.2px;
}
.plan-name {
    font-weight: 700;
}
.term {
    font-size: 0.85rem;
}
.brand-col.is-highlight {
    background: linear-gradient(180deg, rgba(64, 37, 125, 0.06), transparent 65%);
    box-shadow: inset 0 -2px 0 var(--vio-500);
    position: relative;
}
.tos-list li::before,
.tos-tab.is-active {
    background: linear-gradient(135deg, var(--g1) 0, var(--g2) 35%, var(--g3) 65%, var(--g4) 100%);
}
.check,
.cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    box-shadow: none;
}
.check {
    background: linear-gradient(135deg, var(--vio-900) 0, var(--vio-800) 35%, var(--vio-700) 65%, var(--vio-500) 100%);
}
.cross {
    background: #e11d48;
}
.cmp-note {
    margin: 10px 12px 0;
    font-size: 0.85rem;
    color: var(--ink-400);
}
.term {
    color: #9b96b0;
}
.brand-col.is-highlight .plan-head {
    margin-top: 4px;
}
.cmp-table .brand-col .plan-head,
.cmp-table .brand-col .plan-head a {
    pointer-events: auto;
}
.cmp-table tbody tr:hover .feat-col,
.cmp-table tbody tr:hover td {
    background: var(--paper-zebra) !important;
}
.cmp-table tbody tr .feat-col::after,
.cmp-table tbody tr td::after {
    content: none !important;
}
.cmp-table td,
.cmp-table th {
    border: 1px solid var(--border);
    transition: background-color 0.15s;
}
.cmp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
@media (max-width: 991.98px) {
    .cmp-table .feat-col {
        position: static !important;
        box-shadow: none !important;
    }
}
.comparison-pricing {
    padding: 1rem 6% 5rem;
    background-color: #fff;
}
#popular-domains .domain-select-btn {
    padding: 1.4rem 3rem;
    border-radius: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border: none;
    letter-spacing: 0.3px;
    color: #fff;
    transition: 0.4s;
    -webkit-box-shadow: none !important;
    -webkit-box-shadow: 0 !important;
    width: 100%;
}
#popular-domains .domain-select-btn::after {
    position: absolute;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0, rgba(255, 255, 255, 0.05) 60%);
}
#popular-domains .domain-select-btn:hover {
    background: linear-gradient(135deg, #3c2084 0, #40257d 40%, #a959d3 80%, #ae5fd7 100%);
    -webkit-box-shadow: none !important;
    -webkit-box-shadow: 0 !important;
}
#popular-domains .domain-card:hover {
    border-color: #f1f3f4;
    transform: translateY(-12px);
    box-shadow:
        0 10px 28px rgba(64, 37, 125, 0.15),
        0 6px 14px rgba(169, 89, 211, 0.12);
}
#popular-domains .domain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #40257d, #3c2084, #a959d3, #ae5fd7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    border-top-left-radius: var(--radius-24);
    border-top-right-radius: var(--radius-24);
}
#popular-domains .domain-card:hover::before {
    transform: scaleX(1);
}
#popular-domains {
    background: #fff;
    padding-bottom: 20px;
}
#dedicated-pricing {
    position: relative;
    background: #fff;
    padding-bottom: 30px;
}
#dedicated-pricing .head {
    text-align: center;
    margin-bottom: 2rem;
}
#dedicated-pricing .pretitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}
#dedicated-pricing .title {
    color: #190c38;
    font-weight: 800;
    margin: 0 0 0.25rem;
}
#dedicated-pricing .sub {
    color: #9b96b0;
    margin: 0;
}
#dedicated-pricing .table-wrap {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid #ede7fb;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(64, 37, 125, 0.1);
    overflow: hidden;
    overflow-x: auto;
}
#dedicated-pricing .server-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 880px;
    color: #190c38;
}
#dedicated-pricing .server-table thead th {
    background: #faf8ff;
    color: #190c38;
    font-weight: 800;
    padding: 16px 18px;
    text-align: center;
    border-bottom: 1px solid #ede7fb;
    position: relative;
}
#dedicated-pricing .server-table td,
#dedicated-pricing .server-table th {
    padding: 16px 18px;
    border-bottom: 1px solid #f0ebff;
    text-align: center;
    vertical-align: middle;
}
#dedicated-pricing .server-table .sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
    text-align: left;
    background: #fff;
    border-right: 1px solid #f0ebff;
}
#dedicated-pricing .cpu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
#dedicated-pricing .cpu .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c185d, #a959d3);
    box-shadow: 0 0 0 3px rgba(169, 89, 211, 0.15);
}
#dedicated-pricing .price {
    font-weight: 800;
    font-size: 1.05rem;
}
#dedicated-pricing .server-table tbody tr:nth-child(2n) .sticky-col,
#dedicated-pricing .server-table tbody tr:nth-child(2n) td {
    background: #fcfbff;
}
#dedicated-pricing .server-table tbody tr:hover .sticky-col,
#dedicated-pricing .server-table tbody tr:hover td {
    background: var(--paper-zebra, #f6f3ff);
}
#dedicated-pricing .server-table tr.is-featured .sticky-col,
#dedicated-pricing .server-table tr.is-featured td {
    background: linear-gradient(180deg, rgba(64, 37, 125, 0.06), transparent 70%);
}
#dedicated-pricing .server-table tr.is-featured {
    position: relative;
    outline: rgba(169, 89, 211, 0.35) solid 1px;
}
#dedicated-pricing .btn-order {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #2c185d 0, #3c2084 35%, #40257d 65%, #a959d3 100%);
    border: 1px solid transparent;
    transition:
        transform 0.18s,
        box-shadow 0.25s,
        background 0.25s;
    white-space: nowrap;
}
#dedicated-pricing .btn-order:hover {
    background: linear-gradient(135deg, #3c2084 0, #40257d 40%, #a959d3 80%, #ae5fd7 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(64, 37, 125, 0.22);
}
#dedicated-pricing .btn-order.solid::after {
    content: "Best Value";
    position: absolute;
    top: -12px;
    right: -6px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2c185d, #3c2084, #a959d3);
    padding: 2px 8px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(169, 89, 211, 0.3);
}
#dedicated-pricing .server-table tbody tr:first-child .sticky-col,
#dedicated-pricing .server-table thead th:first-child {
    border-top-left-radius: 20px;
}
#dedicated-pricing .server-table tbody tr:first-child td:last-child,
#dedicated-pricing .server-table thead th:last-child {
    border-top-right-radius: 20px;
}
#dedicated-pricing .server-table tbody tr:last-child .sticky-col {
    border-bottom-left-radius: 20px;
}
#dedicated-pricing .server-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}
#dedicated-pricing .foot-note {
    color: #9b96b0;
    margin: 0.75rem 0.25rem 0;
    text-align: center;
    font-size: 0.9rem;
}
#dedicated-pricing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
:root {
    --ink: #190c38;
    --muted: #9b96b0;
    --paper: #fff;
    --g1: #2c185d;
    --g2: #3c2084;
    --g3: #40257d;
    --g4: #a959d3;
    --ink: #190c38;
    --muted: #9b96b0;
    --paper: #ffffff;
    --g1: #2c185d;
    --g2: #3c2084;
    --g3: #40257d;
    --g4: #a959d3;
    --shadow: 0 16px 44px rgba(64, 37, 125, 0.1);
    --border: #ede7fb;
    --zebra: #fcfbff;
}
.pt5rem {
    padding-top: 5rem !important;
}
.pt3rem {
    padding-top: 3rem !important;
}
.tos-section {
    background: #fff;
    padding: min(6vw, 64px) 0;
}
.tos-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}
.tos-header {
    text-align: center;
    margin-bottom: 28px;
}
.tos-title {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: var(--ink);
}
.tos-sub {
    margin: 0 auto;
    max-width: 860px;
    color: var(--muted);
    font-weight: 600;
    padding-top: 2.5rem;
}
.tos-card-title,
.tos-list strong,
.tos-tab {
    color: var(--ink);
}
.tos-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #fbf9ff 100%);
    border: 1px solid var(--border);
}
.tos-panels,
.tos-tab {
    border: 1px solid var(--border);
}
.tos-tab {
    flex: 0 0 auto;
    background: #fff;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        box-shadow 0.25s,
        transform 0.12s;
}
.tos-tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(64, 37, 125, 0.1);
}
.tos-tab.is-active {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(64, 37, 125, 0.18);
}
.tos-panels {
    background: var(--paper);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
}
.tos-panel.is-active {
    display: block;
}
.tos-card {
    background: linear-gradient(180deg, #fff 0, #fbf9ff 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(64, 37, 125, 0.08);
}
.tos-card + .tos-card {
    margin-top: 14px;
}
.tos-card-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 900;
}
.tos-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.tos-list li {
    position: relative;
    padding: 12px 12px 12px 34px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition:
        background 0.22s,
        border-color 0.22s;
}
.tos-list.rtl li {
    padding: 12px 34px 12px 12px;
}
.tos-list li + li {
    margin-top: 8px;
}
.tos-list li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 17px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(169, 89, 211, 0.15);
}
.tos-list.rtl li::before {
    right: 15px;
}
.tos-list li:hover {
    background: var(--zebra);
    border-color: var(--border);
}
.tos-list em {
    color: var(--muted);
    font-style: italic;
}
@media (max-width: 720px) {
    .tos-panels {
        padding: 12px;
    }
    .tos-card {
        padding: 16px;
    }
}
.nav-hostina .dropdown-menu-dark {
    position: absolute !important;
    top: 100% !important;
    left: 0;
    margin-top: 0 !important;
    transform: translateY(0) !important;
    z-index: 1000;
}
.dropdown-menu,
.dropdown-menu-dark {
    position: absolute !important;
    inset: auto auto auto 0;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    margin-top: 0 !important;
    transform: none !important;
    will-change: auto;
}
.header,
.nav-hostina,
.navbar {
    overflow: visible;
    z-index: 10;
}

.hf-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    opacity: 1 !important;
    pointer-events: none;
}
.hf-divider.reveal {
    transform: none !important;
    transition: none !important;
}
.hf-divider:hover {
    opacity: 1 !important;
    transform: none !important;
}
.account-box,
.currency-box {
    border: 0 !important;
    border-radius: 12px !important;
}

@media (min-width: 984px) and (max-width: 1470px) {
    .site-header .nav-hostina .nav-inner {
        padding-block: 6px;
    }

    .site-header .nav-left img {
        height: 28px;
        width: auto;
    }

    .site-header .nav-center.navbar-nav {
        gap: 1rem !important;
    }
    .site-header .nav-center .nav-link {
        font-size: 20px;
        line-height: 1.2;
        padding: 0.35rem 0.4rem;
    }
    .site-header .nav-center .dropdown-menu {
        font-size: 20px;
    }

    .site-header .nav-right {
        gap: 0.5rem !important;
    }

    .site-header .nav-right .account-box,
    .site-header .nav-right .currency-box {
        padding: 6px 8px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        min-width: auto;
        max-width: 28px;
    }

    .site-header .nav-right .account-box .acc-label,
    .site-header .nav-right .account-box .caret,
    .site-header .nav-right .currency-box .cur,
    .site-header .nav-right .currency-box .caret {
        display: none !important;
    }

    .site-header .nav-right .account-box i,
    .site-header .nav-right .currency-box i {
        font-size: 15px;
        line-height: 1;
    }

    .site-header .dropdown-menu {
        min-width: 180px;
    }

    .site-header .nav-inner .gap-3 {
        gap: 0.5rem !important;
    }
    .site-header .nav-inner .gap-4 {
        gap: 1rem !important;
    }

    .site-header .dropdown-menu .dropdown-item {
        padding: 0.35rem 0.6rem;
        font-size: 13px;
    }

    .site-header .nav-toggle {
        transform: scale(0.95);
    }
}



.wewe {
  position: relative;
  background-image: url("../../assets/images/hosting-illustration.jpeg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 1px 4px 25px -14px #853fc4;
}



.wewe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 14, 56, 0.05) 0%,
    rgba(27, 14, 56, 0.05) 20%,
    rgba(10, 1, 24, 0.15) 50%
  );

}





.wewe header,
.wewe .site-header,
.wewe .nav-hostina {
  background: transparent !important;

}




.wewe .hero-wrap {
  background: none;

}


@media (max-width: 768px) {
  .wewe {
    background-position: center center;
  }
}



.wewe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 40% at 50% 0%,
    rgba(120,90,255,0.15),
    transparent 70%
  );

}


.wewe::before,
.wewe::after {
  pointer-events: none;
}







.hostina-footer {
  position: relative;
  background-image: url("../../assets/images/hosting-illustration2.jpeg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;

}

/* Overlay الحقيقي */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 14, 56, 0.4) 0%,
    rgba(27, 14, 56, 0.6) 55%,
    rgba(10, 1, 24, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* محتوى الفوتر */
.hostina-footer .hf-wrap,
.hostina-footer .hf-top,
.hostina-footer .hf-bottom {
  position: relative;
  z-index: 2;
}



.footer-overlay {
  background:rgba(27, 14, 56, 0.8);
}
