/* =============================================================================
   Salama Hosting — Custom Design Override Stylesheet
   Inspired by MilesWeb & GoDaddy design language
   Body font: Inter | Heading font: Space Grotesk
   Version: 2.0
   ============================================================================= */

/* ─── Design Tokens / CSS Variables ─── */
@import url(./fonts.css);

@font-face {
    font-family: "Magnet";
    src: url('../fonts/magnet/Magnet-Bold.woff2') format('woff2');
}


:root {
    --sh-primary: #0C4A9C;
    --sh-primary-dark: #012957;
    --sh-primary-light: #e8eef8;
    --sh-green: #0C4A9C;
    --sh-green-dark: #012957;
    --sh-bg: #f8fafc;
    --sh-bg-alt: #e8eef8;
    --sh-dark: #000000;
    --sh-text: #000000;
    --sh-muted: #000000;
    --sh-border: #e2e8f0;
    --sh-card: #ffffff;
    --sh-radius: 10px;
    --sh-radius-lg: 16px;
    --sh-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .06);
    --sh-shadow-hover: 0 4px 16px rgba(12, 74, 156, .18);

    /* Extended design tokens */
    --sh-orange: #0C4A9C;
    --sh-orange-dark: #012957;
    --sh-hero-bg: #012957;
    --sh-hero-bg2: #0C4A9C;
    --sh-nav-h: 68px;

    /* Bootstrap variable overrides */

    --bs-primary: #0C4A9C;
    --bs-primary-rgb: 12, 74, 156;
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, sans-serif;
    --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --bs-body-color: #000000;
    --bs-body-bg: #f8fafc;
}


/* ─── Base / Body / Typography ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: 1.2rem;
    font-weight: 400 !important;
    line-height: 1.65;
    color: var(--sh-text);
    background-color: var(--sh-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Magnet', system-ui, -apple-system, sans-serif !important;
    font-weight: 900;
    color: var(--sh-dark);
    line-height: 1.25;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.375rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--sh-text);
}

a {
    color: var(--sh-primary);
    text-decoration: none;
}

a:hover {
    color: var(--sh-primary-dark);
}

/* ─── Selection Color ─── */
::selection {
    background: #c5d5ea;
    color: #012957;
}

/* ─── Focus Ring ─── */
:focus-visible {
    outline: 2px solid var(--sh-primary);
    outline-offset: 3px;
}

/* =============================================================================
   BACKGROUND HELPERS
   ============================================================================= */
body,
.hos-body-bg {
    background-color: var(--sh-bg) !important;
}

.light-bg {
    background-color: var(--sh-bg) !important;
}

.bg-alt-section {
    background-color: var(--sh-bg-alt) !important;
}

/* =============================================================================
   CARD OVERRIDES
   ============================================================================= */
.card {
    background-color: var(--sh-card);
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius) !important;
    box-shadow: var(--sh-shadow) !important;
    transition: box-shadow .2s ease, transform .2s ease;
}

.card:hover {
    box-shadow: var(--sh-shadow-hover) !important;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

/* Primary (blue) button */
.template-btn.primary-btn {
    background-color: var(--sh-primary) !important;
    border-color: var(--sh-primary) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: .01em;
    transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease;
    box-shadow: 0 2px 8px rgba(12, 74, 156, .25);
}

.template-btn.primary-btn:hover,
.template-btn.primary-btn:focus {
    background-color: var(--sh-primary-dark) !important;
    border-color: var(--sh-primary-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(12, 74, 156, .35) !important;
    transform: translateY(-1px);
}

/* Secondary (outline) button */
.template-btn.secondary-btn {
    background-color: transparent !important;
    border: 2px solid var(--sh-primary) !important;
    color: var(--sh-primary) !important;
    border-radius: 8px !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.template-btn.secondary-btn:hover,
.template-btn.secondary-btn:focus {
    background-color: var(--sh-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(12, 74, 156, .25) !important;
}

/* CTA (green buy) button — GoDaddy-style */
.template-btn.cta-btn {
    background-color: var(--sh-green) !important;
    border-color: var(--sh-green) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: .01em;
    transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease;
    box-shadow: 0 2px 8px rgba(12, 74, 156, .3);
}

.template-btn.cta-btn:hover,
.template-btn.cta-btn:focus {
    background-color: var(--sh-green-dark) !important;
    border-color: var(--sh-green-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(12, 74, 156, .4) !important;
    transform: translateY(-1px);
}

/* Ghost button — white outline for dark/hero backgrounds */
.template-btn.ghost-btn {
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, .75) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.template-btn.ghost-btn:hover,
.template-btn.ghost-btn:focus {
    background-color: rgba(255, 255, 255, .12) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2) !important;
}

/* Bootstrap .btn-primary sync */
.btn-primary {
    background-color: var(--sh-primary) !important;
    border-color: var(--sh-primary) !important;
    border-radius: 8px !important;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--sh-primary-dark) !important;
    border-color: var(--sh-primary-dark) !important;
}

/* =============================================================================
   TOPBAR
   ============================================================================= */
.topbar {
    background: var(--sh-dark) !important;
    color: rgba(255, 255, 255, .85);
    padding: 10px 0;
    font-size: .82rem;
    font-family: 'Inter', sans-serif;
}

.topbar a {
    color: rgba(255, 255, 255, .75);
    transition: color .15s ease;
}

.topbar a:hover {
    color: #ffffff;
}

.topbar p,
.topbar .topbar-left p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 0;
}

.topbar mark {
    background: rgba(12, 74, 156, .35);
    color: #ffffff;
    border-radius: 4px;
    padding: 0 .3em;
}

/* =============================================================================
   NAVBAR / HEADER
   ============================================================================= */
.header-section,
.header-section.header-gradient {
    background: #ffffff !important;
    border-bottom: 1px solid var(--sh-border);
}

.header-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--sh-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.nav-menu {
    background: #ffffff;
}

/* Nav links */
.nav-wrapper nav ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .925rem;
    color: var(--sh-dark);
    transition: color .15s ease;
}

.nav-wrapper nav ul li a:hover,
.nav-wrapper nav ul li.active>a {
    color: var(--sh-primary);
}

/* Active nav item indicator */
.nav-wrapper nav ul li.active>a::after,
.nav-wrapper nav ul li a:hover::after {
    background-color: var(--sh-primary);
}

/* =============================================================================
   MEGAMENU — icon wrappers
   ============================================================================= */
.megamenu-item .icon-wrapper {
    background: var(--sh-primary-light) !important;
    color: var(--sh-primary) !important;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background-color .15s ease, color .15s ease;
}

.megamenu-item:hover .icon-wrapper {
    background: var(--sh-primary) !important;
    color: #ffffff !important;
}

.megamenu-item h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--sh-dark);
    margin-bottom: .2rem;
}

.megamenu-item span {
    font-size: .8rem;
    color: var(--sh-muted);
}

/* Mobile menu icon-wrappers */
.mobile-menu .icon-wrapper {
    background: var(--sh-primary-light) !important;
    color: var(--sh-primary) !important;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.hero-area {
    background: linear-gradient(135deg, #012957 0%, #012957 100%) !important;
}

.hero-area h1,
.hero-left h1 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* =============================================================================
   SECTION HEADINGS
   ============================================================================= */
.section-heading h2,
.section-heading h3 {
    color: var(--sh-dark);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.section-heading p,
.section-heading span {
    color: var(--sh-muted);
}

/* =============================================================================
   PRICING CARDS
   ============================================================================= */
.pricing-column {
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius-lg) !important;
    box-shadow: var(--sh-shadow) !important;
    background: var(--sh-card);
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.pricing-column:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-shadow-hover) !important;
}

/* Featured / recommended pricing card header */
.pricing-column.featured .pricing-header,
.pricing-column.recommended .pricing-header,
.pricing-column.active .pricing-header {
    background-color: var(--sh-primary) !important;
    color: #ffffff;
}

.pricing-column.featured .pricing-header *,
.pricing-column.recommended .pricing-header *,
.pricing-column.active .pricing-header * {
    color: #ffffff !important;
}

/* =============================================================================
   PROMO ITEMS
   ============================================================================= */
.promo-item {
    border-radius: var(--sh-radius) !important;
    box-shadow: var(--sh-shadow) !important;
    border: 1px solid var(--sh-border);
    background: var(--sh-card);
    transition: box-shadow .2s ease, transform .2s ease;
    padding: 1.5rem;
}

.promo-item:hover {
    box-shadow: var(--sh-shadow-hover) !important;
    transform: translateY(-3px);
}

.promo-item h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--sh-dark);
}

/* =============================================================================
   APP LIST ITEMS
   ============================================================================= */
.app_list_item {
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius) !important;
    background: var(--sh-card);
    transition: box-shadow .2s ease, transform .2s ease;
}

.app_list_item:hover {
    box-shadow: var(--sh-shadow-hover) !important;
    transform: translateY(-2px);
}

/* =============================================================================
   MONEY BACK / GUARANTEE AREA
   ============================================================================= */
.money-back-area,
.money-back-section {
    border: 1px solid var(--sh-border) !important;
    border-radius: var(--sh-radius-lg) !important;
    background: var(--sh-card);
    box-shadow: var(--sh-shadow);
}

/* =============================================================================
   BREADCRUMB SECTION
   ============================================================================= */
.breadcrumb-section,
.page-breadcrumb {
    background-color: var(--sh-bg-alt) !important;
}

.breadcrumb-section h1,
.breadcrumb-section h2,
.page-breadcrumb h1,
.page-breadcrumb h2 {
    color: var(--sh-dark);
}

.breadcrumb-item a {
    color: var(--sh-primary);
}

.breadcrumb-item.active {
    color: var(--sh-muted);
}

/* =============================================================================
   CALL TO ACTION SECTIONS
   ============================================================================= */
.deepblue,
.cta-section.deepblue,
section.deepblue {
    background-color: var(--sh-primary) !important;
    background-image: none !important;
}

.cta-dark,
.cta-section.dark-bg {
    background-color: var(--sh-dark) !important;
    background-image: none !important;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
    background-color: var(--sh-dark) !important;
    color: rgba(255, 255, 255, .75);
}

.footer p {
    color: rgba(255, 255, 255, .7);
}

.footer .widget-title,
.footer h5.widget-title {
    color: #ffffff !important;
}

.footer .ft-subtitle {
    color: rgba(255, 255, 255, .85);
}

/* Footer navigation links */
.footer-nav,
.footer .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: .45rem;
}

.footer-nav li a,
.footer .footer-nav li a {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    transition: color .15s ease;
}

.footer-nav li a:hover,
.footer .footer-nav li a:hover {
    color: #ffffff;
}

/* Footer copyright bar */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, .1) !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.footer-copyright .copyright-txt p,
.footer-copyright .copyright-txt {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
}

.footer-copyright .copyright-links a {
    color: rgba(255, 255, 255, .5);
    font-size: .875rem;
    transition: color .15s ease;
}

.footer-copyright .copyright-links a:hover {
    color: #ffffff;
}

/* Footer social icons */
.social-nav li a {
    background: rgba(255, 255, 255, .1) !important;
    color: rgba(255, 255, 255, .75) !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background-color .2s ease, color .2s ease;
}

.social-nav li a:hover {
    background: var(--sh-primary) !important;
    color: #ffffff !important;
}

/* Footer logo — white inversion handled via inline style on img */

/* =============================================================================
   SCROLLTOP BUTTON
   ============================================================================= */
.scrolltop-btn {
    background-color: var(--sh-primary) !important;
    border-color: var(--sh-primary) !important;
    color: #ffffff !important;
    border-radius: 50%;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.scrolltop-btn:hover {
    background-color: var(--sh-primary-dark) !important;
    box-shadow: 0 4px 14px rgba(12, 74, 156, .4) !important;
}

/* =============================================================================
   BACKGROUND UTILITY — LEGACY bg-gradient OVERRIDE
   ============================================================================= */
.bg-gradient {
    background-image: none !important;
    background-color: var(--sh-bg-alt) !important;
    box-shadow: var(--sh-shadow);
}


/* =============================================================================
   BIGROCK-INSPIRED REDESIGN — Navbar, Hero, Home Page
   ============================================================================= */


/* ══════════════════════════════════════
   CONTACT INFO TOPBAR
══════════════════════════════════════ */
.sh-topbar {
    background: #012957;
    padding: 7px 0;
    font-size: .8rem;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.sh-topbar>.container>div {
    flex-wrap: nowrap;
    min-width: 0;
}

.sh-topbar-link {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.sh-topbar-link:hover {
    color: #ffffff;
}

.sh-topbar-sep {
    color: rgba(255, 255, 255, .3);
    font-size: .7rem;
}

.sh-topbar-cta {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 20px;
    padding: 2px 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9) !important;
    text-decoration: none;
    transition: background .15s, color .15s;
    font-size: .8rem;
}

.sh-topbar-cta:hover {
    background: rgba(255, 255, 255, .25);
    color: #ffffff !important;
}

/* ══════════════════════════════════════
   MAIN NAVBAR
══════════════════════════════════════ */
.sh-site-header {
    position: relative;
    z-index: 1050;
}

.sh-main-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: box-shadow .2s ease;
}

.sh-main-nav.sh-nav-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.sh-nav-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: var(--sh-nav-h);
}

/* Logo */
.sh-nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sh-nav-logo img {
    height: 56px;
    width: auto;
}

/* Nav Links list */
.sh-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .15rem;
    flex: 1;
    justify-content: center;
}

.sh-nav-item {
    position: relative;
}

.sh-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 14px;
    height: var(--sh-nav-h);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    color: #000000 !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .15s ease;
    border-bottom: 2px solid transparent;
}

.sh-nav-link:hover,
.sh-nav-item:hover>.sh-nav-link {
    color: var(--sh-primary) !important;
    border-bottom-color: var(--sh-primary);
}

.sh-caret {
    font-size: .65rem;
    transition: transform .2s ease;
    margin-top: 1px;
}

.sh-nav-item:hover .sh-caret {
    transform: rotate(180deg);
}

/* ══════════════════════════════════════
   4-COLUMN MEGA MENU
══════════════════════════════════════ */
.sh-mega-panel {
    position: absolute;
    top: calc(var(--sh-nav-h) - 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
    padding: 28px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1050;
}

.sh-has-mega:hover .sh-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sh-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 20px;
}

/* 2-column variant for Domains panel */
.sh-mega-panel--sm {
    width: 560px;
}

.sh-mega-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.sh-mega-col {
    padding: 0 16px;
    border-right: 1px solid #f3f4f6;
}

.sh-mega-col:last-child {
    border-right: none;
}

.sh-mega-head {
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #555555;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
}

.sh-mega-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .15s ease;
    margin-bottom: 2px;
}

.sh-mega-link:hover {
    background: var(--sh-primary-light);
}

.sh-mega-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.sh-mega-link:hover .sh-mega-icon {
    background: var(--sh-primary);
    color: #fff;
}

.sh-mega-text strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    color: #000000;
    line-height: 1.3;
}

.sh-mega-text em {
    display: block;
    font-style: normal;
    font-size: .78rem;
    color: #555555;
    margin-top: 1px;
}

/* ══════════════════════════════════════
   SIMPLE DROPDOWN
══════════════════════════════════════ */
.sh-drop-menu {
    position: absolute;
    top: calc(var(--sh-nav-h) - 2px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 1050;
}

.sh-has-drop:hover .sh-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sh-drop-menu li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    color: #555555 !important;
    text-decoration: none !important;
    transition: background .12s, color .12s;
}

.sh-drop-menu li a i {
    color: var(--sh-primary);
    font-size: .8rem;
    width: 14px;
    text-align: center;
}

.sh-drop-menu li a:hover {
    background: var(--sh-primary-light);
    color: var(--sh-primary) !important;
}

/* ══════════════════════════════════════
   NAV RIGHT ACTIONS
══════════════════════════════════════ */
.sh-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sh-cart-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #555555 !important;
    font-size: 1.05rem;
    position: relative;
    text-decoration: none !important;
    transition: background .15s, color .15s;
}

.sh-cart-btn:hover {
    background: var(--sh-primary-light);
    color: var(--sh-primary) !important;
}

.sh-cart-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}


.sh-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0C4A9C;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    line-height: 1;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding: 0 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.sh-cart-total {
    font-size: .72rem;
    font-weight: 700;
    color: var(--sh-primary);
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: -.01em;
    line-height: 1.1;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .15s;
}

.sh-cart-total:hover {
    color: #012957;
    text-decoration: none !important;
}

.sh-btn-login {
    padding: 7px 16px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: #555555 !important;
    text-decoration: none !important;
    transition: border-color .15s, color .15s, background .15s;
}

.sh-btn-login:hover {
    border-color: var(--sh-primary);
    color: var(--sh-primary) !important;
    background: var(--sh-primary-light);
}

.sh-btn-cta {
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--sh-orange);
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(12, 74, 156, .35);
    transition: background .15s, box-shadow .15s, transform .1s;
    white-space: nowrap;
}

.sh-btn-cta:hover {
    background: var(--sh-orange-dark);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(12, 74, 156, .45);
    transform: translateY(-1px);
}

/* Hamburger */
.sh-hamburger {
    background: none;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: poInter;
    padding: 0;
}

.sh-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #555555;
    border-radius: 2px;
    transition: .2s;
}

/* ══════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════ */
.sh-mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.sh-mob-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sh-mob-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1070;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, .15);
}

.sh-mob-drawer.open {
    transform: translateX(0);
}

.sh-mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.sh-mob-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #555555;
    cursor: poInter;
    padding: 4px;
}

.sh-mob-close:hover {
    color: #000000;
}

.sh-mob-nav ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.sh-mob-link {
    display: block;
    padding: 11px 20px;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: background .12s, color .12s;
}

.sh-mob-link:hover {
    background: var(--sh-primary-light);
    color: var(--sh-primary);
}

.sh-mob-parent {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #000000;
    cursor: poInter;
    transition: background .12s, color .12s;
}

.sh-mob-parent:hover {
    background: var(--sh-primary-light);
    color: var(--sh-primary);
}

.sh-mob-has-sub.active .sh-mob-parent {
    color: var(--sh-primary);
}

.sh-mob-has-sub.active .fa-chevron-down {
    transform: rotate(180deg);
}

.sh-mob-parent .fa-chevron-down {
    font-size: .65rem;
    transition: transform .2s;
}

.sh-mob-sub {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #f9fafb;
    transition: max-height .25s ease;
}

.sh-mob-sub li a {
    display: block;
    padding: 8px 20px 8px 36px;
    font-size: .85rem;
    color: #555555;
    text-decoration: none;
    transition: color .12s;
}

.sh-mob-sub li a:hover {
    color: var(--sh-primary);
}

.sh-mob-sub-head {
    padding: 8px 20px 4px 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #555555;
    pointer-events: none;
}

.sh-mob-auth {
    padding: 16px 20px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sh-mob-login-btn,
.sh-mob-cta-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none !important;
}

.sh-mob-login-btn {
    border: 1.5px solid #d1d5db;
    color: #555555 !important;
}

.sh-mob-login-btn:hover {
    border-color: var(--sh-primary);
    color: var(--sh-primary) !important;
}

.sh-mob-cta-btn {
    background: var(--sh-orange);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(12, 74, 156, .3);
}

.sh-mob-cta-btn:hover {
    background: var(--sh-orange-dark);
    color: #fff !important;
}

/* ══════════════════════════════════════
   HERO SECTION — BigRock style
══════════════════════════════════════ */
.sh-hero {
    background: linear-gradient(135deg, var(--sh-hero-bg) 0%, #0C4A9C 55%, #012957 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.sh-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    pointer-events: none;
}

.sh-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.sh-hero-inner {
    position: relative;
    z-index: 1;
}

.sh-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

.sh-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.01em;
}

.sh-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.sh-hero-subtitle strong {
    color: #fff;
}


/* chosen */
/* Match Bootstrap 5 form-select */
.chosen-container-single .chosen-single {
    height: calc(2.25rem + 10px);
    padding: .375rem .375rem;
    vertical-align: middle;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    background: #fff;
    line-height: 1.8;
    box-shadow: none;
}

.chosen-container-single .chosen-single div b {
    margin-top: 8px;
}

.chosen-container-active .chosen-single {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}


.chosen-container .chosen-drop {
    border: 1px solid #ced4da;
    border-radius: .375rem;
}

.chosen-container-multi .chosen-choices {
    border: 1px solid #ced4da;
    border-radius: .375rem;
    min-height: 38px;
}

/* Domain Search Bar */
.sh-domain-bar {
    max-width: 90%;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.sh-domain-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    height: 58px;
}

.sh-domain-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 16px;
}

.sh-domain-icon {
    color: #555555;
    font-size: 1rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.sh-domain-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: #000000;
    background: transparent;
    height: 100%;
}

.sh-domain-input::placeholder {
    color: #555555;
}

.sh-tld-select {
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    outline: none;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    color: #555555;
    background: #f9fafb;
    height: 100%;
    cursor: poInter;
}

.sh-domain-btn {
    height: 100%;
    padding: 0 28px;
    background: #0C4A9C !important;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    border: none;
    cursor: poInter;
    white-space: nowrap;
    transition: background .15s;
}

.sh-domain-btn:hover {
    background: var(--sh-orange-dark);
}

/* TLD Price Chips */
.sh-tld-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.sh-tld-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 5px 13px;
    text-decoration: none !important;
    transition: background .15s;
}

.sh-tld-chip:hover {
    background: rgba(255, 255, 255, .18);
}

.sh-tld-ext {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
}

.sh-tld-price {
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
}

.sh-tld-more {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

/* ══════════════════════════════════════
   TRUST STATS STRIP
══════════════════════════════════════ */
.sh-stats-strip {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 22px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.sh-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sh-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sh-stat-icon {
    font-size: 1.5rem;
    color: var(--sh-primary);
}

.sh-stat-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
}

.sh-stat-item span {
    display: block;
    font-size: .8rem;
    color: #555555;
}

.sh-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

@media (max-width: 576px) {
    .sh-stat-divider {
        display: none;
    }
}

/* ══════════════════════════════════════
   SECTION HEAD
══════════════════════════════════════ */
.sh-section-label {
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sh-primary);
    margin-bottom: 8px;
}

.sh-section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.sh-section-sub {
    font-size: .95rem;
    color: #555555;
    max-width: 540px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   HOSTING CATEGORY CARDS
══════════════════════════════════════ */
.sh-categories {
    background: var(--sh-bg);
}

.sh-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .sh-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sh-cat-grid {
        grid-template-columns: 1fr;
    }
}

.sh-cat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none !important;
    display: block;
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

.sh-cat-card:hover {
    box-shadow: 0 8px 32px rgba(12, 74, 156, .13);
    transform: translateY(-4px);
    border-color: var(--sh-primary);
}

.sh-cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.sh-cat-icon--blue {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-cat-icon--indigo {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-cat-icon--teal {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-cat-icon--orange {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-cat-icon--sky {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-cat-icon--green {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-cat-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.sh-cat-desc {
    font-size: .875rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.sh-cat-cta {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--sh-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .15s;
}

.sh-cat-card:hover .sh-cat-cta {
    gap: 9px;
}

.sh-cat-cta .fa-arrow-right {
    font-size: .75rem;
}

/* ══════════════════════════════════════
   WHY CHOOSE SALAMA
══════════════════════════════════════ */
.sh-why-us {
    background: #fff;
}

.sh-why-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

.sh-why-card:hover {
    box-shadow: var(--sh-shadow-hover);
    transform: translateY(-3px);
}

.sh-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.sh-why-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.sh-why-card p {
    font-size: .875rem;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════
   PRICING CARDS — new style
══════════════════════════════════════ */
.sh-plan-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .22s, transform .22s, border-color .22s;
}

.sh-plan-card:hover {
    box-shadow: 0 8px 32px rgba(12, 74, 156, .14);
    transform: translateY(-4px);
    border-color: var(--sh-primary);
}

.sh-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sh-plan-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.sh-plan-badge {
    background: #e8eef8;
    color: #0C4A9C;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.sh-plan-price {
    margin-bottom: 14px;
}

.sh-plan-from {
    display: block;
    font-size: .75rem;
    color: #555555;
    margin-bottom: 4px;
}

.sh-price-monthly,
.sh-price-yearly {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.sh-price-currency {
    font-size: .8rem;
    font-weight: 700;
    color: var(--sh-primary);
}

.sh-price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.sh-price-period {
    font-size: .8rem;
    color: #555555;
    margin-left: 2px;
}

.sh-plan-desc {
    font-size: .875rem;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.sh-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.sh-plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: #555555;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.sh-plan-features li .fa-check {
    color: #0C4A9C;
    font-size: .75rem;
    flex-shrink: 0;
}

.sh-plan-btn {
    display: block;
    text-align: center;
    padding: 11px;
    background: var(--sh-primary);
    color: #fff !important;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none !important;
    transition: background .15s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(12, 74, 156, .25);
}

.sh-plan-btn:hover {
    background: var(--sh-primary-dark);
    box-shadow: 0 4px 14px rgba(12, 74, 156, .35);
}

.sh-money-back {
    font-size: .95rem;
    color: #555555;
    background: #e8eef8;
    border: 1px solid #c5d5ea;
    border-radius: 10px;
    padding: 14px 24px;
}

/* ══════════════════════════════════════
   APP CHIPS
══════════════════════════════════════ */
.sh-app-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: box-shadow .18s, transform .18s;
}

.sh-app-chip:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.sh-app-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
}

.sh-app-name {
    font-size: .78rem;
    font-weight: 600;
    color: #555555;
}

/* ══════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════ */
@media (max-width: 991px) {
    .sh-hero {
        padding: 60px 0 80px;
    }

    .sh-domain-form {
        flex-wrap: wrap;
        height: auto;
        border-radius: 12px;
    }

    .sh-domain-input-wrap {
        width: 100%;
        height: 50px;
    }

    .sh-tld-select {
        border: none;
        border-top: 1px solid #e5e7eb;
        height: 44px;
        flex: 1;
    }

    .sh-domain-btn {
        flex: 1;
        height: 44px;
    }
}

@media (max-width: 575px) {
    .sh-hero-title {
        font-size: 1.9rem;
    }

    .sh-stats-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 8px;
    }

    .sh-stats-grid {
        align-items: center;
    }
}

/* Hide old header elements so they don't conflict */
.header-section,
.header-gradient,
.topbar,
.header-nav,
.nav-menu,
.mobile-menu,
.mobile-menu-wrapper {
    display: none !important;
}

/* =============================================================================
   FOOTER — Redesigned (Inter, clean 5-column grid)
   ============================================================================= */
.sh-footer {
    background: #012957;
    color: rgba(255, 255, 255, .75);
}

.sh-footer-top {
    padding: 4rem 0 3rem;
}

@media (min-width: 992px) {
    .row-cols-lg-7>* {
        flex: 0 0 auto;
        width: 14.2857142857%;
    }
}

.sh-footer-logo {
    display: block;
    margin-bottom: 1.25rem;
}

.sh-footer-logo img {
    height: 54px;
    filter: brightness(0) invert(1);
}

.sh-footer-about {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.sh-footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.5rem;
}

.sh-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
}

.sh-footer-contact-item i {
    margin-top: 3px;
    color: var(--sh-orange);
    flex-shrink: 0;
    width: 14px;
}

.sh-footer-contact-item a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s;
}

.sh-footer-contact-item a:hover {
    color: #fff;
}

.sh-footer-social {
    display: flex;
    gap: .5rem;
    margin-top: .25rem;
}

.sh-footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .8125rem;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.sh-footer-social a:hover {
    background: var(--sh-orange);
    color: #fff;
}

.sh-footer-heading {
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1.1rem;
}

.sh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-footer-links li {
    margin-bottom: .5rem;
}

.sh-footer-links li a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    font-size: .9rem;
    line-height: 1.4;
    transition: color .2s, padding-left .2s;
    display: block;
}

.sh-footer-links li a:hover {
    color: var(--sh-orange);
    padding-left: 4px;
}

.sh-footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
}

.sh-footer-payment li {
    background: rgba(255, 255, 255, .1);
    border-radius: 5px;
    padding: 5px 9px;
    display: flex;
    align-items: center;
}

.sh-footer-payment li img {
    height: 17px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .75;
}

.sh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.25rem 0;
}

.sh-footer-bottom p {
    color: rgba(255, 255, 255, .45);
    font-size: .875rem;
    margin: 0;
}

.sh-footer-bottom p i {
    margin: 0 3px;
}

.sh-footer-uptime-badge {
    display: inline-flex;
    align-items: center;
    font-size: .8125rem;
    color: rgba(255, 255, 255, .45);
}

/* =============================================================================
   TOOL PAGES — Consistent Layout
   ============================================================================= */
.sh-tool-section {
    padding: 3rem 0 4.5rem;
    min-height: 65vh;
}

.sh-tool-card {
    background: #fff;
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
    padding: 2rem 2.25rem;
    border: 1px solid var(--sh-border);
}

.sh-tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--sh-border);
}

.sh-tool-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
}

.sh-tool-icon--blue {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-tool-icon--green {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-tool-icon--orange {
    background: #e8eef8;
    color: #012957;
}

.sh-tool-icon--purple {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-tool-icon--teal {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-tool-icon--red {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-tool-icon--yellow {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin: 0 0 .2rem;
    line-height: 1.25;
}

.sh-tool-subtitle {
    color: var(--sh-muted);
    font-size: .875rem;
    margin: 0;
}

.sh-tool-input-group {
    display: flex;
    border: 1.5px solid var(--sh-border);
    border-radius: var(--sh-radius);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.sh-tool-input-group:focus-within {
    border-color: var(--sh-primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 156, .1);
}

.sh-tool-input {
    flex: 1;
    border: none;
    padding: .875rem 1.25rem;
    font-size: .9375rem;
    color: var(--sh-text);
    background: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.sh-tool-input::placeholder {
    color: var(--sh-muted);
}

.sh-tool-btn {
    background: var(--sh-primary);
    color: #fff;
    border: none;
    padding: .875rem 1.625rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: poInter;
    white-space: nowrap;
    transition: background .2s;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.sh-tool-btn:hover {
    background: var(--sh-primary-dark);
}

.sh-tool-btn--orange {
    background: var(--sh-orange);
}

.sh-tool-btn--orange:hover {
    background: var(--sh-orange-dark);
}

.sh-tool-hint {
    font-size: .82rem;
    color: var(--sh-muted);
    margin-top: .5rem;
}

.sh-tool-result {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--sh-border);
}

.sh-tool-result-header {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sh-dark);
}

.sh-tool-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.sh-tool-result-section-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--sh-muted);
    margin: 0 0 .5rem;
}

.sh-tool-result-item {
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    padding: .75rem 1rem;
}

.sh-tool-result-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--sh-muted);
    font-weight: 700;
    margin-bottom: .25rem;
}

.sh-tool-result-value {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--sh-dark);
    margin: 0;
    word-break: break-all;
}

.sh-tool-result-value.wide {
    grid-column: 1 / -1;
}

.sh-tool-pre {
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    border-radius: 8px;
    padding: 1.25rem;
    font-size: .8125rem;
    line-height: 1.65;
    max-height: 420px;
    overflow-y: auto;
    color: var(--sh-text);
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-break: break-word;
}

.sh-tool-sidebar-card {
    background: #fff;
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
    padding: 1.5rem;
    border: 1px solid var(--sh-border);
}

.sh-tool-related-title {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sh-muted);
    font-weight: 700;
    margin-bottom: 1rem;
}

.sh-tool-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-tool-related-list li {
    border-bottom: 1px solid var(--sh-border);
}

.sh-tool-related-list li:last-child {
    border-bottom: none;
}

.sh-tool-related-list li a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .25rem;
    color: var(--sh-text);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}

.sh-tool-related-list li a:hover {
    color: var(--sh-primary);
}

.sh-tool-related-list li a.active-tool {
    color: var(--sh-primary);
    font-weight: 600;
}

.sh-tool-related-list li a i {
    width: 20px;
    text-align: center;
    color: var(--sh-muted);
    font-size: .875rem;
}

.sh-tool-related-list li a:hover i,
.sh-tool-related-list li a.active-tool i {
    color: var(--sh-primary);
}

.sh-tool-tips-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--sh-border);
}

.sh-tool-tips-title {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--sh-dark);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.sh-tool-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-tool-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8125rem;
    color: var(--sh-muted);
    margin-bottom: .45rem;
    line-height: 1.5;
}

.sh-tool-tips-list li i {
    color: var(--sh-green);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: .75rem;
}

.sh-tool-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--sh-muted);
}

.sh-tool-empty i {
    font-size: 2.5rem;
    opacity: .35;
    display: block;
    margin-bottom: .75rem;
}

.sh-tool-empty p {
    font-size: .9rem;
    margin: 0;
}

@media (max-width: 575px) {
    .sh-tool-card {
        padding: 1.5rem 1.25rem;
    }

    .sh-tool-result-grid {
        grid-template-columns: 1fr;
    }

    .sh-tool-input-group {
        flex-direction: column;
        border-radius: var(--sh-radius);
    }

    .sh-tool-btn {
        border-radius: 0 0 var(--sh-radius) var(--sh-radius);
        width: 100%;
        padding: .75rem;
    }
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */
.sh-contact-section {
    padding: 3rem 0 4.5rem;
}

.sh-contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.375rem;
    background: #fff;
    border-radius: var(--sh-radius);
    border: 1px solid var(--sh-border);
    box-shadow: var(--sh-shadow);
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

.sh-contact-channel:hover {
    box-shadow: var(--sh-shadow-hover);
    transform: translateY(-2px);
}

.sh-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sh-contact-icon--green {
    background: #e8eef8;
    color: var(--sh-green);
}

.sh-contact-icon--orange {
    background: #e8eef8;
    color: var(--sh-orange);
}

.sh-contact-icon--teal {
    background: #e8eef8;
    color: #0C4A9C;
}

.sh-contact-body h6 {
    font-weight: 700;
    font-size: .9375rem;
    margin-bottom: .2rem;
    color: var(--sh-dark);
}

.sh-contact-body p,
.sh-contact-body a {
    font-size: .875rem;
    color: var(--sh-muted);
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.sh-contact-body a {
    display: block;
}

.sh-contact-body a:hover {
    color: var(--sh-primary);
}

.sh-contact-form-card {
    background: #fff;
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow);
    border: 1px solid var(--sh-border);
    padding: 2.5rem;
}

.sh-contact-hours {
    background: linear-gradient(135deg, #0C4A9C, var(--sh-primary-dark));
    color: #fff;
    border-radius: var(--sh-radius);
    padding: 1.5rem;
}

.sh-contact-hours h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: .875rem;
    font-size: .9375rem;
}

.sh-contact-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-contact-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: .8125rem;
    padding: .4rem 0;
    color: rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sh-contact-hours ul li:last-child {
    border-bottom: none;
}

.sh-contact-hours ul li span:first-child {
    color: rgba(255, 255, 255, .6);
}

.sh-contact-form-card .form-control:focus {
    border-color: var(--sh-primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 156, .12);
}

.sh-contact-submit-btn {
    background: var(--sh-primary);
    border: none;
    color: #fff;
    padding: .875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9375rem;
    font-family: 'Inter', sans-serif;
    transition: background .2s, box-shadow .2s;
    cursor: poInter;
    width: 100%;
}

.sh-contact-submit-btn:hover {
    background: var(--sh-primary-dark);
    box-shadow: 0 4px 14px rgba(12, 74, 156, .3);
}

/* =============================================================================
   HOSTING PACKAGE COMPONENT — sh-pkg-*
   ============================================================================= */
.sh-pkg-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: var(--sh-radius-lg, 16px);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.sh-pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13);
}

.sh-pkg-card--popular {
    border-color: var(--sh-primary, #0C4A9C);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .07);
}

.sh-pkg-popular-badge {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.sh-pkg-header {
    padding: 1.75rem 1.5rem 1.25rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-pkg-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: .75rem;
}

.sh-pkg-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sh-dark, #012957);
    margin-bottom: .5rem;
}

.sh-pkg-pricing {
    margin: .375rem 0;
}

.sh-pkg-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--sh-primary, #0C4A9C);
}

.sh-pkg-per {
    font-size: .875rem;
    color: var(--sh-muted, #555555);
    margin-left: 2px;
}

.sh-pkg-desc {
    font-size: .8125rem;
    color: var(--sh-muted, #555555);
    margin-top: .5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.sh-pkg-features {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-pkg-features li {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .4rem 0;
    font-size: .875rem;
    color: var(--sh-dark, #012957);
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-pkg-features li:last-child {
    border-bottom: none;
}

.sh-pkg-features li i {
    color: var(--sh-primary, #0C4A9C);
    font-size: .78rem;
    min-width: 16px;
    text-align: center;
}

.sh-pkg-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--sh-border, #e2e8f0);
}

.sh-pkg-btn {
    display: block;
    width: 100%;
    background: var(--sh-dark, #012957);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .8rem 1rem;
    font-size: .9375rem;
    font-weight: 700;
    cursor: poInter;
    font-family: 'Inter', sans-serif;
    transition: background .2s, box-shadow .2s;
    text-align: center;
}

.sh-pkg-btn:hover {
    background: var(--sh-primary, #0C4A9C);
    box-shadow: 0 4px 14px rgba(12, 74, 156, .25);
}

.sh-pkg-btn--popular {
    background: var(--sh-primary, #0C4A9C);
}

.sh-pkg-btn--popular:hover {
    background: #012957;
}

/* =============================================================================
   VPS PACKAGE CARD
   ============================================================================= */
.sh-vps-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sh-vps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13);
}

.sh-vps-card--popular {
    border-color: var(--sh-primary, #0C4A9C);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .07);
}

.sh-vps-badge {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.sh-vps-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    background: linear-gradient(135deg, #0a0f2e 0%, #0e2a6e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sh-vps-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #93c5fd;
}

.sh-vps-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .2rem;
}

.sh-vps-tagline {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    line-height: 1.4;
}

.sh-vps-pricing {
    padding: 1.1rem 1.5rem .75rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-vps-currency {
    font-size: .85rem;
    font-weight: 700;
    color: var(--sh-muted);
    vertical-align: top;
    margin-top: .4rem;
    display: inline-block;
}

.sh-vps-amount {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--sh-primary, #0C4A9C);
    line-height: 1;
}

.sh-vps-period {
    font-size: .8rem;
    color: var(--sh-muted);
}

.sh-vps-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-vps-spec {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .875rem 1.25rem;
    border-right: 1px solid var(--sh-border, #e2e8f0);
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-vps-spec:nth-child(2n) {
    border-right: none;
}

.sh-vps-spec:nth-last-child(-n+2) {
    border-bottom: none;
}

.sh-vps-spec-icon {
    color: #1d4ed8;
    font-size: .9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.sh-vps-spec-val {
    display: block;
    font-size: .9375rem;
    font-weight: 800;
    color: var(--sh-dark);
    line-height: 1.2;
}

.sh-vps-spec-label {
    display: block;
    font-size: .7rem;
    color: var(--sh-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
}

.sh-vps-features {
    list-style: none;
    padding: 1.1rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-vps-features li {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .35rem 0;
    font-size: .845rem;
    color: var(--sh-dark);
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-vps-features li:last-child {
    border-bottom: none;
}

.sh-vps-features li i {
    color: #1d4ed8;
    font-size: .78rem;
    min-width: 16px;
    text-align: center;
}

/* =============================================================================
   DEDICATED SERVER PACKAGE CARD
   ============================================================================= */
.sh-ded-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sh-ded-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13);
}

.sh-ded-card--featured {
    border-color: #1d4ed8;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, .07);
}

.sh-ded-featured-badge {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.sh-ded-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.sh-ded-server-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #93c5fd;
    flex-shrink: 0;
}

.sh-ded-live-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid #0f172a;
    animation: sh-pulse 2s infinite;
}

@keyframes sh-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.sh-ded-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .15rem;
}

.sh-ded-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.sh-ded-pricing {
    padding: 1.1rem 1.5rem .75rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-ded-price-row {
    display: flex;
    align-items: baseline;
    gap: .2rem;
}

.sh-ded-currency {
    font-size: .85rem;
    font-weight: 700;
    color: var(--sh-muted);
}

.sh-ded-amount {
    font-size: 1.875rem;
    font-weight: 900;
    color: #1d4ed8;
    line-height: 1;
}

.sh-ded-period {
    font-size: .78rem;
    color: var(--sh-muted);
    display: block;
    margin-top: .2rem;
}

.sh-ded-desc {
    font-size: .82rem;
    color: var(--sh-muted);
    margin: 0;
    padding: .75rem 1.5rem 0;
    line-height: 1.55;
}

.sh-ded-specs {
    padding: .875rem 1.5rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sh-ded-spec-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-ded-spec-row:last-child {
    border-bottom: none;
}

.sh-ded-spec-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: .78rem;
    flex-shrink: 0;
}

.sh-ded-spec-key {
    font-size: .8rem;
    color: var(--sh-muted);
    flex: 1;
}

.sh-ded-spec-val {
    font-size: .875rem;
    font-weight: 700;
    color: var(--sh-dark);
}

.sh-ded-includes {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-ded-includes li {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .35rem 0;
    font-size: .845rem;
    color: var(--sh-dark);
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-ded-includes li:last-child {
    border-bottom: none;
}

.sh-ded-includes li i {
    color: #16a34a;
    font-size: .78rem;
    min-width: 16px;
    text-align: center;
}

/* =============================================================================
   RESELLER HOSTING PACKAGE CARD
   ============================================================================= */
.sh-res-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sh-res-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13);
}

.sh-res-card--popular {
    border-color: var(--sh-primary, #0C4A9C);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .07);
}

.sh-res-badge {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.sh-res-header {
    padding: 1.5rem 1.5rem 1.1rem;
    text-align: center;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-res-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sh-primary, #0C4A9C), #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #fff;
    margin: 0 auto .875rem;
}

.sh-res-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--sh-dark);
    margin: 0 0 .375rem;
}

.sh-res-desc {
    font-size: .8rem;
    color: var(--sh-muted);
    margin: 0;
    line-height: 1.5;
}

.sh-res-pricing {
    padding: 1.1rem 1.5rem .875rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-res-from {
    font-size: .75rem;
    color: var(--sh-muted);
    display: block;
    margin-bottom: .15rem;
}

.sh-res-currency {
    font-size: .85rem;
    font-weight: 700;
    color: var(--sh-muted);
    vertical-align: top;
    margin-top: .35rem;
    display: inline-block;
}

.sh-res-amount {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--sh-primary, #0C4A9C);
    line-height: 1;
}

.sh-res-period {
    font-size: .8rem;
    color: var(--sh-muted);
}

.sh-res-numbers {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-res-number-item {
    flex: 1;
    text-align: center;
    padding: .875rem .5rem;
}

.sh-res-number-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--sh-primary, #0C4A9C);
    line-height: 1.2;
}

.sh-res-number-key {
    display: block;
    font-size: .68rem;
    color: var(--sh-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: .2rem;
    font-weight: 500;
}

.sh-res-number-divider {
    width: 1px;
    height: 40px;
    background: var(--sh-border, #e2e8f0);
    flex-shrink: 0;
}

.sh-res-features {
    list-style: none;
    padding: 1.1rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-res-features li {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .375rem 0;
    font-size: .845rem;
    color: var(--sh-dark);
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-res-features li:last-child {
    border-bottom: none;
}

.sh-res-features li i {
    color: var(--sh-primary, #0C4A9C);
    font-size: .78rem;
    min-width: 16px;
    text-align: center;
}

/* =============================================================================
   CLOUD HOSTING PACKAGE CARD
   ============================================================================= */
.sh-cloud-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sh-cloud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13);
}

.sh-cloud-card--popular {
    border-color: #0891b2;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(8, 145, 178, .08);
}

.sh-cloud-badge {
    background: linear-gradient(90deg, #0891b2, #06b6d4);
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.sh-cloud-header {
    position: relative;
    padding: 1.625rem 1.5rem 1.25rem;
    background: linear-gradient(135deg, #0c4a9c 0%, #0891b2 100%);
    text-align: center;
    overflow: hidden;
}

/* Decorative floating node dots */
.sh-cloud-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sh-cloud-node {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    animation: sh-cloud-float 4s ease-in-out infinite;
}

.sh-cloud-node--1 {
    width: 60px;
    height: 60px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.sh-cloud-node--2 {
    width: 40px;
    height: 40px;
    top: 10px;
    right: -10px;
    animation-delay: 1.5s;
}

.sh-cloud-node--3 {
    width: 28px;
    height: 28px;
    bottom: -8px;
    left: 40%;
    animation-delay: .75s;
}

@keyframes sh-cloud-float {

    0%,
    100% {
        transform: translateY(0);
        opacity: .12;
    }

    50% {
        transform: translateY(-8px);
        opacity: .22;
    }
}

.sh-cloud-header-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #fff;
    margin: 0 auto .75rem;
    backdrop-filter: blur(4px);
}

.sh-cloud-name {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .3rem;
}

.sh-cloud-tagline {
    position: relative;
    z-index: 1;
    font-size: .78rem;
    color: rgba(255, 255, 255, .72);
    margin: 0;
    line-height: 1.45;
}

.sh-cloud-pricing {
    padding: 1.1rem 1.5rem .875rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-cloud-from {
    font-size: .72rem;
    color: var(--sh-muted);
    display: block;
    margin-bottom: .1rem;
}

.sh-cloud-price-row {
    display: flex;
    align-items: baseline;
    gap: .15rem;
}

.sh-cloud-currency {
    font-size: .85rem;
    font-weight: 700;
    color: var(--sh-muted);
}

.sh-cloud-amount {
    font-size: 1.875rem;
    font-weight: 900;
    color: #0891b2;
    line-height: 1;
}

.sh-cloud-period {
    font-size: .8rem;
    color: var(--sh-muted);
}

/* Resource bars */
.sh-cloud-resources {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sh-cloud-resource-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .3rem;
}

.sh-cloud-resource-label {
    font-size: .78rem;
    color: var(--sh-muted);
}

.sh-cloud-resource-label i {
    color: #0891b2;
    margin-right: .25rem;
    font-size: .7rem;
}

.sh-cloud-resource-val {
    font-size: .82rem;
    font-weight: 700;
    color: var(--sh-dark);
}

.sh-cloud-bar {
    height: 5px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}

.sh-cloud-bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, #0c4a9c, #0891b2);
    width: 60%;
    transition: width .6s ease;
}

.sh-cloud-bar-fill--storage {
    width: 55%;
}

.sh-cloud-bar-fill--bandwidth {
    width: 75%;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
}

.sh-cloud-bar-fill--email {
    width: 45%;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

/* Features list */
.sh-cloud-features {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-cloud-features li {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .35rem 0;
    font-size: .845rem;
    color: var(--sh-dark);
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
}

.sh-cloud-features li:last-child {
    border-bottom: none;
}

.sh-cloud-features li i {
    color: #0891b2;
    font-size: .78rem;
    min-width: 16px;
    text-align: center;
}

/* =============================================================================
   DOMAIN PRICING PAGE — popular cards + table
   ============================================================================= */
.domain-popular-card {
    border-radius: 16px !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.domain-popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .13) !important;
}

.domain-popular-card--featured {
    border-top: 4px solid var(--sh-primary, #0C4A9C) !important;
}

.domain-popular-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    letter-spacing: .4px;
}

.domain-popular-badge--green {
    background: #0C4A9C;
}

.domain-popular-badge--orange {
    background: var(--sh-orange, #0C4A9C);
}

.domain-ext-badge {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--sh-primary, #0C4A9C);
    background: #e8eef8;
    padding: .3rem 1.125rem;
    border-radius: 12px;
    letter-spacing: .5px;
}

.domain-price-table thead th {
    font-size: .78rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    font-weight: 700;
}

.domain-price-table tbody tr:hover td {
    background: #f0f4f9;
}

/* =============================================================================
   FREE DOMAIN + MIGRATION OFFER SECTION
   ============================================================================= */
.sh-free-offer {
    padding: 5rem 0;
    background: #fff;
    border-top: 1px solid var(--sh-border, #e2e8f0);
}

.sh-free-offer-img-wrap {
    position: relative;
    display: inline-block;
}

.sh-free-offer-img-bg {
    position: absolute;
    inset: 10% 5%;
    background: linear-gradient(135deg, #e8eef8, #c5d5ea);
    border-radius: 50%;
    z-index: 0;
}

.sh-free-offer-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .1));
}

.sh-free-offer-badge {
    display: inline-block;
    background: #e8eef8;
    color: var(--sh-orange, #0C4A9C);
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem 1.1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 1.1rem;
    border: 1.5px solid #c5d5ea;
}

.sh-free-offer-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0f4f9;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    transition: border-color .2s, box-shadow .2s;
}

.sh-free-offer-card:hover {
    border-color: var(--sh-primary, #0C4A9C);
    box-shadow: 0 4px 18px rgba(12, 74, 156, .09);
}

.sh-free-offer-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sh-free-offer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem 1.5rem;
    font-size: .875rem;
    color: var(--sh-dark, #012957);
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */
.sh-testi-section {
    padding: 5rem 0;
    background: var(--sh-bg, #f8fafc);
}

.sh-testi-header-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .3rem;
    margin-bottom: 1.25rem;
    font-size: .9375rem;
    color: var(--sh-dark, #012957);
}

.sh-testi-header-stars i {
    color: #0C4A9C;
    font-size: 1rem;
}

.sh-testi-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    padding: 1.75rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

.sh-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.sh-testi-quote {
    font-size: 2rem;
    color: #c5d5ea;
    line-height: 1;
    margin-bottom: .75rem;
}

.sh-testi-stars {
    margin-bottom: .875rem;
}

.sh-testi-stars i {
    color: #0C4A9C;
    font-size: .9rem;
    margin-right: 1px;
}

.sh-testi-text {
    font-size: .9rem;
    color: #555555;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.25rem;
}

.sh-testi-reviewer {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid var(--sh-border, #e2e8f0);
    padding-top: 1.1rem;
    margin-top: auto;
}

.sh-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: .5px;
}

.sh-testi-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--sh-dark, #012957);
    margin: 0 0 .1rem;
}

.sh-testi-role {
    font-size: .78rem;
    color: var(--sh-muted, #555555);
    margin: 0;
}

/* ── Testimonial Slider ───────────────────────────── */
.sh-testi-outer {
    position: relative;
    padding: 0 3.25rem;
}

.sh-testi-viewport {
    overflow: hidden;
}

.sh-testi-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

.sh-testi-slide {
    flex: 0 0 calc(33.333% - 1rem);
}

.sh-testi-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    cursor: poInter;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-dark, #012957);
    font-size: .875rem;
    transition: background .2s, border-color .2s, color .2s;
    z-index: 10;
}

.sh-testi-ctrl:hover {
    background: var(--sh-primary, #0C4A9C);
    border-color: var(--sh-primary, #0C4A9C);
    color: #fff;
}

.sh-testi-prev {
    left: 0;
}

.sh-testi-next {
    right: 0;
}

.sh-testi-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.75rem;
}

.sh-testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sh-border, #e2e8f0);
    border: none;
    cursor: poInter;
    padding: 0;
    transition: background .2s, transform .2s;
}

.sh-testi-dot--active {
    background: var(--sh-primary, #0C4A9C);
    transform: scale(1.3);
}

@media (max-width: 991px) {
    .sh-testi-slide {
        flex: 0 0 calc(50% - .75rem);
    }
}

@media (max-width: 575px) {
    .sh-testi-slide {
        flex: 0 0 100%;
    }

    .sh-testi-outer {
        padding: 0 2.5rem;
    }

    .sh-testi-ctrl {
        width: 38px;
        height: 38px;
        font-size: .75rem;
    }
}

/* =============================================================================
   HOME PAGE — DOMAIN PROTECTION PROMO SECTION
   ============================================================================= */

/* Shield visual */
.sh-dp-home-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.sh-dp-home-shield {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-dp-home-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(12, 74, 156, .18);
    animation: dpHomePulse 3.5s ease-in-out infinite;
}

.sh-dp-home-ring--1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.sh-dp-home-ring--2 {
    width: 144px;
    height: 144px;
    animation-delay: .6s;
    border-color: rgba(12, 74, 156, .3);
}

@keyframes dpHomePulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.sh-dp-home-core {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #0C4A9C, #0C4A9C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(12, 74, 156, .35);
    z-index: 2;
}

/* Feature pills grid */
.sh-dp-home-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
    width: 100%;
    max-width: 280px;
}

.sh-dp-home-pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: #f0f4f9;
    border: 1px solid #c5d5ea;
    border-radius: 10px;
    padding: .5rem .75rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--sh-dark, #012957);
}

/* Feature item cards (right col) */
.sh-dp-home-feat {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #f0f4f9;
    border: 1px solid #c5d5ea;
    border-radius: 12px;
    padding: .875rem;
    transition: border-color .18s, box-shadow .18s;
}

.sh-dp-home-feat:hover {
    border-color: var(--sh-primary, #0C4A9C);
    box-shadow: 0 4px 18px rgba(12, 74, 156, .09);
}

.sh-dp-home-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* =============================================================================
   FOOTER — MY ACCOUNT LINKS
   ============================================================================= */
.sh-footer-account-link {
    display: flex !important;
    align-items: center;
    gap: .45rem;
}

.sh-footer-account-link i {
    width: 14px;
    text-align: center;
    font-size: .75rem;
    opacity: .65;
}

/* =============================================================================
   HOW IT WORKS — STEPS
   ============================================================================= */
.sh-step-card {
    background: #fff;
    border-radius: var(--sh-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--sh-border);
    box-shadow: var(--sh-shadow);
    height: 100%;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}

.sh-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-shadow-hover);
}

.sh-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sh-primary);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(12, 74, 156, .35);
}

.sh-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: .5rem auto 1.25rem;
}

.sh-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sh-text);
    margin-bottom: .5rem;
}

.sh-step-desc {
    font-size: .88rem;
    color: var(--sh-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =============================================================================
   FAQ — FULL PAGE (tab pills + accordion)
   ============================================================================= */
.sh-faq-section {
    background: #f8fafc;
}

.sh-faq-tab {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--sh-border);
    background: #fff;
    color: var(--sh-text);
    font-size: .88rem;
    font-weight: 600;
    cursor: poInter;
    transition: background .15s, border-color .15s, color .15s;
    font-family: 'Inter', sans-serif;
}

.sh-faq-tab:hover {
    border-color: var(--sh-primary);
    color: var(--sh-primary);
}

.sh-faq-tab.active {
    background: var(--sh-primary);
    border-color: var(--sh-primary);
    color: #fff;
}

.sh-faq-tab-count {
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
    padding: 1px 7px;
    font-size: .75rem;
    font-weight: 700;
}

.sh-faq-tab.active .sh-faq-tab-count {
    background: rgba(255, 255, 255, .25);
}

.sh-faq-tab:not(.active) .sh-faq-tab-count {
    background: var(--sh-bg);
    color: var(--sh-muted);
}

.sh-faq-accordion .accordion-item {
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius) !important;
    margin-bottom: .5rem;
    overflow: hidden;
}

.sh-faq-accordion .accordion-button {
    font-weight: 600;
    font-size: .95rem;
    color: var(--sh-text);
    background: #fff;
    border-radius: var(--sh-radius) !important;
    padding: 1rem 1.25rem;
}

.sh-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    box-shadow: none;
}

.sh-faq-accordion .accordion-button::after {
    background-size: .9rem;
}

.sh-faq-accordion .accordion-body {
    font-size: .9rem;
    color: var(--sh-muted);
    line-height: 1.75;
    border-top: 1px solid var(--sh-border);
    background: #fff;
    padding: 1rem 1.25rem;
}

/* Bottom CTA bar */
.sh-faq-cta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--sh-shadow);
}

.sh-faq-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sh-faq-cta-text {
    flex: 1;
    font-size: .92rem;
}

/* =============================================================================
   FAQ — SHARED SERVICE PAGE COMPONENT
   ============================================================================= */
.sh-faqs-section {
    background: #f8fafc;
}

.sh-faqs-support-card {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 2rem;
    box-shadow: var(--sh-shadow);
    position: sticky;
    top: 90px;
}

.sh-faqs-support-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sh-primary-light);
    color: var(--sh-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.sh-faqs-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    font-size: .8rem;
    color: var(--sh-muted);
    border-top: 1px solid var(--sh-border);
    padding-top: .75rem;
}

/* =============================================================================
   SSL CERTIFICATES PAGE
   ============================================================================= */

/* Why SSL cards */
.sh-ssl-why-card {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.sh-ssl-why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-shadow-hover);
}

.sh-ssl-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sh-ssl-why-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--sh-text);
    margin-bottom: .4rem;
}

.sh-ssl-why-desc {
    font-size: .85rem;
    color: var(--sh-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* SSL type comparison cards */
.sh-ssl-type-card {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.sh-ssl-type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-shadow-hover);
}

.sh-ssl-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.sh-ssl-type-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.sh-ssl-type-meta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    font-size: .78rem;
    color: var(--sh-muted);
    margin-bottom: .75rem;
}

.sh-ssl-type-best {
    font-size: .83rem;
    color: var(--sh-muted);
    margin-bottom: .75rem;
    line-height: 1.5;
}

.sh-ssl-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-ssl-type-list li {
    font-size: .85rem;
    color: var(--sh-text);
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem 0;
    border-bottom: 1px solid var(--sh-border);
}

.sh-ssl-type-list li:last-child {
    border-bottom: none;
}

.sh-ssl-type-list li i {
    flex-shrink: 0;
    font-size: .75rem;
}

/* SSL plan cards */
.sh-ssl-card {
    background: #fff;
    border: 1.5px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
}

.sh-ssl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(12, 74, 156, .15);
    border-color: var(--sh-primary);
}

.sh-ssl-card--popular {
    border-color: var(--sh-primary);
    box-shadow: 0 4px 24px rgba(12, 74, 156, .18);
}

.sh-ssl-popular-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sh-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 0 0 10px 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
}

.sh-ssl-card-head {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.sh-ssl-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto .75rem;
}

.sh-ssl-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.sh-ssl-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sh-text);
    margin-bottom: .2rem;
}

.sh-ssl-type {
    font-size: .78rem;
    color: var(--sh-muted);
    margin-bottom: 0;
}

/* Price block */
.sh-ssl-price-wrap {
    text-align: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--sh-border);
    border-bottom: 1px solid var(--sh-border);
}

.sh-ssl-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .2rem;
    line-height: 1;
}

.sh-ssl-currency {
    font-size: .85rem;
    font-weight: 600;
    color: var(--sh-muted);
}

.sh-ssl-amount {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--sh-text);
}

.sh-ssl-period {
    font-size: .82rem;
    color: var(--sh-muted);
}

.sh-ssl-issuance {
    font-size: .75rem;
    color: var(--sh-muted);
    margin-top: .4rem;
}

/* Features list */
.sh-ssl-features {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-ssl-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: var(--sh-text);
    padding: .35rem 0;
    border-bottom: 1px solid var(--sh-border);
}

.sh-ssl-features li:last-child {
    border-bottom: none;
}

.sh-ssl-features li i {
    font-size: .75rem;
    flex-shrink: 0;
}

/* Footer */
.sh-ssl-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--sh-border);
}

.sh-ssl-btn {
    display: block;
    text-align: center;
    border: 2px solid var(--sh-primary);
    background: transparent;
    color: var(--sh-primary);
    border-radius: 10px;
    padding: .7rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: poInter;
    transition: background .15s, color .15s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.sh-ssl-btn:hover {
    background: var(--sh-primary);
    color: #fff;
}

.sh-ssl-btn--popular {
    background: var(--sh-primary);
    color: #fff;
}

.sh-ssl-btn--popular:hover {
    background: var(--sh-primary-dark);
    border-color: var(--sh-primary-dark);
    color: #fff;
}

.sh-ssl-help {
    display: block;
    text-align: center;
    font-size: .78rem;
    color: var(--sh-muted);
    margin-top: .75rem;
    text-decoration: none;
}

.sh-ssl-help span {
    color: var(--sh-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Trust row */
.sh-ssl-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 2rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--sh-border);
}

.sh-ssl-trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    color: var(--sh-muted);
    font-weight: 600;
}

.sh-ssl-trust-item i {
    font-size: .85rem;
}

/* =============================================================================
   LEGAL PAGES
   ============================================================================= */
.sh-legal-doc {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--sh-shadow);
}

@media (min-width: 768px) {
    .sh-legal-doc {
        padding: 3rem 3.5rem;
    }
}

.sh-legal-intro {
    background: var(--sh-bg);
    border-left: 4px solid var(--sh-primary);
    border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}

.sh-legal-intro p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.75;
    color: var(--sh-text);
}

.sh-legal-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sh-primary);
    margin-top: 2rem;
    margin-bottom: .6rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--sh-border);
}

.sh-legal-doc p {
    font-size: .92rem;
    line-height: 1.8;
    color: #555555;
}

.sh-legal-doc ul {
    padding-left: 1.25rem;
}

.sh-legal-doc ul li {
    font-size: .92rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: .25rem;
}

.sh-legal-hr {
    border-color: var(--sh-border);
    margin: 2rem 0 1.25rem;
}

.sh-legal-footer {
    font-size: .85rem;
    color: var(--sh-muted);
    margin: 0;
}

/* Callout blocks (refund page) */
.sh-legal-callout {
    border-radius: var(--sh-radius);
    padding: 1rem 1.25rem;
    margin-bottom: .75rem;
    border-left: 3px solid transparent;
}

.sh-legal-callout h6 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.sh-legal-callout p {
    font-size: .85rem;
    margin: 0;
    color: inherit;
}

.sh-legal-callout--blue {
    background: #e8eef8;
    border-left-color: #0C4A9C;
    color: #012957;
}

.sh-legal-callout--indigo {
    background: #e8eef8;
    border-left-color: #0C4A9C;
    color: #012957;
}

.sh-legal-callout--green {
    background: #e8eef8;
    border-left-color: #0C4A9C;
    color: #012957;
}

.sh-legal-callout--gray {
    background: #f8fafc;
    border-left-color: #555555;
    color: #555555;
}

/* Cookie card (cookie policy) */
.sh-legal-cookie-card {
    background: var(--sh-bg);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    padding: 1rem;
    height: 100%;
}

.sh-legal-cookie-card i {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    display: block;
}

.sh-legal-cookie-card h6 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--sh-text);
}

.sh-legal-cookie-card p {
    font-size: .82rem;
    color: var(--sh-muted);
    margin: 0;
    line-height: 1.6;
}

/* =============================================================================
   GRADIENT SECTION UTILITIES
   ============================================================================= */

.gradient-section {
    /* color: #004F71; */
    background: radial-gradient(1100px 680px at 10% 0, rgba(12, 74, 156, .22), transparent 55%), radial-gradient(1100px 680px at 90% 10%, rgba(12, 74, 156, .18), transparent 55%), radial-gradient(1000px 620px at 50% 110%, rgba(12, 74, 156, .14), transparent 60%), radial-gradient(900px 560px at 70% 55%, rgba(12, 74, 156, .14), transparent 60%), linear-gradient(180deg, #fff, #f7f8ff) !important;
}

.gradient-section-two {
    background: linear-gradient(248.27deg, #e8eef8 -7.46%, #FFFFFF 39.01%, #FFFFFF 70.09%, #c5d5ea 108.95%) !important;
}

.gradient-section-three {
    background: linear-gradient(41deg, #000000 82%, #012957 100%) !important;
}

.gradient-section-four {
    background-image: linear-gradient(-225deg, #012957 25%, #0C4A9C) !important;
}

/* ── About Page: Timeline ── */
.sh-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.sh-timeline::before {
    content: '';
    position: absolute;
    left: .6rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sh-border);
}

.sh-timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.sh-timeline-item:last-child {
    padding-bottom: 0;
}

.sh-timeline-dot {
    position: absolute;
    left: -1.9rem;
    top: .3rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sh-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--sh-primary);
}

.sh-timeline-dot--green {
    background: var(--sh-green);
    box-shadow: 0 0 0 2px var(--sh-green);
}

.sh-timeline-dot--orange {
    background: var(--sh-orange);
    box-shadow: 0 0 0 2px var(--sh-orange);
}

.sh-timeline-year {
    font-size: .72rem;
    font-weight: 700;
    color: var(--sh-primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .2rem;
}

/* ── About Page: Team Cards ── */
.sh-team-card {
    padding: 1.5rem 1rem;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    background: var(--sh-card);
    transition: box-shadow .2s, transform .2s;
}

.sh-team-card:hover {
    box-shadow: 0 6px 24px rgba(12, 74, 156, .12);
    transform: translateY(-3px);
}

.sh-team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
}

.sh-team-social {
    display: flex;
    gap: .5rem;
    justify-content: center;
}

.sh-team-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sh-bg);
    color: var(--sh-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.sh-team-social a:hover {
    background: var(--sh-primary);
    color: #fff;
}

/* ── Support Page: Form Sections ── */
.sh-form-section {
    padding: 1.25rem;
    border-radius: var(--sh-radius);
    border: 1px solid var(--sh-border);
    background: var(--sh-bg);
}

.sh-form-section-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--sh-muted);
    margin-bottom: .75rem;
}

/* ── Homepage: Hero Social Proof ── */
.sh-hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    margin-bottom: .25rem;
    font-size: .88rem;
}

.sh-hero-proof-sep {
    color: var(--sh-border);
}

/* ── Homepage: Uganda Local Stats Grid ── */
.sh-local-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.sh-local-stat {
    background: var(--sh-card);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--sh-shadow);
}

.sh-local-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--sh-primary);
    line-height: 1;
    margin-bottom: .4rem;
    letter-spacing: -.03em;
}

.sh-local-stat-label {
    font-size: .8rem;
    color: var(--sh-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════
   HERO — Professional Redesign (overrides)
══════════════════════════════════════ */
.sh-hero {
    background: #012957 !important;
    background-image:
        radial-gradient(ellipse 900px 700px at 10% 50%, rgba(12, 74, 156, .45) 0%, transparent 55%),
        radial-gradient(ellipse 600px 500px at 88% 8%, rgba(12, 74, 156, .28) 0%, transparent 50%),
        radial-gradient(ellipse 700px 600px at 70% 95%, rgba(12, 74, 156, .18) 0%, transparent 55%) !important;
    padding: 90px 0 115px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtle dot-grid overlay */
.sh-hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .045) 1.5px, transparent 1.5px) !important;
    background-size: 38px 38px !important;
    pointer-events: none !important;
    z-index: 0 !important;
    top: unset !important;
    right: unset !important;
    width: unset !important;
    height: unset !important;
    border-radius: unset !important;
}

/* Glow blob top-right */
.sh-hero::after {
    content: '' !important;
    position: absolute !important;
    top: -160px !important;
    right: -160px !important;
    width: 640px !important;
    height: 640px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(12, 74, 156, .14), transparent 70%) !important;
    pointer-events: none !important;
    bottom: unset !important;
    left: unset !important;
}

/* Badge with animated dot */
.sh-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: .8rem !important;
    font-weight: 600 !important;
    padding: 6px 18px 6px 14px !important;
    border-radius: 30px !important;
    margin-bottom: 28px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.sh-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
    animation: shBadgePulse 2.2s ease-in-out infinite;
}

@keyframes shBadgePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    }

    50% {
        opacity: .75;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
    }
}

/* Title with gradient accent word */
.sh-hero-title {
    font-size: clamp(2.5rem, 5.8vw, 3.8rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
    letter-spacing: -.035em !important;
}

.sh-hero-title-accent {
    background: linear-gradient(130deg, #ffffff 0%, #c5d5ea 55%, #e8eef8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Subtitle */
.sh-hero-subtitle {
    font-size: 1.075rem !important;
    color: rgba(255, 255, 255, .72) !important;
    margin-bottom: 38px !important;
    line-height: 1.75 !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.sh-hero-subtitle strong {
    color: #fff !important;
}

/* Domain search bar — polished */
.sh-domain-form {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .12), 0 16px 48px rgba(0, 0, 0, .4) !important;
    height: 62px !important;
}

.sh-domain-btn {
    padding: 0 30px !important;
    font-size: 1rem !important;
    letter-spacing: .01em !important;
    background: linear-gradient(135deg, #0C4A9C, #012957) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15) !important;
}

.sh-domain-btn:hover {
    background: linear-gradient(135deg, #012957, #c2410c) !important;
}

/* TLD chips */
.sh-tld-row {
    margin-top: 16px !important;
}

/* Feature benefits strip */
.sh-hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.sh-hero-feat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 24px;
    padding: 7px 16px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: background .18s, border-color .18s;
}

.sh-hero-feat:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.sh-hero-feat i {
    font-size: .85rem;
    color: #ffffff;
}

/* Floating feature cards (absolute positioned) */
.sh-hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 18px;
    z-index: 2;
    animation: shFloatBob 5s ease-in-out infinite;
}

.sh-hero-float--left {
    left: 3%;
    top: 32%;
    animation-delay: 0s;
}

.sh-hero-float--right {
    right: 3%;
    top: 18%;
    animation-delay: 1.5s;
}

.sh-hero-float--bottom {
    right: 4%;
    bottom: 22%;
    animation-delay: 3s;
}

@keyframes shFloatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.sh-hero-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sh-hero-float-title {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.sh-hero-float-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 1px;
}

@media (max-width: 991px) {
    .sh-hero {
        padding: 70px 0 90px !important;
    }
}

@media (max-width: 575px) {
    .sh-hero-title {
        font-size: 2.1rem !important;
    }

    .sh-hero-features {
        gap: 7px;
    }

    .sh-hero-feat {
        font-size: .75rem;
        padding: 6px 12px;
    }
}

/* =============================================================================
   Cart Page Styles
   ============================================================================= */

/* ── Cart layout ───────────────────────────────────────────── */
.cart-wrap {
    background: #f5f7fa;
    padding: 40px 0 60px;
}

.cart-panel {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 8px;
    overflow: hidden;
}

.cart-thead {
    background: #f8f9fc;
    border-bottom: 1px solid #e3e7ef;
}

.cart-thead th {
    padding: 10px 20px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #555555;
}

.cart-row {
    border-bottom: 1px solid #f0f2f6;
    transition: background .12s;
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-row:hover {
    background: #fafbff;
}

.cart-cell {
    padding: 18px 20px;
    vertical-align: middle;
}

.item-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
}

.item-name {
    font-weight: 600;
    color: #000000;
    font-size: .95rem;
    line-height: 1.3;
}

.item-sub {
    font-size: .8rem;
    color: #555555;
    margin-top: 2px;
}

.period-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: .78rem;
    font-weight: 500;
    color: #555555;
}

.price-col {
    font-size: .95rem;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

.remove-btn {
    background: none;
    border: none;
    padding: 0;
    color: #555555;
    font-size: .8rem;
    cursor: poInter;
    transition: color .15s;
}

.remove-btn:hover {
    color: #0C4A9C;
}

/* Domain widget */
.domain-widget {
    background: #f8f9fc;
    border-top: 1px solid #e3e7ef;
    padding: 16px 20px 16px 76px;
}

.domain-widget .form-control {
    font-size: .875rem;
}

.domain-widget .form-check-label {
    font-size: .85rem;
}

/* Summary sidebar */
.summary-panel {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f6;
    font-size: .875rem;
}

.summary-line:last-of-type {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: #0C4A9C;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: .95rem;
    text-align: center;
    cursor: poInter;
    text-decoration: none;
    transition: background .15s;
}

.checkout-btn:hover {
    background: #012957;
    color: #fff;
}

.secondary-link {
    font-size: .8rem;
    color: #555555;
    text-decoration: none;
}

.secondary-link:hover {
    color: #555555;
}

/* Empty state (legacy) */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

/* =============================================================================
   Cart Hub — Empty State Service Cards
   ============================================================================= */

.cart-hub-wrap {
    background: #f5f7fa;
    padding: 48px 0 72px;
}

.cart-hub-eyebrow {
    display: inline-flex;
    align-items: center;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .02em;
}

.cart-hub-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cart-hub-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

.cart-hub-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Service card — vertical layout */
.service-card {
    display: block;
    background: #fff;
    border: 1.5px solid #e3e7ef;
    border-radius: 14px;
    padding: 28px 24px 24px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}

.service-card:hover {
    border-color: #0C4A9C;
    box-shadow: 0 8px 28px rgba(12, 74, 156, .13);
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
}

.service-card-featured {
    border-color: #0C4A9C;
    background: linear-gradient(145deg, #f0f5ff 0%, #fff 70%);
}

/* Service card — horizontal layout (for 2-col row) */
.service-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
}

.service-card-horizontal .service-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #0C4A9C;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.service-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card-desc {
    font-size: .83rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 16px;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: #0C4A9C;
    transition: gap .15s;
}

.service-card:hover .service-card-cta {
    gap: 8px;
    color: #012957;
}

/* Trust strip */
.cart-hub-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0 24px;
    color: #9ca3af;
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cart-hub-divider::before,
.cart-hub-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e3e7ef;
}

.cart-hub-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    justify-content: center;
}

.cart-hub-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .83rem;
    color: #555;
}

/* =============================================================================
   Cart With Items — Extras
   ============================================================================= */

.cart-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-count-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: .72rem;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 8px;
}

.cart-back-link {
    font-size: .82rem;
    color: #6b7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.cart-back-link:hover {
    color: #0C4A9C;
}

.cart-domain-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.cart-domain-tag.tag-in-cart {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.cart-domain-tag.tag-register {
    background: #fff7ed;
    color: #92400e;
    border: 1px solid #fde68a;
}

.cart-change-link {
    font-size: .75rem;
    color: #6b7280;
    cursor: poInter;
    text-decoration: underline;
    transition: color .15s;
}

.cart-change-link:hover {
    color: #0C4A9C;
}

.cart-no-domain-warn {
    font-size: .8rem;
    color: #d97706;
}

.cart-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-add-link {
    font-size: .8rem;
    color: #0C4A9C;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.cart-add-link:hover {
    color: #012957;
    text-decoration: underline;
}

.cart-empty-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: .8rem;
    color: #9ca3af;
    cursor: poInter;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.cart-empty-btn:hover {
    color: #ef4444;
}

/* More Services mini cards */
.cart-more-services {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 10px;
    padding: 20px;
}

.cart-more-title {
    font-size: .85rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
}

.cart-more-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fc;
    border: 1px solid #e3e7ef;
    border-radius: 8px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, background .15s;
    height: 100%;
}

.cart-more-card:hover {
    border-color: #0C4A9C;
    background: #f0f5ff;
    color: inherit;
    text-decoration: none;
}

.cart-more-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.cart-more-label {
    font-size: .82rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.cart-more-sub {
    font-size: .74rem;
    color: #6b7280;
    margin-top: 2px;
}

/* Summary panel quick links */
.cart-summary-links {
    padding: 12px 20px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f2f6;
}

.cart-summary-link {
    font-size: .77rem;
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s;
}

.cart-summary-link:hover {
    color: #0C4A9C;
}

/* =============================================================================
   review page styles
   ============================================================================= */
/* ── Namecheap-inspired Hosting Review ── */
.nc-wrap {
    background: #f5f7fa;
    padding: 40px 0 64px;
}

.nc-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.nc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nc-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    border: 2px solid #dee2e6;
    background: #fff;
    color: #555555;
}

.nc-step-circle.done {
    background: #0C4A9C;
    border-color: #0C4A9C;
    color: #fff;
}

.nc-step-circle.active {
    background: #0C4A9C;
    border-color: #0C4A9C;
    color: #fff;
}

.nc-step-label {
    font-size: .75rem;
    font-weight: 600;
    color: #555555;
}

.nc-step-label.active {
    color: #0C4A9C;
}

.nc-step-label.done {
    color: #0C4A9C;
}

.nc-step-line {
    width: 72px;
    height: 2px;
    background: #dee2e6;
    margin-bottom: 20px;
}

.nc-step-line.done {
    background: #0C4A9C;
}

.nc-card {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 10px;
    overflow: hidden;
}

.nc-card-header {
    padding: 14px 20px;
    border-bottom: 1px solid #e3e7ef;
    background: #fafbfc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nc-card-title {
    font-size: .9rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

/* Table */
.nc-table {
    width: 100%;
    border-collapse: collapse;
}

.nc-table thead tr {
    background: #f8f9fc;
    border-bottom: 1px solid #e3e7ef;
}

.nc-table thead th {
    padding: 9px 18px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #555555;
}

.nc-table tbody tr {
    border-bottom: 1px solid #f0f2f6;
    transition: background .12s;
}

.nc-table tbody tr:last-child {
    border-bottom: none;
}

.nc-table tbody tr:hover {
    background: #fafbff;
}

.nc-table tbody td {
    padding: 16px 18px;
    vertical-align: middle;
}

.nc-table tfoot td {
    padding: 14px 18px;
    font-weight: 700;
    border-top: 2px solid #e3e7ef;
    background: #fafbfc;
}

.nc-table tr.nc-subrow td {
    padding: 9px 18px 9px 52px;
    background: #fafbfc;
}

.nc-prod-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.nc-prod-name {
    font-size: .875rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.nc-prod-sub {
    font-size: .775rem;
    color: #555555;
    margin-top: 2px;
}

.nc-term-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-size: .775rem;
    font-weight: 500;
    color: #555555;
}

.nc-price {
    font-size: .9rem;
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
}

.nc-domain-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: .7rem;
    font-weight: 600;
    white-space: nowrap;
}

.nc-domain-badge.register {
    background: #e8eef8;
    color: #012957;
    border: 1px solid #c5d5ea;
}

.nc-domain-badge.existing {
    background: #e8eef8;
    color: #0C4A9C;
    border: 1px solid #c5d5ea;
}

.nc-free-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: .7rem;
    font-weight: 600;
    background: #e8eef8;
    color: #0C4A9C;
    border: 1px solid #c5d5ea;
}

/* Modify footer inside card */
.nc-modify-bar {
    padding: 10px 18px;
    border-top: 1px solid #f0f2f6;
    background: #fafbfc;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nc-modify-btn {
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border: 1px solid #e3e7ef;
    border-radius: 6px;
    background: #fff;
    color: #555555;
    cursor: poInter;
    transition: all .15s;
}

.nc-modify-btn:hover {
    border-color: #0C4A9C;
    color: #0C4A9C;
}

/* Summary sidebar */
.nc-summary {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.nc-summary-header {
    padding: 14px 20px;
    background: #fafbfc;
    border-bottom: 1px solid #e3e7ef;
}

.nc-summary-title {
    font-size: .85rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.nc-summary-body {
    padding: 14px 20px;
}

.nc-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f6;
    font-size: .82rem;
}

.nc-summary-line:last-of-type {
    border-bottom: none;
}

.nc-summary-label {
    color: #555555;
    max-width: 58%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nc-summary-val {
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

.nc-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-top: 2px solid #e3e7ef;
    font-weight: 800;
    font-size: .95rem;
    color: #000000;
}

.nc-summary-total-val {
    color: #0C4A9C;
    font-size: 1.05rem;
    white-space: nowrap;
}

.nc-btn-proceed {
    display: block;
    width: 100%;
    padding: 13px;
    background: #0C4A9C;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    cursor: poInter;
    text-decoration: none;
    transition: background .15s;
}

.nc-btn-proceed:hover {
    background: #012957;
    color: #fff;
}

.nc-btn-cancel {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: #fff;
    color: #555555;
    border: 1px solid #e3e7ef;
    border-radius: 6px;
    font-weight: 600;
    font-size: .8rem;
    text-align: center;
    cursor: poInter;
    transition: all .15s;
}

.nc-btn-cancel:hover {
    border-color: #0C4A9C;
    color: #0C4A9C;
}

.nc-trust {
    padding: 14px 20px;
    border-top: 1px solid #f0f2f6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: #555555;
}

/* Upsell card */
.nc-upsell-chevron {
    transition: transform .2s;
}

.nc-upsell-chevron.open {
    transform: rotate(180deg);
}

.plan-radio:checked+.plan-card {
    border-color: #0C4A9C !important;
    background: #e8eef8;
    box-shadow: 0 0 0 3px rgba(12, 74, 156, .12);
}

.plan-card {
    cursor: poInter;
    transition: all .15s;
}

.plan-card:hover {
    border-color: #ffffff;
}

/* =============================================================================
   pricing page styles
   ============================================================================= */
/* ═══════════════════════════════════════
   DOMAIN PRICING PAGE  (.sh-dpr-*)
   ═══════════════════════════════════════ */

/* ── Popular cards ── */
.sh-dpr-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.sh-dpr-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.sh-dpr-card--featured {
    border-color: var(--sh-primary, #0C4A9C);
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .06), 0 4px 24px rgba(0, 0, 0, .08);
}

.sh-dpr-card--ugandan {
    border-color: #0C4A9C;
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .06), 0 4px 24px rgba(0, 0, 0, .08);
}

/* Badge */
.sh-dpr-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .28rem .9rem;
    white-space: nowrap;
}

.sh-dpr-badge--green {
    background: #0C4A9C;
}

.sh-dpr-badge--orange {
    background: #012957;
}

/* Icon */
.sh-dpr-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* Extension name */
.sh-dpr-ext {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--sh-dark, #012957);
    letter-spacing: -.01em;
    margin-bottom: .75rem;
}

/* Price */
.sh-dpr-price-wrap {
    display: flex;
    align-items: baseline;
    gap: .2rem;
    justify-content: center;
    margin-bottom: .25rem;
}

.sh-dpr-currency {
    font-size: .85rem;
    font-weight: 700;
    color: var(--sh-muted, #555555);
}

.sh-dpr-amount {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--sh-primary, #0C4A9C);
    line-height: 1;
}

.sh-dpr-period {
    font-size: .78rem;
    color: var(--sh-muted, #555555);
    margin-bottom: .5rem;
}

/* Renewal */
.sh-dpr-renewal {
    font-size: .75rem;
    color: var(--sh-muted, #555555);
    margin-bottom: .5rem;
}

/* Savings badge */
.sh-dpr-saving {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    background: #e8eef8;
    color: #012957;
    border-radius: 999px;
    padding: .2rem .7rem;
    margin-bottom: 1.25rem;
}

.sh-dpr-saving--neutral {
    background: var(--sh-bg, #f8fafc);
    color: var(--sh-muted, #555555);
}

/* Features */
.sh-dpr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    flex: 1;
}

.sh-dpr-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--sh-muted, #555555);
}

.sh-dpr-features i {
    color: #0C4A9C;
    font-size: .7rem;
    flex-shrink: 0;
}

/* CTA button */
.sh-dpr-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: .65rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    transition: all .18s;
    white-space: nowrap;
}

.sh-dpr-btn--primary {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
}

.sh-dpr-btn--primary:hover {
    background: #012957;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 156, .3);
}

.sh-dpr-btn--outline {
    border: 1.5px solid var(--sh-primary, #0C4A9C);
    color: var(--sh-primary, #0C4A9C);
}

.sh-dpr-btn--outline:hover {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Benefits strip icons ── */
.sh-dpr-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── Table card header ── */
.sh-dpr-table-header {
    background: var(--sh-dark, #012957);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Search inside table header */
.sh-dpr-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 240px;
    max-width: 340px;
    flex: 1;
}

.sh-dpr-search-icon {
    position: absolute;
    left: .875rem;
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    pointer-events: none;
}

.sh-dpr-search-input {
    width: 100%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: .55rem .875rem .55rem 2.25rem;
    font-size: .875rem;
    color: #fff;
    outline: none;
    transition: background .15s, border-color .15s;
}

.sh-dpr-search-input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.sh-dpr-search-input:focus {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .4);
}

.sh-dpr-search-clear {
    position: absolute;
    right: .7rem;
    color: rgba(255, 255, 255, .6);
    cursor: poInter;
    font-size: .8rem;
    padding: .2rem;
    transition: color .15s;
}

.sh-dpr-search-clear:hover {
    color: #fff;
}

/* ── Table styles ── */
.sh-dpr-table thead tr {
    background: var(--sh-bg, #f8fafc);
}

.sh-dpr-table thead th {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--sh-muted, #555555);
    border-bottom: 1.5px solid var(--sh-border, #e2e8f0);
}

.sh-dpr-table tbody tr {
    border-bottom: 1px solid var(--sh-border, #f1f5f9);
    transition: background .12s;
}

.sh-dpr-table tbody tr:last-child {
    border-bottom: none;
}

.sh-dpr-tbl-ext {
    font-weight: 800;
    font-size: 1rem;
    color: var(--sh-primary, #0C4A9C);
}

.sh-dpr-tbl-btn {
    display: inline-block;
    padding: .35rem .9rem;
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--sh-primary, #0C4A9C);
    color: var(--sh-primary, #0C4A9C);
    transition: all .15s;
    white-space: nowrap;
}

.sh-dpr-tbl-btn:hover {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
}

/* ── Why icons ── */
.sh-dpr-why-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============================================================================
   suggestions page styles
   ============================================================================= */
.sh-suggest-hero {
    background: linear-gradient(135deg, #f0f4f9 0%, #e8eef8 100%);
}

.sh-suggest-card {
    border-radius: var(--sh-radius-lg);
}

.sh-domain-card {
    background: #fff;
    border: 1.5px solid var(--sh-border);
    border-radius: var(--sh-radius-lg);
    padding: 1.25rem 1.25rem 1rem;
    transition: box-shadow .18s, border-color .18s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sh-domain-card:hover {
    box-shadow: var(--sh-shadow);
    border-color: var(--sh-primary);
}

.sh-domain-card--taken {
    opacity: .65;
}

.sh-domain-card--taken:hover {
    box-shadow: none;
    border-color: var(--sh-border);
}

.sh-domain-name {
    font-size: 1rem;
    font-weight: 700;
    word-break: break-all;
    color: var(--sh-dark);
    margin-bottom: .25rem;
}

.sh-domain-name .sh-ext {
    color: var(--sh-primary);
}

.sh-domain-price {
    font-size: .8rem;
    color: var(--sh-muted);
    margin-bottom: .75rem;
}

.sh-domain-card__footer {
    margin-top: auto;
}

.sh-domain-reg-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    padding: .42rem 1rem;
    border-radius: 8px;
    background: var(--sh-primary);
    color: #fff;
    border: none;
    cursor: poInter;
    transition: background .15s;
    width: 100%;
    justify-content: center;
}

.sh-domain-reg-btn:hover {
    background: var(--sh-primary-dark, #012957);
}

.sh-domain-reg-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

/* =============================================================================
   domain-protection page styles
   ============================================================================= */
/* ═══════════════════════════════════════
   DOMAIN PROTECTION PAGE
   ═══════════════════════════════════════ */

/* Hero */
.sh-dp-hero {
    background: linear-gradient(135deg, #012957 0%, #012957 60%, #0C4A9C 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sh-dp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 600px at 80% 50%, rgba(12, 74, 156, .15), transparent 70%);
    pointer-events: none;
}

.sh-dp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(12, 74, 156, .2);
    border: 1px solid rgba(12, 74, 156, .4);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .35rem .9rem;
    margin-bottom: 1.25rem;
}

.sh-dp-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.sh-dp-hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
}

.sh-dp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.25rem;
    margin-top: 1.5rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
}

/* Shield graphic */
.sh-dp-shield-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-dp-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(12, 74, 156, .25);
    animation: dpRingPulse 4s ease-in-out infinite;
}

.sh-dp-ring--1 {
    width: 340px;
    height: 340px;
    animation-delay: 0s;
}

.sh-dp-ring--2 {
    width: 260px;
    height: 260px;
    animation-delay: .7s;
}

.sh-dp-ring--3 {
    width: 180px;
    height: 180px;
    animation-delay: 1.4s;
    border-color: rgba(12, 74, 156, .45);
}

@keyframes dpRingPulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.03);
    }
}

.sh-dp-shield-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0C4A9C, #0C4A9C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    box-shadow: 0 0 60px rgba(12, 74, 156, .5);
    z-index: 2;
}

.sh-dp-pill {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem;
    z-index: 3;
}

.sh-dp-pill--1 {
    top: 20px;
    right: -10px;
}

.sh-dp-pill--2 {
    bottom: 40px;
    right: -20px;
}

.sh-dp-pill--3 {
    bottom: 20px;
    left: -20px;
}

.sh-dp-pill--4 {
    top: 60px;
    left: -10px;
}

/* Stats bar */
.sh-dp-stats {
    background: #fff;
    border-bottom: 1px solid var(--sh-border, #e2e8f0);
    padding: 1.75rem 0;
}

.sh-dp-stat-item {
    padding: 1rem;
    border-right: 1px solid var(--sh-border, #e2e8f0);
}

.sh-dp-stat-item:last-child {
    border-right: none;
}

.sh-dp-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--sh-primary, #0C4A9C);
    line-height: 1.1;
}

.sh-dp-stat-label {
    font-size: .8rem;
    color: var(--sh-muted, #555555);
    margin-top: .3rem;
}

/* Feature cards */
.sh-dp-feat {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: var(--sh-radius-lg, 16px);
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}

.sh-dp-feat:hover {
    box-shadow: var(--sh-shadow-hover, 0 12px 40px rgba(0, 0, 0, .12));
    border-color: var(--sh-primary, #0C4A9C);
    transform: translateY(-4px);
}

.sh-dp-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.sh-dp-feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sh-dark, #012957);
    margin-bottom: .6rem;
}

.sh-dp-feat-desc {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--sh-muted, #555555);
    margin-bottom: 0;
}

/* Steps */
.sh-dp-step {
    padding: 2rem 1.5rem;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: var(--sh-radius-lg, 16px);
    background: #fff;
    transition: box-shadow .2s;
    height: 100%;
}

.sh-dp-step:hover {
    box-shadow: var(--sh-shadow, 0 4px 24px rgba(0, 0, 0, .08));
}

.sh-dp-step-num {
    width: 36px;
    height: 36px;
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    margin: 0 auto 1rem;
}

.sh-dp-step-icon {
    font-size: 2rem;
    color: var(--sh-primary, #0C4A9C);
}

/* Comparison table */
.sh-dp-compare-table {
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: var(--sh-radius-lg, 16px);
    overflow: hidden;
}

.sh-dp-compare-header,
.sh-dp-compare-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 0;
}

.sh-dp-compare-header {
    background: var(--sh-dark, #012957);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sh-dp-compare-header>div,
.sh-dp-compare-row>div {
    padding: .875rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.sh-dp-compare-row>div {
    border-right-color: var(--sh-border, #e2e8f0);
    font-size: .875rem;
}

.sh-dp-compare-row:nth-child(odd) {
    background: #fff;
}

.sh-dp-compare-row:nth-child(even) {
    background: var(--sh-bg, #f8fafc);
}

.sh-dp-compare-col--no {
    color: var(--sh-muted, #555555);
}

.sh-dp-compare-col--yes {
    color: var(--sh-dark, #012957);
    font-weight: 500;
}

.sh-dp-compare-header .sh-dp-compare-col--no {
    color: #555555;
}

.sh-dp-compare-header .sh-dp-compare-col--yes {
    color: #0C4A9C;
}

/* Pricing cards */
.sh-dp-price-card {
    background: #fff;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: 20px;
    padding: 2.25rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}

.sh-dp-price-card:hover {
    box-shadow: var(--sh-shadow-hover, 0 12px 40px rgba(0, 0, 0, .12));
}

.sh-dp-price-card--featured {
    border-color: var(--sh-primary, #0C4A9C);
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .06), var(--sh-shadow, 0 4px 24px rgba(0, 0, 0, .08));
}

.sh-dp-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .3rem 1rem;
    white-space: nowrap;
}

.sh-dp-price-icon {
    width: 60px;
    height: 60px;
    background: #e8eef8;
    color: var(--sh-primary, #0C4A9C);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.sh-dp-price-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--sh-dark, #012957);
    margin-bottom: .75rem;
}

.sh-dp-price-amount {
    display: flex;
    align-items: baseline;
    gap: .3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.sh-dp-price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sh-muted, #555555);
}

.sh-dp-price-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sh-primary, #0C4A9C);
    line-height: 1;
}

.sh-dp-price-period {
    font-size: .85rem;
    color: var(--sh-muted, #555555);
}

.sh-dp-price-desc {
    font-size: .875rem;
    color: var(--sh-muted, #555555);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.sh-dp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}

.sh-dp-price-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    color: var(--sh-dark, #012957);
}

.sh-dp-price-features i {
    color: #0C4A9C;
    font-size: .8rem;
}

.sh-dp-price-btn {
    display: block;
    text-align: center;
    padding: .75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .18s;
}

.sh-dp-price-btn--primary {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
}

.sh-dp-price-btn--primary:hover {
    background: #012957;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 156, .3);
}

.sh-dp-price-btn--outline {
    border: 1.5px solid var(--sh-primary, #0C4A9C);
    color: var(--sh-primary, #0C4A9C);
}

.sh-dp-price-btn--outline:hover {
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 575px) {

    .sh-dp-compare-header,
    .sh-dp-compare-row {
        grid-template-columns: 1fr 1fr;
    }

    .sh-dp-compare-feature {
        display: none;
    }

    .sh-dp-compare-col--no,
    .sh-dp-compare-col--yes {
        border-right: none;
    }
}

/* =============================================================================
   domain-transfer page styles
   ============================================================================= */
/* ═══════════════════════════════════════
   DOMAIN TRANSFER PAGE
   ═══════════════════════════════════════ */

/* Hero */
.sh-dt-hero {
    background: linear-gradient(135deg, #012957 0%, #012957 60%, #0C4A9C 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sh-dt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 600px at 80% 50%, rgba(12, 74, 156, .15), transparent 70%);
    pointer-events: none;
}

.sh-dt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(12, 74, 156, .2);
    border: 1px solid rgba(12, 74, 156, .4);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .35rem .9rem;
    margin-bottom: 1.25rem;
}

.sh-dt-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.sh-dt-hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
}

.sh-dt-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.25rem;
    margin-top: 1.5rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
}

/* Visual graphic */
.sh-dt-visual-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-dt-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(12, 74, 156, .25);
    animation: dtRingPulse 4s ease-in-out infinite;
}

.sh-dt-ring--1 {
    width: 340px;
    height: 340px;
    animation-delay: 0s;
}

.sh-dt-ring--2 {
    width: 260px;
    height: 260px;
    animation-delay: .7s;
}

.sh-dt-ring--3 {
    width: 180px;
    height: 180px;
    animation-delay: 1.4s;
    border-color: rgba(12, 74, 156, .45);
}

@keyframes dtRingPulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.03);
    }
}

.sh-dt-visual-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0C4A9C, #0C4A9C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: #fff;
    box-shadow: 0 0 60px rgba(12, 74, 156, .5);
    z-index: 2;
}

.sh-dt-pill {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem;
    z-index: 3;
}

.sh-dt-pill--1 {
    top: 20px;
    right: -10px;
}

.sh-dt-pill--2 {
    bottom: 40px;
    right: -20px;
}

.sh-dt-pill--3 {
    bottom: 20px;
    left: -20px;
}

.sh-dt-pill--4 {
    top: 60px;
    left: -10px;
}

/* Steps */
.sh-dt-step {
    padding: 2rem 1.5rem;
    border: 1.5px solid var(--sh-border, #e2e8f0);
    border-radius: var(--sh-radius-lg, 16px);
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}

.sh-dt-step:hover {
    box-shadow: var(--sh-shadow, 0 4px 24px rgba(0, 0, 0, .08));
    transform: translateY(-3px);
}

.sh-dt-step-num {
    width: 36px;
    height: 36px;
    background: var(--sh-primary, #0C4A9C);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    margin: 0 auto 1rem;
}

.sh-dt-step-icon {
    font-size: 2rem;
    color: var(--sh-primary, #0C4A9C);
}

/* What Happens Next timeline */
.sh-dt-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sh-dt-timeline li {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding-bottom: 1.1rem;
    position: relative;
}

.sh-dt-timeline li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 18px;
    width: 2px;
    height: calc(100% - 10px);
    background: var(--sh-border, #e2e8f0);
}

.sh-dt-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--sh-primary, #0C4A9C);
    flex-shrink: 0;
    margin-top: 3px;
    z-index: 1;
}

.sh-dt-tl-dot--success {
    background: #0C4A9C;
}

/* =============================================================================
   web-design page styles
   ============================================================================= */
/* Web Design Package Cards */
.sh-wd-pkg {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

.sh-wd-pkg:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.sh-wd-pkg--popular {
    border-color: #0C4A9C;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(12, 74, 156, .07);
}

.sh-wd-pkg-badge {
    background: #0C4A9C;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 0;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.sh-wd-pkg-head {
    padding: 1.75rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.sh-wd-pkg-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: .875rem;
}

.sh-wd-pkg-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #012957;
    margin: 0 0 .25rem;
}

.sh-wd-pkg-sub {
    font-size: .8rem;
    color: #555555;
    margin: 0;
}

.sh-wd-pkg-price {
    padding: 1.25rem 1.5rem .75rem;
    border-bottom: 1px solid #e2e8f0;
}

.sh-wd-pkg-currency {
    font-size: .8rem;
    font-weight: 700;
    color: #0C4A9C;
    vertical-align: super;
    margin-right: 2px;
}

.sh-wd-pkg-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0C4A9C;
}

.sh-wd-pkg-features {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    flex: 1;
}

.sh-wd-pkg-features li {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .375rem 0;
    font-size: .875rem;
    color: #555555;
    border-bottom: 1px solid #f1f5f9;
}

.sh-wd-pkg-features li:last-child {
    border-bottom: none;
}

.sh-wd-pkg-features li i.fa-check {
    color: #0C4A9C;
    font-size: .75rem;
}

.sh-wd-pkg-delivery {
    color: #555555 !important;
    font-weight: 600;
}

.sh-wd-pkg-delivery i {
    color: #0C4A9C !important;
}

.sh-wd-pkg-btn {
    display: block;
    margin: 0 1.5rem 1.5rem;
    padding: .8rem;
    background: #012957;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9375rem;
    text-decoration: none;
    transition: background .2s;
}

.sh-wd-pkg-btn:hover {
    background: #0C4A9C;
    color: #fff;
}

.sh-wd-pkg-btn--popular {
    background: #0C4A9C;
}

.sh-wd-pkg-btn--popular:hover {
    background: #012957;
}

/* =============================================================================
   RESPONSIVE NAVBAR — Mobile-first overrides
   ============================================================================= */

/* ── Topbar: compact on small phones ── */
@media (max-width: 575px) {
    .sh-topbar {
        padding: 5px 0;
        font-size: .75rem;
    }

    .sh-topbar-link {
        font-size: .75rem;
    }

    .sh-topbar-cta {
        font-size: .72rem;
        padding: 2px 9px;
    }
}

/* Hide topbar entirely on the smallest phones to save space */
@media (max-width: 374px) {
    .sh-topbar {
        display: none;
    }
}

/* ── Main navbar: reduce height & gap on tablet/mobile ── */
@media (max-width: 991px) {
    :root {
        --sh-nav-h: 60px;
    }

    .sh-nav-inner {
        gap: .5rem;
    }

    /* Ensure logo doesn't get too large */
    .sh-nav-logo img {
        height: 30px;
    }
}

@media (max-width: 575px) {
    :root {
        --sh-nav-h: 56px;
    }

    .sh-nav-inner {
        gap: .35rem;
    }

    .sh-nav-logo img {
        height: 28px;
    }

    /* Shrink cart button on small screens */
    .sh-cart-btn {
        width: 34px;
        height: 34px;
        font-size: .95rem;
    }

    .sh-hamburger {
        width: 34px;
        height: 34px;
    }
}

/* ── Mobile drawer: responsive width ── */
@media (max-width: 991px) {
    .sh-mob-drawer {
        width: min(300px, 88vw);
    }
}

@media (max-width: 374px) {
    .sh-mob-drawer {
        width: 92vw;
    }

    .sh-mob-header {
        padding: 12px 16px;
    }

    .sh-mob-link,
    .sh-mob-parent {
        padding: 10px 16px;
        font-size: .875rem;
    }

    .sh-mob-sub li a {
        padding: 7px 16px 7px 28px;
    }

    .sh-mob-auth {
        padding: 12px 16px;
    }
}

/* ── Mega menus: never show on tablet/mobile (drawer handles it) ── */
@media (max-width: 991px) {

    .sh-mega-panel,
    .sh-drop-menu {
        display: none !important;
    }
}

/* ── Prevent horizontal scroll from mega panels on edge cases ── */
.sh-site-header {
    overflow: visible;
}

@media (max-width: 991px) {
    .sh-site-header {
        overflow: hidden;
    }

    /* Sticky nav stays on top */
    .sh-main-nav {
        position: sticky;
        top: 0;
        z-index: 1040;
    }
}

/* ── General body: prevent horizontal overflow on any page ── */
body {
    overflow-x: hidden;
}

/* ── Cards & grids: collapse gracefully on small screens ── */
@media (max-width: 575px) {

    .sh-cat-grid,
    .sh-local-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .sh-why-card,
    .sh-step-card {
        margin-bottom: .75rem;
    }

    /* Section padding reduction */
    .sh-hero {
        padding: 52px 0 68px !important;
    }

    .sh-hero-title {
        font-size: clamp(1.7rem, 7vw, 2.25rem) !important;
    }

    /* Domain search bar: stack on mobile */
    .sh-domain-form {
        flex-direction: column;
        height: auto;
        border-radius: 10px;
    }

    .sh-domain-input-wrap {
        width: 100%;
        height: 48px;
        border-bottom: 1px solid #e5e7eb;
    }

    .sh-tld-select {
        border: none;
        border-bottom: 1px solid #e5e7eb;
        height: 42px;
        width: 100%;
    }

    .sh-domain-btn {
        width: 100%;
        height: 46px;
        border-radius: 0 0 10px 10px;
    }

    /* Stats strip: center on mobile */
    .sh-stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .sh-stat-divider {
        display: none;
    }

    /* Footer columns: single column */
    .sh-footer-top [class*="col-"] {
        margin-bottom: 1.5rem;
    }
}

/* ── Testimonial slider: single card on mobile ── */
@media (max-width: 575px) {
    .sh-testi-slide {
        flex: 0 0 100%;
    }

    .sh-testi-outer {
        padding: 0 2.25rem;
    }

    .sh-testi-ctrl {
        width: 36px;
        height: 36px;
        font-size: .75rem;
    }
}

/* ── Pricing / plan cards: single column on xs ── */
@media (max-width: 575px) {

    .sh-plan-card,
    .sh-pkg-card,
    .sh-ssl-card {
        margin-bottom: 1rem;
    }
}

/* ── Tool cards: full-width input on mobile ── */
@media (max-width: 575px) {
    .sh-tool-input-group {
        flex-direction: column;
        border-radius: var(--sh-radius);
    }

    .sh-tool-btn {
        border-radius: 0 0 var(--sh-radius) var(--sh-radius);
        width: 100%;
        padding: .75rem;
    }

    .sh-tool-result-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Contact channels: stack on mobile ── */
@media (max-width: 575px) {
    .sh-contact-channel {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── TLD chips in hero: wrap & center ── */
@media (max-width: 575px) {
    .sh-tld-row {
        justify-content: center;
    }

    .sh-tld-chip {
        font-size: .73rem;
        padding: 4px 10px;
    }
}

/* ── Hero proof row: stack on xs ── */
@media (max-width: 479px) {
    .sh-hero-proof {
        flex-direction: column;
        gap: .5rem;
    }

    .sh-hero-proof-sep {
        display: none;
    }
}

/* ── Legal / long-form pages ── */
@media (max-width: 575px) {
    .sh-legal-doc {
        padding: 1.25rem 1rem;
    }

    .sh-legal-callout {
        padding: .75rem 1rem;
    }
}

/* ── Section headings: scale down on mobile ── */
@media (max-width: 575px) {
    .sh-section-title {
        font-size: clamp(1.4rem, 5.5vw, 1.75rem);
    }

    h1 {
        font-size: clamp(1.6rem, 6vw, 2.25rem);
    }

    h2 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }
}

/* =============================================================================
   DIGITAL MARKETING PAGE
   ============================================================================= */

/* ── Hero ── */
.sh-dm-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sh-dm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(99, 102, 241, .15), transparent 70%);
    pointer-events: none;
}

.sh-dm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(251, 191, 36, .15);
    border: 1px solid rgba(251, 191, 36, .35);
    color: #fbbf24;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .35rem .9rem;
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.sh-dm-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 1.25rem;
    color: #fff;
}

.sh-dm-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 560px;
}

.sh-dm-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

/* Stat cards in hero */
.sh-dm-stat-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 1.4rem 1rem;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: background .2s;
}

.sh-dm-stat-card:hover {
    background: rgba(255, 255, 255, .13);
}

.sh-dm-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .35rem;
}

.sh-dm-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
}

/* ── Services ── */
.sh-dm-svc-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.sh-dm-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
    border-color: #c7d2fe;
}

.sh-dm-svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.sh-dm-svc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .6rem;
}

.sh-dm-svc-desc {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.sh-dm-svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.sh-dm-tag {
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 999px;
    letter-spacing: .02em;
}

/* ── Why / Impact section ── */
.sh-dm-why {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #312e81 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sh-dm-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 20% 50%, rgba(99, 102, 241, .12), transparent 70%);
    pointer-events: none;
}

.sh-dm-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sh-dm-impact-item {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}

.sh-dm-impact-val {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: .5rem;
}

.sh-dm-impact-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4;
}

.sh-dm-reason-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── How it works step number ── */
.sh-dm-step-num {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

/* ── Pricing packages ── */
.sh-dm-pkg {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}

.sh-dm-pkg:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
    transform: translateY(-3px);
}

.sh-dm-pkg--popular {
    background: linear-gradient(145deg, #1e3a8a, #1d4ed8);
    border-color: #1d4ed8;
    color: #fff;
}

.sh-dm-pkg--popular .sh-dm-pkg-sub,
.sh-dm-pkg--popular .sh-dm-pkg-note {
    color: rgba(255, 255, 255, .7) !important;
}

.sh-dm-pkg--popular .sh-dm-pkg-features li {
    color: rgba(255, 255, 255, .85);
}

.sh-dm-pkg--popular .sh-dm-pkg-features i {
    color: #fbbf24;
}

.sh-dm-pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #0f172a;
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .04em;
}

.sh-dm-pkg-head {
    margin-bottom: 1.25rem;
}

.sh-dm-pkg-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: .85rem;
}

.sh-dm-pkg-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.sh-dm-pkg-sub {
    font-size: .82rem;
    color: #6b7280;
    margin: 0;
}

.sh-dm-pkg-price {
    display: flex;
    align-items: flex-end;
    gap: .25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1.5px solid #e2e8f0;
}

.sh-dm-pkg--popular .sh-dm-pkg-price {
    border-bottom-color: rgba(255, 255, 255, .15);
}

.sh-dm-pkg-currency {
    font-size: .9rem;
    font-weight: 700;
    padding-bottom: .35rem;
    color: #6b7280;
}

.sh-dm-pkg--popular .sh-dm-pkg-currency {
    color: rgba(255, 255, 255, .7);
}

.sh-dm-pkg-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.sh-dm-pkg--popular .sh-dm-pkg-amount {
    color: #fff;
}

.sh-dm-pkg-period {
    font-size: .85rem;
    color: #6b7280;
    padding-bottom: .3rem;
}

.sh-dm-pkg--popular .sh-dm-pkg-period {
    color: rgba(255, 255, 255, .6);
}

.sh-dm-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex: 1;
}

.sh-dm-pkg-features li {
    font-size: .875rem;
    color: #374151;
    padding: .45rem 0;
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    line-height: 1.5;
}

.sh-dm-pkg-features i.fa-check {
    color: #16a34a;
    margin-top: .15rem;
    flex-shrink: 0;
}

.sh-dm-pkg-note {
    color: #9ca3af !important;
    font-style: italic;
}

.sh-dm-pkg-note i {
    color: #9ca3af !important;
}

.sh-dm-pkg-btn {
    display: block;
    text-align: center;
    background: #0C4A9C;
    color: #fff;
    border: 2px solid #0C4A9C;
    border-radius: 10px;
    padding: .8rem 1.5rem;
    font-weight: 700;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: background .18s, transform .15s, box-shadow .18s;
    margin-top: auto;
}

.sh-dm-pkg-btn:hover {
    background: #012957;
    border-color: #012957;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 74, 156, .3);
}

.sh-dm-pkg-btn--popular {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #0f172a;
}

.sh-dm-pkg-btn--popular:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #0f172a;
    box-shadow: 0 6px 20px rgba(251, 191, 36, .35);
}

/* ── Result cards ── */
.sh-dm-result-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

.sh-dm-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
}

.sh-dm-result-sector {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .25rem .75rem;
    border-radius: 999px;
}

.sh-dm-result-metric {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .4rem;
    line-height: 1.3;
}

.sh-dm-result-detail {
    font-size: .85rem;
    color: #374151;
    margin-bottom: .35rem;
    font-weight: 500;
}

.sh-dm-result-extra {
    font-size: .8rem;
    color: #9ca3af;
}

/* ── Form trust badges ── */
.sh-dm-form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .sh-dm-impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sh-dm-hero-title {
        font-size: 1.9rem;
    }

    .sh-dm-pkg-amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .sh-dm-impact-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   AFFILIATE PAGE
   ============================================================================= */

/* ── Hero ── */
.sh-aff-hero {
    background: linear-gradient(135deg, #012957 0%, #0C4A9C 55%, #1d4ed8 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sh-aff-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(251, 191, 36, .08), transparent 70%);
    pointer-events: none;
}

.sh-aff-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(251, 191, 36, .15);
    border: 1px solid rgba(251, 191, 36, .35);
    color: #fbbf24;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .35rem .9rem;
    margin-bottom: 1.25rem;
}

.sh-aff-hero-title {
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 1.25rem;
    color: #fff;
}

.sh-aff-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    max-width: 560px;
}

.sh-aff-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

/* ── Hero Visual ── */
.sh-aff-visual {
    position: relative;
    width: 380px;
    height: 380px;
}

.sh-aff-visual-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    z-index: 2;
}

.sh-aff-visual-core i {
    font-size: 2rem;
    color: #fbbf24;
}

.sh-aff-visual-core span {
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sh-aff-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .1);
    animation: sh-aff-pulse 4s ease-in-out infinite;
}

.sh-aff-ring--1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.sh-aff-ring--2 {
    width: 320px;
    height: 320px;
    animation-delay: 1.5s;
}

@keyframes sh-aff-pulse {

    0%,
    100% {
        opacity: .4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: .15;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

.sh-aff-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: .6rem 1.1rem;
    color: #fff;
    font-size: .82rem;
    white-space: nowrap;
    z-index: 3;
}

.sh-aff-pill i {
    font-size: 1rem;
    color: #fbbf24;
}

.sh-aff-pill strong {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.sh-aff-pill span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
}

.sh-aff-pill--1 {
    top: 12%;
    left: -5%;
}

.sh-aff-pill--2 {
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
}

.sh-aff-pill--3 {
    bottom: 12%;
    left: 5%;
}

/* ── Commission Cards ── */
.sh-aff-comm-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    height: 100%;
    position: relative;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.sh-aff-comm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
}

.sh-aff-comm-card--featured {
    background: linear-gradient(145deg, #1e3a8a, #1d4ed8);
    border-color: #1d4ed8;
    color: #fff;
}

.sh-aff-comm-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #0f172a;
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .04em;
}

.sh-aff-comm-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sh-aff-comm-amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .25rem;
    font-family: 'Inter', sans-serif;
}

.sh-aff-comm-per {
    font-size: .82rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.sh-aff-comm-desc {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.sh-aff-comm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-aff-comm-list li {
    font-size: .83rem;
    color: #374151;
    padding: .35rem 0;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.sh-aff-comm-list i.fa-check {
    color: #16a34a;
}

/* ── Calculator ── */
.sh-aff-calc {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.sh-aff-calc-label {
    display: block;
    font-size: .83rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: .6rem;
}

.sh-aff-calc-input {
    border-radius: 10px !important;
    font-weight: 700;
    font-size: 1.1rem !important;
    text-align: center;
    border: 1.5px solid #e2e8f0 !important;
}

.sh-aff-calc-input:focus {
    border-color: var(--sh-primary) !important;
    box-shadow: 0 0 0 3px rgba(12, 74, 156, .1) !important;
}

.sh-aff-calc-rate {
    font-size: .8rem;
    color: #6b7280;
    margin-top: .5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .25rem;
}

.sh-aff-pkg-select {
    font-size: .78rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 2px 6px;
    color: #374151;
    cursor: poInter;
}

.sh-aff-calc-result {
    background: linear-gradient(135deg, #012957, #0C4A9C);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: .5rem;
}

.sh-aff-calc-result-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.sh-aff-calc-result-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .2rem;
}

.sh-aff-calc-result-amount {
    text-align: right;
}

.sh-aff-calc-result-amount #totalUSD {
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    display: block;
    line-height: 1;
}

.sh-aff-calc-result-ugx {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    display: block;
    margin-top: .2rem;
}

/* ── Payout section ── */
.sh-aff-payout-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0C4A9C 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sh-aff-payout-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 400px at 15% 60%, rgba(251, 191, 36, .06), transparent 70%);
    pointer-events: none;
}

.sh-aff-term-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Join card ── */
.sh-aff-join-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.sh-aff-join-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1d4ed8;
    margin-bottom: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .sh-aff-visual {
        width: 280px;
        height: 280px;
    }

    .sh-aff-ring--1 {
        width: 160px;
        height: 160px;
    }

    .sh-aff-ring--2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767px) {
    .sh-aff-calc {
        padding: 1.5rem;
    }

    .sh-aff-calc-result {
        flex-direction: column;
        text-align: center;
    }

    .sh-aff-calc-result-amount {
        text-align: center;
    }
}

/* =============================================================================
   SERVICE FEATURE SLIDER
   ============================================================================= */

.sh-svc-slider {
    background: var(--sh-bg, #f5f7fb);
}

.sh-svc-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* ── Featured Card ── */
.sh-svc-featured {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .07);
    transition: opacity .18s ease;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sh-svc-feat--fade {
    opacity: 0;
}

.sh-svc-feat-badge {
    display: inline-block;
    background: var(--sh-primary, #1a6cff);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.sh-svc-feat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sh-primary, #1a6cff) 0%, #5b8ff9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.sh-svc-feat-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sh-dark, #0d1b2e);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.sh-svc-feat-desc {
    color: #5a6a7e;
    font-size: .97rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.sh-svc-feat-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .45rem .5rem;
}

.sh-svc-feat-perks li {
    font-size: .88rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.sh-svc-feat-perks li i {
    color: var(--sh-primary, #1a6cff);
    font-size: .78rem;
    flex-shrink: 0;
}

/* ── Thumbnail Stack ── */
.sh-svc-thumbs {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sh-svc-thumb {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    cursor: poInter;
    border: 2px solid transparent;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.sh-svc-thumb:hover {
    border-color: var(--sh-primary, #1a6cff);
    box-shadow: 0 4px 18px rgba(26, 108, 255, .12);
}

.sh-svc-thumb.active {
    border-color: var(--sh-primary, #1a6cff);
    background: #eef3ff;
    box-shadow: 0 4px 18px rgba(26, 108, 255, .15);
}

.sh-svc-thumb-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sh-primary, #1a6cff) 0%, #5b8ff9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.sh-svc-thumb-body {
    flex: 1;
    min-width: 0;
}

.sh-svc-thumb-body strong {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: var(--sh-dark, #0d1b2e);
    margin-bottom: .1rem;
}

.sh-svc-thumb-body span {
    font-size: .79rem;
    color: #6b7a8d;
}

.sh-svc-thumb-arr {
    color: #b0bec5;
    font-size: .75rem;
    transition: color .2s;
}

.sh-svc-thumb.active .sh-svc-thumb-arr,
.sh-svc-thumb:hover .sh-svc-thumb-arr {
    color: var(--sh-primary, #1a6cff);
}

.sh-svc-all-link {
    display: block;
    text-align: center;
    color: var(--sh-primary, #1a6cff);
    font-weight: 600;
    font-size: .88rem;
    margin-top: .3rem;
    padding: .6rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
}

.sh-svc-all-link:hover {
    background: #eef3ff;
    color: var(--sh-primary, #1a6cff);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .sh-svc-layout {
        grid-template-columns: 1fr;
    }

    .sh-svc-thumbs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: .6rem;
    }

    .sh-svc-thumb {
        flex: 1 1 calc(50% - .3rem);
    }

    .sh-svc-all-link {
        flex: 1 1 100%;
    }
}

@media (max-width: 575px) {
    .sh-svc-featured {
        padding: 1.8rem 1.5rem;
    }

    .sh-svc-feat-perks {
        grid-template-columns: 1fr;
    }

    .sh-svc-thumb {
        flex: 1 1 100%;
    }
}

/* =============================================================================
   WHY CHOOSE US — Photo Split Layout
   ============================================================================= */

.sh-why-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.sh-why-photo {
    width: 100%;
    max-width: 440px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.sh-why-stat {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    min-width: 140px;
}

.sh-why-stat i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sh-primary, #1a6cff), #5b8ff9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.sh-why-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--sh-dark, #0d1b2e);
    line-height: 1;
}

.sh-why-stat span {
    font-size: .72rem;
    color: #6b7a8d;
}

.sh-why-stat--tl {
    top: -18px;
    left: -18px;
}

.sh-why-stat--br {
    bottom: -18px;
    right: -18px;
}

/* Feature rows */
.sh-why-features {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sh-why-feat-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sh-why-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eef3ff;
    color: var(--sh-primary, #1a6cff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.sh-why-feat-row strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--sh-dark, #0d1b2e);
    margin-bottom: .2rem;
}

.sh-why-feat-row p {
    font-size: .85rem;
    color: #6b7a8d;
    margin: 0;
    line-height: 1.5;
}

/* =============================================================================
   BUILT FOR UGANDA — Dark Photo CTA
   ============================================================================= */

.sh-local-cta {
    background: linear-gradient(135deg, #0d1b2e 0%, #122448 60%, #1a3a6e 100%);
    overflow: hidden;
    position: relative;
}

.sh-local-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.sh-local-cta-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: flex-end;
    gap: 3rem;
    padding: 5rem 0 0;
}

.sh-local-cta-content {
    padding-bottom: 5rem;
}

.sh-local-cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #93c5fd;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}

.sh-local-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.1rem;
}

.sh-local-cta-desc {
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
}

.sh-local-cta-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: .5rem;
    flex-wrap: wrap;
}

.sh-local-cta-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sh-local-cta-stat span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sh-local-cta-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .2);
}

.sh-local-cta-photo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sh-local-cta-photo img {
    width: 100%;
    max-width: 400px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 -10px 40px rgba(26, 108, 255, .25));
}

/* Responsive */
@media (max-width: 991px) {
    .sh-local-cta-inner {
        grid-template-columns: 1fr;
        padding: 4rem 0 0;
    }

    .sh-local-cta-photo {
        display: none;
    }

    .sh-local-cta-content {
        padding-bottom: 4rem;
    }
}

@media (max-width: 575px) {
    .sh-local-cta-stats {
        gap: 1rem;
    }
}

/* =============================================================================
   DOMAIN SEARCH BAR — white strip above hero
   ============================================================================= */

.sh-domain-bar {
    position: relative;
    z-index: 100;
}


/* =============================================================================
   HERO — Photo Background (GoDaddy style)
   ============================================================================= */

.sh-hero-photo {
    background-image: url('/images/african.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    position: relative !important;
    padding: 90px 0 0 !important;
    overflow: hidden;
}

.sh-hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(1, 30, 70, 0.88) 0%,
            rgba(4, 55, 120, 0.80) 50%,
            rgba(1, 25, 60, 0.88) 100%);
    z-index: 0;
}

.sh-hero-photo-container {
    position: relative;
    z-index: 1;
}

.sh-hero-photo-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* ── Category tabs anchored to bottom of hero ── */
.sh-hero-tabs {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.sh-hero-tabs-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.sh-hero-tab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .95rem 1.5rem;
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    border-top: 3px solid transparent;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: color .2s, border-color .2s, background .2s;
    white-space: nowrap;
}

.sh-hero-tab:last-child {
    border-right: none;
}

.sh-hero-tab i {
    font-size: .8rem;
    opacity: .8;
}

.sh-hero-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border-top-color: rgba(255, 255, 255, .3);
}

.sh-hero-tab--active {
    color: #fff !important;
    border-top-color: var(--sh-primary, #1a6cff) !important;
    background: rgba(26, 108, 255, .12) !important;
}

@media (max-width: 767px) {
    .sh-hero-photo {
        padding: 60px 0 0 !important;
    }

    .sh-hero-tab span {
        display: none;
    }

    .sh-hero-tab {
        flex: 1;
        justify-content: center;
        padding: .85rem .5rem;
    }

    .sh-hero-tab i {
        font-size: .95rem;
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .sh-hero-photo-ctas {
        flex-direction: column;
    }

    .sh-hero-photo-ctas .btn {
        width: 100%;
    }
}

/* =============================================================================
   HERO — GoDaddy-style Split Layout
   ============================================================================= */

.sh-hero-gd {
    background: #fff !important;
    background-image: none !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
}

/* Kill the old dark pseudo-elements */
.sh-hero-gd::before,
.sh-hero-gd::after {
    display: none !important;
}

/* ── Layout grid ── */
.sh-hero-gd-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    min-height: 88vh;
    gap: 0;
}

/* ── Left column ── */
.sh-hero-gd-left {
    padding: 7rem 3rem 7rem 0;
    position: relative;
    z-index: 2;
}

/* ── Badge ── */
.sh-hero-gd-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #eef3ff;
    border: 1px solid #c7d8ff;
    color: var(--sh-primary, #1a6cff);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .3rem .85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.sh-hero-gd-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sh-primary, #1a6cff);
    animation: gdDotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes gdDotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

/* ── Headline ── */
.sh-hero-gd-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0d1b2e;
    margin-bottom: 1.1rem;
}

.sh-hero-gd-accent {
    background: linear-gradient(130deg, var(--sh-primary, #1a6cff) 0%, #5b8ff9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ── Subtitle ── */
.sh-hero-gd-sub {
    font-size: 1.05rem;
    color: #5a6a7e;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 480px;
}

.sh-hero-gd-sub strong {
    color: #0d1b2e;
}

/* ── Search bar ── */
.sh-hero-gd-search-wrap {
    margin-bottom: 1.2rem;
}

.sh-hero-gd-input-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #d1dff8;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(26, 108, 255, .08);
}

.sh-hero-gd-input-group:focus-within {
    border-color: var(--sh-primary, #1a6cff);
    box-shadow: 0 4px 20px rgba(26, 108, 255, .18);
}

.sh-hero-gd-search-icon {
    padding: 0 .9rem 0 1.1rem;
    color: #94a3b8;
    font-size: 1rem;
    flex-shrink: 0;
}

.sh-hero-gd-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 0;
    font-size: 1rem;
    color: #0d1b2e;
    background: transparent;
    min-width: 0;
}

.sh-hero-gd-input::placeholder {
    color: #94a3b8;
}

.sh-hero-gd-select {
    border: none;
    border-left: 1px solid #e2e8f0;
    padding: 0 .75rem;
    height: 56px;
    font-size: .88rem;
    font-weight: 600;
    color: #0d1b2e;
    background: #f8fafc;
    outline: none;
    cursor: poInter;
    min-width: 100px;
    flex-shrink: 0;
}

.sh-hero-gd-btn {
    background: var(--sh-primary, #1a6cff);
    color: #fff;
    border: none;
    padding: 0 1.5rem;
    height: 56px;
    font-size: .95rem;
    font-weight: 700;
    cursor: poInter;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s;
    border-radius: 0 12px 12px 0;
}

.sh-hero-gd-btn:hover {
    background: #155de0;
}

/* ── TLD chips (light variant) ── */
.sh-tld-row--light {
    justify-content: flex-start;
    margin-bottom: 1.6rem;
}

.sh-tld-chip--light {
    background: #f5f7fb;
    border-color: #e2e8f0;
    color: #0d1b2e;
}

.sh-tld-chip--light .sh-tld-ext {
    color: var(--sh-primary, #1a6cff);
}

.sh-tld-chip--light .sh-tld-price {
    color: #5a6a7e;
}

.sh-tld-chip--light:hover {
    border-color: var(--sh-primary, #1a6cff);
    background: #eef3ff;
}

/* ── Trust strip ── */
.sh-hero-gd-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem 1rem;
}

.sh-hero-gd-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: #5a6a7e;
    font-weight: 500;
}

.sh-hero-gd-trust-item i {
    color: var(--sh-primary, #1a6cff);
    font-size: .8rem;
}

.sh-hero-gd-trust-sep {
    width: 1px;
    height: 14px;
    background: #d1d5db;
}

/* ── Right column ── */
.sh-hero-gd-right {
    align-items: flex-end;
    justify-content: center;
    position: relative;
    align-self: stretch;
    background: linear-gradient(160deg, #eef3ff 0%, #f0f5ff 60%, #e8f0ff 100%);
}

.sh-hero-gd-photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sh-hero-gd-photo {
    width: 100%;
    max-width: 440px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    position: relative;
    z-index: 1;
}

/* ── Floating stat cards ── */
.sh-hero-gd-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    z-index: 2;
    min-width: 140px;
}

.sh-hero-gd-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.sh-hero-gd-card-val {
    font-size: .95rem;
    font-weight: 800;
    color: #0d1b2e;
    line-height: 1;
}

.sh-hero-gd-card-lbl {
    font-size: .7rem;
    color: #6b7a8d;
    margin-top: .1rem;
}

.sh-hero-gd-card--tl {
    top: 14%;
    left: 8%;
    animation: gdCardFloat 4s ease-in-out infinite;
}

.sh-hero-gd-card--br {
    bottom: 20%;
    right: 6%;
    animation: gdCardFloat 4s ease-in-out infinite .8s;
}

.sh-hero-gd-card--bm {
    bottom: 8%;
    left: 10%;
    animation: gdCardFloat 4s ease-in-out infinite 1.6s;
}

@keyframes gdCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .sh-hero-gd-inner {
        grid-template-columns: 1fr 380px;
    }

    .sh-hero-gd-left {
        padding: 5rem 2rem 5rem 0;
    }
}

@media (max-width: 991px) {
    .sh-hero-gd {
        padding: 4rem 0 !important;
    }

    .sh-hero-gd-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
    }

    .sh-hero-gd-left {
        padding: 0;
    }

    .sh-hero-gd-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .sh-hero-gd-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .sh-tld-row--light {
        justify-content: center;
    }

    .sh-hero-gd-trust {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .sh-hero-gd-title {
        font-size: 2rem;
    }

    .sh-hero-gd-input-group {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .sh-hero-gd-input {
        padding: .85rem 0;
    }

    .sh-hero-gd-select {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        width: 100%;
        height: 44px;
        border-radius: 0;
    }

    .sh-hero-gd-btn {
        width: 100%;
        height: 48px;
        border-radius: 0 0 10px 10px;
    }
}
