@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Same in all */
    --global--color-primary: #1e1b4b;
    --global--color-accent: #5b21b6;
    --global--color-nav: #312e81;
    --global--color-black: #000000;
    --global--color-white: #ffffff;
    --global--color-very-light-gray: #e5e5e5;
    --global--color-grayish-blue: #b7bcc4;
    --global--color-strong-cyan: #08bba4;
    --global--color-strong-red: #dc2626;
    --global--color-very-dark-desaturated-blue: #312e81;
    --global--color-very-light-gray-mostly-white: #f8f9fc;
    --global--color-very-dark-black-blue: #0f0a1e;
    /* Change */
    --global--color-secondary: #5b21b6;
    --global--color-vivid-yellow: #f59e0b;
    --global--color-text: #374151;
    --global--color-strong-violet: #5b21b6;
    --global--color-light-violet: #8b5cf6;
    --global--color-topbar-copyright-color: #4c1d95;
    --global--color-light-white: #c4b5fd;
    --global--button-border-radius: 12px;
    --global--box-border-radius: 16px;
    --global--social-icon-border-radius: 50%;
    --global--dropdown-border-radius: 12px;

    --global--color-dark-grayish-blue: #6b7280;
    --global--border-all-side: 1px solid rgba(255,255,255,0.15);
    --global--border-color: #e0e7ff;
    --global--banner-text-color: #c4b5fd;
    --global--hover-color: #f59e0b;
    --global--color--footer--bg: #0f0a1e;
    --global--color--footer--text: #a78bfa;
    --global--color--purple: #5b21b6;
    --global--color--baner-overlay: #1e1b4b;
    --global--color--lavndr: #f0ebf8;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #f8f9fc;
    color: var(--global--color-text);
    overflow-x: hidden;
}

h1 {
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.text-size-14 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.text-size-18 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.yellow-color {
    color: var(--global--color-vivid-yellow) !important;
}

.green-color {
    color: var(--global--color-strong-violet) !important;
}

/* ============================================
   BUTTONS — Gradient Indigo
   ============================================ */

/* ── Global form styles ── */

/* Standalone form-control (NOT inside input-group) */
.form-control:not(.input-group .form-control) {
    border-radius: var(--global--button-border-radius);
}

.form-control {
    border-color: var(--global--border-color);
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--global--color-light-violet) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}

/* Input-group — prepend rounded left, append rounded right */
.input-group > .input-group-prepend > .input-group-text {
    border-top-left-radius: var(--global--button-border-radius) !important;
    border-bottom-left-radius: var(--global--button-border-radius) !important;
    border-color: var(--global--border-color);
    background: #f9fafb;
}

/* After prepend — flat left */
.input-group > .input-group-prepend ~ .form-control {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Last child in input-group — rounded right */
.input-group > .form-control:last-child {
    border-top-right-radius: var(--global--button-border-radius) !important;
    border-bottom-right-radius: var(--global--button-border-radius) !important;
}

/* NOT last child (has append after) — flat right */
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group > .input-group-append > .btn:last-child,
.input-group > .input-group-append > .input-group-text:last-child {
    border-top-right-radius: var(--global--button-border-radius) !important;
    border-bottom-right-radius: var(--global--button-border-radius) !important;
}

.custom-file-label {
    border-radius: var(--global--button-border-radius);
    border-color: var(--global--border-color);
    padding: 10px 14px;
}

.custom-file-label::after {
    border-radius: 0;
    border-left: 1px solid var(--global--border-color);
}

select.form-control {
    border-radius: var(--global--button-border-radius);
    padding: 10px 14px;
    height: auto !important;
    line-height: 1.5;
}

/* Registration form — hardcoded 12px, high specificity */
#main-body #registration .field,
#main-body #registration .form-control,
#main-body #registration input.field,
#main-body #registration input.form-control,
#main-body #registration select.field,
#main-body #registration select.form-control,
#registration .field,
#registration .form-control {
    border-radius: 12px !important;
}

/* prepend-icon fields — icon is inside via absolute label, so field needs FULL radius */
#main-body #registration .prepend-icon .field,
#main-body #registration .prepend-icon input.field,
#registration .prepend-icon .field {
    border-radius: 12px !important;
}

/* intl-tel-input (phone field) */
#main-body .intl-tel-input,
.intl-tel-input,
#registration .intl-tel-input {
    width: 100% !important;
    display: block !important;
}

#main-body .intl-tel-input input,
.intl-tel-input input,
#registration .intl-tel-input input,
#registration .intl-tel-input input.form-control,
input#inputPhone {
    border-radius: 12px !important;
    padding-left: 90px !important;
}

#main-body .intl-tel-input .selected-flag,
.intl-tel-input .selected-flag,
#registration .intl-tel-input .selected-flag {
    border-radius: 12px 0 0 12px !important;
    padding: 0 8px 0 12px !important;
}

/* Dropdown menus — ensure text not clipped */
.dropdown-menu {
    border-radius: var(--global--button-border-radius);
    border: 1px solid rgba(91, 33, 182, 0.08);
    box-shadow: 0 4px 16px rgba(91, 33, 182, 0.10);
    padding: 6px 0;
    overflow: visible;
}

.dropdown-menu > a,
.dropdown-menu .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--global--color-text);
}

.dropdown-menu > a:hover,
.dropdown-menu .dropdown-item:hover {
    background: rgba(124, 58, 237, 0.05);
    color: var(--global--color-strong-violet);
}

/* Bootstrap Switch — default styling */

.btn {
    border-radius: var(--global--button-border-radius);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

.btn-primary:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

.btn-primary:disabled {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
    opacity: 0.7;
}

.btn-success {
    padding: 13px;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
    color: var(--global--color-white);
    display: block;
}

.btn-success:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

/* btn-danger — keep Bootstrap default */

.btn-info {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

.btn-info:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

.btn-default {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

.btn-default:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
}

/* Cancel button on form pages — handled via .extra-padding scope */

.btn-block {
    color: var(--global--color-white) !important;
}

.btn-order-now {
    padding: 10px;
}

.btn.focus,
.btn:focus {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25) !important;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

/* ============================================
   TOP BAR (Logged Out) — Hidden, elements injected into navbar via JS
   ============================================ */

.top-bar-section {
    display: none !important;
}

/* Hide mobile knowledgebase search field */
#mainNavbar > form.d-xl-none {
    display: none !important;
}

/* Injected cart + account in the main navbar */
.topbar-injected {
    display: flex !important;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding-left: 15px;
}

.topbar-injected li {
    list-style: none;
}

.topbar-injected li a {
    color: var(--global--color-primary) !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: none !important;
    border: none !important;
    background: transparent !important;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.topbar-injected li a:hover {
    color: var(--global--color-strong-violet) !important;
    background: #ede9fe !important;
}

.topbar-injected .dropdown-item a {
    color: var(--global--color-black) !important;
    padding: 8px 15px !important;
    font-size: 13px !important;
}

.topbar-injected .dropdown-item a:hover {
    background-color: var(--global--color-very-light-gray-mostly-white) !important;
    color: var(--global--color-strong-violet) !important;
}

.topbar-injected .cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    background: var(--global--color-very-light-gray-mostly-white) !important;
    border: none !important;
    color: var(--global--color-primary) !important;
    padding: 8px 12px !important;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.topbar-injected .cart-btn:hover {
    background: #ede9fe !important;
}

.topbar-injected .cart-btn i {
    font-size: 17px;
    color: var(--global--color-strong-violet);
}

.topbar-injected .cart-btn .badge-info {
    position: absolute;
    top: -2px;
    right: 0px;
    font-size: 9px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    padding: 0 4px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
    color: var(--global--color-white) !important;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4);
}

.topbar-injected .dropdown-menu {
    right: 0;
    left: auto;
    border: 1px solid rgba(91, 33, 182, 0.08);
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
}

/* ============================================
   LOGGED-IN TOP BAR — Deep Violet
   ============================================ */

.topbar .form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    color: var(--global--color-white);
    font-size: 12px !important;
}

#header.header .search {
    border: none !important;
    width: auto;
}

#header.header .btn {
    font-size: 12px;
}

#header.header .search .form-control {
    padding: 6px !important;
}

.topbar .btn-default {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    color: var(--global--color-white);
    font-size: 12px !important;
    padding: 6px 4px;
}

.topbar .top-bar-right-content i {
    font-size: 16px;
    width: 20px;
    height: 32px;
    line-height: 32px;
}

.topbar .nav-item .cart-btn {
    display: inline-block;
    position: relative;
}

.topbar .nav-item .cart-btn .badge-info {
    position: absolute;
    top: -6px;
    right: 2px;
    font-size: 8px;
}

.topbar ::placeholder {
    color: var(--global--color-white);
    opacity: 0.8;
}

.topbar ::-ms-input-placeholder {
    color: var(--global--color-white);
    opacity: 0.8;
}

.sign-in-topbar-right {
    list-style: none;
    display: inline-block;
    margin-bottom: 0;
}

.sign-in-topbar-right li {
    list-style: none;
    display: inline-block;
}

.sign-in-topbar-right li:last-child {
    border: none;
}

#header.header .topbar {
    background: linear-gradient(135deg, #4c1d95, #5b21b6);
    padding: 5px 0 15px 0;
    border-radius: 0;
    z-index: 4;
    position: relative;
}

#header.header .topbar .btn {
    color: var(--global--color-white) !important;
    border-radius: 0;
    background: transparent !important;
}

#header.header .topbar .btn:focus {
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
}

#header.header .topbar #accountNotifications {
    border: none !important;
}

#header.header .topbar .active-client {
    line-height: 1.5;
}

#header.header .topbar .active-client li a {
    font-size: 12px;
    color: var(--global--color-white);
}

#header.header .topbar .active-client li .dropdown-menu li a {
    color: var(--global--color-primary);
}

#header.header .topbar .active-client .input-group-text {
    color: var(--global--color-white);
}

#header.header .topbar .active-client .btn {
    color: var(--global--color-white);
    padding: 0 10px;
    font-weight: 400;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    overflow: visible;
}

#header.header .topbar .active-client .btn:focus {
    border: none !important;
    border-right: 1px solid rgba(255,255,255,0.2) !important;
}

/* ============================================
   NAVBAR — White Background, Dark Indigo Links
   ============================================ */

#header .navbar.navbar-light {
    background-color: var(--global--color-white);
    padding: 16px 0;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 20px rgba(91, 33, 182, 0.06);
    border-bottom: 1px solid rgba(91, 33, 182, 0.08);
}

#header.header form .btn {
    font-size: 16px;
    color: var(--global--color-primary) !important;
}

#header.header .form-control {
    background-color: transparent;
    padding: 22px 11px;
    font-size: 14px;
    border-radius: 0;
}

#header.header .btn-default {
    background-color: transparent;
}

#header.header .toolbar .nav-link {
    border-radius: 50% !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: var(--global--color-white);
    height: 48px;
    width: 48px;
    padding: 0;
    font-size: 16px;
    line-height: 48px;
    border: none;
    overflow: visible;
}

#header.header .toolbar .nav-link i {
    color: var(--global--color-white);
}

#header.header .toolbar .nav-link:focus {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
}

.navbar-default {
    background-color: var(--global--color-white);
}

.navbar-default .navbar-nav>li>a {
    color: var(--global--color-primary);
}

.padding_top_70 {
    padding-top: 70px;
}

.padding_bottom_70 {
    padding-bottom: 70px;
}

.font-18 {
    font-size: 18px;
}

.main-header ul li a {
    font-size: 13px;
    padding: 8px 12px !important;
    font-weight: 500;
}

.main-header ul li a:hover {
    background-color: var(--global--color-very-light-gray-mostly-white);
    color: var(--global--color-strong-violet);
}

.main-header .dropdown-menu {
    background-color: var(--global--color-white);
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.12);
    border: 1px solid var(--global--border-color);
    border-radius: var(--global--dropdown-border-radius);
}

.main-header .dropdown-menu a {
    color: var(--global--color-primary);
    padding: 15px 20px !important;
    line-height: 14px;
}

.main-header .dropdown-menu a:hover {
    background-color: var(--global--color-very-light-gray-mostly-white);
    color: var(--global--color-strong-violet);
}

#header .navbar-collapse a {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    display: block !important;
    color: var(--global--color-primary);
    padding: 8px 12px !important;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease;
}

#header .navbar-collapse .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(135deg, #7c3aed, #f59e0b);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

#header .navbar-collapse .navbar-nav > li > a:hover::after,
#header .navbar-collapse .navbar-nav > li.active > a::after {
    transform: scaleX(1);
}

#header .navbar-collapse li#Primary_Navbar-Home:first-child a {
    padding-left: 0 !important;
}

#header .navbar-collapse li#Primary_Navbar-Home:first-child a::after {
    left: 0;
}

#header #mainNavbar .navbar-nav #Primary_Navbar-Contact_Us a {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none;
    color: var(--global--color-white) !important;
    border-radius: 50px;
    padding: 9px 20px !important;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    margin-left: 10px;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(91, 33, 182, 0.25);
    transition: all 0.25s ease;
}

#header #mainNavbar .navbar-nav #Primary_Navbar-Contact_Us a::after {
    display: none;
}

#header .navbar-collapse li#Secondary_Navbar-Account:first-child a {
    padding-right: 0 !important;
}

#header .navbar-collapse ul li a:hover {
    background-color: transparent;
    text-decoration: none;
    color: var(--global--color-strong-violet);
}

#header.header .toolbar .nav-link .badge {
    top: -2px;
    right: 0px;
    opacity: 1;
}

#header.header .toolbar .nav-link .badge.badge-info {
    background-color: var(--global--color-vivid-yellow);
    color: var(--global--color-white);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}

#header .dropdown-menu {
    border-radius: var(--global--dropdown-border-radius);
}

#header #mainNavbar .navbar-nav #Primary_Navbar-Contact_Us a:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none;
    color: var(--global--color-white) !important;
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.4);
    transform: translateY(-1px);
}

#Secondary_Navbar-Account {
    display: inline-block !important;
}

#header .navbar-collapse {
    padding: 0 !important;
}

#header .main-navbar-wrapper .dropdown-menu a {
    font-size: 14px;
    color: var(--global--color-primary) !important;
    padding: 0 !important;
    text-decoration: none;
    padding: 0 15px !important;
    line-height: 36px;
}

#header .main-navbar-wrapper .dropdown-menu li {
    padding: 0;
}

#header .main-navbar-wrapper .dropdown-menu a:hover {
    background-color: var(--global--color-very-light-gray-mostly-white) !important;
    color: var(--global--color-strong-violet) !important;
}

#header .navbar-brand {
    color: var(--global--color-primary);
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
}

header#header.header .navbar .container .navbar-brand img,
#header .navbar-brand img {
    width: 220px !important;
    min-width: 220px !important;
    height: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain;
}

header#header .navbar .container {
    flex-wrap: initial;
    position: relative;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    height: auto !important;
    align-items: center;
}

/* Compact header */
#header.header {
    position: relative;
}

#header .navbar.navbar-light {
    padding: 12px 0 !important;
    min-height: auto !important;
    height: auto !important;
}

#header .navbar-collapse a {
    padding: 8px 14px !important;
    font-size: 18px;
}

.navbar-expand-xl .navbar-nav {
    align-items: center;
}

/* ============================================
   BANNER / BREADCRUMB — Gradient + Decorations
   ============================================ */

.hostiko-banner-whmcs {
    position: relative;
    background: linear-gradient(135deg, #0f0a1e 0%, #1e1b4b 25%, #4c1d95 60%, #7c3aed 100%);
    padding: 80px 0 90px;
    overflow: hidden;
}

/* Decorative floating circles */
.banner-decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.banner-decor-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(124, 58, 237, 0.08) 40%, transparent 70%);
    top: -250px;
    right: -200px;
    animation: float-slow 10s ease-in-out infinite;
}

.banner-decor-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.05) 40%, transparent 70%);
    bottom: -200px;
    left: -5%;
    animation: float-slow 12s ease-in-out infinite reverse;
}

/* Dot grid pattern */
.banner-decor-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Glow effect at bottom */
.banner-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), rgba(245, 158, 11, 0.5), rgba(139, 92, 246, 0.7), transparent);
    filter: blur(1px);
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.03); }
}

/* Banner badge */
.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--global--color-vivid-yellow);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.banner-badge i {
    margin-right: 6px;
}

.hostiko-banner-whmcs .master-breadcrumb,
.hostiko-banner-whmcs .breadcrumb {
    background: transparent;
    z-index: 1;
    position: relative;
}

.hostiko-banner-whmcs .breadcrumb {
    justify-content: center;
}

.hostiko-banner-whmcs .title-heading {
    font-size: 52px;
    line-height: 60px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--global--color-white);
    letter-spacing: -0.5px;
}

.hostiko-banner-whmcs .title-text {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
}

/* Hero price tag */
.hero-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: 12px;
}

.hero-price-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--global--color-vivid-yellow);
    line-height: 1;
}

.hero-price-amount small {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero CTA buttons */
.hero-cta-row {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--global--color-white) !important;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: var(--global--color-white) !important;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.45);
    transform: translateY(-2px);
}

.btn-hero-primary i {
    margin-right: 6px;
}

.btn-hero-outline {
    background: transparent;
    color: var(--global--color-white) !important;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--global--color-white) !important;
}

.btn-hero-outline i {
    margin-left: 6px;
}

/* Hero trust row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-trust-item {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item i {
    color: #34d399;
    font-size: 14px;
}

.hero-trust-item--highlight {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: #fbbf24;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}
.hero-trust-item--highlight i {
    color: #fbbf24;
}

/* ============================================
   HERO VISUAL — Hub & Satellites v2
   ============================================ */
.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background glow */
.hv-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(91, 33, 182, 0.06) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: hv-glow-breathe 6s ease-in-out infinite alternate;
}

@keyframes hv-glow-breathe {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Connection lines SVG */
.hv-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hv-conn-line {
    stroke: rgba(139, 92, 246, 0.25);
    stroke-width: 1.5;
    stroke-dasharray: 8 6;
    fill: none;
    filter: drop-shadow(0 0 3px rgba(139, 92, 246, 0.15));
}

.hv-pulse-dot { }
.hv-pulse-purple { fill: #a78bfa; opacity: 0.85; filter: drop-shadow(0 0 4px rgba(167, 139, 250, 0.6)); }
.hv-pulse-gold   { fill: #fbbf24; opacity: 0.75; filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5)); }

/* --- Central hub — Server Stack --- */
.hv-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: hv-hub-float 10s ease-in-out infinite;
}

@keyframes hv-hub-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* Expanding pulse ring */
.hv-center-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.25);
    animation: hv-pulse-expand 3.5s ease-out infinite;
}

@keyframes hv-pulse-expand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Rotating conic-gradient arc */
.hv-center-arc {
    position: absolute;
    width: 170px;
    height: 170px;
    top: 50%;
    left: 50%;
    margin-top: -85px;
    margin-left: -85px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(139, 92, 246, 0.4) 60deg,
        transparent 120deg,
        transparent 180deg,
        rgba(245, 158, 11, 0.25) 240deg,
        transparent 300deg
    );
    animation: hv-arc-spin 8s linear infinite;
    -webkit-mask: radial-gradient(transparent 62%, black 63%, black 100%);
    mask: radial-gradient(transparent 62%, black 63%, black 100%);
}

@keyframes hv-arc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Server stack — three glass layers */
.hv-center-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 18px;
    background: linear-gradient(160deg, rgba(91, 33, 182, 0.50), rgba(30, 27, 75, 0.65));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow:
        0 12px 50px rgba(91, 33, 182, 0.35),
        0 0 70px rgba(139, 92, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* Each server layer */
.hv-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    min-width: 120px;
}

/* Status LED dots */
.hv-layer-dots {
    display: flex;
    gap: 4px;
}

.hv-layer-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: block;
}

.hv-layer-1 .hv-layer-dots i:nth-child(1) { background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.7); }
.hv-layer-1 .hv-layer-dots i:nth-child(2) { background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.7); }
.hv-layer-1 .hv-layer-dots i:nth-child(3) { background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.7); }

.hv-layer-2 .hv-layer-dots i:nth-child(1) { background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.7); }
.hv-layer-2 .hv-layer-dots i:nth-child(2) { background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.7); }
.hv-layer-2 .hv-layer-dots i:nth-child(3) { background: rgba(255,255,255,0.15); }

.hv-layer-3 .hv-layer-dots i:nth-child(1) { background: #fbbf24; box-shadow: 0 0 6px rgba(251, 191, 36, 0.6); animation: hv-led-blink 1.5s ease-in-out infinite; }
.hv-layer-3 .hv-layer-dots i:nth-child(2) { background: rgba(255,255,255,0.15); }
.hv-layer-3 .hv-layer-dots i:nth-child(3) { background: rgba(255,255,255,0.15); }

@keyframes hv-led-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Activity bar — tiny progress indicator */
.hv-layer-bar {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.hv-layer-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 3px;
}

.hv-layer-1 .hv-layer-bar::after {
    width: 85%;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    animation: hv-bar-pulse-1 3s ease-in-out infinite;
}

.hv-layer-2 .hv-layer-bar::after {
    width: 45%;
    background: linear-gradient(90deg, #34d399, #6ee7b7);
    animation: hv-bar-pulse-2 4s ease-in-out infinite;
}

.hv-layer-3 .hv-layer-bar::after {
    width: 20%;
    background: linear-gradient(90deg, #fbbf24, #fde68a);
    animation: hv-bar-pulse-3 2.5s ease-in-out infinite;
}

@keyframes hv-bar-pulse-1 {
    0%, 100% { width: 85%; }
    50% { width: 65%; }
}

@keyframes hv-bar-pulse-2 {
    0%, 100% { width: 45%; }
    50% { width: 70%; }
}

@keyframes hv-bar-pulse-3 {
    0%, 100% { width: 20%; }
    50% { width: 55%; }
}

/* --- Satellite tiles — uniform, floating --- */
.hv-tile {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    box-shadow: 0 5px 26px rgba(0, 0, 0, 0.16);
    color: var(--global--color-white);
    white-space: nowrap;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    will-change: transform;
}

.hv-tile:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 36px rgba(91, 33, 182, 0.30);
}

.hv-tile-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    color: var(--global--color-vivid-yellow);
    background: rgba(245, 158, 11, 0.12);
}

.hv-tile-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hv-tile-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--global--color-white);
}

.hv-tile-info small {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.40);
    letter-spacing: 0.3px;
}

/* --- Tile positions — fixed, spread around hub ---
   Each tile has a unique organic float animation (multi-axis drift) */

.hv-tile-1 {
    top: 2%;
    left: -2%;
    animation: hv-drift-1 18s ease-in-out infinite;
}

.hv-tile-2 {
    top: 4%;
    right: -6%;
    animation: hv-drift-2 20s ease-in-out infinite;
}

.hv-tile-3 {
    top: 46%;
    left: -16%;
    animation: hv-drift-3 16s ease-in-out infinite;
}

.hv-tile-4 {
    bottom: 6%;
    right: -4%;
    animation: hv-drift-4 19s ease-in-out infinite;
}

.hv-tile-5 {
    bottom: 2%;
    left: 4%;
    animation: hv-drift-5 17s ease-in-out infinite;
}

/* Organic drift — each tile traces a unique lazy figure-8 / lissajous path */
@keyframes hv-drift-1 {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(6px, -10px); }
    40%  { transform: translate(-4px, -6px); }
    60%  { transform: translate(-8px, 4px); }
    80%  { transform: translate(3px, 8px); }
    100% { transform: translate(0, 0); }
}

@keyframes hv-drift-2 {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-8px, -6px); }
    50%  { transform: translate(-3px, 8px); }
    75%  { transform: translate(6px, 3px); }
    100% { transform: translate(0, 0); }
}

@keyframes hv-drift-3 {
    0%   { transform: translate(0, 0); }
    15%  { transform: translate(5px, 7px); }
    40%  { transform: translate(10px, -3px); }
    65%  { transform: translate(-2px, -9px); }
    85%  { transform: translate(-6px, 2px); }
    100% { transform: translate(0, 0); }
}

@keyframes hv-drift-4 {
    0%   { transform: translate(0, 0); }
    30%  { transform: translate(-7px, -8px); }
    55%  { transform: translate(4px, -4px); }
    80%  { transform: translate(8px, 6px); }
    100% { transform: translate(0, 0); }
}

@keyframes hv-drift-5 {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(8px, -5px); }
    45%  { transform: translate(3px, 9px); }
    70%  { transform: translate(-7px, 4px); }
    90%  { transform: translate(-4px, -7px); }
    100% { transform: translate(0, 0); }
}

.breadcrumb-item.active {
    color: var(--global--color-white);
}

.hostiko-banner-whmcs .breadcrumb {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    padding: 20px 35px;
    text-transform: capitalize;
    color: var(--global--color-white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--global--box-border-radius);
    display: inline-flex;
}

.hostiko-banner-whmcs .breadcrumb .breadcrumb-item a {
    color: var(--global--color-vivid-yellow);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--global--color-vivid-yellow);
}

/* Inner page banner — compact horizontal layout */
.hostiko-banner-whmcs.inner-page {
    padding: 0;
}

.inner-page-banner {
    text-align: left;
}

.inner-banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    gap: 20px;
}

.inner-page-banner .title-heading {
    font-size: 26px !important;
    line-height: 32px !important;
    font-weight: 700;
    margin-bottom: 0 !important;
    white-space: nowrap;
}

.inner-page-banner .breadcrumb {
    margin-bottom: 0;
    padding: 10px 20px !important;
    font-size: 13px !important;
    line-height: 13px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    border-radius: 50px !important;
    flex-shrink: 0;
}

.dropdown-divider {
    border-top: 1px solid var(--global--color-very-light-gray);
}

/* ============================================
   DOMAIN SEARCH — Styled Card, Indigo Button
   ============================================ */

.hostiko-domain-search .home-domain-search {
    background: linear-gradient(180deg, #e8e0f5 0%, #fff 100%);
    padding: 60px 0px;
    position: relative;
    overflow: visible;
}

.domain-search-decor-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.06) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.domain-search-decor-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    bottom: -40px;
    left: -40px;
    pointer-events: none;
}

.domain-search-inner {
    max-width: 800px;
    margin: 0 auto;
}

.domain-search-header {
    text-align: center;
    margin-bottom: 10px;
}

.domain-search-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(91, 33, 182, 0.12);
    color: var(--global--color-strong-violet);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.domain-search-badge i {
    margin-right: 6px;
}

.domain-search-subtitle {
    font-size: 16px;
    color: var(--global--color-dark-grayish-blue);
    margin-bottom: 0;
}

/* TLD cards row */
.domain-tld-cards {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    padding-top: 10px;
    flex-wrap: wrap;
    overflow: visible;
}

.tld-card {
    background: var(--global--color-white);
    border: 1px solid var(--global--border-color);
    border-radius: 14px;
    padding: 16px 22px;
    text-align: center;
    min-width: 110px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(91, 33, 182, 0.04);
}

.tld-card:hover {
    border-color: var(--global--color-light-violet);
    box-shadow: 0 6px 25px rgba(91, 33, 182, 0.12);
    transform: translateY(-3px);
}

.tld-card .tld-name {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--global--color-primary);
    margin-bottom: 4px;
}

.tld-card .tld-price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--global--color-strong-violet);
}

.tld-card .tld-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--global--color-dark-grayish-blue);
}

.tld-card .tld-tag {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: var(--global--color-white);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 1;
}

.tld-card .tld-tag.hot {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.hostiko-domain-search .home-domain-search .input-group {
    align-items: center;
}

.hostiko-domain-search .home-domain-search h2,
#default-captcha-domainchecker,
.home-domain-search .btn-link,
#main-body .btn-outline-primary {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--global--color-primary);
}

.hostiko-domain-search .home-domain-search .tld-logos {
    color: var(--global--color-accent);
}

.hostiko-domain-search .home-domain-search .input-group-wrapper {
    border: none;
    font-size: 14px;
    font-weight: 400;
    background: var(--global--color-white);
    border-radius: var(--global--button-border-radius);
    padding: 11px 10px 11px 20px;
    border: 1px solid var(--global--border-color);
    box-shadow: 0 4px 20px rgba(91, 33, 182, 0.06);
}

.hostiko-domain-search .home-domain-search .btn-primary,
#main-body .btn-outline-primary {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
    color: var(--global--color-white) !important;
    padding: 16px 25px;
    border-radius: var(--global--button-border-radius) !important;
    font-size: 16px;
    font-weight: 500;
}

.hostiko-domain-search .home-domain-search .btn-success {
    background: linear-gradient(135deg, #4c1d95, #5b21b6);
    border: none;
    color: var(--global--color-white) !important;
    padding: 16px 25px;
    border-radius: var(--global--button-border-radius) !important;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}

.hostiko-domain-search .home-domain-search .btn-link {
    display: inline-block;
    box-shadow: none;
    color: var(--global--color-strong-violet);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 !important;
    border: none !important;
}

.home-domain-search .input-group-wrapper {
    margin: 35px 0 0;
}

.hostiko-domain-search .home-domain-search h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--global--color-primary);
}

.input-group .input-group-append .btn {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
}

.hostiko-domain-search .home-domain-search .btn-primary {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
}

.hostiko-domain-search .home-domain-search .btn-primary:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

.hostiko-domain-search .home-domain-search .btn-success:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

.list-group-item.active {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border-color: transparent;
    color: #fff;
}

/* Domain TLDs */
.home-domain-search .tld-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hostiko-domain-search .home-domain-search .tld-logos li {
    text-align: center;
    border-radius: var(--global--box-border-radius);
    background-color: transparent;
    margin: 0 16px;
    transition: all 0.3s ease-in-out;
}

.hostiko-domain-search .home-domain-search .tld-logos li:first-child {
    margin-left: 0;
}

.hostiko-domain-search .home-domain-search .tld-logos li:last-child {
    margin-right: 0;
}

.home-domain-search .tld-logos img {
    width: auto !important;
    margin-bottom: 0;
}

.home-domain-search .tld-logos .value {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    display: inline-block;
    color: var(--global--color-strong-violet);
    transition: all 0.3s ease-in-out;
}

.home-domain-search .tld-logos .name {
    font-weight: 700;
    color: var(--global--color-primary);
}

.hostiko-domain-search .home-domain-search .btn-link {
    display: inline-table;
    box-shadow: none;
    color: var(--global--color-strong-violet);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 0 !important;
    text-decoration: underline;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.hostiko-domain-search .home-domain-search .btn-link:focus {
    color: var(--global--color-light-violet) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.hostiko-domain-search .home-domain-search .btn-link:focus-visible {
    outline: none;
}

.hostiko-domain-search .home-domain-search .btn-link:hover {
    color: var(--global--color-light-violet);
}

.home-domain-search .tld-logos li {
    padding: 0;
}

/* Domain pricing bar */
.domain_pricing {
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain_pricing .heading {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    margin-right: 10px;
    color: var(--global--color-primary);
}

.domain_pricing ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    text-align: center;
}

.domain_pricing ul li {
    padding: 8px 15px 12px;
    margin: 0 5px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--global--color-white);
    border: 1px solid var(--global--border-color);
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease-in-out;
}

.domain_pricing ul li:hover {
    border: 1px solid var(--global--color-light-violet);
    box-shadow: 0 2px 10px rgba(91, 33, 182, 0.1);
}

.domain_pricing ul li:first-child {
    margin-left: 0;
}

.domain_pricing ul li:last-child {
    margin-right: 10px;
}

.domain_pricing ul li .name {
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    margin-right: 10px;
    color: var(--global--color-primary);
}

.domain_pricing ul li .price {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--global--color-strong-violet);
}

.domain_pricing .view_all {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 15px 27px;
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    text-decoration: none;
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease-in-out;
}

.domain_pricing .view_all:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

/* ============================================
   MAIN BODY, CARDS, DASHBOARD
   ============================================ */

#main-body {
    background: var(--global--color-very-light-gray-mostly-white);
}

section#main-body {
    margin: 0;
    padding: 90px 0 90px;
    min-height: 350px;
    overflow: hidden;
}

#main-body h2 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--global--color-primary);
}

#main-body .primary-content .card-columns.home {
    display: none;
}

#main-body .primary-content h2:first-child {
    display: none;
}

.card-header {
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    color: var(--global--color-white);
    border-radius: var(--global--box-border-radius) var(--global--box-border-radius) 0 0 !important;
    padding: 14px 20px;
}

.card-header h3,
.card-header h4,
.card-header .card-title {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--global--color-white) !important;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.card-header .btn {
    font-weight: 600;
    text-shadow: none;
}

.card-header i {
    opacity: 0.9;
}

.primary-content .home .card {
    min-height: 250px;
    background: var(--global--color-white);
    box-shadow: 0 4px 25px rgba(91, 33, 182, 0.08);
    border-radius: var(--global--box-border-radius);
    border: none;
}

.primary-content .home .card:hover {
    border-top: 2px solid var(--global--color-light-violet);
    box-shadow: 0 8px 35px rgba(91, 33, 182, 0.14);
}

.sidebar .list-group-item.active,
.sidebar .list-group-item.active:focus,
.sidebar .list-group-item.active:hover {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border-color: transparent;
    color: #fff;
    margin: 4px 8px;
    border-radius: 10px;
    padding-left: 32px;
}

.sidebar .list-group-item.active a,
.sidebar .list-group-item.active:focus a,
.sidebar .list-group-item.active:hover a {
    color: #fff !important;
}

.sidebar .list-group-item.active i,
.sidebar .list-group-item.active:focus i,
.sidebar .list-group-item.active:hover i {
    color: #fff !important;
}

.requestor-type-owner {
    background-color: var(--global--color-strong-violet);
}

.text-success {
    color: var(--global--color-strong-red) !important;
}

.primary-bg-color {
    background-color: var(--global--color-very-light-gray-mostly-white);
}

/* Action icon buttons (dashboard) */

/* Compact action cards — unified purple palette */
.action-icon-btns a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 20px 10px 24px;
    color: var(--global--color-primary);
    background: var(--global--color-white);
    box-shadow: 0 2px 12px rgba(91, 33, 182, 0.08);
    border-radius: var(--global--box-border-radius);
    border: 1px solid rgba(91, 33, 182, 0.06);
    transition: all 0.3s ease-in-out;
}

.action-icon-btns a:hover {
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.14);
    border-color: rgba(124, 58, 237, 0.2);
    transform: none !important;
    padding: 20px 10px 24px !important;
    margin: 0 !important;
    border-width: 1px !important;
    font-size: 16px !important;
}

.action-icon-btns a .ico-container,
.action-icon-btns a:hover .ico-container {
    transform: none !important;
    margin: 0 auto 12px !important;
    padding: 0 !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 22px !important;
    line-height: 52px !important;
}

.action-icon-btns a .ico-container i {
    transform: scale(1) !important;
    font-size: 22px !important;
    width: 52px !important;
    height: 52px !important;
    line-height: 52px !important;
    transition: transform 0.25s ease;
}

.action-icon-btns a:hover .ico-container i {
    transform: scale(1.1) !important;
}

.action-icon-btns a .ico-container i {
    font-size: 22px;
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 14px;
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

/* All icons — unified purple palette */
.primary-content .card-accent-teal i,
.primary-content .card-accent-pomegranate i,
.primary-content .card-accent-sun-flower i,
.primary-content .card-accent-asbestos i,
.primary-content .card-accent-green i,
.primary-content .card-accent-account-home i,
.primary-content .card-accent-account-services i,
.primary-content .card-accent-account-domains i,
.primary-content .card-accent-account-support i,
.primary-content .card-accent-account-payment i {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}

.action-icon-btns .action-title {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--global--color-primary);
    margin-bottom: 0;
}

.action-icon-btns .action-desc {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: var(--global--color-dark-grayish-blue);
    margin-top: 4px;
}


/* ============================================
   PRICING CAROUSEL — Lavender BG, Card Hover
   ============================================ */

.pricing-carousel {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--global--color--lavndr) 0%, #e8e0f5 100%);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: visible;
}

.pricing-carousel::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.06) 0%, transparent 70%);
    top: -100px;
    left: -80px;
    pointer-events: none;
}

.pricing-carousel::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    bottom: -60px;
    right: -40px;
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(91, 33, 182, 0.12);
    color: var(--global--color-strong-violet);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.pricing-badge i {
    margin-right: 6px;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--global--color-dark-grayish-blue);
    max-width: 550px;
    margin: 0 auto;
}

.pricing-carousel h2 {
    font-size: 40px;
    line-height: 40px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--global--color-primary);
}

.pricing-carousel .nav-tabs {
    text-align: center;
    padding-bottom: 30px;
    display: inline-block;
    border: solid 0px transparent;
    width: 100%;
    position: relative;
}

.pricing-carousel .nav-tabs:after {
    content: "";
    width: 70%;
    background-color: rgba(91, 33, 182, 0.12);
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    bottom: 29px;
}

.pricing-carousel .nav-tabs .nav-link {
    list-style: none;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 18px 28px 17px;
    color: var(--global--color-text);
    margin: 0 !important;
    position: relative;
    border: none;
    transition: all 0.3s ease-in-out;
}

.pricing-carousel .nav-tabs .nav-item {
    display: inline-block;
}

.pricing-carousel .nav-tabs .nav-link.active {
    color: var(--global--color-strong-violet);
    background-color: transparent;
    border-bottom: 2px solid var(--global--color-strong-violet);
    position: relative;
    z-index: 2;
}

.pricing-carousel .nav-tabs .nav-item.active::after {
    content: "";
    width: 200px;
    background-color: var(--global--color-strong-violet);
    height: 2px;
    position: absolute;
    bottom: -15px;
    left: 0;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}

.pricing-carousel .tab-content .owl-carousel .owl-stage-outer {
    overflow: clip !important;
    overflow-clip-margin: 48px;
    padding: 24px 0 48px;
    margin-bottom: -24px;
}

.pricing-carousel .tab-content .owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch;
}

.pricing-carousel .tab-content .owl-carousel .owl-item {
    display: flex;
    overflow: visible !important;
}

/* ── Pricing card ── */
.pricing-carousel .tab-content .item {
    display: flex;
    flex-direction: column;
    float: left;
    text-align: center;
    width: 95% !important;
    padding: 0;
    margin: 24px 6px 0;
    background-color: var(--global--color-white);
    border-radius: 20px;
    border: 1px solid rgba(91, 33, 182, 0.08);
    transition: all 0.35s ease-in-out;
    box-shadow: 0 4px 24px rgba(91, 33, 182, 0.08);
    position: relative;
    overflow: visible;
}

.pricing-carousel .tab-content .item:hover {
    box-shadow: 0 12px 40px rgba(91, 33, 182, 0.16);
    transform: translateY(-6px);
    border-color: rgba(91, 33, 182, 0.15);
}

/* ── Card header zone ── */
.pricing-carousel .tab-content .item header {
    padding: 20px 20px 0;
    margin-bottom: 0;
    border-bottom: none;
    background: none;
}

.pricing-carousel .tab-content .item header figure {
    margin-bottom: 8px;
}

.pricing-carousel .tab-content .item header h3 {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    color: var(--global--color-strong-violet);
}

.pricing-carousel .tab-content .item header span {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--global--color-strong-violet);
}

/* ── Pricing zone ── */
.pricing-carousel .tab-content .item .product-pricing {
    padding: 10px 20px 14px;
    margin-bottom: 0;
    border-bottom: none;
    color: var(--global--color-text);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

/* Free subdomain ribbon on pricing cards */
.pricing-carousel .tab-content .item .product-freesub-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 180px;
    margin: 0 auto 14px;
    padding: 9px 14px;
    background: rgba(91, 33, 182, 0.08);
    border: 1px dashed rgba(91, 33, 182, 0.45);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #4c1d95;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}
.pricing-carousel .tab-content .item .product-freesub-ribbon i {
    color: #d97706;
    font-size: 13px;
    flex-shrink: 0;
}

/* Hide original price + cycle — JS replaces with monthly hero + annual sub */
.pricing-carousel .tab-content .item .product-pricing .price,
.pricing-carousel .tab-content .item .product-pricing .cycle {
    display: none;
}

/* Monthly hero price (injected by JS) */
.price-hero {
    font-size: 28px;
    font-weight: 800;
    color: var(--global--color-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.price-hero .price-currency {
    font-size: 16px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 1px;
}

.price-hero .price-period {
    font-size: 14px;
    font-weight: 500;
    color: var(--global--color-text);
}

/* Annual secondary price */
.price-sub {
    font-size: 16px;
    font-weight: 600;
    color: #5b21b6;
    margin-top: 6px;
    line-height: 1;
}

.price-sub .price-mo-currency {
    font-size: 12px;
    font-weight: 600;
    vertical-align: super;
}

.price-sub .price-mo-period {
    font-size: 12px;
    font-weight: 500;
    color: #7c3aed;
}

/* Billing footnote */
.price-billing-note {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 4px;
}

.pricing-carousel .tab-content .item:hover .price-hero {
    color: var(--global--color-strong-violet);
}

/* ── Popular card ── */
.pricing-carousel .tab-content .item.item--popular {
    border: 2px solid var(--global--color-strong-violet);
    box-shadow: 0 8px 32px rgba(91, 33, 182, 0.20);
    z-index: 2;
}

.pricing-carousel .tab-content .item.item--popular:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(91, 33, 182, 0.24);
}

.pricing-carousel .tab-content .item.item--popular header {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    margin: -1px -2px 0;
    padding: 29px 26px 16px;
    border-radius: 20px 20px 0 0;
}

.pricing-carousel .tab-content .item.item--popular header h3,
.pricing-carousel .tab-content .item.item--popular header span {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4);
    z-index: 3;
}

.popular-badge i {
    font-size: 10px;
    margin-right: 4px;
}

/* ── Features zone ── */
.pricing-carousel .tab-content .item .product-desc {
    margin-top: 0;
    padding: 0 20px;
    flex: 1;
}

.pricing-carousel .tab-content .item .product-desc p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--global--color-text);
}

.pricing-carousel .tab-content .item .product-desc ul {
    padding-left: 0;
    margin-bottom: 0;
    text-align: left;
    list-style: none;
}

.pricing-carousel .tab-content .item .product-desc>strong {
    font-size: 14px;
    line-height: 22px;
    color: var(--global--color-light-violet);
}

.pricing-carousel .tab-content .item .product-desc li {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0;
    padding: 5px 0;
    color: var(--global--color-text);
    border-bottom: 1px solid rgba(91, 33, 182, 0.05);
}

.pricing-carousel .tab-content .item .product-desc li:last-child {
    border-bottom: none;
}

.pricing-carousel .tab-content .item .product-desc li::marker {
    content: none;
    font-size: 0;
}

.pricing-carousel .tab-content .item .feature-value {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--global--color-text);
}

/* Override for product-features-list inside product-desc */
.pricing-carousel .tab-content .item .product-desc .product-features-list {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.pricing-carousel .tab-content .item .product-desc .product-features-list li {
    font-size: 14px !important;
    line-height: 1.3 !important;
    padding: 5px 0 !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
    font-style: normal !important;
    border-bottom: 1px solid rgba(91, 33, 182, 0.05);
}

.pricing-carousel .tab-content .item .product-desc .product-features-list li:last-child {
    border-bottom: none;
}

.pricing-carousel .tab-content .item .product-desc .product-features-list li::marker {
    content: none;
    font-size: 0;
}

.pricing-carousel .tab-content .item .product-desc .product-features-list .pfl-no {
    font-size: 13px !important;
    opacity: 0.45;
    padding: 5px 0 !important;
}

.pricing-carousel .tab-content .item .product-desc .product-features-list .pfl-no .pfl-text {
    color: #9ca3af;
    text-decoration: line-through;
}

/* ── Focus states ── */
.pricing-carousel .btn-success:focus,
.pricing-carousel .btn-success:focus-visible {
    outline: 2px solid var(--global--color-strong-violet);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.2) !important;
}

.pricing-carousel .nav-tabs .nav-link:focus-visible {
    outline: 2px solid var(--global--color-strong-violet);
    outline-offset: 2px;
}

/* Feature list */
.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-features-list li {
    font-size: 14px;
    line-height: 1.3;
    padding: 5px 0;
    color: var(--global--color-text);
    border-bottom: 1px solid rgba(91, 33, 182, 0.05);
}

.product-features-list li:last-child {
    border-bottom: none;
}

/* Included features */
.product-features-list .pfl-yes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features-list .pfl-yes .pfl-icon {
    color: #7c3aed;
    font-size: 10px;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 6px;
    opacity: 1;
}

/* Excluded features */
.product-features-list .pfl-no {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
}

.product-features-list .pfl-no .pfl-icon {
    color: #d1d5db;
    font-size: 8px;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
}

.product-features-list .pfl-no .pfl-text {
    color: #9ca3af;
    text-decoration: line-through;
}

/* Separator */
.pricing-carousel .tab-content .item .product-desc .product-features-list li.pfl-separator {
    height: 0 !important;
    border: none !important;
    border-bottom: none !important;
    border-top: 1px solid rgba(91, 33, 182, 0.05) !important;
    margin: 2px 0 !important;
    background: none !important;
    list-style: none !important;
    padding: 0 !important;
}

/* ── Structured product features (pf-list) ── */
.pf-list {
    text-align: left;
    margin: 0;
    padding: 0;
}

/* Highlight row — key specs */
.pf-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 0 0 10px;
    padding: 0 20px 10px;
    border-bottom: 1px solid rgba(91, 33, 182, 0.06);
}

.pf-highlight-item {
    background: rgba(124, 58, 237, 0.05);
    border-radius: 10px;
    padding: 8px 2px 6px;
    text-align: center;
    border: none;
    min-width: 0;
}

.pf-highlight-val {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--global--color-primary);
    line-height: 1.1;
    white-space: nowrap;
}

.pf-highlight-label {
    display: block;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #9ca3af;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section */
.pf-section {
    margin-bottom: 6px;
}

.pf-section:last-child {
    margin-bottom: 0;
}

.pf-section-title {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--global--color-strong-violet);
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.10);
    display: flex;
    align-items: center;
    gap: 3px;
}

.pf-section-title i {
    font-size: 8px;
    opacity: 0.6;
}

/* Feature row */
.pf-row {
    display: flex;
    align-items: center;
    padding: 2px 4px;
    font-size: 11px;
    line-height: 1.2;
    color: var(--global--color-text);
    border-radius: 3px;
}

.pf-row:nth-child(even) {
    background: rgba(124, 58, 237, 0.03);
}

.pf-row + .pf-row {
    border-top: none;
}

/* Icon */
.pf-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    font-size: 8px;
    text-align: center;
    line-height: 14px;
    margin-right: 5px;
    border-radius: 50%;
    font-weight: 700;
}

.pf-icon.pf-yes {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.10);
}

.pf-icon.pf-no {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

.pf-label {
    flex: 1;
    min-width: 0;
}

/* Value pill */
.pf-val {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 10px;
    color: var(--global--color-strong-violet);
    background: rgba(124, 58, 237, 0.07);
    padding: 1px 6px;
    border-radius: 20px;
    margin-left: 4px;
    white-space: nowrap;
}

/* Disabled / not-included */
.pf-row.pf-disabled {
    opacity: 0.4;
}

.pf-row.pf-disabled .pf-label {
    text-decoration: line-through;
    color: #9ca3af;
}

.pricing-carousel .tab-content .item br {
    display: none;
}

.pricing-carousel .tab-content .item footer {
    padding: 14px 20px 20px !important;
    margin-top: auto;
}

.pricing-carousel .btn-success {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
    border-radius: 14px !important;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    padding: 14px 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(91, 33, 182, 0.25);
}

.pricing-carousel .btn-success i {
    transition: transform 0.3s ease;
}

.pricing-carousel .btn-success:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #4c1d95, #6d28d9) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.4);
    transform: translateY(-1px);
}

.pricing-carousel .btn-success:hover i {
    transform: translateX(3px);
}

/* Popular card gets gold CTA */
.pricing-carousel .tab-content .item.item--popular .btn-success {
    background: linear-gradient(135deg, #d97706, #f59e0b) !important;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.pricing-carousel .tab-content .item.item--popular .btn-success:hover {
    background: linear-gradient(135deg, #b45309, #d97706) !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.pricing-carousel .tab-content .item:hover .btn-success {
    color: var(--global--color-white) !important;
}

/* Hide carousel arrows on desktop — only show on mobile */
.carousel-nav-row {
    display: none;
}

.carousel-fade-left,
.carousel-fade-right {
    display: none !important;
}

.pricing-carousel .tab-content .owl-carousel.owl-drag .owl-item {
    margin-bottom: 12px;
}

.pricing-carousel .tab-content .owl-carousel .owl-item img {
    display: inline-block;
    width: auto !important;
}

.pricing-carousel .tab-content .owl-carousel .owl-dots {
    display: none !important;
}

.pricing-carousel .tab-content .owl-carousel .owl-dots .owl-dot span {
    background: var(--global--color-grayish-blue);
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
    display: block;
    border-radius: 100px;
}

.pricing-carousel .tab-content .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--global--color-light-violet);
}

.pricing-carousel .tab-content .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--global--color-strong-violet);
    width: 16px;
    height: 16px;
}

.pricing-carousel .tab-content .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* ============================================
   SHARED SECTION BADGES & HEADINGS
   ============================================ */

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(91, 33, 182, 0.12);
    color: var(--global--color-strong-violet);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.section-badge i {
    margin-right: 6px;
}

.section-heading {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: var(--global--color-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--global--color-dark-grayish-blue);
    max-width: 560px;
    margin: 8px auto 0;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
    padding: 80px 0 90px;
    background: var(--global--color-white);
}

.features-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--global--color-white);
    border: 1px solid var(--global--border-color);
    border-radius: var(--global--box-border-radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(91, 33, 182, 0.04);
}

.feature-card:hover {
    border-color: var(--global--color-light-violet);
    box-shadow: 0 8px 35px rgba(91, 33, 182, 0.12);
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.08), rgba(139, 92, 246, 0.12));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--global--color-strong-violet);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: var(--global--color-white);
    transform: scale(1.08);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--global--color-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--global--color-dark-grayish-blue);
    margin-bottom: 0;
}

/* Hero feature card — full-width highlight for free subdomain */
.feature-card--hero {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    border: none;
    padding: 28px 36px;
    margin: 0 0 32px;
    border-radius: var(--global--box-border-radius, 16px);
    text-align: left;
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.25);
    position: relative;
    overflow: hidden;
}

.feature-card--hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card--hero:hover {
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.25);
    border-color: transparent;
}

.feature-card-hero-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.feature-card-hero-icon {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    backdrop-filter: blur(6px);
}

.feature-card--hero:hover .feature-card-hero-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.feature-card-hero-body {
    flex: 1;
    min-width: 0;
}

.feature-card-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.feature-card--hero h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.feature-card--hero p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-card--hero {
        padding: 26px 22px;
    }
    .feature-card-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .feature-card-hero-icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
    .feature-card--hero h4 {
        font-size: 20px;
    }
    .feature-card--hero p {
        font-size: 14px;
    }
}

/* ============================================
   TRUST STATS BAR
   ============================================ */

/* ============================================
   HOW TO START
   ============================================ */

/* Section dividers — gradient fade */
.how-to-start,
.features-grid,
.tech-logos,
.testimonials-section {
    border-top: none;
    position: relative;
}

.how-to-start::before,
.tech-logos::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c4b5fd 20%, #8b5cf6 50%, #c4b5fd 80%, transparent 100%);
}

.how-to-start {
    padding: 80px 0;
    background: var(--global--color-white);
}

.hts-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.hts-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hts-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hts-step-icon {
    font-size: 36px;
    color: #7c3aed;
    margin-bottom: 16px;
}

.hts-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--global--color-primary);
    margin-bottom: 8px;
}

.hts-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--global--color-text);
    margin: 0;
}

.hts-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
    color: #d1d5db;
    font-size: 20px;
}

@media (max-width: 992px) {
    .pricing-carousel .tab-content .item.item--popular {
        transform: scale(1);
    }
    .pricing-carousel .tab-content .item.item--popular:hover {
        transform: translateY(-6px);
    }
    .pricing-carousel .tab-content .item header {
        padding: 18px 16px 0;
    }
    .pricing-carousel .tab-content .item .product-pricing {
        padding: 8px 16px 14px;
    }
    .pricing-carousel .tab-content .item .product-desc {
        padding: 0 16px;
    }
    .pricing-carousel .tab-content .item footer {
        padding: 12px 16px 18px !important;
    }
    .pf-highlight {
        padding: 0 16px 8px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .hts-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .hts-connector {
        display: none;
    }
    .hts-step {
        max-width: 100%;
    }
}

/* ============================================
   TECHNOLOGY LOGOS
   ============================================ */

.tech-logos {
    padding: 60px 0;
    background: var(--global--color-white);
}

.tech-logos-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
    margin-top: 32px;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.tech-logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.tech-logo-item i {
    font-size: 32px;
    color: #7c3aed;
}

.tech-logo-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--global--color-primary);
}

@media (max-width: 576px) {
    .tech-logos-row {
        gap: 24px 32px;
    }
    .tech-logo-item i {
        font-size: 26px;
    }
}

/* ============================================
   WHO WE ARE
   ============================================ */

.who-we-are {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #7c3aed 100%);
    color: #fff;
}

.who-we-are .row {
    align-items: flex-start;
}

.who-we-are .section-badge {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #c4b5fd;
    border-color: rgba(255, 255, 255, 0.15);
}

.wwa-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 20px;
    line-height: 1.2;
}

.wwa-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.wwa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wwa-stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.wwa-stat:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.wwa-stat-num {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.wwa-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .who-we-are {
        padding: 50px 0;
    }
    .wwa-title {
        font-size: 26px;
    }
    .wwa-text {
        max-width: none;
    }
    .wwa-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .wwa-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .wwa-stat {
        padding: 16px 12px;
    }
    .wwa-stat-num {
        font-size: 22px;
    }
}

/* ============================================
   TRUST STATS BAR
   ============================================ */

.trust-stats {
    background: linear-gradient(135deg, #0f0a1e 0%, #1e1b4b 50%, #4c1d95 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.trust-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.trust-stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-stat-item {
    text-align: center;
    padding: 10px 20px;
}

.trust-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--global--color-white);
    line-height: 1.1;
    margin-bottom: 6px;
}

.trust-stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 80px 0 90px;
    background: var(--global--color-white);
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--global--color-white);
    border: 1px solid var(--global--border-color);
    border-radius: var(--global--box-border-radius);
    padding: 32px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(91, 33, 182, 0.04);
}

.testimonial-card:hover {
    border-color: var(--global--color-light-violet);
    box-shadow: 0 8px 30px rgba(91, 33, 182, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--global--color-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: var(--global--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--global--color-primary);
    line-height: 1.3;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--global--color-dark-grayish-blue);
}

/* ============================================
   BOTTOM CTA
   ============================================ */

.bottom-cta {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #7c3aed 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.bottom-cta-content {
    position: relative;
    z-index: 1;
}

.bottom-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--global--color-white);
    margin-bottom: 14px;
}

.bottom-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--global--color-white) !important;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-cta-gold:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: var(--global--color-white) !important;
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.btn-cta-gold i {
    margin-right: 8px;
}

/* ============================================
   FOOTER — Dark Gradient BG, Amber Hovers
   ============================================ */

.footer-section {
    position: relative;
    background: linear-gradient(180deg, #0f0a1e 0%, #1a0e35 100%);
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5b21b6, #8b5cf6, #f59e0b, #8b5cf6, #5b21b6);
}

.footer-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.footer-section .footer-outer-con {
    padding: 80px 0 80px;
    position: relative;
    z-index: 1;
}

.footer-section .cta-con {
    padding: 65px 0;
}

.footer-section .cta-content h2 {
    color: var(--global--color-white);
    font-size: 40px;
    line-height: 1.1em;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section .cta-content p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .cta-con .secondary-button a {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--global--color-white);
    font-size: 16px;
    padding: 15px 35px;
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease-in-out;
}

.footer-section .cta-con .secondary-button a:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: var(--global--color-white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

.footer-section .middle_portion .links h4 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 27px;
    color: var(--global--color-white);
}

.footer-section .middle_portion .links li {
    margin-bottom: 17px;
}

.footer-section .middle_portion .links li:last-child {
    margin-bottom: 0 !important;
}

.footer-section .middle_portion .links a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease-in-out;
}

.footer-section .middle_portion .links a:hover {
    color: var(--global--color-vivid-yellow) !important;
}

.footer-section .middle_portion .links.address_list ul {
    display: flex;
    flex-direction: column;
}

.footer-section .middle_portion .links.address_list figure {
    margin-bottom: 30px;
}

.footer-section .middle_portion .links.community_list .form-group input {
    width: 100% !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 400 !important;
    color: #999 !important;
    padding: 15px !important;
    background-color: transparent !important;
    border-radius: var(--global--button-border-radius) !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    margin-bottom: 30px;
}

.footer-section .middle_portion .links.community_list .form-group button {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: var(--global--color-white);
    width: 121px;
    height: 48px;
    outline: none;
    border: none;
    border-radius: var(--global--button-border-radius);
}

.footer-section .middle_portion .links .text {
    position: relative;
    margin-bottom: 12px;
    padding-left: 0;
    display: inline-block;
}

.footer-section .middle_portion .links i {
    font-size: 18px;
    left: 0;
    top: 4px;
    position: absolute;
    color: var(--global--color-vivid-yellow);
}

.footer-section .middle_portion .links p,
.footer-section .middle_portion .links a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.footer-section .middle_portion .links.frst-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .middle_portion .links .phone {
    transform: rotate(40deg);
}

.footer-logos-img {
    display: inline-block;
}

.footer-logos-img img {
    margin-right: 20px;
}

/* Footer logo */
.footer-logo {
    margin: 0 0 10px;
}

.footer-logo img,
.frst-col > a > figure img {
    max-width: 180px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Footer social SVG icons */
.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Footer description & social */
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border-color: #7c3aed;
    color: var(--global--color-white);
    text-decoration: none;
}

/* Footer bottom bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 10px;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-payment-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
}

.footer-payment-icons svg {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer-payment-icons svg:hover {
    color: #fff;
}

/* ============================================
   COPYRIGHT BAR
   ============================================ */

footer.footer {
    padding: 20px 0;
    margin-top: 0 !important;
    position: relative;
    background: linear-gradient(180deg, #1a0e35 0%, #0f0a1e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer.footer .btn {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    margin-right: 8px;
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
    border-radius: var(--global--button-border-radius);
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

footer.footer .nav-link {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 26px;
    color: var(--global--color-white);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: var(--global--button-border-radius);
    transition: all 0.3s ease-in-out;
}

footer.footer .btn:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.35);
}

footer.footer .nav-link:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

footer.footer ul {
    float: none !important;
    text-align: left !important;
    padding: 0;
    margin: 0 !important;
    display: inline-block;
}

footer.footer .nav {
    display: inline-block;
}

footer.footer .copyright {
    padding-top: 10px;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    float: right;
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   WHMCS PAGES: Announcements, Cards, etc.
   ============================================ */

.primary-content .card .announcements h1 a {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-decoration: none !important;
    color: var(--global--color-primary);
}

.primary-content .card .announcements a i {
    margin-left: 5px;
}

.card .card-body h1 {
    margin-bottom: 20px;
}

.primary-content .announcements .btn-sm {
    padding: 6px 10px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus {
    color: #333 !important;
    text-decoration: none;
    background-color: #f8f9fa;
}

header.header .dropdown-item.active,
header.header .dropdown-item:active,
header.header .dropdown-item:focus {
    color: #333 !important;
    background-color: #f8f9fa;
}

/* Cart / Store product cards — styles now in orderforms/hostiko_cart/css/custom.css */

.domain-promo-box .btn-warning {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
}

.domain-promo-box .btn-warning:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

.domain-promo-box .btn-primary {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

.domain-promo-box .btn-primary:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
}

/* Badges */
.card .badge-info {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border-radius: var(--global--button-border-radius);
}

.card .badge {
    padding: 6px 8px;
}

.card .list-inline-item {
    padding: 0 !important;
}

.card .badge-pill {
    padding: 15px 0 0;
    line-height: 18px;
    margin-bottom: 18px;
    text-align: left;
    text-wrap: wrap;
    color: var(--global--color-primary);
    background-color: transparent;
}

.card-body .btn-secondary {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

.card-body .btn-secondary:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
}

.md-header .btn-group .btn-sm {
    border-radius: 0 !important;
}

/* Tickets */
.extra-padding .btn-primary {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
}

.extra-padding .btn-primary:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
}

.ticket-actions .btn-danger {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
}

.ticket-actions .btn-danger:hover {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

/* ── Ticket form — Submit + Cancel equal size ── */
.extra-padding p.text-center > .btn {
    padding: 10px 28px;
    font-size: 14px;
    border-radius: var(--global--button-border-radius);
    vertical-align: middle;
}

.panel-heading .panel-minimise {
    position: relative;
    top: 10px;
}

/* Tables */
.table-striped tr td .btn {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
    opacity: 1 !important;
    margin-bottom: 6px;
}

.table-striped tr td .btn:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
}

/* Alerts */
.primary-content .alert-info {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
    border-radius: var(--global--button-border-radius);
}

/* Cart Order Summary */
.secondary-cart-body .view-cart-items-header {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
}

.summary-container .btn-success {
    color: var(--global--color-white);
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    border: none;
}

#order-standard_cart .order-summary {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border-bottom: 3px solid var(--global--color-light-violet) !important;
}

#order-standard_cart .summary-container {
    color: var(--global--color-primary);
}

#order-standard_cart .summary-container .clearfix,
#order-standard_cart .summary-container .pull-left,
#order-standard_cart .summary-container .pull-right,
#order-standard_cart .summary-container .text-right,
#order-standard_cart .summary-container td,
#order-standard_cart .summary-container th,
#order-standard_cart .summary-container span,
#order-standard_cart .summary-container p,
#order-standard_cart .summary-container .amt,
#order-standard_cart .summary-container .total-due-today {
    color: var(--global--color-primary) !important;
}

#order-standard_cart .summary-container .total-due-today .amt {
    color: var(--global--color-strong-violet) !important;
}

.form-group .generate-password {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 12px;
}

#order-standard_cart .font-size-36 {
    text-align: center;
    margin-bottom: 15px;
}

#order-standard_cart .view-cart-items-header {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}

#order-standard_cart .view-cart-items {
    border-bottom: 2px solid var(--global--color-light-violet) !important;
}

#order-standard_cart .empty-cart .btn {
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
}

#order-standard_cart .empty-cart .btn:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
}

/* Card sidebar & accents */
.sidebar .card {
    overflow: hidden;
    border-radius: var(--global--box-border-radius);
}

.card-accent-emerald .btn-success {
    padding: 8px 18px;
    font-size: var(--font-sm);
    font-weight: 600;
    border-radius: var(--global--button-border-radius);
}

/* Domain registration card — improved form layout */
.card-accent-emerald .card-body {
    padding: 20px 24px 24px;
}

.card-accent-emerald .card-body .input-group {
    flex-wrap: nowrap;
}

.card-accent-emerald .card-body .form-control {
    height: 44px;
    border: 2px solid var(--global--border-color);
    border-radius: var(--global--button-border-radius) 0 0 var(--global--button-border-radius);
    font-size: var(--font-sm);
    padding: 8px 16px;
    transition: border-color 0.2s ease;
}

.card-accent-emerald .card-body .form-control:focus {
    border-color: var(--global--color-light-violet);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.card-accent-emerald .card-body .input-group-append .btn,
.card-accent-emerald .card-body .input-group .btn {
    height: 44px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: var(--font-sm);
    border-radius: 0;
}

.card-accent-emerald .card-body .input-group .btn:last-child {
    border-radius: 0 var(--global--button-border-radius) var(--global--button-border-radius) 0;
}

.card-sidebar .card-minimise {
    position: relative;
    top: 10px;
}

.card-accent-gold .card-title {
    color: var(--global--color-vivid-yellow);
}

.card-accent-red .card-title {
    color: var(--global--color-light-violet);
}

.card-accent-blue .card-title {
    color: var(--global--color-light-violet);
}

.card-accent-emerald .card-title {
    color: var(--global--color-light-violet);
}

.card-accent-asbestos .card-title {
    color: var(--global--color-light-violet);
}

.card-accent-emerald .card-body .btn-success {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
    border: none !important;
}

.card-accent-emerald .card-body .btn-success:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
}

.card-accent-emerald .card-body .btn:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    border: none !important;
}

.client-home-cards .card-accent-asbestos i {
    background-color: transparent !important;
}

.client-home-cards .card-header .btn {
    padding: 4px 10px;
}

/* All cards in primary content — rounded, no hard border */
.primary-content .card {
    border: none;
    border-radius: var(--global--box-border-radius);
    box-shadow: 0 4px 25px rgba(91, 33, 182, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.primary-content .card .card-body {
    border: none;
}

/* Product details — Package/Domain card */
.primary-content .card .card-body .text-center h4 {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 4px;
}

.primary-content .card .card-body .text-center h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 6px;
}

.primary-content .card .card-body .text-center h5 {
    font-size: 14px;
    color: #7c3aed;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Package/Domain card buttons — uniform size */
.panel-default.card .panel-body.card-body.text-center .btn,
.panel-default.card .card-body.text-center .btn {
    display: inline-block !important;
    width: auto !important;
    min-width: 160px !important;
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: var(--global--button-border-radius) !important;
    margin: 4px !important;
}

.panel-default.card .panel-body.card-body.text-center .btn-block,
.panel-default.card .card-body.text-center .btn-block {
    display: inline-block !important;
    width: auto !important;
}

/* Client home cards — remove default card border to avoid "tile in tile" look */
.client-home-cards .card {
    border: none !important;
    box-shadow: 0 4px 25px rgba(91, 33, 182, 0.08);
    border-radius: var(--global--box-border-radius);
    overflow: hidden;
}

.client-home-cards .card:hover {
    box-shadow: 0 8px 35px rgba(91, 33, 182, 0.14);
}

.client-home-cards .card .card-body {
    border: none;
}

/* Sidebar & KB */
.sidebar .list-group-item .badge {
    font-size: 11px;
    line-height: 11px;
}

.primary-content .alert .btn-xs {
    padding: 2px 8px;
}

/* Domains */
.domain-renewals .domain-renewal .label {
    border-radius: var(--global--button-border-radius);
    padding: 4px 10px;
}

.domain-renewals .domain-renewal .label-info {
    background-color: var(--global--color-light-violet);
}

.table-striped .label-info {
    background-color: var(--global--color-strong-red);
    padding: .2em .6em 0.2em;
}

/* Card titles */
.primary-content .card-title {
    font-size: 28px;
    line-height: 34px;
    color: var(--global--color-primary);
}

.primary-content .panel-title {
    color: var(--global--color-white);
}

.primary-content .client-home-cards .card-title {
    font-size: 16px;
    line-height: 20px;
}

.primary-content .card .h5 {
    color: var(--global--color-primary);
}

.primary-content .card .list-group-flush a {
    color: var(--global--color-primary);
}

.primary-content .card .list-group-flush .list-group-item i {
    position: absolute;
    left: 14px;
    top: 16px;
}

.primary-content .card .list-group-flush .list-group-item {
    padding: 12px 20px 12px 40px;
}

.kb-article-item small {
    padding-left: 0;
    color: var(--global--color-dark-grayish-blue);
}

.col-md-2 .btn:hover {
    color: var(--global--color-white) !important;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
}

/* ============================================
   RESPONSIVE — 1200px+ (min-width)
   ============================================ */

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
        margin: auto;
    }

    .top-bar-section .container {
        max-width: 1170px;
        margin: auto;
    }

    .topbar .container {
        max-width: 1170px;
        margin: auto;
    }

    header .navbar .container {
        max-width: 1170px;
        margin: auto;
    }

    .hostiko-banner-whmcs .container {
        max-width: 1560px;
        margin: auto;
    }

    .footer-section .container,
    .footer .container {
        max-width: 1690px;
        margin: auto;
    }
}

/* ============================================
   RESPONSIVE — 1440px
   ============================================ */

@media screen and (max-width:1440px) {
    section#main-body {
        padding: 90px 0 100px;
    }

    .hostiko-banner-whmcs {
        padding: 70px 0;
    }

    .hostiko-banner-whmcs.inner-page {
        padding: 0;
    }

    .hostiko-banner-whmcs .title-heading {
        font-size: 46px !important;
        line-height: 52px !important;
        margin-bottom: 14px;
    }

    .hostiko-banner-whmcs .title-text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .hero-price-amount {
        font-size: 32px;
    }

    #header .navbar-collapse ul li a:hover {
        background-color: transparent !important;
    }

    .primary-content .card-title {
        font-size: 26px;
        line-height: 32px;
    }

    .primary-content .client-home-cards .card-title {
        font-size: 16px;
        line-height: 20px;
    }

    /* Search */
    .hostiko-domain-search .home-domain-search {
        padding: 55px 0px;
    }

    /* Pricing Carousel */
    .pricing-carousel {
        padding: 60px 0 80px;
    }

    .pricing-carousel .tab-content .item {
        margin: 30px 5px 0;
    }

    .pricing-carousel .owl-stage-outer {
        overflow: hidden;
    }

    .pricing-carousel {
        overflow: visible;
    }

    /* Mobile pricing adjustments */
    .pricing-carousel .tab-content .item header {
        padding: 16px 16px 0;
    }
    .pricing-carousel .tab-content .item .product-pricing {
        padding: 8px 16px 12px;
    }
    .pricing-carousel .tab-content .item .product-desc {
        padding: 0 16px;
    }
    .pricing-carousel .tab-content .item footer {
        padding: 12px 16px 16px !important;
    }
    .pf-highlight {
        padding: 0 16px 8px;
        gap: 6px;
    }
    .pf-highlight-item {
        padding: 8px 6px 6px;
        border-radius: 8px;
    }
    .pf-highlight-val {
        font-size: 13px;
    }
    .pf-highlight-label {
        font-size: 7px;
        letter-spacing: 0.3px;
    }
    .pricing-carousel .tab-content .item.item--popular {
        transform: scale(1);
    }
    .pricing-carousel .tab-content .item.item--popular:hover {
        transform: translateY(-4px);
    }
    .pricing-carousel .tab-content .item.item--popular header {
        border-radius: 19px 19px 0 0;
    }
    .product-features-list li {
        font-size: 13px;
    }

    /* Swipe hint arrows — added via JS */
    .pricing-carousel .tab-pane {
        position: relative;
    }

    .carousel-fade-left,
    .carousel-fade-right {
        position: static;
        display: inline-flex !important;
        width: 40px;
        height: 40px;
        z-index: 2;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        background: #fff;
        border: 1px solid rgba(91, 33, 182, 0.15);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(91, 33, 182, 0.10);
        margin: 0 6px;
    }

    .carousel-fade-left:active,
    .carousel-fade-right:active {
        background: var(--global--color-strong-violet);
        transform: scale(0.92);
    }

    .carousel-fade-left:active i,
    .carousel-fade-right:active i {
        color: #fff;
    }

    .carousel-fade-left i,
    .carousel-fade-right i {
        color: var(--global--color-strong-violet);
        font-size: 14px;
    }

    .carousel-fade-left.is-hidden,
    .carousel-fade-right.is-hidden {
        visibility: hidden;
    }

    /* Arrow row below carousel */
    .carousel-nav-row {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
        gap: 12px;
    }

    /* Hide dots on mobile — arrows are enough */
    .pricing-carousel .tab-content .owl-carousel .owl-dots {
        display: none !important;
    }

    /* New Sections */
    .features-grid {
        padding: 70px 0 80px;
    }

    .trust-stats {
        padding: 50px 0;
    }

    .trust-stat-number {
        font-size: 38px;
    }

    .testimonials-section {
        padding: 70px 0 80px;
    }

    .bottom-cta {
        padding: 70px 0;
    }

    .bottom-cta-content h2 {
        font-size: 38px;
    }

    /* Footer */
    .footer-section {
        padding: 0 0 0;
    }

    .footer-section .footer-leftcircle {
        display: none;
    }

    .footer-section .middle_portion .about_list {
        padding-left: 0;
    }

    .footer-section .cta-con {
        padding: 50px 0;
    }

    .footer-section .footer-outer-con {
        padding: 70px 0 60px;
    }

    .footer-section .cta-content h2 {
        font-size: 36px;
    }

    footer.footer {
        padding: 10px 0 10px;
    }
}

/* ============================================
   RESPONSIVE — 1199px
   ============================================ */

@media screen and (max-width:1199px) {
    #main-body h2 {
        font-size: 36px;
        line-height: 36px;
    }

    section#main-body {
        padding: 80px 0 80px;
    }

    /* Header */
    #header.header .topbar {
        padding: 6px 0 10px 0;
    }

    .hostiko-banner-whmcs {
        padding: 70px 0;
    }

    .hostiko-banner-whmcs.inner-page {
        padding: 0;
    }

    #header .navbar.navbar-light {
        padding: 12px 0 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        margin-bottom: -79px;
    }

    header#header.header .navbar .container .navbar-brand img,
    #header .navbar-brand img {
        width: 200px !important;
        min-width: 200px !important;
        max-width: none !important;
    }

    #header .topbar,
    #header .header-area,
    #header.header,
    #header .main-header {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .hostiko-banner-whmcs .title-heading {
        font-size: 50px !important;
        line-height: 54px !important;
        margin-bottom: 20px;
    }

    .hostiko-banner-whmcs .title-text {
        padding-right: 0;
        margin-bottom: 22px;
    }

    .hostiko-banner-whmcs .breadcrumb {
        padding: 15px 30px;
    }

    .hostiko-banner-whmcs .image .banner-image {
        top: -64px;
        right: 50px;
    }

    .hostiko-banner-whmcs .image .banner-image img {
        width: auto;
    }

    .navbar-expand-xl .navbar-nav {
        align-items: initial;
    }

    header#header.header .main-navbar-wrapper {
        position: absolute;
        top: 78px;
        right: 16px;
        width: 280px;
        background: var(--global--color-white);
        z-index: 4;
        border-radius: 16px;
        padding: 16px 12px !important;
        box-shadow: 0 15px 50px rgba(91, 33, 182, 0.18);
        border: 1px solid rgba(91, 33, 182, 0.06);
        display: none;
    }

    header#header.header .main-navbar-wrapper:has(.navbar-collapse.collapse.show) {
        display: block !important;
    }

    #header.header .search {
        border: 1px solid var(--global--color-very-light-gray) !important;
        border-radius: var(--global--button-border-radius);
    }

    #header .navbar-collapse a {
        font-size: 15px;
        font-weight: 500;
        padding: 11px 16px !important;
        margin: 2px 4px;
        border-bottom: none;
        color: var(--global--color-primary);
        text-transform: none;
        letter-spacing: 0;
        transition: color 0.2s ease, background 0.2s ease;
        border-radius: 10px;
    }

    #header .navbar-collapse a::after {
        display: none !important;
    }

    /* Active/open parent item — override yellow from theme */
    #header .navbar-collapse .nav-item.show > a,
    #header .navbar-collapse .nav-item.active > a,
    #header .navbar-collapse .navbar-nav > li.active > a,
    #header .navbar-collapse .navbar-nav > li.show > a {
        color: var(--global--color-strong-violet) !important;
        background: rgba(91, 33, 182, 0.06) !important;
        border-color: transparent !important;
    }

    #header .navbar-collapse ul li a:hover {
        color: var(--global--color-strong-violet);
        background: rgba(91, 33, 182, 0.06) !important;
    }

    #header #mainNavbar .navbar-nav #Primary_Navbar-Contact_Us {
        padding: 8px 16px 4px;
    }

    #header #mainNavbar .navbar-nav #Primary_Navbar-Contact_Us a {
        display: block !important;
        color: var(--global--color-white) !important;
        padding: 12px 20px !important;
        background: linear-gradient(135deg, #5b21b6, #7c3aed) !important;
        border-radius: 12px;
        border: none;
        font-size: 13px;
        font-weight: 600;
        margin: 0;
        text-align: center;
        letter-spacing: 0.3px;
        box-shadow: 0 3px 12px rgba(91, 33, 182, 0.25);
    }

    #header #mainNavbar .navbar-nav #Primary_Navbar-Contact_Us a:hover {
        background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
        color: var(--global--color-white) !important;
        box-shadow: 0 5px 18px rgba(91, 33, 182, 0.35);
    }

    #header .dropdown-menu {
        position: relative;
        top: 0;
        border-radius: 12px;
        border: none;
        background: transparent;
        margin: 4px 0 4px 12px;
        padding: 4px 0;
        box-shadow: none;
        border-left: 2px solid rgba(91, 33, 182, 0.12);
    }

    /* Hide separator items (-----) in dropdown */
    #header .dropdown-menu .nav-item a[href="#"],
    #header .dropdown-menu .dropdown-divider,
    #header .dropdown-menu a:empty {
        display: none !important;
    }

    #header .main-navbar-wrapper .dropdown-menu a {
        font-size: 13px;
        font-weight: 400;
        border: none;
        padding: 8px 14px 8px 16px !important;
        margin: 1px 4px;
        line-height: 1.4;
        position: relative;
        text-transform: none;
        color: #6b7280 !important;
        border-radius: 8px;
    }

    #header .main-navbar-wrapper .dropdown-menu a::before {
        display: none;
    }

    #header .main-navbar-wrapper .dropdown-menu a:hover {
        color: var(--global--color-strong-violet) !important;
        background: rgba(91, 33, 182, 0.06) !important;
    }

    /* Injected topbar items in mobile dropdown */
    .topbar-injected {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px 8px;
        border-top: 1px solid #f3f0ff;
        margin-top: 4px;
    }

    .topbar-injected li a {
        padding: 10px 16px !important;
        border-bottom: none;
        border-radius: 10px !important;
        font-size: 13px !important;
        color: var(--global--color-primary) !important;
        background: transparent !important;
    }

    .topbar-injected li a:hover {
        color: var(--global--color-strong-violet) !important;
        background: rgba(91, 33, 182, 0.06) !important;
    }

    .topbar-injected .cart-btn {
        padding: 10px 14px !important;
        border-radius: 10px !important;
        background: transparent !important;
    }

    /* Search */
    .hostiko-domain-search .home-domain-search {
        padding: 50px 0px 40px;
    }

    .home-domain-search .input-group-wrapper {
        margin: 22px 0 0;
    }

    /* Pricing Carousel */
    .pricing-carousel {
        padding: 70px 0 70px;
    }

    .pricing-carousel h2 {
        font-size: 36px;
        line-height: 36px;
    }

    .pricing-carousel .nav-tabs {
        padding-bottom: 25px;
    }

    .pricing-carousel .nav-tabs:after {
        width: 83%;
        bottom: 24px;
    }

    .pricing-carousel .nav-tabs .nav-link {
        padding: 22px 16px;
    }

    .pricing-carousel .tab-content .item {
        margin: 25px 6px 0;
    }

    .pricing-carousel .tab-content .item .product-desc p {
        margin-bottom: 12px;
    }

    .pricing-carousel .tab-content .item .product-desc ul {
        margin-bottom: 25px;
    }

    .pricing-carousel .tab-content .item .product-pricing {
        margin-bottom: 15px;
    }

    .pricing-carousel .btn-success {
        padding: 10px;
    }

    /* New Sections */
    .section-heading {
        font-size: 36px;
        line-height: 42px;
    }

    .features-grid {
        padding: 60px 0 70px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .trust-stats {
        padding: 45px 0;
    }

    .trust-stat-number {
        font-size: 36px;
    }

    .testimonials-section {
        padding: 60px 0 70px;
    }

    .bottom-cta {
        padding: 60px 0;
    }

    .bottom-cta-content h2 {
        font-size: 36px;
    }

    /* Boxes */
    .action-icon-btns a {
        font-size: 16px;
        line-height: 22px;
        padding: 25px 10px 35px;
    }

    /* Footer */
    h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .footer-section .middle_portion .links h4 {
        margin-bottom: 25px;
    }

    /* Copyright */
    footer.footer .btn {
        padding: 10px 11px;
        margin-right: 6px;
    }

    footer.footer .nav-link {
        padding: 10px 22px;
    }

    footer.footer .copyright {
        padding-top: 10px;
    }

    .footer-section {
        padding: 0;
    }

    .footer-section .cta-con {
        padding: 40px 0;
    }

    .footer-section .cta-content h2 {
        font-size: 34px;
    }

    .footer-section .cta-con .secondary-button a {
        font-size: 15px;
        padding: 13px 30px;
    }

    /* Domain pricing */
    .domain_pricing ul li {
        padding: 7px 10px 11px;
    }

    .domain_pricing .view_all {
        padding: 15px 20px;
    }

    .footer-section .middle_portion .links.community_list .form-group input {
        margin-bottom: 20px;
    }

    .footer-section .middle_portion .links h4 {
        font-size: 20px;
        line-height: 20px;
    }

    .footer-section .middle_portion .links li {
        margin-bottom: 10px;
    }
}

/* ============================================
   RESPONSIVE — 991px
   ============================================ */

@media screen and (max-width:991px) {
    #main-body h2 {
        font-size: 32px;
        line-height: 32px;
    }

    h1 {
        font-size: 34px !important;
        line-height: 38px !important;
    }

    section#main-body {
        padding: 60px 0 60px;
    }

    .main-header {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .main-header .navbar-toggler {
        padding: .25rem .5rem;
        background: linear-gradient(135deg, #5b21b6, #7c3aed);
        border: none;
        border-radius: 8px;
    }

    .main-header .navbar-toggler:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
    }

    .main-header .navbar-toggler-icon {
        background: url(assets/images/mobile_toogle_button.svg);
    }

    .main-header .navbar-collapse {
        position: absolute;
        right: 0;
        top: 100%;
        background-color: var(--global--color-white);
        width: 30%;
        padding: 10px 0;
        z-index: 9;
        border-radius: var(--global--dropdown-border-radius);
        box-shadow: 0 10px 40px rgba(91, 33, 182, 0.15);
    }

    .main-header ul li a {
        padding: 10px 20px !important;
        color: var(--global--color-primary);
    }

    .primary-content a {
        margin-bottom: 10px;
    }

    /* Banner */
    .hostiko-banner-whmcs {
        padding: 50px 0;
    }

    .hostiko-banner-whmcs.inner-page {
        padding: 0;
    }

    .inner-banner-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 0;
        gap: 12px;
    }

    .inner-page-banner .title-heading {
        font-size: 22px !important;
        line-height: 28px !important;
        white-space: normal;
    }

    header#header.header .navbar .container .navbar-brand img,
    #header .navbar-brand img {
        width: 200px !important;
        min-width: 200px !important;
        max-width: none !important;
    }

    .hostiko-banner-whmcs .master-breadcrumb,
    .hostiko-banner-whmcs .breadcrumb {
        text-align: center;
    }

    .hostiko-banner-whmcs .column-text {
        width: 100%;
    }

    .hostiko-banner-whmcs .title-heading {
        font-size: 36px !important;
        line-height: 42px !important;
        margin-bottom: 12px;
    }

    .hostiko-banner-whmcs .title-text {
        padding: 0;
        margin-bottom: 16px;
        font-size: 15px;
        max-width: 100%;
    }

    .hero-price-tag {
        padding: 10px 20px;
    }

    .hero-price-amount {
        font-size: 28px;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .title-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hostiko-banner-whmcs .breadcrumb {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 28px;
        display: inline-flex;
        max-width: none;
        justify-content: center;
    }

    .banner-decor-1 {
        width: 400px;
        height: 400px;
    }

    .banner-decor-2 {
        width: 300px;
        height: 300px;
    }

    /* Domain search */
    .hostiko-domain-search .home-domain-search {
        padding: 50px 0 50px;
    }

    .hostiko-domain-search .home-domain-search h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .tld-card {
        min-width: 95px;
        padding: 12px 16px;
    }

    .tld-card .tld-name {
        font-size: 17px;
    }

    .tld-card .tld-price {
        font-size: 14px;
    }

    /* Pricing Carousel */
    .pricing-carousel {
        padding: 50px 0 60px;
    }

    .pricing-carousel h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .pricing-carousel .nav-tabs .nav-link {
        padding: 15px 10px;
        font-size: 14px;
    }

    /* New Sections */
    .section-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .features-grid {
        padding: 50px 0 60px;
    }

    .features-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-stats {
        padding: 40px 0;
    }

    .trust-stats-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .trust-stat-item {
        width: 48%;
        padding: 15px 10px;
    }

    .trust-stat-number {
        font-size: 32px;
    }

    .trust-stat-label {
        font-size: 12px;
    }

    .testimonials-section {
        padding: 50px 0 60px;
    }

    .testimonials-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-row .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .bottom-cta {
        padding: 50px 0;
    }

    .bottom-cta-content h2 {
        font-size: 32px;
    }

    .bottom-cta-content p {
        font-size: 16px;
    }

    .btn-cta-gold {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Footer */
    .footer-section .footer-outer-con {
        padding: 50px 0 50px;
    }

    .footer-section .middle_portion .links h4 {
        margin-bottom: 18px;
    }

    .footer-bottom-bar {
        text-align: center;
    }

    .footer-payment-icons {
        justify-content: center;
        margin-top: 12px;
    }

    .footer-section .cta-content h2 {
        font-size: 30px;
    }

    /* Copyright */
    footer.footer {
        text-align: center;
    }

    footer.footer .copyright {
        float: none;
        display: block;
        padding-top: 15px;
    }

    /* Domain pricing */
    .domain_pricing {
        flex-wrap: wrap;
    }

    .domain_pricing ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .domain_pricing ul li {
        margin-bottom: 6px;
    }
}

/* ============================================
   RESPONSIVE — 767px
   ============================================ */

@media screen and (max-width:767px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .pricing-carousel {
        overflow: hidden;
    }

    #main-body h2 {
        font-size: 28px;
        line-height: 32px;
    }

    h1 {
        font-size: 30px !important;
        line-height: 34px !important;
    }

    section#main-body {
        padding: 50px 0 50px;
    }

    .main-header .navbar-collapse {
        width: 55%;
    }

    /* Banner */
    .hostiko-banner-whmcs {
        padding: 40px 0;
    }

    .hostiko-banner-whmcs.inner-page {
        padding: 0;
    }

    .inner-banner-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 0;
        gap: 10px;
    }

    .inner-page-banner .title-heading {
        font-size: 20px !important;
        line-height: 26px !important;
    }

    .hostiko-banner-whmcs .title-heading {
        font-size: 28px !important;
        line-height: 34px !important;
    }

    .hostiko-banner-whmcs .title-text {
        font-size: 14px;
        line-height: 22px;
        padding: 0;
    }

    .hostiko-banner-whmcs .breadcrumb {
        font-size: 13px;
        padding: 10px 20px;
    }

    .banner-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-price-tag {
        padding: 8px 16px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-price-amount {
        font-size: 26px;
    }

    .hero-price-label {
        font-size: 12px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-trust-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 4px 16px;
    }

    .hero-trust-item {
        white-space: nowrap;
        font-size: 11px;
    }

    .banner-decor-grid {
        background-size: 20px 20px;
    }

    /* Store product cards mobile — styles now in custom.css */

    /* New Sections at 767px */
    .section-heading {
        font-size: 28px;
        line-height: 34px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .features-grid {
        padding: 40px 0 50px;
    }

    .features-grid-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .trust-stats {
        padding: 35px 0;
    }

    .trust-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .trust-stat-item {
        width: 100%;
    }

    .trust-stat-number {
        font-size: 30px;
    }

    .testimonials-section {
        padding: 40px 0 50px;
    }

    .testimonials-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-row .testimonial-card:last-child {
        max-width: 100%;
    }

    .bottom-cta {
        padding: 40px 0;
    }

    .bottom-cta-content h2 {
        font-size: 26px;
    }

    .bottom-cta-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-cta-gold {
        padding: 14px 28px;
        font-size: 16px;
    }

    /* Footer at 767px */
    .footer-bottom-bar .row {
        text-align: center;
    }

    .footer-payment-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-copyright {
        text-align: center;
    }

    /* Domain search */
    .hostiko-domain-search .home-domain-search {
        padding: 40px 15px;
    }

    .hostiko-domain-search .home-domain-search h2 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .home-domain-search .input-group-wrapper {
        margin: 15px 0 0;
    }

    .domain-tld-cards {
        gap: 8px;
    }

    .tld-card {
        min-width: 85px;
        padding: 10px 14px;
    }

    .tld-card .tld-name {
        font-size: 16px;
    }

    .tld-card .tld-price {
        font-size: 13px;
    }

    /* Pricing Carousel */
    .pricing-carousel {
        padding: 40px 0 50px;
    }

    .pricing-carousel h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .pricing-carousel .nav-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .pricing-carousel .nav-tabs:after {
        display: none;
    }

    .pricing-carousel .nav-tabs .nav-link {
        padding: 12px 10px;
        font-size: 13px;
    }

    /* Footer */
    .footer-section .footer-outer-con {
        padding: 40px 0 40px;
    }

    .footer-section .middle_portion .links h4 {
        font-size: 18px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .footer-section .cta-content h2 {
        font-size: 26px;
    }

    /* Cards */
    .primary-content .card-title {
        font-size: 22px;
        line-height: 28px;
    }

    .action-icon-btns a {
        font-size: 14px;
        line-height: 20px;
        padding: 20px 8px 30px;
    }

    .action-icon-btns a .ico-container i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px;
    }
}

/* ============================================
   RESPONSIVE — 575px
   ============================================ */

@media screen and (max-width:575px) {
    #main-body h2 {
        font-size: 24px;
        line-height: 28px;
    }

    h1 {
        font-size: 26px !important;
        line-height: 30px !important;
    }

    section#main-body {
        padding: 40px 0 40px;
    }

    .main-header .navbar-collapse {
        width: 75%;
    }

    /* Banner */
    .hostiko-banner-whmcs {
        padding: 25px 0 30px;
    }

    .hostiko-banner-whmcs .title-heading {
        font-size: 24px !important;
        line-height: 30px !important;
    }

    .hostiko-banner-whmcs .title-text {
        font-size: 13px;
        line-height: 20px;
    }

    .banner-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-price-tag {
        padding: 8px 14px;
        gap: 6px;
        margin-bottom: 16px;
    }

    .hero-price-amount {
        font-size: 22px;
    }

    .hero-price-label {
        font-size: 11px;
    }

    .hero-price-amount small {
        font-size: 13px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 11px 24px;
        font-size: 14px;
    }

    .hero-trust-row {
        flex-wrap: wrap;
        gap: 2px 14px;
        justify-content: center;
    }

    .hero-trust-item {
        font-size: 11px;
        white-space: nowrap;
    }

    .banner-decor-1 {
        width: 250px;
        height: 250px;
    }

    /* Global mobile padding */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Domain search */
    .hostiko-domain-search .home-domain-search {
        padding: 30px 12px;
    }

    .hostiko-domain-search .home-domain-search h2 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .domain-search-subtitle {
        font-size: 13px;
    }

    .hostiko-domain-search .home-domain-search .input-group-wrapper {
        padding: 0;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .hostiko-domain-search .home-domain-search .input-group-wrapper .form-control,
    .hostiko-domain-search .home-domain-search .input-group-wrapper input {
        width: 100% !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
        padding: 14px 16px !important;
        border: 1px solid rgba(91, 33, 182, 0.15) !important;
        box-shadow: 0 2px 8px rgba(91, 33, 182, 0.06) !important;
    }

    .hostiko-domain-search .home-domain-search .input-group {
        flex-wrap: wrap;
    }

    .hostiko-domain-search .home-domain-search .input-group .input-group-append,
    .hostiko-domain-search .home-domain-search .input-group .input-group-btn {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .hostiko-domain-search .home-domain-search .input-group .input-group-append,
    .hostiko-domain-search .home-domain-search .input-group .input-group-btn {
        display: flex;
        gap: 8px;
        width: 100%;
    }

    .hostiko-domain-search .home-domain-search .btn-primary,
    .hostiko-domain-search .home-domain-search .btn-success {
        padding: 14px 18px;
        font-size: 14px;
        flex: 1;
        border-radius: 10px !important;
    }

    /* TLD cards — horizontal scroll */
    .domain-tld-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 8px;
        padding-top: 12px;
        padding-bottom: 4px;
        margin-left: -4px;
        margin-right: -4px;
    }

    .domain-tld-cards::-webkit-scrollbar {
        display: none;
    }

    .tld-card {
        min-width: 90px;
        flex-shrink: 0;
        padding: 10px 12px;
    }

    .tld-card .tld-name {
        font-size: 15px;
    }

    .tld-card .tld-price {
        font-size: 12px;
    }

    .tld-card .tld-tag {
        font-size: 8px;
        padding: 2px 6px;
    }

    /* Pricing Carousel */
    .pricing-carousel {
        padding: 30px 0 40px;
    }

    .pricing-carousel h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .pricing-carousel .tab-content .item {
        margin: 20px 3px 0;
    }

    .pricing-carousel .tab-content .item {
        border-radius: 16px;
    }

    .pricing-carousel .tab-content .item header {
        padding: 20px 20px 0;
    }

    .pricing-carousel .tab-content .item .product-pricing {
        padding: 10px 20px 14px;
    }

    .pricing-carousel .tab-content .item .product-desc {
        padding: 0 20px;
    }

    .pricing-carousel .tab-content .item footer {
        padding: 14px 20px 20px !important;
    }

    .pricing-carousel .tab-content .item.item--popular header {
        border-radius: 14px 14px 0 0;
    }

    .price-hero {
        font-size: 26px;
    }

    .pf-highlight {
        padding: 0 20px 10px;
        gap: 8px;
    }

    .pf-highlight-val {
        font-size: 15px;
    }

    .pf-highlight-label {
        font-size: 8px;
    }

    .product-features-list .pfl-no .pfl-text {
        font-size: 12px;
    }

    /* New Sections at 575px */
    .section-heading {
        font-size: 24px;
        line-height: 30px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .features-grid {
        padding: 30px 0 40px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-card-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .feature-card h4 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .trust-stats {
        padding: 30px 0;
    }

    .trust-stat-number {
        font-size: 26px;
    }

    .trust-stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .testimonials-section {
        padding: 30px 0 40px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .bottom-cta {
        padding: 30px 0;
    }

    .bottom-cta-content h2 {
        font-size: 22px;
    }

    .bottom-cta-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-cta-gold {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Footer */
    .footer-section .footer-outer-con {
        padding: 30px 0 30px;
    }

    .footer-section .middle_portion .links h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section .cta-content h2 {
        font-size: 22px;
    }

    .footer-section .cta-con .secondary-button a {
        font-size: 14px;
        padding: 12px 25px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .footer-payment-icons i {
        font-size: 22px;
    }

    /* Copyright */
    footer.footer .btn {
        padding: 8px;
        font-size: 12px;
    }

    footer.footer .nav-link {
        padding: 8px 16px;
        font-size: 12px;
    }

    footer.footer .copyright {
        font-size: 12px;
    }

    /* Cards */
    .primary-content .card-title {
        font-size: 18px;
        line-height: 24px;
    }

    .action-icon-btns a {
        font-size: 13px;
        padding: 15px 6px 25px;
    }
}
