/* ============================================================
   HostMeerkat — Base CSS  (v2)
   Single source of truth for brand tokens, layout, typography.
   Load order: base.css → theme.css → components.css → [page].css
   ============================================================ */

/* ── BRAND COLOUR TOKENS (unified — one set for the whole site) ── */
:root {
  /* Primary brand blue — canonical value used EVERYWHERE */
  --brand-blue:         #2f86ff;
  --brand-blue-dark:    #1d6fd6;
  --brand-blue-light:   #60a5fa;
  --brand-blue-glow:    rgba(47, 134, 255, 0.3);
  --brand-blue-muted:   rgba(47, 134, 255, 0.1);

  /* Accent colours */
  --accent-purple:      #8b5cf6;
  --accent-cyan:        #16d3e0;
  --accent-green:       #22d07e;
  --accent-orange:      #ff8a2d;

  /* Legacy tokens kept for backward-compat with base.css v1 consumers */
  --blue:               var(--brand-blue);
  --dark:               #101213;
  --light-dark:         #1a1c1e;
  --semi-dark:          #2b2f32;
  --gray:               #686a6b;
  --white:              #fff;
  --light:              #e6e8e9;
  --yellow:             #EECA02;
  --red:                #E94B35;

  /* Generic design tokens */
  --primary:            var(--brand-blue);
  --primary-gradient:   linear-gradient(135deg, var(--brand-blue), var(--accent-cyan));
  --accent-gradient:    linear-gradient(135deg, var(--brand-blue) 0%, var(--accent-purple) 55%, var(--accent-cyan) 100%);
  --radius:             14px;
  --shadow-soft:        0 10px 30px rgba(0, 0, 0, 0.25);

  /* Typography scale */
  --font-primary:       'Poppins', system-ui, sans-serif;
  --font-size-xs:       0.75rem;
  --font-size-sm:       0.875rem;
  --font-size-base:     1rem;
  --font-size-lg:       1.125rem;
  --font-size-xl:       1.25rem;
  --font-size-2xl:      1.5rem;
  --font-size-3xl:      1.875rem;
  --font-size-4xl:      2.25rem;

  /* Spacing scale */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --section-py: clamp(60px, 10vw, 100px);

  /* Container — wider for a more spacious feel */
  --container-max: 1440px;
}

/* ── RESET & BOX MODEL ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  width: 100%;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0;
}

/* Heading scale — consistent across all pages */
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.01em;  line-height: 1.35; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem);   font-weight: 800; letter-spacing: -0.005em; line-height: 1.35; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; letter-spacing: 0;        line-height: 1.4;  }
h4 { font-size: 1.1rem;  font-weight: 700; letter-spacing: 0;       line-height: 1.45; }
h5 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em;  line-height: 1.5;  }
h6 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;  line-height: 1.5;  }

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.7;
}

a { color: var(--brand-blue); }
code { color: var(--brand-blue); }

::-moz-selection { color: var(--brand-blue); background: rgba(26,28,30,.8); }
::selection      { color: var(--brand-blue); background: rgba(26,28,30,.8); }

/* ── COLOUR UTILITY CLASSES ─────────────────────────────── */
.blue   { color: var(--brand-blue); }
.yellow { color: var(--yellow); }
.red    { color: var(--red); }
.text-brand { color: var(--brand-blue); }

/* Gradient text utility */
.heading-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT UTILITIES ────────────────────────────────────── */
.container-custom {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Consistent section padding across all pages */
section { padding: var(--section-py) 0; }
.common-padding { padding: var(--section-py) 0; }
footer .common-padding { padding: 0; }

/* ── NAVBAR ACTIVE STATE ─────────────────────────────────── */
.navbar .nav-link.active {
  background: rgba(47, 134, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(47, 134, 255, .28);
  border-radius: 9px;
  color: #fff !important;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-gradient:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

/* Standard CTA section button (used across home, web-hosting, etc.) */
.hmk-section-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-cyan));
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px var(--brand-blue-glow);
}
.hmk-section-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(47, 134, 255, 0.42);
}

/* ── SECTION KICKER BADGE ────────────────────────────────── */
.hmk-section-kicker {
  display: inline-block;
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  background: var(--brand-blue-muted);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(47, 134, 255, 0.2);
}

/* ── COOKIE CONSENT ──────────────────────────────────────── */
.wpcc-color-custom--1305681743.wpcc-container { background: rgba(26,28,30,.6) !important; }
.wpcc-container { font-size: 14px !important; z-index: 99999 !important; position: fixed !important; }
.wpcc-btn { border: none !important; }

/* ── SWEETALERT ──────────────────────────────────────────── */
.swal2-icon.swal2-success .swal2-success-ring        { border: .25em solid var(--brand-blue) !important; }
.swal2-icon.swal2-success [class^="swal2-success-line"] { background-color: var(--brand-blue) !important; }
.swal2-icon.swal2-success                            { border-color: var(--brand-blue) !important; color: var(--brand-blue) !important; }
.swal2-popup                                         { background: var(--semi-dark) !important; }
.swal2-title                                         { color: var(--white) !important; }
.swal2-html-container                                { color: var(--light) !important; }
.swal2-styled.swal2-confirm {
  border-radius: 50px !important;
  padding: 8px 32px !important;
  font-weight: 700 !important;
  background: var(--brand-blue) !important;
}
.swal2-styled.swal2-confirm:focus { box-shadow: 0 0 0 3px rgba(47, 134, 255, .5) !important; }

/* ── SALE BANNER ─────────────────────────────────────────── */
.sale_banner {
  background: var(--brand-blue);
  padding: 6px 0;
  color: #fff !important;
}
.sale_banner .sale-l { font-size: 20px; font-weight: 800; }
.sale_banner .sale-i { font-weight: 500; font-size: 14px; color: #f9f9f9; }
.sale_banner .sale-i span { font-size: 20px; font-weight: 800; color: #fff; margin-right: 2px; }
.sale_banner .sale-r {
  font-weight: 700; font-size: 16px; text-transform: uppercase;
  padding: 4px 24px; border: 2px dashed #fff; border-radius: 5px;
  cursor: pointer; letter-spacing: 1px;
}

@media (max-width: 992px) {
  .sale_banner .sale-l { font-size: 18px; }
  .sale_banner-left, .sale_banner-right { margin: 0 auto; }
  .sale_banner .sale-l, .sale_banner-center { margin-bottom: 1rem !important; }
  .sale_banner .sale-r { margin-bottom: .6rem !important; }
}
@media (max-width: 410px) {
  .sale_banner .sale-i { font-size: 14px; letter-spacing: -0.04rem; }
  .sale_banner .sale-i span { font-size: 18px; font-weight: 800; }
}

/* ── GLASS CARD UTILITY ──────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

/* ── BADGE UTILITY ───────────────────────────────────────── */
.badge-custom {
  background: rgba(47,134,255,0.15);
  color: var(--brand-blue);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.sub-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
}

/* ── FEATURE CARDS (shared across home, web-hosting, etc.) ── */
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,134,255,0.3);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3), 0 0 30px rgba(47,134,255,0.1);
}

/* Icon boxes */
.icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.icon-orange { background: linear-gradient(135deg, #ffb13d, #ff6f1a); color: #fff; }
.icon-green  { background: linear-gradient(135deg, #22d07e, #0ea5e9); color: #fff; }
.icon-blue   { background: linear-gradient(135deg, var(--accent-cyan), var(--brand-blue)); color: #fff; }
.icon-purple { background: linear-gradient(135deg, #a78bfa, #7b61ff); color: #fff; }

.feature-title { font-size: 1.15rem; font-weight: 700; color: #f8fafc; margin-bottom: 0.5rem; }
.feature-text  { font-size: 0.92rem; color: #94a3b8; line-height: 1.6; margin: 0; }

/* ── STATUS PULSE ANIMATION (single definition) ──────────── */
@keyframes statusPulse {
  0%,100% { transform: scale(0.95); opacity: 1; }
  50%     { transform: scale(1.2);  opacity: 0.7; }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.3); }
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22d07e;
  box-shadow: 0 0 10px #22d07e;
  animation: statusPulse 2s infinite;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar-dark { padding: 20px 0; }
.offcanvas { background: var(--semi-dark); height: 100vh; }
.navbar-toggler {
  outline: none !important; box-shadow: none !important;
  color: #fff !important; border: none !important;
}
.navbar-toggler:focus { box-shadow: none !important; }

.navbar-dark .navbar-brand img,
footer .footer_about img,
.offcanvas-header img { margin-right: 5px; width: 30px; height: 30px; }

.navbar-dark .navbar-brand h2,
footer .footer_about h2,
.offcanvas-header h2 {
  font-size: 20px; font-weight: 700; font-style: italic;
  color: var(--white); letter-spacing: 0.04rem;
}
.navbar-dark .navbar-brand h2 span,
footer .footer_about h2 span,
.offcanvas-header h2 span { text-transform: uppercase; font-weight: 800; color: var(--brand-blue); }

.offcanvas-header .hmk-drawer-brand { font-weight: 800; font-size: 1.2rem; color: #fff; }
.offcanvas-header .hmk-drawer-brand span { color: var(--brand-blue); }

.navbar-expand-lg .navbar-nav .nav-link { padding-left: 1rem; padding-right: 1rem; }
.navbar-dark .navbar-nav .nav-link { color: var(--gray); font-weight: 600; }
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:active,
.navbar-dark .navbar-nav .nav-link:focus { color: var(--white); }

.navbar-dark .navbar-nav .button { margin-left: 1rem; position: relative; top: 2px; }
.navbar-dark .navbar-nav .button .btn {
  background: var(--brand-blue); color: var(--white);
  padding: 8px 32px; border-radius: 50px; box-shadow: none;
  outline: none; border: none; font-weight: 700; text-transform: uppercase; font-size: 14px;
}
.navbar-dark .navbar-nav .button .btn:hover {
  box-shadow: 0 0 10px 0 rgba(47, 134, 255, 0.4);
}

.dropdown-menu { background: var(--light-dark); box-shadow: 0 0 10px rgba(0,0,0,0.2); }
.dropdown-menu .dropdown-item { padding: 6px 20px; color: var(--gray); background: transparent; font-weight: 500; }
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active { color: var(--white); background: var(--dark); }

@media (min-width: 992px) {
  .offcanvas { visibility: visible; position: relative; background: none; border: none; justify-content: end; }
}
@media (max-width: 992px) {
  .offcanvas { width: 260px !important; }
  .offcanvas-start-lg { top: 0; left: 0; border-right: 1px solid rgba(0,0,0,.2); transform: translateX(-100%); }
  .navbar-dark .navbar-nav .button { margin-left: 0 !important; }
  .navbar-dark .navbar-nav .button .btn { display: block; }
}

/* Mobile logo size */
@media (max-width: 991.98px) {
  .navbar-dark .navbar-brand img.d-lg-none,
  a.navbar-brand.d-flex.align-items-center img {
    width: 36px !important; height: 36px !important; margin-right: 8px;
  }
  .navbar-dark .navbar-brand h2 {
    font-size: 17px !important;
  }
}
}

/* ── HERO / HEADER SECTION ───────────────────────────────── */
.header { background-color: var(--bg-primary, #0B1120) !important; transition: background 0.3s ease; }
.header h2 { color: var(--white); font-weight: 800; font-size: clamp(2rem, 4vw, 3.25rem); z-index: 1; }
.header p  { color: var(--light); z-index: 1; }
.header .header_h2 { width: 80%; }
.header .header_p  { width: 90%; }
.header .btn {
  background: var(--brand-blue); border: 1px solid var(--brand-blue);
  color: var(--white); border-radius: 50px; padding: 10px 22px; font-weight: 500;
}
.header .btn:hover { box-shadow: 0 0 10px 0 rgba(47,134,255,0.4); }

@media (max-width: var(--container-max, 1400px)) { .header h2 { width: 100%; } }
@media (max-width: 992px)  {
  .header { padding-top: 110px; }
  .header h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .header p  { font-size: 18px; }
  .header .header_h2, .header .header_p { width: 100%; padding-top: 50px; }
}
@media (max-width: 768px)  {
  .header h2, .header p, .header .btn { text-align: center; }
  .header .button { text-align: center; }
}

/* ── HOSTING HERO (web-hosting, wordpress, vps pages) ────── */
.hosting-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.35;
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  padding-top: 160px;
}
.hosting-blue-text {
  background: linear-gradient(90deg, var(--brand-blue), #6f63ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hosting-hero-description {
  font-size: 1.15rem; line-height: 1.9;
  color: rgba(255,255,255,.82); max-width: 920px; margin: auto;
}
.hosting-hero-description strong { color: #fff; font-weight: 800; }
.header-dis { padding: 0 120px; }

.web-hero-bg {
  background:
    radial-gradient(circle at top, rgba(47,134,255,.18), transparent 45%),
    linear-gradient(180deg, #081120 0%, #050b16 100%);
}

@media (max-width: 768px) {
  .hosting-hero-title { font-size: 2.4rem; line-height: 1.35; text-align: center; padding-top: 80px; }
  .hosting-hero-description { font-size: 1rem; line-height: 1.85; text-align: center; padding: 0 12px; }
  .header-dis { padding: 0; }
}

/* ── PRICING SECTION (shared base) ──────────────────────── */
.hmk-pricing-section {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--bg-page, #0B1120);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.hmk-pricing-title    { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.005em; margin-bottom: 12px; }
.hmk-pricing-subtitle { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; }

/* Toggle pill */
.hmk-toggle-wrap { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; padding: 6px !important; }
.hmk-toggle-btn  { min-width: 120px; padding: 10px 22px; border-radius: 999px !important; border: 0 !important; color: rgba(255,255,255,.75); background: transparent; font-weight: 700; transition: all .28s ease; }
.hmk-toggle-btn.active { background: linear-gradient(135deg, var(--brand-blue), #5b6cff); color: #fff; box-shadow: 0 8px 20px rgba(47,134,255,.28); }

/* ── PRICING CARDS (shared base styles) ─────────────────── */
.hmk-price-card {
  background: linear-gradient(160deg, #111827 0%, #06090f 100%);
  border: 1px solid rgba(73, 108, 239, 0.5);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  display: flex; flex-direction: column;
  height: 100%; overflow: hidden;
}
.hmk-price-card:hover { transform: translateY(-8px); border-color: rgba(47,134,255,0.4); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5), 0 0 30px rgba(47,134,255,0.12); }
.hmk-popular-card { border: 2px solid var(--brand-blue) !important; box-shadow: 0 10px 30px rgba(47,134,255,0.15); transform: translateY(-4px); }
.hmk-popular-card:hover { transform: translateY(-12px); }

.hmk-card-top    { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.25rem; }
.hmk-icon-box    { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); flex-shrink: 0; }
.hmk-card-purple .hmk-icon-box { background: rgba(181,109,255,.16); color: #b56dff; }
.hmk-card-blue   .hmk-icon-box { background: rgba(47,134,255,.16);  color: var(--brand-blue); }
.hmk-card-orange .hmk-icon-box { background: rgba(255,138,45,.16);  color: var(--accent-orange); }

.hmk-popular-badge { background: linear-gradient(135deg, var(--brand-blue), var(--accent-cyan)); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; align-self: center; white-space: nowrap; }
.hmk-plan-name   { color: #fff; font-size: 1.35rem; font-weight: 800; margin: 0; letter-spacing: -0.005em; line-height: 1.35; }
.hmk-plan-text   { color: rgba(255,255,255,.56); font-size: .9rem; margin: 3px 0 0; }
.hmk-mini-tags   { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.25rem; }
.hmk-mini-tags span { font-size: .74rem; font-weight: 700; padding: 5px 9px; border-radius: 7px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.05); }
.hmk-price-wrap  { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.hmk-price       { font-size: clamp(2.4rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -0.01em; color: #fff; line-height: 1; }
.hmk-price-small { color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 600; }
.hmk-year-text   { color: rgba(255,255,255,.4); font-size: .82rem; margin-bottom: 1.25rem; }
.hmk-divider     { width: 100%; height: 1px; background: rgba(255,255,255,.06); margin: 16px 0; }
.hmk-feature-title { color: #94a3b8; font-size: .78rem; font-weight: 800; letter-spacing: .08em; margin-bottom: 1rem; text-transform: uppercase; }
.hmk-feature-list  { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.hmk-feature-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.5; margin-bottom: 12px; }
.hmk-feature-list li .purple { color: #9252FF !important; flex-shrink: 0; }
.hmk-feature-list li .bluec  { color: var(--brand-blue) !important; flex-shrink: 0; }
.hmk-feature-list li .orange { color: var(--accent-orange) !important; flex-shrink: 0; }

/* Order buttons */
.hmk-order-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center; padding: 13px 20px; border-radius: 13px;
  font-weight: 800; text-decoration: none; transition: all .25s ease;
  min-height: 50px; color: #fff !important;
}
/* Inside pricing cards, order buttons should fill the card width */
.hmk-price-card .hmk-order-btn { display: flex; width: 100%; }
.hmk-btn-purple { background: linear-gradient(135deg,#b56dff,#8b4dff) !important; box-shadow: 0 10px 24px rgba(181,109,255,.22); }
.hmk-btn-blue   { background: linear-gradient(135deg, var(--brand-blue), #1ea9df) !important; box-shadow: 0 10px 24px rgba(47,134,255,.22); }
.hmk-btn-orange { background: linear-gradient(135deg,#ff8a2d,#ff6f1a) !important; box-shadow: 0 10px 24px rgba(255,138,45,.22); }
.hmk-order-btn:hover { transform: translateY(-2px); color: #fff !important; filter: brightness(1.1); }

@media (max-width: 767px) {
  .hmk-price-card  { padding: 1.75rem 1.25rem; }
  .hmk-price       { font-size: 2.4rem; }
  .hmk-popular-card { transform: none; }
}

/* ── FAQ SECTION (shared) ────────────────────────────────── */
.hmk-faq-section  { padding: var(--section-py) 0; }
.hmk-faq-wrap     { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.hmk-faq-title    { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.005em; margin-bottom: 16px; }
.hmk-faq-subtitle { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.hmk-faq-list     { display: flex; flex-direction: column; gap: 1rem; }
.hmk-faq-help-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 16px;
}
.hmk-faq-help-icon { font-size: 1.4rem; color: var(--brand-blue); flex-shrink: 0; }
.hmk-faq-help-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hmk-faq-help-card p  { font-size: 0.85rem; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.hmk-faq-help-card a  { color: var(--brand-blue); font-weight: 600; font-size: 0.85rem; text-decoration: none; }
.hmk-faq-item {
  padding: 20px 24px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07); border-radius: 14px;
  margin-bottom: 0; cursor: pointer; transition: all .25s ease;
}
.hmk-faq-item:hover { border-color: rgba(47,134,255,.25); background: rgba(47,134,255,.04); }
.hmk-faq-item summary {
  font-size: 0.95rem; font-weight: 600; color: #fff;
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
}
.hmk-faq-item summary::-webkit-details-marker { display: none; }
.hmk-faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--brand-blue); transition: transform .2s ease; flex-shrink: 0; }
.hmk-faq-item[open] summary::after { content: '−'; }
.hmk-faq-item p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 14px 0 0; }

@media (max-width: 991px) { .hmk-faq-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ── MIGRATION SECTION (shared) ──────────────────────────── */
.hmk-migration-section { padding: var(--section-py) 0; }
.hmk-migration-title    { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -0.005em; margin-bottom: 16px; }
.hmk-migration-subtitle { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.hmk-section-copy       { max-width: 480px; }
.hmk-migration-steps    { display: flex; flex-direction: column; gap: 20px; }
.hmk-migration-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 22px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; transition: all .3s ease;
}
.hmk-migration-card:hover { border-color: rgba(47,134,255,.25); background: rgba(47,134,255,.04); transform: translateX(6px); }
.hmk-migration-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.hmk-icon-dark  { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }
.hmk-icon-blue  { background: rgba(47,134,255,.15); color: var(--brand-blue); }
.hmk-icon-green { background: rgba(34,197,94,.15); color: #22c55e; }
.hmk-migration-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hmk-migration-card p  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; }

@media (max-width: 991px) {
  .hmk-section-copy { max-width: 100%; text-align: center; margin-bottom: 2rem; }
  .hmk-migration-card:hover { transform: translateY(-5px); }
}

/* ── PAYMENT SECTION (shared) ────────────────────────────── */
.hmk-payment-section  { padding: var(--section-py) 0; }
.hmk-payment-title    { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -0.005em; margin-bottom: 16px; }
.hmk-payment-subtitle { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.hmk-payment-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hmk-payment-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 26px 16px;
  background: linear-gradient(160deg,#111827 0%,#06090f 100%);
  border: 1px solid rgba(255,255,255,.07); border-radius: 16px;
  transition: all .3s ease;
  overflow: visible;
}
.hmk-payment-card i    { font-size: 2.6rem; line-height: 1; color: rgba(203,213,225,1); transition: color .3s ease; overflow: visible; }
.hmk-payment-card span { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.5); }
.hmk-payment-card:hover { border-color: rgba(47,134,255,.3); }
.hmk-payment-card:hover i { color: var(--brand-blue); }
.hmk-payment-card-highlight { background: linear-gradient(135deg,rgba(47,134,255,.12),rgba(47,134,255,.04)) !important; border-color: rgba(47,134,255,.25) !important; }
.hmk-payment-card-highlight i    { color: var(--brand-blue) !important; }
.hmk-payment-card-highlight span { color: rgba(255,255,255,.8) !important; }

@media (max-width: 575px) { .hmk-payment-grid { grid-template-columns: repeat(2,1fr); } }

/* ── TESTIMONIALS (shared) ───────────────────────────────── */
.hmk-testimonial-section { padding: var(--section-py) 0; }
.hmk-review-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
  transition: all .35s cubic-bezier(0.2,0.8,0.2,1);
}
.hmk-review-card:hover { transform: translateY(-6px); border-color: rgba(47,134,255,.25); box-shadow: 0 15px 30px rgba(0,0,0,.2); }
.quote-watermark { position: absolute; top: 16px; right: 20px; font-size: 3.5rem; color: rgba(47,134,255,.07); pointer-events: none; line-height: 1; }
.hmk-stars   { display: flex; gap: 4px; margin-bottom: 14px; }
.hmk-stars i { color: #f59e0b; font-size: 0.9rem; }
.hmk-review-text { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.hmk-review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06); }
.hmk-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.hmk-avatar-blue   { background: linear-gradient(135deg, var(--brand-blue), #1ea9df); }
.hmk-avatar-orange { background: linear-gradient(135deg, #ff8a2d, #ff6f1a); }
.hmk-avatar-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.hmk-avatar-purple { background: linear-gradient(135deg, #b56dff, #8b4dff); }
.hmk-author-name   { font-size: .9rem; font-weight: 700; color: #fff; margin: 0 0 2px; }
.hmk-author-role   { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .04em; }

/* ── COMPARE TABLE (shared) ──────────────────────────────── */
.hmk-compare-section  { padding: var(--section-py) 0; }
.hmk-compare-title    { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.005em; margin-bottom: 12px; }
.hmk-compare-subtitle { color: rgba(255,255,255,.6); font-size: 1rem; }
.hmk-compare-table-wrapper { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,.07); position: relative; z-index: 1; }
.hmk-compare-table { width: 100%; border-collapse: collapse; }
.hmk-compare-table th, .hmk-compare-table td { padding: 18px 24px; text-align: center; }
.hmk-compare-table th { background: rgba(255,255,255,.04); color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.07); }
.hmk-compare-table .hmk-col { background: rgba(47,134,255,.06); border-left: 1px solid rgba(47,134,255,.15); border-right: 1px solid rgba(47,134,255,.15); }
.hmk-compare-table .feature-col { text-align: left; }
.hmk-brand-badge { display: flex; align-items: center; justify-content: center; gap: 8px; }
.hmk-compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.hmk-compare-table tbody tr:last-child { border-bottom: none; }
.hmk-compare-table td { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ── HOW IT WORKS STEPS (shared) ────────────────────────── */
.hmk-steps-section  { padding: var(--section-py) 0; }
.hmk-steps-wrapper  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.hmk-step-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 32px 24px; text-align: center; position: relative; overflow: visible;
  transition: transform .3s ease, border-color .3s ease;
}
.hmk-step-card:hover { transform: translateY(-8px); border-color: rgba(47,134,255,.3); }
.step-number {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-cyan));
  color: #fff; font-weight: 800; font-size: 1.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(47,134,255,.4); border: 4px solid var(--bg-page, #0B1120);
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; background: linear-gradient(135deg, var(--brand-blue), #a78bfa); background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 4px 10px rgba(47,134,255,.2)); }
.hmk-step-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hmk-step-card p  { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; }

@media (max-width: 991px) { .hmk-steps-wrapper { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px)  { .hmk-steps-wrapper { grid-template-columns: 1fr; } }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal .legal_heading { height: 0; border-top: 1px solid var(--light); margin-top: 20px; margin-bottom: 30px; }
.legal .legal_heading span { display: inline-block; position: relative; padding: 0 17px 0 0; top: -12px; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); background-color: var(--dark); }
.legal p  { color: var(--light); font-size: 15px; }
.legal ul li { color: var(--light); }

/* ── CPANEL SECTION ──────────────────────────────────────── */
.cpanel-section { position: relative; padding: clamp(70px,10vw,110px) 0; background: var(--dark); overflow: hidden; }
.cpanel-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.cpanel-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(47,134,255,.12); color: var(--brand-blue); border: 1px solid rgba(47,134,255,.25); padding: 5px 14px; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; }
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); animation: pulse-dot 2s ease-in-out infinite; }
.cpanel-title { font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.35; color: var(--white); }
.cpanel-title .blu { color: var(--brand-blue); }
.cpanel-header-right { max-width: 380px; color: white; font-size: .95rem; line-height: 1.75; flex-shrink: 0; padding-bottom: 4px; }
.cpanel-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.cpanel-left   { display: flex; flex-direction: column; gap: 1.25rem; }
.desc-card { background: var(--light-dark); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; }
.desc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand-blue), transparent); }
.desc-card p { color: white; font-size: .95rem; line-height: 1.8; margin: 0; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.feat-item { background: var(--light-dark); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; font-size: .875rem; font-weight: 500; color: var(--light); transition: border-color .25s, transform .25s; }
.feat-item:hover { border-color: rgba(47,134,255,.4); transform: translateY(-2px); }
.feat-icon { width: 32px; height: 32px; border-radius: 9px; background: rgba(47,134,255,.14); border: 1px solid rgba(47,134,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.stat-box { background: var(--light-dark); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 16px; text-align: center; transition: border-color .25s, transform .25s; }
.stat-box:hover { border-color: rgba(47,134,255,.35); transform: translateY(-2px); }
.stat-box strong { display: block; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.01em; color: var(--brand-blue); line-height: 1.35; }
.stat-box span   { font-size: .75rem; color: white; font-weight: 500; margin-top: 3px; display: block; }
.cpanel-right { display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
.screenshot-wrap { position: relative; z-index: 1; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 0 1px rgba(47,134,255,.15), 0 24px 64px rgba(0,0,0,.5); background: var(--light-dark); }
.browser-bar { background: var(--semi-dark); padding: 9px 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
.bdot { width: 10px; height: 10px; border-radius: 50%; }
.bdot-r { background: #ff5f56; } .bdot-y { background: #ffbd2e; } .bdot-g { background: #28c940; }
.browser-url { margin-left: 10px; flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 3px 12px; font-size: .7rem; color: var(--gray); font-family: monospace; }
.screenshot-wrap img { width: 100%; display: block; filter: brightness(.9) saturate(1.05); }
.pill-row { display: flex; gap: .75rem; z-index: 1; position: relative; }
.cpanel-pill { flex: 1; background: var(--light-dark); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 14px 14px; display: flex; align-items: center; gap: 12px; font-size: .82rem; font-weight: 600; color: var(--light); transition: border-color .25s, transform .3s; animation: floatPill 4s ease-in-out infinite; }
.cpanel-pill:nth-child(2) { animation-delay: 1.4s; } .cpanel-pill:nth-child(3) { animation-delay: 2.8s; }
@keyframes floatPill { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-4px); } }
.cpanel-pill:hover { border-color: rgba(47,134,255,.4); transform: translateY(-4px) !important; }
.pill-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(47,134,255,.15); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.pill-text strong { display: block; font-size: .82rem; font-weight: 700; color: var(--white); }
.pill-text span   { font-size: .72rem; color: white; }
.cta-strip { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.cta-inner { background: var(--light-dark); border: 1px solid rgba(255,255,255,.07); border-top: 2px solid var(--brand-blue); border-radius: 16px; padding: clamp(1.5rem,3vw,2.5rem) clamp(1.25rem,3vw,3rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; overflow: hidden; }
.cta-text h3 { font-size: clamp(1.1rem,2vw,1.45rem); font-weight: 800; color: var(--white); margin-bottom: .4rem; }
.cta-text p  { color: var(--gray); font-size: .9rem; line-height: 1.7; max-width: 480px; margin: 0; }
.btn-blue { flex-shrink: 0; background: var(--brand-blue); border: none; color: var(--white); padding: .82rem 1.9rem; border-radius: 10px; font-weight: 700; font-size: .92rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; transition: filter .25s, transform .25s, box-shadow .25s; box-shadow: 0 8px 24px rgba(47,134,255,.3); }
.btn-blue:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(47,134,255,.42); color: var(--white); }

@media (max-width: 991px) { .cpanel-header { flex-direction: column; align-items: flex-start; } .cpanel-header-right { max-width: 100%; } .cpanel-layout { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .feat-grid { grid-template-columns: 1fr; } .pill-row { flex-direction: column; } .cta-inner { flex-direction: column; text-align: center; } .cta-inner .btn-blue { margin: 0 auto; } }

/* ── GLOBAL OVERFLOW SAFETY ──────────────────────────────── */
html, body { overflow-x: hidden !important; }

/* ── GLOBAL MOBILE SECTION SPACING ──────────────────────── */
/* All pages: equal top & bottom, reduced on mobile */
@media (max-width: 991px) {
  :root { --section-py: 60px; }
  section { padding: 60px 0 !important; }
  .common-padding { padding: 60px 0 !important; }

  /* Shared section classes from base.css */
  .hmk-pricing-section,
  .hmk-faq-section,
  .hmk-migration-section,
  .hmk-payment-section,
  .hmk-testimonial-section,
  .hmk-compare-section,
  .hmk-steps-section { padding: 60px 0 !important; }
}

@media (max-width: 767px) {
  :root { --section-py: 48px; }
  section { padding: 48px 0 !important; }
  .common-padding { padding: 48px 0 !important; }

  .hmk-pricing-section,
  .hmk-faq-section,
  .hmk-migration-section,
  .hmk-payment-section,
  .hmk-testimonial-section,
  .hmk-compare-section,
  .hmk-steps-section { padding: 48px 0 !important; }

  /* Hero sections — all pages */
  .header,
  .vps-hero-wrapper,
  .wp-hero-wrapper,
  .reseller-hero-wrapper,
  .wcu-hero,
  .contact-hero,
  .privacy-hero,
  .dev-hero,
  .about-hero,
  .enh-hero { padding-top: 80px !important; padding-bottom: 48px !important; }

  /* Page-specific inner sections */
  .zigzag-section,
  .vps-features-bar,
  .wp-features-bar,
  .vps-perf-section,
  .wp-perf-section,
  .pipeline-section,
  .uk-infra-section,
  .trust-bar,
  .compare-section,
  .testimonials-section,
  .support-section,
  .wcu-cta,
  .wcu-section,
  .features-section,
  .team-section,
  .mission-section,
  .infra-section,
  .cta-section,
  .enh-mission,
  .enh-infra,
  .enh-features,
  .enh-team,
  .enh-cta-section { padding: 48px 0 !important; }
}

@media (max-width: 480px) {
  :root { --section-py: 36px; }
  section { padding: 36px 0 !important; }
  .common-padding { padding: 36px 0 !important; }

  .hmk-pricing-section,
  .hmk-faq-section,
  .hmk-migration-section,
  .hmk-payment-section,
  .hmk-testimonial-section,
  .hmk-compare-section,
  .hmk-steps-section { padding: 36px 0 !important; }

  .zigzag-section,
  .vps-features-bar,
  .wp-features-bar,
  .vps-perf-section,
  .wp-perf-section,
  .pipeline-section,
  .uk-infra-section,
  .trust-bar,
  .compare-section,
  .testimonials-section,
  .support-section,
  .wcu-cta,
  .wcu-section,
  .features-section,
  .team-section,
  .mission-section,
  .infra-section,
  .cta-section,
  .enh-mission,
  .enh-infra,
  .enh-features,
  .enh-team,
  .enh-cta-section { padding: 36px 0 !important; }

  .header,
  .vps-hero-wrapper,
  .wp-hero-wrapper,
  .reseller-hero-wrapper,
  .wcu-hero,
  .contact-hero,
  .privacy-hero,
  .dev-hero,
  .about-hero,
  .enh-hero { padding-top: 120px !important; padding-bottom: 36px !important; }
}
