/* ============================================================
   SA HOSTING - Custom CSS for WHMCS Portal
   Only custom header/footer/nav CSS - WHMCS theme CSS in theme.css
   ============================================================ */

:root {
  --primary:       #10b981;
  --primary-50:    #ecfdf5;
  --primary-100:   #d1fae5;
  --primary-900:   #064e3b;
  --white:         #ffffff;
  --neutral-100:   #f1f5f9;
  --sah-dark:      #0f172a;
  --sah-dark-2:    #1e293b;
  --sah-accent:    #10b981;
  --sah-muted:     #94a3b8;
  --sah-border:    rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; }

/* Always show branded footer for all users */
body .sah-footer,
body.sah-loggedin .sah-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}
/* Ensure body scrolls normally when logged in */
body.sah-loggedin {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
}

/* Offset all pages so content sits below the fixed SAH header */
body #main-body {
    padding-top: 24px !important;
}
/* Homepage hero sits flush - no top offset */
body.page-homepage #main-body {
    padding-top: 0 !important;
}
/* Kill footer gap from WHMCS wrapping section */
body > #main-body { padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* ── Side margin for all inner pages ──
   Ensures content never touches the browser edges.
   Bootstrap .container already handles max-width on most pages,
   but .container-fluid pages (store, etc.) need explicit padding. */
body:not(.page-homepage) #main-body > .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}
/* Bootstrap .container already has auto margins, just boost its side padding slightly */
body:not(.page-homepage) #main-body > .container {
    padding-left: 24px;
    padding-right: 24px;
}
@media (min-width: 1200px) {
    body:not(.page-homepage) #main-body > .container {
        max-width: 1320px !important;
    }
}

/* Hide breadcrumb bar on all pages — SAH header provides navigation */
.master-breadcrumb {
    display: none !important;
}

/* Homepage full-bleed content wrapper */
.sah-homepage-content {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
.sah-homepage-content > section,
.sah-homepage-content > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
body.page-homepage #main-body .container-fluid.p-0,
body.page-homepage #main-body > .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.sah-topbar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.78rem;
  color: #64748b;
}
.sah-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.sah-topbar__left,
.sah-topbar__right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sah-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.82rem !important;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.sah-topbar__item:hover { color: #0f172a; text-decoration: none; }
.sah-topbar__divider {
  width: 1px;
  height: 14px;
  background: #cbd5e1;
  margin: 0 2px;
  flex-shrink: 0;
}
.sah-topbar__currency { font-weight: 600; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Mobile topbar: show only phones + Contact Us ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 991px) {
  .sah-topbar__inner {
    height: auto;
    padding: 8px 16px;
    justify-content: center;
    gap: 0;
  }
  .sah-topbar__right { display: none !important; }
  .sah-topbar__mobile-hide { display: none !important; }
  .sah-topbar__left {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }
  .sah-topbar__item {
    font-size: 0.8rem !important;
    padding: 3px 8px;
  }
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.sah-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1050;
}
/* Ensure WHMCS fullpage overlay is never accidentally shown when it should be hidden */
#fullpage-overlay.w-hidden {
  display: none !important;
}
.sah-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.sah-header__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.sah-logo-img     { height: 47px !important; width: auto !important; }
.sah-logo-text    { font-size: 1.2rem; font-weight: 800; color: var(--sah-text); letter-spacing: -0.03em; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Desktop Nav ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-nav {
  display: flex !important;
  align-items: center !important;
  gap: 2px;
  margin-left: auto;
}
.sah-nav-item {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1f2937 !important;
  text-decoration: none !important;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, background .2s;
  user-select: none;
  align-self: center !important;
}
.sah-nav-item:hover,
.sah-nav-item:focus { text-decoration: none !important; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Small dropdown (used by old sah-dropdown) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--sah-dark-3);
  border: 1px solid var(--sah-border);
  border-radius: 12px;
  padding: 8px;
  z-index: 1100;
}
.sah-nav-item--dropdown:hover .sah-dropdown { display: block; }
.sah-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  color: var(--sah-muted);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: background .2s, color .2s;
}
.sah-dropdown-item:hover { background: rgba(255,255,255,0.07); color: var(--sah-text); }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Header actions ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Client area button/menu ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-client-menu { position: relative; }
.sah-client-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.sah-client-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 1100;
}
.sah-client-dropdown--open { display: block; }
.sah-client-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: background .2s;
}
.sah-client-item:hover { background: #f3f4f6; }
.sah-client-item--logout { color: #ef4444; }
.sah-client-item--logout:hover { background: #fef2f2; }
.sah-client-divider { height: 1px; background: #e5e7eb; margin: 6px 0; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Buttons ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 20px;
  border-radius: 8px; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all 0.2s ease;
  border: none; outline: none; white-space: nowrap;
}
.sah-btn--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.sah-btn--primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16,185,129,0.4);
  color: #ffffff !important;
  text-decoration: none !important;
}
.sah-btn--secondary {
  background: rgba(255,255,255,0.08); color: var(--sah-text);
  border: 1px solid rgba(255,255,255,0.15);
}
.sah-btn--sm { padding: 7px 16px; font-size: 0.82rem; }

a.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none !important; cursor: pointer; border: none; outline: none; line-height: 1.4;
}
a.btn--primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important; padding: 13px 32px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700; box-shadow: 0 6px 20px rgba(16,185,129,0.3);
  transition: all 0.25s ease; white-space: nowrap;
}
a.btn--primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16,185,129,0.4); text-decoration: none !important;
}
.hero-tabs__text a.btn, .hero-tabs__text a.btn--primary { margin-top: 8px; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Mobile toggle ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-mobile-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer;
}
.sah-mobile-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: #1f2937; border-radius: 2px; transition: all 0.3s;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Mobile nav ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* ============================================================
   OFF-CANVAS MOBILE NAV ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â PREMIUM REDESIGN
   ============================================================ */

/* Overlay */
.sah-oc-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
  z-index: 1199; transition: opacity 0.3s ease;
}
.sah-oc-overlay--open { display: block; }

/* Panel */
.sah-oc-nav {
  position: fixed; top: 0; left: -340px; width: 320px; height: 100dvh;
  background: #0f172a;
  z-index: 1200; display: flex; flex-direction: column;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.4);
}
.sah-oc-nav--open { left: 0; }

/* Header */
.sah-oc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.sah-oc-logo img { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.sah-oc-close {
  width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06); color: #9ca3af; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.sah-oc-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Body (scrollable) */
.sah-oc-body { flex: 1; overflow-y: auto; padding: 12px 0; }
.sah-oc-body::-webkit-scrollbar { width: 4px; }
.sah-oc-body::-webkit-scrollbar-track { background: transparent; }
.sah-oc-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Section label */
.sah-oc-section-label {
  padding: 14px 20px 6px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: #475569;
}

/* Divider */
.sah-oc-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 20px; }

/* Regular link */
.sah-oc-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; color: #94a3b8 !important;
  text-decoration: none !important; font-size: 0.9rem; font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.sah-oc-link:hover, .sah-oc-link--home:hover {
  background: rgba(255,255,255,0.05); color: #f1f5f9 !important;
  border-left-color: #10b981;
}
.sah-oc-link__icon { display: flex; align-items: center; flex-shrink: 0; color: #64748b; }

/* Accordion trigger */
.sah-oc-accordion {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px; background: none; border: none; cursor: pointer;
  color: #94a3b8; font-size: 0.9rem; font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
  text-align: left;
}
.sah-oc-accordion:hover { background: rgba(255,255,255,0.05); color: #f1f5f9; border-left-color: #10b981; }
.sah-oc-accordion--open { color: #10b981; background: rgba(16,185,129,0.06); border-left-color: #10b981; }
.sah-oc-accordion__left { display: flex; align-items: center; gap: 12px; }
.sah-oc-chevron { transition: transform 0.25s ease; color: #475569; flex-shrink: 0; }
.sah-oc-accordion--open .sah-oc-chevron { transform: rotate(180deg); color: #10b981; }

/* Submenu */
.sah-oc-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  background: rgba(0,0,0,0.2);
}
.sah-oc-submenu--open { max-height: 400px; }
.sah-oc-sub-link {
  display: block; padding: 9px 20px 9px 52px;
  color: #64748b !important; text-decoration: none !important;
  font-size: 0.84rem; transition: color 0.15s, padding-left 0.15s;
  border-left: 3px solid transparent;
}
.sah-oc-sub-link:hover { color: #10b981 !important; padding-left: 56px; }

/* Footer CTA */
.sah-oc-footer {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.sah-oc-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 10px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none !important;
  transition: all 0.2s ease; text-align: center;
}
.sah-oc-btn--outline { background: rgba(255,255,255,0.06); color: #94a3b8 !important; border: 1px solid rgba(255,255,255,0.12); }
.sah-oc-btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff !important; }
.sah-oc-btn--primary { background: #10b981; color: #fff !important; border: 1px solid #10b981; }
.sah-oc-btn--primary:hover { background: #059669; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive nav ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 991px) {
  .sah-nav, .sah-search-form { display: none; }

  /* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Mobile header bar: ÃƒÂ¢Ã‹Å“Ã‚Â° | Logo (centred) | Client Area ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
  .sah-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    gap: 0 !important;
    padding: 0 16px !important;
  }

  /* 1. Hamburger ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â far left */
  .sah-mobile-toggle {
    order: 1;
    flex-shrink: 0;
    display: flex;
    z-index: 2;
  }

  /* 2. Logo ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â absolute centre */
  .sah-header__logo {
    order: 2;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1;
  }
  .sah-logo-img { height: 34px !important; }

  /* 3. Right actions ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â far right */
  .sah-header__actions {
    order: 3;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 2;
  }

  /* Hide the logged-in client dropdown on mobile (use off-canvas instead) */
  .sah-client-menu { display: none !important; }

  /* Clean outlined "Client Area" button for mobile */
  .sah-header__actions .sah-btn--primary {
    background: transparent !important;
    color: #10b981 !important;
    border: 1.5px solid #10b981 !important;
    border-radius: 8px !important;
    padding: 7px 13px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    white-space: nowrap;
  }
  .sah-header__actions .sah-btn--primary svg { display: none !important; }
}

/* ============================================================
   MEGA DROPDOWN ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â NAV
   ============================================================ */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--rounding-lg);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  border: 1px solid var(--neutral-100);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 1050;
}
/* No ::before bridge ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â removed as it blocked adjacent items */
.mega-dropdown::before { display: none !important; }

.mega-dropdown__item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: var(--rounding-md);
  color: var(--gray-700); text-decoration: none; transition: background .2s;
}
.mega-dropdown__item:hover { background: var(--primary-50); }
.mega-dropdown__icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary-50); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--primary);
}
.mega-dropdown__text h4 { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); margin: 0 0 2px; }
.mega-dropdown__text p  { font-size: 0.78rem; color: var(--gray-500); margin: 0; }

/* Large full-width mega dropdown */
.mega-dropdown--lg {
  position: fixed;
  left: 0;
  right: 0;
  width: auto;
  max-width: 100%;
  padding: 40px 0;
  border-radius: 0 0 var(--rounding-lg) var(--rounding-lg);
  border-left: none;
  border-right: none;
  transform: none;
  z-index: 1050;
}
.nav-item--has-dropdown:hover > .mega-dropdown--lg {
  transform: none;
}
.mega-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 991px) {
  .mega-dropdown__grid { grid-template-columns: 1fr; gap: 16px; }
}
.mega-dropdown__col { flex: 1; }
.mega-dropdown__col-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-400); padding: 0 16px 10px; margin-bottom: 4px;
}
.mega-dropdown__item--box {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--rounding-md);
  color: var(--gray-700); text-decoration: none;
  position: relative; transition: background .2s;
}
.mega-dropdown__item--box::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--rounding-md); border: 1px solid transparent; transition: border-color .2s;
}
.mega-dropdown__item--box:hover { background: var(--primary-50); }
.mega-dropdown__item--box:hover::after { border-color: var(--primary-100); }
.mega-dropdown__icon--box {
  width: 40px; height: 40px; border-radius: 10px;
  background: #d1fae5; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: #10b981; transition: all .2s;
}
.mega-dropdown__item--box:hover .mega-dropdown__icon--box {
  background: var(--primary); color: #fff;
}
.mega-dropdown__item--box .mega-dropdown__text h4 {
  font-size: 0.875rem; font-weight: 600; color: var(--gray-900); margin: 0 0 2px;
}
.mega-dropdown__item--box .mega-dropdown__text p {
  font-size: 0.78rem; color: var(--gray-500); margin: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Breadcrumb ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.master-breadcrumb {
  background: #f8fafc; border-bottom: 1px solid #e2e8f0;
  padding: 10px 0; font-size: 0.82rem;
}

/* ============================================================
   HERO TABS SECTION
   ============================================================ */
.hero-tabs {
  padding: 40px 0 0;
  background: var(--white);
  width: 100% !important;
}
.hero-tabs__panels { position: relative; min-height: 440px; }
.hero-tabs__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  animation: heroFadeIn .45s ease;
}
.hero-tabs__panel.active { display: grid; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tabs__label {
  display: inline-block; font-size: .85rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px;
}
.hero-tabs__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--gray-900); margin-bottom: 10px; line-height: 1.15;
}
.hero-tabs__subtitle {
  font-size: .95rem; color: var(--primary); font-weight: 500; margin-bottom: 24px;
}
.hero-tabs__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-bottom: 28px;
}
.hero-tabs__feat {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 500; color: var(--gray-700);
}
.hero-tabs__feat-icon {
  width: 28px; height: 28px; padding: 4px;
  background: var(--primary-100); border-radius: 50%; flex-shrink: 0;
}
.hero-tabs__pricing { margin-bottom: 24px; }
.hero-tabs__starts { font-size: .82rem; color: var(--primary); font-weight: 500; }
.hero-tabs__price { display: flex; align-items: baseline; gap: 2px; }
.hero-tabs__currency { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); }
.hero-tabs__amount   { font-size: 3.2rem; font-weight: 900; color: var(--gray-900); line-height: 1; }
.hero-tabs__period   { font-size: .95rem; font-weight: 500; color: var(--gray-500); }
.hero-tabs__image { display: flex; align-items: center; justify-content: center; }
.hero-tabs__image img { max-width: 100%; max-height: 400px; object-fit: contain; }
.hero-tabs__nav {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200); margin-top: 32px;
}
.hero-tabs__tab {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 20px 16px; font-size: .9rem; font-weight: 600; color: var(--gray-600);
  background: var(--white); border: none; border-top: 3px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.hero-tabs__tab:hover { color: var(--primary); background: var(--primary-50); }
.hero-tabs__tab.active {
  color: var(--white); background: var(--primary-900); border-top-color: var(--primary);
}
.hero-tabs__tab svg { flex-shrink: 0; }

/* ============================================================
   DOMAIN SEARCH SECTION
   ============================================================ */
.sah-domain-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
  border-top: 1px solid #d1fae5;
}
.sah-domain-header { text-align: center; margin-bottom: 36px; }
.sah-domain-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d1fae5; color: #065f46; padding: 6px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.sah-domain-title { font-size: 2rem; font-weight: 800; color: #111827; margin: 0 0 10px; }
.sah-domain-subtitle { font-size: 1rem; color: #6b7280; margin: 0; }
.sah-domain-search-bar {
  display: flex; max-width: 600px; margin: 0 auto 32px; gap: 0;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(16,185,129,0.15); border: 2px solid #10b981;
}
.sah-domain-input {
  flex: 1; padding: 14px 20px; border: none; outline: none;
  font-size: 1rem; background: #fff; color: #111827;
}
.sah-domain-btn {
  padding: 14px 28px; background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; border: none; font-size: 0.95rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: all 0.2s ease;
}
.sah-domain-btn:hover { background: linear-gradient(135deg, #059669, #047857); }
.sah-domain-tlds {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.sah-tld-badge {
  display: flex; align-items: center; gap: 6px; background: #fff;
  border: 1px solid #d1fae5; border-radius: 8px;
  padding: 8px 14px; font-size: 0.82rem; font-weight: 600;
}
.sah-tld-name { color: #10b981; }
.sah-tld-price { color: #6b7280; font-weight: 400; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.sah-pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.sah-pricing-header { text-align: center; margin-bottom: 48px; }
.sah-pricing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d1fae5; color: #065f46; padding: 6px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.sah-pricing-title { font-size: 2.2rem; font-weight: 800; color: #111827; margin: 0 0 12px; }
.sah-pricing-subtitle { font-size: 1rem; color: #6b7280; margin: 0 auto; max-width: 520px; }

.sah-billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 24px;
}
.sah-toggle-label { font-size: 0.9rem; font-weight: 600; color: #374151; }
.sah-toggle-switch {
  width: 48px; height: 26px; background: #d1d5db; border: none;
  border-radius: 100px; cursor: pointer; position: relative; transition: background 0.3s ease;
}
.sah-toggle-switch[aria-pressed="true"] { background: #10b981; }
.sah-toggle-knob {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%; transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.sah-toggle-switch[aria-pressed="true"] .sah-toggle-knob { transform: translateX(22px); }
.sah-save-badge {
  background: #10b981; color: #fff;
  padding: 2px 8px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; margin-left: 6px;
}

.sah-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start;
}
@media (max-width: 900px) { .sah-pricing-grid { grid-template-columns: 1fr; } }

.sah-pricing-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
  padding: 32px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.sah-pricing-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.sah-pricing-card--featured {
  border-color: #10b981; background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  box-shadow: 0 8px 32px rgba(16,185,129,0.15);
}
.sah-featured-badge {
  position: absolute; top: 0; right: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; padding: 6px 16px;
  border-radius: 0 0 12px 12px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.sah-plan-name { font-size: 1.1rem; font-weight: 700; color: #111827; margin: 0 0 4px; }
.sah-plan-tagline { font-size: 0.85rem; color: #6b7280; margin: 0; }
.sah-plan-price { margin: 20px 0; }
.sah-price-active { display: flex; align-items: baseline; gap: 2px; }
.sah-price-currency { font-size: 1.2rem; font-weight: 700; color: #10b981; }
.sah-price-amount { font-size: 2.6rem; font-weight: 900; color: #111827; line-height: 1; }
.sah-price-period { font-size: 0.85rem; color: #6b7280; margin-left: 4px; }
.sah-price-yearly { display: none; }
.sah-plan-divider { height: 1px; background: #e5e7eb; margin: 20px 0; }
.sah-plan-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.sah-plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: #374151;
}
.sah-plan-features li svg { color: #10b981; flex-shrink: 0; }
.sah-plan-cta {
  display: block; text-align: center; padding: 12px 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff !important; border-radius: 10px; font-weight: 700;
  font-size: 0.9rem; text-decoration: none !important; transition: all 0.2s ease;
}
.sah-plan-cta:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px); box-shadow: 0 6px 18px rgba(16,185,129,0.3);
}
.sah-plan-cta--outline {
  background: transparent !important;
  border: 2px solid #10b981; color: #10b981 !important;
}
.sah-plan-cta--outline:hover { background: #10b981 !important; color: #fff !important; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.sah-stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
}
.sah-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
@media (max-width: 768px) { .sah-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.sah-stat-number {
  font-size: 2.8rem; font-weight: 900; color: #ffffff;
  line-height: 1; margin-bottom: 6px;
}
.sah-stat-label { font-size: 0.9rem; color: #a7f3d0; font-weight: 500; }

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.sah-why-section {
  padding: 80px 0;
  background: #ffffff;
}
.sah-why-header { text-align: center; margin-bottom: 52px; }
.sah-why-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d1fae5; color: #065f46; padding: 6px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.sah-why-title { font-size: 2.2rem; font-weight: 800; color: #111827; margin: 0 0 14px; line-height: 1.2; }
.sah-why-subtitle { font-size: 1rem; color: #6b7280; max-width: 520px; margin: 0 auto; line-height: 1.6; }
.sah-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .sah-why-grid { grid-template-columns: 1fr; } }
.sah-why-card {
  background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 18px;
  padding: 28px; transition: all 0.3s ease;
}
.sah-why-card:hover {
  border-color: #10b981; box-shadow: 0 8px 28px rgba(16,185,129,0.12);
  transform: translateY(-4px); background: #ffffff;
}
.sah-why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #059669;
}
.sah-why-card h3 { font-size: 1rem; font-weight: 700; color: #111827; margin: 0 0 8px; }
.sah-why-card p { font-size: 0.88rem; color: #6b7280; margin: 0; line-height: 1.6; }
.sah-why-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fef3c7; color: #92400e;
  padding: 4px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; margin-top: 12px;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.sah-testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
}
.sah-testimonials-header { text-align: center; margin-bottom: 48px; }
.sah-testimonials-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d1fae5; color: #065f46; padding: 6px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.sah-testimonials-title { font-size: 2.2rem; font-weight: 800; color: #111827; margin: 0 0 12px; line-height: 1.2; }
.sah-testimonials-subtitle { font-size: 1rem; color: #64748b; max-width: 480px; margin: 0 auto; line-height: 1.6; }
.sah-testimonials-slider { position: relative; overflow: hidden; }
.sah-testimonials-track {
  display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.sah-testimonial-card {
  min-width: calc(33.333% - 16px); margin-right: 24px;
  background: #ffffff; border: 1px solid #e2e8f0; border-radius: 20px;
  padding: 28px; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
@media (max-width: 900px) { .sah-testimonial-card { min-width: calc(50% - 12px); } }
@media (max-width: 600px) { .sah-testimonial-card { min-width: calc(100% - 0px); margin-right: 16px; } }
.sah-testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #f59e0b; }
.sah-testimonial-text { font-size: 0.9rem; color: #374151; line-height: 1.7; margin: 0 0 20px; }
.sah-testimonial-author { display: flex; align-items: center; gap: 12px; }
.sah-testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.sah-testimonial-name { font-size: 0.88rem; font-weight: 700; color: #111827; }
.sah-testimonial-role { font-size: 0.78rem; color: #6b7280; }
.sah-testimonials-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px;
}
.sah-testimonials-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #e2e8f0;
  background: #fff; cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: #374151; transition: all 0.2s ease;
}
.sah-testimonials-btn:hover { background: #10b981; color: #fff; border-color: #10b981; }
.sah-testimonials-dots { display: flex; gap: 8px; }
.sah-testimonials-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #d1d5db;
  cursor: pointer; transition: all 0.2s ease; border: none;
}
.sah-testimonials-dot.active { background: #10b981; width: 24px; border-radius: 4px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
/* Homepage-only: strip Bootstrap container padding on full-width homepage */
body.page-homepage #main-body .container-fluid.p-0,
body.page-homepage #main-body > .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Homepage hero content wrapper â€” full bleed */
.sah-homepage-content {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.sah-homepage-content > section,
.sah-homepage-content > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Offset all pages so content doesn't hide behind the fixed SAH header */
body #main-body {
  padding-top: 24px !important;
}
/* Homepage: hero sits flush against the header — no top offset needed */
body.page-homepage #main-body {
  padding-top: 0 !important;
}

.sah-faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
}
.sah-faq-header { text-align: center; margin-bottom: 52px; }
.sah-faq-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d1fae5; color: #065f46; padding: 6px 16px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px;
}
.sah-faq-title { font-size: 2.2rem; font-weight: 800; color: #111827; margin: 12px 0 14px; line-height: 1.2; }
.sah-faq-subtitle { font-size: 1rem; color: #64748b; max-width: 520px; margin: 0 auto; line-height: 1.6; }
.sah-faq-subtitle a { color: #10b981; text-decoration: none; font-weight: 600; }
.sah-faq-subtitle a:hover { text-decoration: underline; }
.sah-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.sah-faq-item { border: 1px solid #e2e8f0; border-radius: 14px; background: #ffffff; overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.sah-faq-item--open { border-color: #10b981; box-shadow: 0 4px 20px rgba(16,185,129,0.1); }
.sah-faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 1rem; font-weight: 700; color: #111827;
  line-height: 1.4; transition: color 0.2s ease;
}
.sah-faq-item--open .sah-faq-question { color: #10b981; }
.sah-faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #f1f5f9; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.3s ease;
}
.sah-faq-icon svg { width: 16px; height: 16px; stroke: #64748b; transition: stroke 0.25s ease; }
.sah-faq-item--open .sah-faq-icon { background: #10b981; transform: rotate(180deg); }
.sah-faq-item--open .sah-faq-icon svg { stroke: #fff; }
.sah-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.sah-faq-item--open .sah-faq-answer { max-height: 600px !important; }
.sah-faq-answer p { padding: 0 24px 22px; margin: 0; font-size: 0.95rem; color: #4b5563; line-height: 1.7; border-top: 1px solid #f1f5f9; padding-top: 16px; }
@media (max-width: 640px) {
  .sah-faq-title { font-size: 1.7rem; }
  .sah-faq-question { font-size: 0.93rem; padding: 16px 18px; }
  .sah-faq-answer p { padding: 14px 18px 18px; }
}

/* ============================================================
   SERVICES PAGE (clientarea.php?action=services)
   ============================================================ */

/* Page header row */
.svc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.svc-header__left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.svc-header__icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}
.svc-header__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
    line-height: 1.2;
}
.svc-header__sub {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

/* Action buttons */
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
}
.svc-btn--primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.svc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,99,235,0.4);
    color: #fff;
    text-decoration: none;
}

/* Toolbar: filter pills + search */
.svc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.svc-filter-pills {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.svc-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
}
.svc-pill:hover { background: #e2e8f0; color: #1e293b; }
.svc-pill--active { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }

/* Search */
.svc-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 7px 12px;
    min-width: 220px;
    color: #94a3b8;
    transition: border-color 0.15s;
}
.svc-search-wrap:focus-within { border-color: #93c5fd; }
.svc-search {
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: #1e293b;
    background: transparent;
    flex: 1;
    min-width: 0;
}
.svc-search::placeholder { color: #94a3b8; }

/* Loading & Empty states */
.svc-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #64748b;
    font-size: 0.9rem;
    gap: 12px;
}
.svc-spinner {
    animation: svcSpin 1s linear infinite;
}
@keyframes svcSpin { to { transform: rotate(360deg); } }

.svc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    gap: 12px;
}
.svc-empty__icon {
    width: 72px;
    height: 72px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    margin-bottom: 4px;
}
.svc-empty h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin: 0; }
.svc-empty p  { color: #64748b; font-size: 0.9rem; margin: 0; }

/* Cards grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* Service card */
.svc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e9ecef;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    overflow: hidden;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    border-color: #bfdbfe;
    text-decoration: none;
    color: inherit;
}

.svc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
}
.svc-card__icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

/* Status badge */
.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
}
.svc-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.svc-badge--green { background: #dcfce7; color: #16a34a; }
.svc-badge--green .svc-badge__dot { background: #16a34a; }
.svc-badge--amber { background: #fef9c3; color: #ca8a04; }
.svc-badge--amber .svc-badge__dot { background: #ca8a04; }
.svc-badge--red   { background: #fee2e2; color: #dc2626; }
.svc-badge--red   .svc-badge__dot { background: #dc2626; }
.svc-badge--grey  { background: #f1f5f9; color: #64748b; }
.svc-badge--grey  .svc-badge__dot { background: #94a3b8; }

.svc-card__body { padding: 0 18px 12px; flex: 1; }
.svc-card__product {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.3;
}
.svc-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.svc-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: #64748b;
}
.svc-card__domain-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.svc-card__domain-link:hover { text-decoration: underline; }

.svc-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-top: 1px solid #f1f5f9;
    background: #fafafa;
}
.svc-card__price {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}
.svc-card__cycle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}
.svc-card__manage {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 6px;
    transition: background 0.15s;
}
.svc-card:hover .svc-card__manage { background: #dbeafe; }

@media (max-width: 640px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-toolbar { flex-direction: column; align-items: stretch; }
    .svc-search-wrap { min-width: 100%; }
}

/* ============================================================
   CLIENT AREA DASHBOARD REDESIGN
   ============================================================ */

/* Welcome Banner */
.sah-dash-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 28px;
    color: #fff;
}
.sah-dash-welcome h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}
.sah-dash-welcome p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.95rem;
}
.sah-dash-welcome__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.sah-dash-welcome__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #1d4ed8;
}

/* Stat Cards Row */
.sah-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.sah-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 20px 16px;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sah-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    text-decoration: none;
    color: #1e293b;
}
.sah-stat-card__icon {
    font-size: 1.6rem;
    opacity: 0.2;
    flex-shrink: 0;
}
.sah-stat-card__num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}
.sah-stat-card__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}
.sah-stat-card__bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 0 0 14px 14px;
}
/* Card accent colours */
.sah-stat-card--blue .sah-stat-card__icon { color: #2563eb; }
.sah-stat-card__bar--blue  { background: #2563eb; }
.sah-stat-card--green .sah-stat-card__icon { color: #16a34a; }
.sah-stat-card__bar--green { background: #16a34a; }
.sah-stat-card--red .sah-stat-card__icon { color: #dc2626; }
.sah-stat-card__bar--red   { background: #dc2626; }
.sah-stat-card--amber .sah-stat-card__icon { color: #d97706; }
.sah-stat-card__bar--amber { background: #d97706; }

@media (max-width: 900px) { .sah-dash-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sah-dash-stats { grid-template-columns: 1fr 1fr; } }

/* Dashboard Panel Wrapper */
.sah-dash-panels { margin-top: 4px; }
.sah-dash-panels__full { margin-bottom: 16px; }
.sah-dash-panels__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}
@media (max-width: 767px) { .sah-dash-panels__grid { grid-template-columns: 1fr; } }

/* Redesigned Panel Card */
.sah-panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.sah-panel:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); }
.sah-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
    border-radius: 14px 14px 0 0;
}
.sah-panel__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sah-panel__title i { color: #64748b; font-size: 0.95rem; }
.sah-panel__badge {
    background: #e0e7ff;
    color: #3730a3;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
}
.sah-panel__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 6px;
    transition: background 0.15s;
}
.sah-panel__btn:hover { background: #dbeafe; text-decoration: none; color: #1d4ed8; }
.sah-panel__body { padding: 16px 20px; font-size: 0.9rem; color: #374151; line-height: 1.6; }
.sah-panel__list { border-top: 1px solid #f1f5f9; }
.sah-panel__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.88rem;
    color: #334155;
    border-bottom: 1px solid #f8fafc;
    text-decoration: none;
    transition: background 0.15s;
}
a.sah-panel__list-item:hover { background: #f8fafc; color: #1e293b; text-decoration: none; }
a.sah-panel__list-item.active { background: #eff6ff; color: #2563eb; font-weight: 600; }
.sah-panel__footer {
    padding: 12px 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.82rem;
    color: #64748b;
    background: #fafafa;
    border-radius: 0 0 14px 14px;
}

/* Colour accents for panel headers based on WHMCS color class */
.sah-panel--blue    .sah-panel__header { border-left: 4px solid #2563eb; }
.sah-panel--green   .sah-panel__header { border-left: 4px solid #16a34a; }
.sah-panel--red     .sah-panel__header { border-left: 4px solid #dc2626; }
.sah-panel--orange  .sah-panel__header { border-left: 4px solid #ea580c; }
.sah-panel--gold    .sah-panel__header { border-left: 4px solid #d97706; }
.sah-panel--teal    .sah-panel__header { border-left: 4px solid #0891b2; }
.sah-panel--purple  .sah-panel__header { border-left: 4px solid #7c3aed; }

/* Welcome banner responsive */
@media (max-width: 640px) {
    .sah-dash-welcome { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
    .sah-dash-welcome h1 { font-size: 1.2rem; }
    .sah-dash-welcome__cta { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ── Shared centred container — used by footer, topbar, header ── */
.sah-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.sah-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #94a3b8;
  padding: 60px 0 0;
}
.sah-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .sah-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sah-footer__grid { grid-template-columns: 1fr; }
}
.sah-footer__brand-logo { height: 38px; width: auto; margin-bottom: 16px; }
.sah-footer__brand-desc { font-size: 0.85rem; color: #64748b; line-height: 1.7; margin: 0 0 20px; max-width: 260px; }
.sah-footer__col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #f1f5f9; margin-bottom: 16px; }
.sah-footer__link { display: block; font-size: 0.85rem; color: #64748b; text-decoration: none; margin-bottom: 10px; transition: color 0.2s ease; }
.sah-footer__link:hover { color: #10b981; }

.sah-footer__social-wrap { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.sah-footer__social-label { font-size: 0.82rem; color: #94a3b8; white-space: nowrap; }
.sah-footer__social { display: flex; align-items: center; gap: 8px; }
.sah-footer__social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; transition: all 0.25s ease; text-decoration: none;
}
.sah-footer__social-link:hover { background: #10b981; border-color: #10b981; color: #fff; transform: translateY(-2px); }

.sah-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding: 24px 0; margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sah-footer__bottom p { font-size: 0.82rem; color: #64748b; margin: 0; }
.sah-footer__bottom-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sah-footer__payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sah-payment-icon { height: 22px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); transition: opacity 0.2s ease; }
.sah-payment-icon:hover { opacity: 1; }
.sah-payment-icon--zip { height: 28px; filter: none; opacity: 0.9; }
.sah-payment-icon--afterpay { height: 22px; filter: brightness(0) invert(1); opacity: 0.85; }

@media (max-width: 640px) {
  .sah-footer__bottom { flex-direction: column; align-items: flex-start; }
  .sah-footer__social-wrap { flex-wrap: wrap; }
}

/* ============================================================
   HOMEPAGE LAYOUT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â STRIP BOOTSTRAP SIDEBAR GRID
   ============================================================ */
#main-body .container-fluid.p-0,
#main-body > .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#main-body .primary-content {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.sah-homepage-content {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.sah-homepage-content > section,
.sah-homepage-content > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Kill WHMCS content-wrapper gap before footer ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
#main-body > section,
#main-body > .container-fluid > .row,
.content-area,
section#main-body {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
#main-body .row > .primary-content > .clearfix { display: none !important; }
/* Zero out the wrapping section WHMCS closes in footer.tpl */
body > #main-body { padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* ============================================================
   DROPDOWN SYSTEM ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â FINAL
   ============================================================ */

/* Nav text reset */
.sah-nav-item, .sah-nav-item:hover, .sah-nav-item:focus,
.nav-item--has-dropdown, .nav-item--has-dropdown:hover {
  text-decoration: none !important;
  cursor: pointer;
}
.sah-nav a, .sah-nav a:hover, .sah-nav a:focus {
  text-decoration: none !important;
}

/* Nav alignment — all items vertically centred with equal top/bottom padding */
.sah-nav { display: flex !important; align-items: center !important; }
.sah-nav > a, .sah-nav > div { align-self: center !important; }
.sah-nav-item, .nav-item--has-dropdown {
  display: flex !important;
  align-items: center !important;
  align-self: center !important;
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Mobile: force-hide desktop nav AFTER the !important desktop rule ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 991px) {
  .sah-nav { display: none !important; }
  .sah-header__actions .sah-client-menu { display: none !important; }
}

/* Parent nav item ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â padding-bottom bridges gap to dropdown */
.nav-item--has-dropdown {
  position: relative !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}
/* Invisible hover bridge — keeps dropdown open as cursor moves downward */
.nav-item--has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* SMALL dropdown */
.nav-item--has-dropdown > .mega-dropdown:not(.mega-dropdown--lg) {
  position: absolute !important;
  top: calc(100% - 12px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 0 !important;
  padding-top: 12px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, visibility 0.2s !important;
  z-index: 1060 !important;
}
.nav-item--has-dropdown:hover > .mega-dropdown:not(.mega-dropdown--lg),
.nav-item--has-dropdown > .mega-dropdown:not(.mega-dropdown--lg):hover,
.mega-dropdown:not(.mega-dropdown--lg):hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* LARGE dropdown */
.nav-item--has-dropdown > .mega-dropdown--lg {
  position: fixed !important;
  top: var(--sah-header-bottom, 104px) !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  transform: none !important;
  margin-top: 0 !important;
  padding-top: 40px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, visibility 0.2s !important;
  z-index: 1060 !important;
}
.nav-item--has-dropdown:hover > .mega-dropdown--lg,
.nav-item--has-dropdown > .mega-dropdown--lg:hover,
.mega-dropdown--lg:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Nav colours + hover highlight */
.sah-nav-item, .nav-item--has-dropdown { color: #1f2937 !important; }
.nav-item--has-dropdown:hover, .sah-nav-item:hover {
  background: #bbf7d0 !important;
  color: #1f2937 !important;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section { padding: 72px 0; }
.section-badge {
  display: inline-flex; align-items: center;
  background: #d1fae5; color: #065f46;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.section-title {
  font-size: 2rem; font-weight: 800; color: #111827;
  margin: 0 0 12px; line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem; color: #6b7280; line-height: 1.6;
}
.text-center { text-align: center; }

/* ============================================================
   DOMAIN SEARCH SECTION
   ============================================================ */
.domain-search-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 60%, #f0fdf4 100%);
  border-top: 1px solid #d1fae5;
  border-bottom: 1px solid #d1fae5;
  padding: 64px 0;
}
.domain-search-form {
  display: flex; max-width: 600px; margin: 0 auto 32px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(16,185,129,0.15);
  border: 2px solid #10b981;
}
.domain-search-input {
  flex: 1; padding: 14px 20px; border: none !important;
  outline: none; font-size: 1rem; background: #fff; color: #111827;
}
.domain-search-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #fff !important; border: none !important;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: all 0.2s ease;
}
.domain-search-btn:hover { background: linear-gradient(135deg, #059669, #047857) !important; }
.domain-extensions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.domain-ext-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 14px 20px; min-width: 100px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.domain-ext-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important; }
.domain-ext-card img { width: 120px; height: 44px; object-fit: contain; object-position: center; display: block; }
.domain-ext-price { font-size: 0.82rem; font-weight: 600; color: #10b981; }

/* ============================================================
   PRICING ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â ADDITIONAL CLASSES
   ============================================================ */
.sah-popular-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}
.sah-plan-header { margin-bottom: 16px; }
.sah-plan-btn {
  display: block; text-align: center;
  padding: 13px 24px; border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff !important; font-weight: 700; font-size: 0.9rem;
  text-decoration: none !important; transition: all 0.2s ease;
  margin-top: 20px;
}
.sah-plan-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px); box-shadow: 0 6px 18px rgba(16,185,129,0.3);
  color: #fff !important;
}
.sah-plan-btn--featured {
  background: linear-gradient(135deg, #047857, #065f46) !important;
  box-shadow: 0 4px 14px rgba(4,120,87,0.4);
}
.sah-plan-btn--featured:hover {
  background: linear-gradient(135deg, #065f46, #064e3b) !important;
}
.sah-plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.sah-plan-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: #374151;
}
.sah-plan-features li svg { width: 16px; height: 16px; color: #10b981; flex-shrink: 0; }
.sah-billed-yearly { font-size: 0.78rem; color: #6b7280; margin-top: 4px; }
.sah-pricing-footer {
  text-align: center; margin-top: 40px; padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.sah-pricing-footer p { font-size: 0.9rem; color: #6b7280; margin: 0 0 14px; }
.sah-pricing-all-btn {
  display: inline-flex; align-items: center;
  padding: 12px 28px; background: #fff;
  border: 2px solid #10b981; border-radius: 10px;
  color: #10b981 !important; font-weight: 700; font-size: 0.9rem;
  text-decoration: none !important; transition: all 0.2s ease;
}
.sah-pricing-all-btn:hover {
  background: #10b981; color: #fff !important;
  box-shadow: 0 6px 18px rgba(16,185,129,0.25);
}

/* ============================================================
   STATS SECTION ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â BUBBLE STYLE
   ============================================================ */
.sah-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.sah-stats-heading {
  text-align: center;
  margin-bottom: 52px;
}
.sah-stats-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #f1f5f9; line-height: 1.2; margin: 0;
}
.sah-stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap;
  max-width: 900px; margin: 0 auto;
}
.sah-stats-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 32px;
  text-align: center; min-width: 160px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.sah-stats-bubble:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.sah-stats-bubble--high { transform: translateY(-24px); }
.sah-stats-bubble--low  { transform: translateY(24px); }
.sah-stats-bubble--high:hover { transform: translateY(-28px); }
.sah-stats-bubble--low:hover  { transform: translateY(20px); }
.sah-stats-num {
  display: block;
  font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 6px;
}
.sah-stats-label {
  display: block;
  font-size: 0.85rem; color: #94a3b8; font-weight: 500;
}
.sah-stats-connector {
  flex: 1; height: 2px; min-width: 30px; max-width: 80px;
  background: repeating-linear-gradient(
    90deg, rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.15) 6px,
    transparent 6px, transparent 14px
  );
}
/* Floating dots */
.sah-stats-dot {
  position: absolute; border-radius: 50%; opacity: 0.5;
}
.sah-stats-dot--cyan   { width: 10px; height: 10px; background: #06b6d4; }
.sah-stats-dot--blue   { width: 8px;  height: 8px;  background: #3b82f6; }
.sah-stats-dot--purple { width: 12px; height: 12px; background: #a855f7; }
.sah-stats-dot--yellow { width: 9px;  height: 9px;  background: #f59e0b; }

/* ============================================================
   WHY CHOOSE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â ADDITIONAL
   ============================================================ */
.sah-why-card--highlight {
  border-color: #10b981 !important;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5) !important;
}
.sah-why-icon svg { width: 28px; height: 28px; }

/* ============================================================
   TESTIMONIALS ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â SLIDER STYLE
   ============================================================ */
.sah-slider-wrap { overflow: hidden; }
.sah-slider-track {
  display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); will-change: transform;
}
.sah-testi-card {
  min-width: calc(33.333% - 16px); margin-right: 24px; flex-shrink: 0;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 20px;
  padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}
.sah-testi-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
@media (max-width: 900px) { .sah-testi-card { min-width: calc(50% - 12px); } }
@media (max-width: 600px) { .sah-testi-card { min-width: 100%; margin-right: 0; } }
.sah-testi-stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 14px; }
.sah-testi-quote { font-size: 0.9rem; color: #374151; line-height: 1.7; margin: 0 0 20px; }
.sah-testi-author { display: flex; align-items: center; gap: 12px; }
.sah-testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.sah-slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px;
}
.sah-slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #e2e8f0; background: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #374151; transition: all 0.2s ease;
}
.sah-slider-btn:hover { background: #10b981; color: #fff; border-color: #10b981; }
.sah-slider-dots { display: flex; gap: 8px; }
.sah-slider-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d1d5db; border: none; cursor: pointer; transition: all 0.2s ease; padding: 0;
}
.sah-slider-dots button.active {
  background: #10b981; width: 24px; border-radius: 4px;
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Nav chevron icon ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-nav-chevron {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
  color: #1f2937;
}
.nav-item--has-dropdown:hover .sah-nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Packages dropdown ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â wider panel, right-aligned ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.mega-dropdown--packages {
  min-width: 360px !important;
  left: auto !important;
  right: 0 !important;
  transform: none !important;
  padding: 10px !important;
}
.mega-dropdown--packages .mega-dropdown__item {
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 10px;
  gap: 12px;
}
.mega-dropdown--packages .mega-dropdown__icon {
  margin-top: 2px;
  flex-shrink: 0;
}
.mega-dropdown--packages .mega-dropdown__text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px;
}
.mega-dropdown--packages .mega-dropdown__text p {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Dropdown icon boxes ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â always green ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.mega-dropdown__icon--box {
  background: #d1fae5 !important;
  color: #10b981 !important;
}
.mega-dropdown__icon--box svg {
  color: #10b981 !important;
  stroke: #10b981 !important;
}
/* On hover: white icon on solid green */
.mega-dropdown__item--box:hover .mega-dropdown__icon--box {
  background: #10b981 !important;
  color: #ffffff !important;
}
.mega-dropdown__item--box:hover .mega-dropdown__icon--box svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}
/* ============================================================
   WHY CHOOSE BENTO GRID
   ============================================================ */
.sah-why-section { padding: 80px 0; background: #f8fafc; }
.sah-why-header { text-align: center; margin-bottom: 52px; }
.sah-why-title { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: #0f172a; line-height: 1.2; margin: 12px 0 14px; }
.sah-why-subtitle { font-size: 1rem; color: #64748b; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.sah-why-bento { display: flex; flex-direction: column; gap: 20px; }
.sah-why-bento__row--3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sah-why-bento__row--featured { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.sah-why-bento__stack { display: flex; flex-direction: column; gap: 20px; }
.sah-bento-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 28px;
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column; gap: 16px;
}
.sah-bento-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); border-color: #cbd5e1; }
.sah-bento-card__glow { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; border-radius: 20px; }
.sah-bento-card:hover .sah-bento-card__glow { opacity: 1; }
.sah-bento-card__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s ease; }
.sah-bento-card:hover .sah-bento-card__icon { transform: scale(1.1); }
.sah-bento-card__tag { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; width: fit-content; margin-bottom: 4px; }
.sah-bento-card__content { display: flex; flex-direction: column; gap: 6px; }
.sah-bento-card__content h3, .sah-bento-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0; }
.sah-bento-card__content p, .sah-bento-card > p { font-size: 0.875rem; color: #64748b; line-height: 1.6; margin: 0; }
.sah-bento-card--featured {
  background: linear-gradient(135deg,#064e3b 0%,#065f46 40%,#047857 100%);
  border: none; padding: 36px; min-height: 280px; justify-content: center;
}
.sah-bento-card--featured:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(5,150,105,0.35); border: none; }
.sah-bento-card--featured__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 10% 90%,rgba(16,185,129,0.3) 0%,transparent 60%),radial-gradient(ellipse at 90% 10%,rgba(6,95,70,0.5) 0%,transparent 50%); pointer-events: none; }
.sah-bento-card--featured__badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #a7f3d0; padding: 4px 12px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; width: fit-content; margin-bottom: 4px; }
.sah-bento-card--featured h3 { font-size: 1.4rem; font-weight: 800; color: #fff; }
.sah-bento-card--featured > p { color: #a7f3d0; font-size: 0.9rem; }
.sah-bento-card--featured__btn { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff !important; text-decoration: none !important; padding: 10px 20px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; width: fit-content; margin-top: 8px; transition: background 0.2s ease; }
.sah-bento-card--featured__btn:hover { background: rgba(255,255,255,0.25) !important; }
.sah-bento-card--featured__dots { position: absolute; bottom: 24px; right: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.sah-bento-card--featured__dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
@media (max-width: 900px) { .sah-why-bento__row--3 { grid-template-columns: repeat(2,1fr); } .sah-why-bento__row--featured { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .sah-why-bento__row--3 { grid-template-columns: 1fr; } }
/* ============================================================
   FOOTER ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â DARK PREMIUM REDESIGN
   ============================================================ */
.sah-footer {
  background: #13171f;
  color: #9ca3af;
  padding: 64px 0 0;
  border-top: 1px solid #1f2937;
  font-size: 0.875rem;
}

/* Main grid: brand col (wider) + 4 link cols */
.sah-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid #1f2937;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Brand column ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.sah-footer__logo { height: 28px; width: auto; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: 0.9; display: block; }
.sah-footer__brand > p { color: #6b7280; font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

/* AU badge */
.sah-footer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: #6ee7b7; padding: 8px 14px;
  border-radius: 8px; font-size: 0.78rem; font-weight: 600;
  width: fit-content;
}
.sah-footer__badge::before {
  content: '';
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #10b981; flex-shrink: 0;
}

/* Social row */
.sah-footer__social-wrap { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.sah-footer__social-label { font-size: 0.78rem; font-weight: 600; color: #6b7280; white-space: nowrap; }
.sah-footer__social { display: flex; gap: 8px; }
.sah-footer__social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: #1f2937; border: 1px solid #374151;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.sah-footer__social-link:hover {
  background: #10b981; color: #fff !important; border-color: #10b981;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Link columns ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-footer__col { display: flex; flex-direction: column; gap: 14px; }
.sah-footer__col h4 {
  font-size: 0.875rem; font-weight: 700;
  color: #f9fafb; letter-spacing: 0.02em;
  margin: 0 0 4px; padding-bottom: 10px;
  border-bottom: 1px solid #1f2937;
}
.sah-footer__col a {
  color: #6b7280 !important; text-decoration: none !important;
  font-size: 0.85rem; line-height: 1;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}
.sah-footer__col a:hover { color: #10b981 !important; padding-left: 4px; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Bottom bar ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 20px; flex-wrap: wrap;
}
.sah-footer__bottom > p {
  font-size: 0.78rem; color: #4b5563; margin: 0;
}
.sah-footer__bottom-right { display: flex; align-items: center; gap: 16px; }

/* Payment icons */
.sah-footer__payments { display: flex; align-items: center; gap: 8px; }
.sah-payment-icon {
  height: 22px; width: auto; opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.sah-payment-icon:hover { opacity: 0.85; }
.sah-payment-icon--zip     { height: 18px; }
.sah-payment-icon--afterpay { height: 18px; }

/* Language/currency button */
.sah-footer__lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: #1f2937; border: 1px solid #374151;
  color: #9ca3af; padding: 6px 12px; border-radius: 8px;
  font-size: 0.78rem; cursor: pointer; transition: border-color 0.2s ease;
}
.sah-footer__lang-btn:hover { border-color: #10b981; color: #f9fafb; }

/* Responsive */
@media (max-width: 1024px) {
  .sah-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .sah-footer__col:nth-child(n+4) { grid-column: auto; }
}
@media (max-width: 768px) {
  .sah-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sah-footer__brand { grid-column: 1 / -1; }
  .sah-footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 480px) {
  .sah-footer__grid { grid-template-columns: 1fr; }
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FAQ 2-column grid ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.sah-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.sah-faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .sah-faq-grid { grid-template-columns: 1fr; }
}
/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Eliminate whitespace gap between FAQ and Footer on homepage ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
#main-body.p-0,
#main-body.p-0 > .container-fluid.p-0,
#main-body.p-0 > .container-fluid.p-0 > div {
  padding: 0 !important;
  margin: 0 !important;
}
#main-body.p-0 .clearfix { display: none !important; }


.sah-payment-icons { margin-bottom: 10px !important; }
.sah-weaccept-img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 6px !important;
}

/* ============================================================
   SERVICES TABLE VIEW
   ============================================================ */
.svc-table-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow-x: auto;
    margin-bottom: 24px;
    width: 100%;
}
.svc-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}
.svc-table th {
    background: #f8fafc;
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}
.svc-row {
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s ease;
}
.svc-row:last-child {
    border-bottom: none;
}
.svc-row:hover {
    background: #f8fafc;
}
.svc-row td {
    padding: 16px 20px;
    vertical-align: middle;
    font-size: 0.88rem;
    color: #334155;
}
.svc-cell-product {
    display: flex;
    align-items: center;
    gap: 12px;
}
.svc-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.svc-details {
    display: flex;
    flex-direction: column;
}
.svc-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.92rem;
}
.svc-domain {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #2563eb;
    margin-top: 3px;
}
.svc-cell-price {
    display: flex;
    flex-direction: column;
}
.svc-price-num {
    font-weight: 700;
    color: #0f172a;
}
.svc-price-cycle {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}
.svc-cell-due {
    font-weight: 500;
    color: #475569;
}
.svc-manage-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none !important;
}
.svc-manage-btn:hover {
    background: #dbeafe;
    color: #1d4ed8;
}

/* ============================================================
   BRANDED WHMCS SIDEBAR CUSTOM STYLES
   ============================================================ */
.card-sidebar {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
    margin-bottom: 24px !important;
}
.card-sidebar .card-header {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 14px 20px !important;
}
.card-sidebar .card-title {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #475569 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.card-sidebar .card-title i {
    color: #94a3b8 !important;
}
.card-sidebar .list-group-item {
    padding: 12px 20px !important;
    font-size: 0.88rem !important;
    color: #475569 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
}
.card-sidebar .list-group-item:last-child {
    border-bottom: none !important;
}
.card-sidebar .list-group-item:hover {
    background: #f8fafc !important;
    color: #1e293b !important;
    text-decoration: none !important;
}
.card-sidebar .list-group-item.active {
    background: #ecfdf5 !important;
    color: #10b981 !important;
    font-weight: 600 !important;
    border-left: 3px solid #10b981 !important;
    padding-left: 17px !important;
}
.card-sidebar .badge {
    background: #f1f5f9 !important;
    color: #475569 !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    border-radius: 99px !important;
    padding: 3px 8px !important;
}
.card-sidebar .list-group-item.active .badge {
    background: #d1fae5 !important;
    color: #065f46 !important;
}

/* ============================================================
   MY DOMAINS PREMIUM UI STYLES
   ============================================================ */
.dom-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.dom-page-header__left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dom-page-header__icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}
.dom-page-header__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
    line-height: 1.2;
}
.dom-page-header__sub {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}
.dom-page-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dom-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.dom-btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.dom-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16,185,129,0.4);
    color: #fff;
}
.dom-btn--outline {
    background: transparent;
    border: 2.5px solid #10b981;
    color: #10b981;
}
.dom-btn--outline:hover {
    background: #10b981;
    color: #fff;
}

/* Bulk toolbar */
.dom-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.dom-toolbar__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}
.dom-toolbar__btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.dom-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.dom-tool-btn:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #1e293b;
}
.dom-tool-dropdown {
    position: relative;
}
.dom-tool-dropdown__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 4px;
}
.dom-tool-dropdown__menu--open {
    display: flex;
}
.dom-tool-dropdown__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: all 0.15s;
}
.dom-tool-dropdown__item:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* Alert styles */
.dom-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 24px;
}
.dom-alert--warning {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
}

/* Domain chips for autorenew */
.dom-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 99px;
}
.dom-chip--green {
    background: #dcfce7;
    color: #15803d;
}
.dom-chip--grey {
    background: #f1f5f9;
    color: #475569;
}

/* ============================================================
   MY DOMAINS DETAILS PREMIUM UI (dd2-*)
   ============================================================ */
.dd2-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.dd2-alert--warning {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
}
.dd2-alert--danger {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
}
.dd2-alert--success {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    color: #15803d;
}
.dd2-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.dd2-btn--sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
}
.dd2-btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(16,185,129,0.3);
}
.dd2-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}
.dd2-btn--danger {
    background: #ef4444;
    color: #fff !important;
}
.dd2-btn--danger:hover {
    background: #dc2626;
}
.dd2-btn--outline {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981 !important;
}
.dd2-btn--outline:hover {
    background: #10b981;
    color: #fff !important;
}
.dd2-btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.dd2-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}
.dd2-btn--amber {
    background: #f59e0b;
    color: #fff !important;
    margin-left: auto;
}
.dd2-btn--amber:hover {
    background: #d97706;
}

/* Banner Component */
.dd2-banner {
    position: relative;
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 32px 32px 0;
    margin-bottom: 24px;
    color: #ffffff;
    overflow: hidden;
}
.dd2-banner__bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 24px 24px;
}
.dd2-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding-bottom: 28px;
    flex-wrap: wrap;
}
.dd2-banner__left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.dd2-banner__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}
.dd2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    font-weight: 500;
}
.dd2-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.dd2-breadcrumb a:hover {
    color: #ffffff;
}
.dd2-banner__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.2;
}
.dd2-banner__domain-link {
    color: #ffffff;
    text-decoration: none !important;
}
.dd2-banner__domain-link:hover {
    color: #10b981;
}
.dd2-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.dd2-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 99px;
}
.dd2-chip--green { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.dd2-chip--red   { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.dd2-chip--blue  { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
.dd2-chip--grey  { background: rgba(255, 255, 255, 0.1); color: #cbd5e1; }
.dd2-chip--sm    { padding: 2px 8px; font-size: 0.68rem; margin-left: 6px; }

.dd2-banner__right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

/* Tabbar Component */
.dd2-tabbar {
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    overflow-x: auto;
}
.dd2-tab {
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.dd2-tab:hover {
    color: #ffffff;
}
.dd2-tab.active {
    color: #10b981;
    border-bottom-color: #10b981;
}

/* Layout Split */
.dd2-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .dd2-layout {
        grid-template-columns: 1fr;
    }
}
.dd2-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dd2-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Component */
.dd2-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}
.dd2-card__head {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dd2-card__head-icon {
    color: #94a3b8;
    display: flex;
    align-items: center;
}
.dd2-card__body {
    padding: 24px;
}
.dd2-card__foot {
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
    padding: 14px 24px;
    display: flex;
    justify-content: flex-end;
}
.dd2-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.dd2-muted {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Info Grid */
.dd2-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 480px) {
    .dd2-info-grid {
        grid-template-columns: 1fr;
    }
}
.dd2-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dd2-info-item__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.dd2-info-item__val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}
.dd2-info-item__val--accent {
    color: #2563eb;
}
.dd2-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.dd2-link:hover {
    text-decoration: underline;
}

/* Quick Actions Sidebar */
.dd2-quick-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 8px 0;
}
.dd2-quick-panel__title {
    padding: 14px 20px 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.dd2-qa {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.88rem;
    color: #475569;
    text-decoration: none !important;
    transition: all 0.2s;
    border-bottom: 1px solid #f8fafc;
}
.dd2-qa:last-child {
    border-bottom: none;
}
.dd2-qa:hover {
    background: #f8fafc;
    color: #0f172a;
}
.dd2-qa__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dd2-qa__icon--green {
    background: #d1fae5;
    color: #10b981;
}
.dd2-qa__text {
    font-weight: 600;
    flex: 1;
}
.dd2-qa__arr {
    color: #cbd5e1;
    transition: transform 0.2s;
}
.dd2-qa:hover .dd2-qa__arr {
    color: #64748b;
    transform: translateX(2px);
}

/* Domain Health Card */
.dd2-health-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 20px;
}
.dd2-health-card__title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 14px;
}
.dd2-health-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}
.dd2-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dd2-dot--green { background: #10b981; box-shadow: 0 0 8px #10b981; }
.dd2-dot--amber { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
.dd2-dot--red   { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
.dd2-dot--grey  { background: #94a3b8; }

/* Hero Toggle State */
.dd2-state-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
.dd2-state-hero__ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.dd2-state-hero--on .dd2-state-hero__ring {
    background: #d1fae5;
    color: #10b981;
}
.dd2-state-hero--off .dd2-state-hero__ring {
    background: #f1f5f9;
    color: #94a3b8;
}
.dd2-state-hero--warn .dd2-state-hero__ring {
    background: #fee2e2;
    color: #ef4444;
}
.dd2-state-hero h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}
.dd2-state-hero p {
    font-size: 0.88rem;
    color: #64748b;
    max-width: 320px;
    margin: 0;
    line-height: 1.6;
}

/* Radio Choice */
.dd2-radio-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.dd2-radio-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}
.dd2-radio-pill input {
    margin: 0;
}
.dd2-radio-pill--on {
    border-color: #10b981;
    background: #ecfdf5;
    color: #065f46;
}

/* Nameservers and inputs styling */
.dd2-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.dd2-ns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
@media (max-width: 600px) {
    .dd2-ns-grid {
        grid-template-columns: 1fr;
    }
}
.dd2-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}
.dd2-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s;
}
.dd2-input:focus {
    border-color: #10b981;
}

/* Addons panel */
.dd2-addon {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}
.dd2-addon:last-child {
    border-bottom: none;
}
.dd2-addon__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dd2-addon__icon--on {
    background: #ecfdf5;
    color: #10b981;
}
.dd2-addon__body {
    flex: 1;
}
.dd2-addon__body strong {
    font-size: 0.95rem;
    color: #0f172a;
}
.dd2-addon__body p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 4px 0 0;
    line-height: 1.5;
}

/* Premium Auto Renew Toggle Switch matching the screenshot exactly */
.dd2-toggle-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border: 1.5px solid #0076cc;
    border-radius: 8px;
    background: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 24px;
    min-width: 320px;
    justify-content: space-between;
}
.dd2-toggle-box--off {
    border-color: #cbd5e1;
}

.dd2-switch {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 30px;
    margin: 0;
    cursor: pointer;
}
.dd2-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.dd2-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}
.dd2-slider__knob {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    z-index: 2;
}
.dd2-switch input:checked + .dd2-slider {
    background-color: #0076cc;
}
.dd2-switch input:checked + .dd2-slider .dd2-slider__knob {
    transform: translateX(38px);
}
.dd2-slider__label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    user-select: none;
    transition: opacity 0.2s;
    z-index: 1;
}
.dd2-slider__label--on {
    opacity: 0;
    margin-left: 4px;
}
.dd2-slider__label--off {
    opacity: 1;
    margin-left: auto;
    margin-right: 4px;
    color: #fff;
}
.dd2-switch input:checked + .dd2-slider .dd2-slider__label--on {
    opacity: 1;
}
.dd2-switch input:checked + .dd2-slider .dd2-slider__label--off {
    opacity: 0;
}

/* Input Addon Groups */
.dd2-input-addon-group {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.dd2-input-addon {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
    border-left: none;
    padding: 0 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    white-space: nowrap;
}

/* ============================================================
   PRODUCT DETAILS PREMIUM UI (pd2-*)
   Styles for clientareaproductdetails.tpl
   ============================================================ */

/* ── Alerts ── */
.pd2-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.pd2-alert--warning {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
}
.pd2-alert--danger {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
}
.pd2-alert--success {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    color: #15803d;
}

/* ── Buttons ── */
.pd2-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.pd2-btn--sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
}
.pd2-btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(16,185,129,0.3);
}
.pd2-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
    color: #fff !important;
}
.pd2-btn--success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(16,185,129,0.25);
}
.pd2-btn--success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
    color: #fff !important;
}
.pd2-btn--cpanel {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(30,64,175,0.25);
}
.pd2-btn--cpanel:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30,64,175,0.35);
    color: #fff !important;
}
.pd2-btn--ghost {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.2);
}
.pd2-btn--ghost:hover {
    background: rgba(255,255,255,0.22);
    color: #fff !important;
}
.pd2-btn--outline {
    background: transparent;
    border: 1.5px solid #10b981;
    color: #10b981 !important;
}
.pd2-btn--outline:hover {
    background: #10b981;
    color: #fff !important;
}
.pd2-btn--amber {
    background: #f59e0b;
    color: #fff !important;
}
.pd2-btn--amber:hover {
    background: #d97706;
    color: #fff !important;
}
.pd2-btn--danger {
    background: #ef4444;
    color: #fff !important;
}
.pd2-btn--danger:hover {
    background: #dc2626;
    color: #fff !important;
}

/* ── Status Chip ── */
.pd2-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pd2-status-chip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.pd2-status-chip--active {
    background: rgba(16,185,129,0.15);
    color: #059669;
}
.pd2-status-chip--suspended,
.pd2-status-chip--fraud {
    background: rgba(239,68,68,0.12);
    color: #dc2626;
}
.pd2-status-chip--pending {
    background: rgba(245,158,11,0.15);
    color: #d97706;
}
.pd2-status-chip--cancelled,
.pd2-status-chip--terminated {
    background: rgba(100,116,139,0.12);
    color: #475569;
}

/* ── Service Banner ── */
.pd2-banner {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #064e3b 100%);
    border-radius: 16px;
    padding: 32px 32px 0;
    margin-bottom: 24px;
    color: #ffffff;
    overflow: hidden;
}
.pd2-banner__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
    top: -80px;
    right: 80px;
    pointer-events: none;
}
.pd2-banner__glow--2 {
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    top: auto;
    bottom: -60px;
    right: 200px;
}
.pd2-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
    padding-bottom: 28px;
    flex-wrap: wrap;
}
.pd2-banner__left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.pd2-banner__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}
.pd2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    font-weight: 500;
}
.pd2-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.pd2-breadcrumb a:hover { color: #fff; }
.pd2-banner__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.2;
}
.pd2-banner__sub {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pd2-banner__group {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}
.pd2-banner__domain {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none !important;
    transition: color 0.2s;
}
.pd2-banner__domain:hover { color: #34d399; }
.pd2-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ── Tab Bar ── */
.pd2-tabbar {
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    overflow-x: auto;
    scrollbar-width: none;
}
.pd2-tabbar::-webkit-scrollbar { display: none; }
.pd2-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
}
.pd2-tab:hover { color: #fff; }
.pd2-tab.active {
    color: #10b981;
    border-bottom-color: #10b981;
}

/* ── Tab Content ── */
.pd2-content { margin-top: 0; }

/* ── Layout ── */
.pd2-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 960px) {
    .pd2-layout {
        grid-template-columns: 1fr;
    }
}
.pd2-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pd2-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Card ── */
.pd2-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}
.pd2-card__head {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd2-card__head-icon {
    color: #94a3b8;
    display: flex;
    align-items: center;
}
.pd2-card__head-meta {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: none;
    letter-spacing: 0;
}
.pd2-card__body { padding: 24px; }
.pd2-card__foot {
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Info Grid ── */
.pd2-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 480px) {
    .pd2-info-grid { grid-template-columns: 1fr; }
}
.pd2-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pd2-info-item--full {
    grid-column: 1 / -1;
}
.pd2-info-item__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.pd2-info-item__val {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
}
.pd2-mono { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 0.88rem; }
.pd2-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
}
.pd2-link:hover { text-decoration: underline; }
.pd2-muted {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ── Module Area ── */
.pd2-module-area { margin-top: 16px; }

/* ── Usage Statistics ── */
.pd2-usage-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pd2-usage-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.pd2-usage-item__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
}
.pd2-usage-item__pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
}
.pd2-usage-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 6px;
}
.pd2-usage-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 99px;
    transition: width 0.5s ease;
}
.pd2-usage-bar__fill--blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.pd2-usage-item__val {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ── Billing Overview Sidebar ── */
.pd2-billing-overview {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}
.pd2-billing-overview__head {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
}
.pd2-billing-overview__status {
    padding: 12px 20px 8px;
}
.pd2-billing-overview__rows {
    padding: 0 0 4px;
}
.pd2-billing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.85rem;
}
.pd2-billing-row:last-child { border-bottom: none; }
.pd2-billing-row__label {
    font-weight: 500;
    color: #64748b;
}
.pd2-billing-row__val {
    font-weight: 700;
    color: #1e293b;
    text-align: right;
}
.pd2-billing-row__val--green { color: #10b981; }
.pd2-billing-row__val--accent { color: #2563eb; }
.pd2-billing-overview__renew {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 12px 16px 16px;
    padding: 11px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(16,185,129,0.3);
}
.pd2-billing-overview__renew:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}

/* ── Quick Actions Sidebar ── */
.pd2-quick-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 8px 0;
}
.pd2-quick-panel__title {
    padding: 14px 20px 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.pd2-qa {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none !important;
    transition: all 0.2s;
    border-bottom: 1px solid #f8fafc;
}
.pd2-qa:last-child { border-bottom: none; }
.pd2-qa:hover {
    background: #f8fafc;
    color: #0f172a;
}
.pd2-qa--green { }
.pd2-qa--green .pd2-qa__icon {
    background: #d1fae5;
    color: #10b981;
}
.pd2-qa--danger .pd2-qa__icon {
    background: #fee2e2;
    color: #ef4444;
}
.pd2-qa--danger {
    color: #dc2626;
}
.pd2-qa--disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pd2-qa__icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.pd2-qa span:not(.pd2-qa__icon):not(.pd2-qa__arr) {
    flex: 1;
}
.pd2-qa__arr {
    color: #cbd5e1;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}
.pd2-qa:hover .pd2-qa__arr {
    color: #64748b;
    transform: translateX(3px);
}

/* ── Downloads ── */
.pd2-downloads-list { display: flex; flex-direction: column; gap: 12px; }
.pd2-download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}
.pd2-download-item:last-child { border-bottom: none; }
.pd2-download-item__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
}

/* ── Addons Grid ── */
.pd2-addons-grid { display: flex; flex-direction: column; gap: 12px; }
.pd2-addon-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
}
.pd2-addon-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.pd2-addon-card__name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1e293b;
}
.pd2-addon-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 0.8rem;
    color: #64748b;
}
.pd2-addon-card__actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── Change Password Form ── */
.pd2-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.pd2-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
}
.pd2-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.pd2-input:focus { border-color: #10b981; }

/* ── Responsive tweaks ── */
@media (max-width: 640px) {
    .pd2-banner { padding: 20px 20px 0; }
    .pd2-banner__title { font-size: 1.3rem; }
    .pd2-banner__actions { gap: 8px; }
    .pd2-card__body { padding: 16px; }
    .pd2-billing-row { font-size: 0.8rem; }
    .pd2-info-grid { grid-template-columns: 1fr; }
    .pd2-tab { padding: 12px 14px; font-size: 0.8rem; }
}

/* ============================================================
   SUBMIT TICKET PAGE — Premium Redesign
   Classes: st-*   (Support Ticket)
   ============================================================ */

/* ── Page wrapper ── */
.st-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 60px;
}

/* ── Hero header bar ── */
.st-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 0 28px;
  margin-bottom: 4px;
}
.st-header__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}
.st-header__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.2;
}
.st-header__sub {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
}

/* ── Two-column body ── */
.st-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

/* ── Main content column ── */
.st-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Section label ── */
.st-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10b981;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #d1fae5;
  margin-bottom: 16px;
}
.st-section-label__opt {
  font-weight: 400;
  color: #9ca3af;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Department cards ── */
.st-dept-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-dept-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  cursor: pointer;
}
.st-dept-card:hover {
  border-color: #10b981;
  background: #f0fdf4;
  box-shadow: 0 4px 16px rgba(16,185,129,0.12);
  transform: translateY(-2px);
}
.st-dept-card__icon {
  width: 46px; height: 46px;
  background: #d1fae5;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #10b981;
  flex-shrink: 0;
  transition: all 0.2s;
}
.st-dept-card:hover .st-dept-card__icon {
  background: #10b981;
  color: #fff;
}
.st-dept-card__body { flex: 1; }
.st-dept-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.st-dept-card__desc {
  font-size: 0.82rem;
  color: #6b7280;
}
.st-dept-card__arrow {
  color: #d1d5db;
  transition: color 0.2s, transform 0.2s;
}
.st-dept-card:hover .st-dept-card__arrow {
  color: #10b981;
  transform: translateX(3px);
}

/* ── Empty state ── */
.st-empty {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Form sections ── */
.st-form-section {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.st-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.st-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.st-form-group--full {
  grid-column: 1 / -1;
}

/* ── Labels ── */
.st-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Text inputs ── */
.st-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.st-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.st-input::placeholder { color: #9ca3af; }
.st-input--locked {
  background: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}
.st-input-lock {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #9ca3af;
}

/* ── Select ── */
.st-select-wrap {
  position: relative;
}
.st-select {
  width: 100%;
  padding: 11px 38px 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  background: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.st-select:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.st-select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

/* ── Textarea ── */
.st-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 180px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  line-height: 1.6;
}
.st-textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.st-textarea::placeholder { color: #9ca3af; }

/* ── File attachment zone ── */
.st-attachment-zone {
  background: #f8fafc;
  border: 1.5px dashed #d1d5db;
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s;
}
.st-attachment-zone:hover { border-color: #10b981; }

.st-custom-file {
  flex: 1;
}
.st-file-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.st-file-label:hover { border-color: #10b981; color: #10b981; }
.st-file-label svg { flex-shrink: 0; color: #10b981; }

.st-add-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.st-add-file-btn:hover { border-color: #10b981; color: #10b981; }

.st-file-hint {
  font-size: 0.78rem;
  color: #9ca3af;
  margin: 10px 0 0;
}

/* ── Error alert ── */
.st-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.st-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}
.st-alert--error svg { flex-shrink: 0; margin-top: 1px; color: #ef4444; }

/* ── Captcha wrapper ── */
.st-captcha { margin-top: 4px; }

/* ── Action buttons ── */
.st-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none !important;
  border: none;
  transition: all 0.2s;
}
.st-btn--primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}
.st-btn--primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16,185,129,0.4);
  color: #fff !important;
}
.st-btn--outline {
  background: #fff;
  color: #374151 !important;
  border: 1.5px solid #e5e7eb;
}
.st-btn--outline:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  color: #111827 !important;
}

/* ── Right sidebar ── */
.st-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}
.st-info-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.st-info-card--contact {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-color: #bbf7d0;
}
.st-info-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.st-info-card__title svg { color: #10b981; flex-shrink: 0; }
.st-info-card p {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 0 0 12px;
  line-height: 1.5;
}
.st-info-card__btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: #10b981 !important;
  text-decoration: none !important;
  transition: gap 0.2s;
  gap: 4px;
}
.st-info-card__btn:hover { gap: 8px; }
.st-info-card__phone {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #059669 !important;
  text-decoration: none !important;
  line-height: 1.4;
}
.st-info-card__phone:hover { color: #047857 !important; }
.st-info-card__hours {
  font-size: 0.78rem;
  color: #9ca3af;
  margin: 8px 0 0;
}

/* ── Tips list ── */
.st-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-tips li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: #4b5563;
  line-height: 1.4;
}
.st-tips li::before {
  content: '✓';
  font-weight: 700;
  color: #10b981;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* ── SLA response times ── */
.st-sla {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-sla__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: #374151;
}
.st-sla__item span:nth-child(2) { flex: 1; }
.st-sla__item strong {
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}
.st-sla__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.st-sla__dot--red    { background: #ef4444; }
.st-sla__dot--amber  { background: #f59e0b; }
.st-sla__dot--green  { background: #10b981; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .st-body {
    grid-template-columns: 1fr;
  }
  .st-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .st-form-row { grid-template-columns: 1fr; }
  .st-header__title { font-size: 1.35rem; }
  .st-sidebar { grid-template-columns: 1fr; }
}

/* ============================================================
   SUPPORT TICKETS LIST PAGE  (stl-*)
   ============================================================ */

/* ── Outer wrapper ── */
.stl-wrap {
  width: 100%;
  padding: 0 0 60px;
}


/* ── Page header ── */
.stl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 28px;
  flex-wrap: wrap;
}
.stl-header__left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.stl-header__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}
.stl-header__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.2;
}
.stl-header__sub {
  font-size: 0.92rem;
  color: #6b7280;
  margin: 0;
}

/* ── New Ticket button ── */
.stl-new-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff !important;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.stl-new-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16,185,129,0.4);
  color: #fff !important;
}
.stl-new-btn--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ── Card wrapper ── */
.stl-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.stl-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Table ── */
.stl-table {
  width: 100% !important;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.stl-table thead tr {
  background: #f8fafc;
  border-bottom: 1.5px solid #e5e7eb;
}
.stl-table thead th {
  padding: 14px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  white-space: nowrap;
  border-bottom: none;
}
.stl-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
}
.stl-table tbody tr:last-child {
  border-bottom: none;
}
.stl-row {
  cursor: pointer;
  transition: background 0.15s;
}
.stl-row:hover {
  background: #f8fffe;
}
.stl-table td {
  padding: 15px 18px;
  vertical-align: middle;
  color: #374151;
}

/* ── Department pill ── */
.stl-dept {
  display: inline-block;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}

/* ── Subject cell ── */
.stl-subject-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: inherit !important;
}
.stl-ticket-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: #10b981;
  white-space: nowrap;
  flex-shrink: 0;
}
.stl-ticket-subject {
  font-size: 0.88rem;
  font-weight: 500;
  color: #111827;
  flex: 1;
}
.stl-unread {
  font-weight: 700;
  color: #111827;
}
.stl-unread-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Status badges — override DataTable defaults ── */
.stl-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
/* Override WHMCS status colour classes */
.stl-status.status-Open,
.stl-status.status-open {
  background: #fef3c7;
  color: #92400e;
}
.stl-status.status-Answered,
.stl-status.status-answered {
  background: #d1fae5;
  color: #065f46;
}
.stl-status.status-CustomerReply,
.stl-status.status-customerreply,
.stl-status.status-In.Progress {
  background: #dbeafe;
  color: #1e40af;
}
.stl-status.status-Closed,
.stl-status.status-closed {
  background: #f3f4f6;
  color: #6b7280;
}
.stl-status.status-On.Hold {
  background: #fce7f3;
  color: #9d174d;
}

/* ── Date cell ── */
.stl-date {
  font-size: 0.82rem;
  color: #9ca3af;
  white-space: nowrap;
}

/* ── Empty state ── */
.stl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 56px 20px;
  color: #9ca3af;
  text-align: center;
}
.stl-empty p {
  font-size: 0.95rem;
  margin: 0;
  color: #6b7280;
}

/* ── DataTables toolbar override ── */
.stl-card .dataTables_wrapper .dataTables_filter,
.stl-card .dataTables_wrapper .dataTables_length {
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
.stl-card .dataTables_wrapper .dataTables_filter input {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.stl-card .dataTables_wrapper .dataTables_filter input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.stl-card .dataTables_wrapper .dataTables_paginate {
  padding: 12px 18px;
  border-top: 1px solid #f1f5f9;
}
.stl-card .dataTables_wrapper .paginate_button {
  border-radius: 6px !important;
  font-size: 0.82rem !important;
}
.stl-card .dataTables_wrapper .paginate_button.current {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .stl-header { padding: 20px 0 18px; }
  .stl-header__title { font-size: 1.3rem; }
  .stl-header__icon { width: 44px; height: 44px; border-radius: 10px; }
  .stl-table thead th,
  .stl-table td { padding: 12px 12px; }
  .stl-new-btn { padding: 10px 16px; font-size: 0.84rem; }
}






