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

:root {
    --hs-primary: #FF6E41;
    --hs-primary-dark: #E85A2F;
    --hs-primary-light: #FF9068;
    --hs-primary-glow: rgba(255,110,65,0.35);
    --hs-accent: #FF6E41;
    --hs-accent-dark: #E85A2F;
    --hs-accent-glow: rgba(255,110,65,0.35);
    --hs-secondary: #0EA5E9;
    --hs-dark: #2A363F;
    --hs-dark-2: #1E2A33;
    --hs-dark-3: #344350;
    --hs-gray-900: #1A252E;
    --hs-gray-700: #4A5568;
    --hs-gray-500: #8896A4;
    --hs-gray-300: #CBD5E0;
    --hs-gray-100: #F0F3F6;
    --hs-white: #FFFFFF;
    --hs-bg: #F7F9FB;
    --hs-gradient: linear-gradient(135deg, #FF6E41 0%, #FF9068 100%);
    --hs-gradient-accent: linear-gradient(135deg, #FF6E41 0%, #FF8C5A 50%, #FFB347 100%);
    --hs-radius: 16px;
    --hs-radius-lg: 24px;
    --hs-radius-pill: 40px;
    --hs-shadow: 0 2px 8px rgba(42,54,63,0.06);
    --hs-shadow-lg: 0 12px 32px rgba(42,54,63,0.1);
    --hs-shadow-xl: 0 24px 48px rgba(42,54,63,0.12);
    --hs-font-heading: 'Poppins', sans-serif;
    --hs-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =================== GLOBAL =================== */
body {
    font-family: var(--hs-font-body);
    background-color: var(--hs-bg);
    color: var(--hs-gray-700);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hs-font-heading);
    font-weight: 700;
    color: var(--hs-dark);
}

a {
    text-decoration: none;
    color: var(--hs-primary);
    transition: all 0.25s ease;
}
a:hover {
    color: var(--hs-primary-dark);
    text-decoration: none;
}

body.primary-bg-color,
section#main-body {
    background-color: var(--hs-bg);
}
section#main-body {
    min-height: auto;
    padding: 0;
}

.hs-overline {
    display: inline-block;
    background: rgba(255,110,65,0.08);
    color: var(--hs-primary);
    padding: 6px 18px;
    border-radius: var(--hs-radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: var(--hs-font-body);
}

.hs-heading-2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hs-section-sub {
    color: var(--hs-gray-500);
    font-size: 1.05rem;
    max-width: 560px;
}
.text-center .hs-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.hs-section-header {
    margin-bottom: 48px;
}

/* =================== BUTTONS =================== */
.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hs-font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--hs-radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.hs-btn i { font-size: 13px; transition: transform 0.25s ease; }
.hs-btn:hover i { transform: translateX(3px); }

.hs-btn-accent {
    background: var(--hs-gradient-accent);
    color: var(--hs-white) !important;
    box-shadow: 0 4px 20px var(--hs-accent-glow);
}
.hs-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--hs-accent-glow);
    color: var(--hs-white) !important;
}

.hs-btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--hs-white) !important;
}
.hs-btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: var(--hs-white) !important;
}

.hs-btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* =================== HEADER =================== */
header.header .topbar {
    padding: 8px 0;
    background: linear-gradient(135deg, var(--hs-dark) 0%, var(--hs-dark-3) 100%);
}

header.header .navbar.navbar-light {
    border-bottom: 1px solid var(--hs-gray-100);
    padding: 0.5rem 0;
    background: var(--hs-white);
}

header.header .main-navbar-wrapper {
    padding: 12px 0;
    background: var(--hs-white);
    border-bottom: 1px solid var(--hs-gray-100);
}

header.header .logo-img {
    max-height: 42px;
}

header.header .main-navbar-wrapper .navbar-nav a {
    font-size: 15px;
    color: var(--hs-gray-700);
    font-weight: 500;
    font-family: var(--hs-font-body);
    padding-right: 0 !important;
    margin: 0 16px;
    position: relative;
    transition: all 0.25s ease;
    text-decoration: none;
    padding-bottom: 5px;
}
header.header .main-navbar-wrapper .navbar-nav a:hover {
    color: var(--hs-primary);
}
header.header .main-navbar-wrapper .navbar-nav a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--hs-gradient);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
header.header .main-navbar-wrapper .navbar-nav a:hover::before {
    width: 100%;
}

header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu {
    padding: 8px 0;
    margin-top: 10px;
    background-color: var(--hs-white);
    border: 1px solid var(--hs-gray-100);
    border-radius: var(--hs-radius);
    box-shadow: var(--hs-shadow-lg);
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li {
    padding: 2px 12px;
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li:hover {
    background-color: var(--hs-gray-100);
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li a {
    margin: 0;
    font-size: 14px;
    color: var(--hs-gray-700);
    padding: 6px 8px !important;
    display: block;
}
header.header .main-navbar-wrapper .navbar-nav ul.dropdown-menu li a::before,
.main-navbar-wrapper .navbar-nav ul.dropdown-menu .dropdown-divider {
    display: none;
}

/* Login / Register buttons */
header.header a.login-btn-20i,
header.header a.register-btn-20i {
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--hs-radius-pill);
    padding: 9px 24px;
    text-decoration: none;
    border: none;
    transition: all 0.25s ease;
    letter-spacing: 0;
    font-family: var(--hs-font-body);
}
header.header a.login-btn-20i {
    background: var(--hs-primary);
    color: var(--hs-white) !important;
    margin-right: 10px;
}
header.header a.login-btn-20i:hover {
    background: var(--hs-primary-dark);
    color: var(--hs-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,110,65,0.3);
}
header.header a.register-btn-20i {
    background: var(--hs-dark);
    color: var(--hs-white) !important;
}
header.header a.register-btn-20i:hover {
    background: var(--hs-dark-2);
    color: var(--hs-white) !important;
    transform: translateY(-1px);
}

.navbar.navbar-light.mobile-bar { display: none; }

header.header .main-navbar-wrapper .cart-btn span.badge.badge-info {
    position: absolute;
    top: 1px;
    right: 6px;
    background: var(--hs-accent);
    border-radius: 100%;
    font-size: 10px;
    padding: 3px;
    width: 15px;
    height: 15px;
}
header.header .toolbar .nav-link .badge {
    background-color: var(--hs-accent);
}
.right-part-20i {
    display: flex;
    align-items: center;
}
.right-part-20i a.search-20i { margin: 0 17px; }
.right-part-20i .cartbtn-20i { margin-right: 22px; }
li#Secondary_Navbar-Account ul.dropdown-menu.dropdown-menu-right.show {
    position: absolute;
}

/* Topbar notification carousel */
div#carousel-20i-notification {
    width: 100%;
    text-align: center;
    height: 26px;
}
div#carousel-20i-notification .carousel-item {
    margin: auto;
    float: none;
}
div#carousel-20i-notification .carousel-item a {
    color: #fff;
    text-decoration: none;
    max-width: 60%;
}
div#carousel-20i-notification .carousel-item a span {
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    display: inline-block;
}
div#carousel-20i-notification .carousel-item a i {
    position: relative;
    top: -6px;
}
div#carousel-20i-notification .carousel-control-next-icon,
div#carousel-20i-notification .carousel-control-prev-icon {
    width: 10px;
}

header.header .main-navbar-wrapper .cart-btn { position: relative; }
header.header .main-navbar-wrapper .cart-btn i { font-weight: 700; }
header.header .navbar.navbar-expand-xl.main-navbar-wrapper.login-20i-header { padding: 7px 0; }
header.header .main-navbar-wrapper div#mainNavbar { padding-left: 0; padding-right: 0; }

.form-knowldegbase-20i .input-group.search,
.form-knowldegbase-20i-without-login .input-group.search,
.form-knowldegbase-20i,
.form-knowldegbase-20i-without-login {
    width: 60%;
    margin-left: auto;
}

/* =================== HERO SECTION =================== */
.hs-hero {
    background: linear-gradient(160deg, #1A252E 0%, #2A363F 40%, #344350 70%, #2A363F 100%);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.hs-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.hs-glow-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,110,65,0.15) 0%, transparent 70%);
}
.hs-glow-2 {
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246,122,60,0.12) 0%, transparent 70%);
}

.hs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1020px;
    margin: 0 auto;
}

.hs-promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(246,122,60,0.12);
    border: 1px solid rgba(246,122,60,0.25);
    color: #FBB86C;
    padding: 8px 22px;
    border-radius: var(--hs-radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    font-family: var(--hs-font-body);
}
.hs-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hs-accent);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hs-hero-title {
    font-family: var(--hs-font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--hs-white);
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hs-text-gradient {
    background: var(--hs-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-hero-sub {
    font-size: 1.15rem;
    color: var(--hs-gray-300);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hs-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

/* Hero Stats Bar */
.hs-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--hs-radius-lg);
    padding: 20px 10px;
    max-width: 720px;
    margin: 0 auto;
}
.hs-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.hs-stat-num {
    font-family: var(--hs-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hs-white);
    margin-bottom: 2px;
}
.hs-stat-label {
    font-size: 12px;
    color: var(--hs-gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hs-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* =================== DOMAIN SEARCH SECTION =================== */
.hs-domain-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.hs-domain-card {
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    box-shadow: var(--hs-shadow-xl);
    padding: 0;
    overflow: hidden;
}

.hs-domain-header {
    text-align: center;
    padding: 32px 24px 8px;
}
.hs-domain-header h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.hs-domain-header p {
    color: var(--hs-gray-500);
    font-size: 0.95rem;
}

/* Domain search form overrides */
.home-domain-search {
    background: transparent !important;
}
.home-domain-search .container { padding: 0; }
.home-domain-search .p-5 h2 { display: none; }

.home-domain-search .input-group .form-control {
    border-radius: 12px 0 0 12px;
    padding: 14px 22px;
    font-size: 16px;
    border: 2px solid var(--hs-gray-100);
    height: auto;
    font-family: var(--hs-font-body);
}
.home-domain-search .input-group .form-control:focus {
    border-color: var(--hs-primary);
    box-shadow: 0 0 0 3px rgba(255,110,65,0.1);
}

.home-domain-search .btn-primary,
#frmCheckout button#btnCompleteOrder,
#frmProductDomainSelections button#btnDomainContinue {
    background: var(--hs-accent) !important;
    border-color: var(--hs-accent) !important;
    border-radius: 0 12px 12px 0;
    padding: 14px 28px;
    font-weight: 600;
    font-family: var(--hs-font-body);
}
.home-domain-search .btn-primary:hover,
#frmCheckout button#btnCompleteOrder:hover,
#frmProductDomainSelections button#btnDomainContinue:hover {
    background: var(--hs-accent-dark) !important;
    border-color: var(--hs-accent-dark) !important;
}

.home-domain-search .btn-success {
    background: var(--hs-secondary) !important;
    border-color: var(--hs-secondary) !important;
    border-radius: 0 12px 12px 0;
    padding: 14px 28px;
    font-weight: 600;
}

/* TLD logos */
ul.tld-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 16px;
}
ul.tld-logos li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tld-hm-20i {
    font-weight: 700;
    color: var(--hs-dark);
    font-size: 15px;
    font-family: var(--hs-font-heading);
}
.price-hm-20i {
    color: var(--hs-accent);
    font-weight: 600;
    font-size: 13px;
}

/* =================== HOSTING SOLUTIONS =================== */
.hs-solutions {
    padding: 80px 0;
}

.hs-solution-grid {
    display: flex;
    flex-wrap: wrap;
}

.hs-solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--hs-gray-100);
    transition: all 0.35s ease;
    text-decoration: none !important;
    color: inherit !important;
}
.hs-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hs-shadow-lg);
    border-color: rgba(255,110,65,0.12);
    color: inherit !important;
}

.hs-solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: rgba(255,110,65,0.08);
    color: var(--hs-primary);
    transition: all 0.3s ease;
}
.hs-solution-card:hover .hs-solution-icon {
    background: var(--hs-primary);
    color: var(--hs-white);
}

.hs-icon-amber {
    background: rgba(246,122,60,0.08) !important;
    color: var(--hs-accent) !important;
}
.hs-solution-card:hover .hs-icon-amber {
    background: var(--hs-accent) !important;
    color: var(--hs-white) !important;
}

.hs-icon-teal {
    background: rgba(14,165,233,0.08) !important;
    color: var(--hs-secondary) !important;
}
.hs-solution-card:hover .hs-icon-teal {
    background: var(--hs-secondary) !important;
    color: var(--hs-white) !important;
}

.hs-solution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--hs-font-heading);
}
.hs-solution-card p {
    color: var(--hs-gray-500);
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.hs-solution-cta {
    color: var(--hs-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}
.hs-solution-card:hover .hs-solution-cta {
    gap: 10px;
    color: var(--hs-primary-dark);
}

/* =================== WHY CHOOSE US / FEATURES =================== */
.hs-features {
    padding: 80px 0;
    background: var(--hs-white);
}

.hs-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hs-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--hs-gray-700);
}
.hs-check-item i {
    color: #10B981;
    font-size: 18px;
    flex-shrink: 0;
}

.hs-feat-card {
    background: var(--hs-bg);
    border-radius: var(--hs-radius-lg);
    padding: 28px 24px;
    height: 100%;
    border: 1px solid var(--hs-gray-100);
    transition: all 0.3s ease;
}
.hs-feat-card:hover {
    border-color: rgba(255,110,65,0.12);
    box-shadow: var(--hs-shadow);
    transform: translateY(-3px);
}

.hs-feat-icon {
    width: 48px;
    height: 48px;
    background: var(--hs-gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.hs-feat-icon i {
    color: var(--hs-white);
    font-size: 20px;
}

.hs-fi-purple {
    background: var(--hs-gradient) !important;
}
.hs-fi-teal {
    background: linear-gradient(135deg, #0EA5E9, #06B6D4) !important;
}
.hs-fi-amber {
    background: linear-gradient(135deg, #F59E0B, #F67A3C) !important;
}

.hs-feat-card h4 {
    font-size: 1rem;
    font-family: var(--hs-font-heading);
    margin-bottom: 8px;
}
.hs-feat-card p {
    font-size: 14px;
    color: var(--hs-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* =================== TRUST BAR =================== */
.hs-trust {
    padding: 40px 0;
    background: var(--hs-bg);
}

.hs-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hs-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hs-gray-700);
}
.hs-trust-item > i {
    font-size: 28px;
    color: var(--hs-primary);
    opacity: 0.7;
}
.hs-trust-item div strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--hs-font-heading);
    color: var(--hs-dark);
}
.hs-trust-item div span {
    font-size: 12px;
    color: var(--hs-gray-500);
}

/* =================== ACCOUNT SECTION =================== */
.hs-account {
    padding: 60px 0;
}

.hs-account-grid {
    display: flex;
    flex-wrap: wrap;
}

.hs-acc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    background: var(--hs-white);
    border-radius: var(--hs-radius-lg);
    border: 1px solid var(--hs-gray-100);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}
.hs-acc-card:hover {
    border-color: var(--hs-primary);
    transform: translateY(-4px);
    box-shadow: var(--hs-shadow-lg);
}

.hs-acc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,110,65,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hs-acc-icon i {
    font-size: 22px;
    color: var(--hs-primary);
}
.hs-acc-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--hs-gray-700);
}
.hs-acc-card:hover span {
    color: var(--hs-primary);
}

/* =================== CTA SECTION =================== */
.hs-cta {
    padding: 90px 0;
    background: linear-gradient(160deg, #1A252E 0%, #2A363F 50%, #344350 100%);
    position: relative;
    overflow: hidden;
}

.hs-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(246,122,60,0.15) 0%, rgba(255,110,65,0.08) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hs-cta .hs-heading-2 {
    color: var(--hs-white);
}
.hs-cta-sub {
    color: var(--hs-gray-300);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* =================== FOOTER =================== */
footer#footer {
    background: var(--hs-dark);
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer#footer .nav-link {
    color: var(--hs-gray-300) !important;
    font-size: 14px;
}
footer#footer .nav-link:hover {
    color: var(--hs-white) !important;
}
footer#footer .copyright {
    color: var(--hs-gray-500);
    font-size: 13px;
}
footer#footer .btn {
    color: var(--hs-gray-300);
}

/* =================== BREADCRUMB =================== */
.master-breadcrumb .breadcrumb {
    padding: 16px 0;
    font-size: 0.9rem;
    background: transparent;
}
.master-breadcrumb .breadcrumb li.breadcrumb-item a {
    font-size: 13px;
    color: var(--hs-gray-500);
}
.master-breadcrumb .breadcrumb li.breadcrumb-item.active {
    color: var(--hs-gray-700);
}

/* =================== CARDS & CLIENT AREA =================== */
.card {
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-gray-100);
    box-shadow: var(--hs-shadow);
}
.card-sidebar .collapsable-card-body .card-body { padding: 3px 25px; }
.sidebar .card.card-sidebar {
    border-radius: 0;
    background-color: var(--hs-white);
    border: 0;
    margin: 0 !important;
    border-bottom: 1px solid var(--hs-gray-100);
    padding-bottom: 20px;
    padding-top: 8px;
}
.card-footer {
    background-color: transparent;
    border-top: none;
    padding-left: 25px;
    padding-right: 25px;
}
.sidebar .card-title i:first-child { display: none; }

.card-sidebar .card-footer a.btn.btn-default.btn-sm.btn-block,
.sidebar .card-footer .btn-success {
    min-width: 110px;
    font-size: 12px;
    line-height: 26px;
    color: var(--hs-primary);
    font-weight: 600;
    border-radius: 8px;
    background-color: rgba(255,110,65,0.08);
    padding: 3px 10px;
    border: 0;
    width: auto;
    display: inline-block;
}
.card-sidebar .card-footer a.btn.btn-default.btn-sm.btn-block i,
.sidebar .card-footer .btn-success i { padding-right: 2px; }
.card-sidebar .collapsable-card-body .card-body,
.card-sidebar .collapsable-card-body .card-body strong {
    color: var(--hs-gray-500);
    font-size: 13px;
    line-height: 23px;
    font-weight: 600;
}
.card-sidebar .collapsable-card-body .card-body em { font-style: inherit; }

/* Dashboard tiles */
.tiles .row .col-6 {
    text-align: center;
    padding: 0 10px;
    margin-bottom: 20px;
}
.tiles .tile {
    border-radius: var(--hs-radius);
    border: 1px solid var(--hs-gray-100);
}
.tiles .tile .stat {
    font-size: 44px;
    line-height: 56px;
    font-weight: 700;
    margin-top: 12px;
    font-family: var(--hs-font-heading);
}
.tiles .tile .title {
    font-size: 13px;
    color: var(--hs-gray-500);
    margin-bottom: 15px;
}
.tiles .tile .highlight { display: none; }
.tiles .tile i { font-size: 20px; left: 19px; right: auto; top: 18px; }
.tiles .tile:hover i { font-size: 20px; }
.tiles .tile::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    left: 0;
    top: 0;
    margin: 6px;
}
.tiles .row .col-6:nth-of-type(1) a .stat,
.tiles .row .col-6:nth-of-type(1) a i { color: #EF4444; }
.tiles .row .col-6:nth-of-type(1) a::before { background-color: #FEE2E2; }
.tiles .row .col-6:nth-of-type(2) a .stat,
.tiles .row .col-6:nth-of-type(2) a i { color: #FF6E41; }
.tiles .row .col-6:nth-of-type(2) a::before { background-color: #FFF0EB; }
.tiles .row .col-6:nth-of-type(3) a .stat,
.tiles .row .col-6:nth-of-type(3) a i { color: #10B981; }
.tiles .row .col-6:nth-of-type(3) a::before { background-color: #D1FAE5; }
.tiles .row .col-6:nth-of-type(4) a .stat,
.tiles .row .col-6:nth-of-type(4) a i { color: var(--hs-accent); }
.tiles .row .col-6:nth-of-type(4) a::before { background-color: #FEF3C7; }
.tiles { margin-bottom: 0 !important; }

/* Client home cards */
.client-home-cards .card {
    border-top: 0;
    border-radius: var(--hs-radius);
    margin-bottom: 20px;
}
.client-home-cards .card .card-title,
.home-page-slider-panel h3 {
    font-size: 15px;
    color: var(--hs-gray-700);
    background-color: var(--hs-gray-100);
    padding: 13px 15px;
    border-radius: var(--hs-radius) var(--hs-radius) 0 0;
    font-family: var(--hs-font-heading);
}
.client-home-cards .card h3.card-title i {
    font-size: 19px;
    margin-right: 5px;
    color: var(--hs-gray-500);
}
.client-home-cards .card-header { padding: 10px 10px 0; }
.client-home-cards .card-body p,
.client-home-cards .list-group .list-group-item {
    font-size: 14px;
    color: var(--hs-gray-700);
    font-weight: 500;
}
.client-home-cards .card-body { padding: 15px 20px; }
.client-home-cards .list-group .list-group-item {
    padding: 14px 20px;
    border-color: var(--hs-gray-100);
}
.client-home-cards .list-group { border: 0 !important; }

/* =================== BUTTONS GLOBAL =================== */
.btn-primary {
    background-color: var(--hs-primary) !important;
    border-color: var(--hs-primary) !important;
    border-radius: 10px;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--hs-primary-dark) !important;
    border-color: var(--hs-primary-dark) !important;
}
.btn-success:hover,
.home-page-slider-panel .promo-banner .card-body .btn-success:hover,
.card-body.store-promoted-product .btn-success:hover {
    background-color: var(--hs-primary) !important;
    border-color: var(--hs-primary) !important;
    color: #fff !important;
}
#registration .btn-primary:hover {
    background-color: var(--hs-primary-dark) !important;
    border-color: var(--hs-primary-dark) !important;
}
.tab-content.margin-bottom div#tabOverview .product-details .product-status .product-icon i {
    color: var(--hs-primary);
}

/* DataTables */
.dataTables_wrapper .dataTables_info {
    font-size: 13px;
    color: var(--hs-gray-500);
    letter-spacing: 0.5px;
    font-weight: 600;
}

#main-body .client-home-cards .card-header .bg-color-blue:hover { color: #fff; }
.card.card-accent-emerald h3.card-title i { margin-right: 0; }
.card.card-accent-emerald .card-header .card-title,
.client-home-cards .card h3.card-title .btn-default i { color: #fff; }

#DomainSearchResults .domain-price button.btn.btn-primary.btn-add-to-cart {
    display: block;
    margin: 7px auto;
    background-color: var(--hs-dark) !important;
    border-color: var(--hs-dark) !important;
    border-radius: 10px;
}
#order-standard_cart #DomainSearchResults .domain-price button.btn-add-to-cart:hover {
    background-color: var(--hs-accent) !important;
    border-color: var(--hs-accent) !important;
}
#order-standard_cart #frmConfigureProduct .addon-products .panel-add:hover {
    background-color: var(--hs-accent) !important;
    border-color: var(--hs-accent) !important;
}
#frmCheckout button#btnCompleteOrder {
    border-radius: 10px;
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hs-hero-inner {
    animation: fadeInUp 0.8s ease-out;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 991px) {
    .hs-hero-title {
        font-size: 2.4rem;
    }
    .hs-hero {
        padding: 70px 0 80px;
    }
    .hs-heading-2 {
        font-size: 1.8rem;
    }
    .hs-hero-stats {
        max-width: 100%;
        gap: 0;
    }
    .hs-trust-bar {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hs-hero-title {
        font-size: 2rem;
    }
    .hs-hero-sub {
        font-size: 1rem;
    }
    .hs-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hs-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hs-hero-stats {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px;
    }
    .hs-stat-item {
        flex-basis: 50%;
        padding: 10px;
    }
    .hs-stat-divider {
        display: none;
    }
    .hs-trust-bar {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .hs-heading-2 {
        font-size: 1.6rem;
    }
    .hs-solutions,
    .hs-features {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hs-hero-title {
        font-size: 1.7rem;
    }
    .hs-hero {
        padding: 50px 0 60px;
    }
    .hs-promo-pill {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* =================== FULL-WIDTH HEADER =================== */
.hs-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

header.header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--hs-white);
    box-shadow: 0 1px 10px rgba(15,10,30,0.06);
}

header.header .main-navbar-wrapper {
    border-bottom: none;
}

/* =================== MEGA MENU =================== */
.hs-megamenu-parent {
    position: static !important;
}

.hs-megamenu {
    width: 100% !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 0 var(--hs-radius) var(--hs-radius) !important;
    box-shadow: 0 16px 48px rgba(15,10,30,0.12) !important;
    background: var(--hs-white) !important;
    margin-top: 0 !important;
    border-top: 2px solid var(--hs-primary) !important;
    animation: megaFadeIn 0.2s ease-out;
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.hs-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 40px 24px;
}

.hs-mega-col {
    padding: 0 20px;
    border-right: 1px solid var(--hs-gray-100);
}
.hs-mega-col:last-child {
    border-right: none;
}

.hs-mega-heading {
    font-family: var(--hs-font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--hs-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hs-gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hs-mega-heading i {
    color: var(--hs-primary);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.hs-mega-link,
.hs-megamenu .hs-mega-link,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link {
    display: block !important;
    padding: 7px 8px 7px 36px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--hs-gray-700) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border-radius: 6px !important;
    margin: 0 -8px !important;
    position: relative !important;
    border-bottom: none !important;
}
/* Kill the navbar underline on mega menu links */
.hs-mega-link::before,
.hs-megamenu .hs-mega-link::before,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    bottom: auto !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: var(--hs-primary) !important;
    transform: translateY(-50%) !important;
    transition: all 0.2s ease !important;
}
.hs-mega-link:hover,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link:hover {
    background: var(--hs-gray-100) !important;
    color: var(--hs-primary) !important;
    padding-left: 40px !important;
}
.hs-mega-link:hover::before,
header.header .main-navbar-wrapper .navbar-nav .hs-mega-link:hover::before {
    width: 5px !important;
    height: 5px !important;
}

.hs-mega-footer {
    background: var(--hs-gray-100);
    padding: 14px 40px;
    text-align: center;
    border-radius: 0 0 var(--hs-radius) var(--hs-radius);
}

.hs-mega-browse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hs-primary) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.hs-mega-browse:hover {
    color: var(--hs-primary-dark) !important;
    gap: 12px;
}

/* Mega menu mobile fallback */
@media (max-width: 1199px) {
    .hs-megamenu {
        position: relative !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        background: var(--hs-gray-100) !important;
    }
    .hs-mega-inner {
        display: block;
        padding: 16px 20px;
    }
    .hs-mega-col {
        padding: 0;
        border-right: none;
        margin-bottom: 16px;
    }
    .hs-mega-heading {
        font-size: 12px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    .hs-mega-link {
        padding: 5px 0 5px 24px;
        font-size: 13px;
        margin: 0;
        padding-left: 24px;
        padding-right: 0;
    }
    .hs-mega-link:hover {
        background: transparent;
        padding-left: 28px;
    }
    .hs-mega-link::before {
        left: 6px;
    }
    .hs-mega-footer {
        margin: 0 -20px;
        border-radius: 0;
    }
}

/* =================== FULL-WIDTH FOOTER — OVERRIDE PARENT THEME =================== */

/* Reset ALL parent theme footer styles with high specificity */
footer#footer.footer.hs-footer,
footer.footer.hs-footer {
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    background: none !important;
    color: inherit !important;
    font-size: inherit !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Override parent theme .footer .btn, .nav-link, .copyright etc. */
footer.hs-footer .btn {
    background-color: transparent !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    padding: 0 !important;
}
footer.hs-footer .nav-link {
    color: inherit !important;
}
footer.hs-footer .copyright {
    margin: 0 !important;
    text-align: left !important;
}

/* Full-width container */
.hs-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* Footer Main Area */
.hs-footer-main {
    padding: 64px 0 48px !important;
    background: linear-gradient(180deg, #1A252E 0%, #151E26 100%) !important;
    width: 100%;
}

.hs-footer-grid {
    padding-bottom: 0;
    border-bottom: none;
}

.hs-footer-brand {
    padding-right: 32px;
}

.hs-footer-logo {
    height: 32px;
    width: auto;
    max-width: 100%;
    margin-bottom: 18px;
    object-fit: contain;
}

.hs-footer-company {
    color: #FFFFFF !important;
    font-family: var(--hs-font-heading);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.hs-footer-tagline {
    color: #8B85A1 !important;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hs-footer-social {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 8px;
    list-style: none !important;
}
.hs-footer-social li {
    display: inline-block !important;
    margin-right: 0 !important;
}
.hs-footer-social li a,
.hs-footer-social li a.btn,
.hs-footer-social li a.btn-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.06) !important;
    color: #C4BFD6 !important;
    font-size: 15px !important;
    transition: all 0.25s ease !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.hs-footer-social li a:hover,
.hs-footer-social li a.btn:hover,
.hs-footer-social li a.btn-icon:hover {
    background: var(--hs-primary) !important;
    border-color: var(--hs-primary) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.hs-footer-heading {
    color: #FFFFFF !important;
    font-family: var(--hs-font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.hs-footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--hs-primary);
    border-radius: 2px;
}

.hs-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.hs-footer-links li {
    margin-bottom: 10px;
}
.hs-footer-links li a {
    color: #8B85A1 !important;
    font-size: 14px !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}
.hs-footer-links li a:hover {
    color: #FFFFFF !important;
    padding-left: 4px;
}

.hs-footer-locale-btn {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    color: #C4BFD6 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    width: 100%;
    line-height: 1.5 !important;
}
.hs-footer-locale-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #FFFFFF !important;
}

/* Tech Stack column */
.hs-footer-tech-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hs-footer-tech {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8B85A1;
    font-size: 13px;
    font-weight: 500;
}
.hs-footer-tech i {
    width: 18px;
    text-align: center;
    color: var(--hs-primary-light);
    font-size: 13px;
    opacity: 0.7;
}

/* Footer Bottom Bar */
footer#footer.footer.hs-footer .hs-footer-bottom,
.hs-footer-bottom {
    background: #141C23 !important;
    padding: 0 !important;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hs-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
footer#footer.footer.hs-footer .hs-footer-bottom .copyright,
footer.footer .hs-footer-bottom .copyright,
.hs-footer-bottom .copyright {
    color: #6B7A8A !important;
    font-size: 13px !important;
    margin: 0 !important;
    text-align: left !important;
}
.hs-footer-bottom-links {
    display: flex;
    gap: 24px;
}
footer#footer .hs-footer-bottom-links a,
.hs-footer-bottom-links a {
    color: #6B7A8A !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
footer#footer .hs-footer-bottom-links a:hover,
.hs-footer-bottom-links a:hover {
    color: #FFFFFF !important;
}

/* Footer responsive */
@media (max-width: 991px) {
    .hs-footer-main {
        padding: 48px 0 32px !important;
    }
    .hs-footer-brand {
        padding-right: 0;
        margin-bottom: 16px;
    }
    .hs-footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hs-footer-bottom .copyright {
        text-align: center !important;
    }
    .hs-footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .hs-footer-heading {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }
    .hs-footer-links li {
        margin-bottom: 8px;
    }
    .hs-footer-main {
        padding: 40px 0 24px !important;
    }
    .hs-header-container,
    .hs-footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
