/* =========================================================
   HostPro — Premium Hosting Theme
   Dark + Gold. Fully responsive.
   ========================================================= */

:root {
  --bg: #050505;
  --bg-2: #0b0b0c;
  --card: #101011;
  --card-2: #141414;
  --border: rgba(224, 169, 48, 0.14);
  --border-soft: rgba(255, 255, 255, 0.06);
  --gold: #e9b03a;
  --gold-2: #f6ce6a;
  --gold-deep: #c88a1e;
  --gold-grad: linear-gradient(135deg, #f6ce6a 0%, #e9b03a 45%, #c88a1e 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(246,206,106,0.14), rgba(200,138,30,0.06));
  --text: #f4f4f5;
  --muted: #9a9a9e;
  --muted-2: #6f6f74;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 14px 40px rgba(233, 176, 58, 0.25);
  --maxw: 1240px;
  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- LIGHT THEME ---------- */
:root[data-theme="light"] {
  --bg: #f5f6f8;
  --bg-2: #ffffff;
  --card: #ffffff;
  --card-2: #f1f2f5;
  --border: rgba(200, 138, 30, 0.28);
  --border-soft: rgba(20, 20, 30, 0.09);
  --text: #16181d;
  --muted: #565a63;
  --muted-2: #8a8f99;
  --white: #16181d;
  --shadow: 0 18px 50px rgba(20, 25, 40, 0.12);
}
:root[data-theme="light"] .header { background: rgba(255, 255, 255, 0.85); }
:root[data-theme="light"] .dropdown { background: #ffffff; }
:root[data-theme="light"] .nav-menu.mobile-open { background: #ffffff; }
:root[data-theme="light"] .plan.featured { background: linear-gradient(180deg, rgba(233,176,58,0.12), #ffffff 45%); }
:root[data-theme="light"] .btn-gold { color: #1a1204; }
:root[data-theme="light"] .plan-flag,
:root[data-theme="light"] .post-tag { color: #1a1204; }
:root[data-theme="light"] .hero,
:root[data-theme="light"] .page-hero { background:
  radial-gradient(700px 400px at 85% 15%, rgba(233,176,58,0.16), transparent 60%),
  radial-gradient(600px 500px at 0% 100%, rgba(233,176,58,0.08), transparent 55%); }

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section scaffolding ---------- */
.section { padding: 84px 0; position: relative; }
/* tighten the gap directly under any hero so content sits closer */
.hero + .section, .hero-split + .section, .page-hero + .section { padding-top: 46px; }
.section-tag {
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 46px;
  font-size: 15px;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold {
  background: var(--gold-grad);
  color: #1a1204;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(233,176,58,0.4); }
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: relative;
  background: linear-gradient(90deg, #08080a 0%, #0e0d0b 50%, #08080a 100%);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  z-index: 90;
  overflow: hidden;
}
:root[data-theme="light"] .topbar { background: linear-gradient(90deg, #14110a 0%, #1c1710 50%, #14110a 100%); }
.topbar-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
  animation: tbShimmer 5s linear infinite;
  background-size: 50% 100%;
}
@keyframes tbShimmer { 0% { background-position: -100% 0; } 100% { background-position: 200% 0; } }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 42px; gap: 18px; }
.topbar-left { display: flex; align-items: center; gap: 22px; min-width: 0; }
.tb-note { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-weight: 500; letter-spacing: .2px; white-space: nowrap; }
.tb-note svg { width: 14px; height: 14px; }
.tb-contact { display: inline-flex; align-items: center; gap: 8px; color: #c7c7cc; transition: color .2s; white-space: nowrap; }
:root[data-theme="light"] .tb-contact { color: #d8d3c6; }
.tb-contact svg { width: 15px; height: 15px; color: var(--gold); }
.tb-contact:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tb-signin, .tb-signup { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 12.5px; padding: 7px 16px; border-radius: 8px; transition: all .22s ease; }
.tb-signin svg, .tb-signup svg { width: 15px; height: 15px; }
.tb-signin { color: #dcdce0; border: 1px solid rgba(255,255,255,.16); background: transparent; cursor: pointer; font-family: var(--font); }
:root[data-theme="light"] .tb-signin { color: #eee7d8; }
.tb-signin:hover { color: var(--gold); border-color: var(--gold); }
.tb-signup { background: var(--gold-grad); color: #1a1204; box-shadow: 0 6px 18px rgba(233,176,58,.28); }
.tb-signup:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(233,176,58,.42); }

/* ---- TOP BAR STYLE PRESETS ---- */
/* 2) GRADIENT — full gold gradient bar, dark text */
.topbar-gradient { background: var(--gold-grad) !important; border-bottom: none; }
.topbar-gradient .topbar-glow { display: none; }
.topbar-gradient .tb-note, .topbar-gradient .tb-contact, .topbar-gradient .tb-contact svg { color: #2a1e08; }
.topbar-gradient .tb-contact:hover { color: #000; }
.topbar-gradient .tb-signin { color: #2a1e08; border-color: rgba(0,0,0,.3); }
.topbar-gradient .tb-signin:hover { background: rgba(0,0,0,.12); color: #000; border-color: transparent; }
.topbar-gradient .tb-signup { background: #12100a; color: var(--gold-2); box-shadow: none; }
.topbar-gradient .tb-signup:hover { background: #000; }

/* 3) GLASS — translucent blurred bar */
.topbar-glass { background: rgba(255,255,255,0.04) !important; backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
:root[data-theme="light"] .topbar-glass { background: rgba(20,20,25,0.04) !important; }
.topbar-glass .tb-contact, :root[data-theme="light"] .topbar-glass .tb-contact { color: var(--muted); }
.topbar-glass .tb-signin { color: var(--text); }

/* 4) OUTLINE — transparent, only a gold bottom border */
.topbar-outline { background: transparent !important; border-bottom: 1px solid var(--border); }
.topbar-outline .topbar-glow { display: none; }
.topbar-outline .tb-contact, :root[data-theme="light"] .topbar-outline .tb-contact { color: var(--muted); }
.topbar-outline .tb-signin { color: var(--text); border-color: var(--border); }

/* 5) BOLD — taller, uppercase promo, pill buttons */
.topbar-bold { background: linear-gradient(90deg,#0a0a0c,#141210 50%,#0a0a0c) !important; }
.topbar-bold .topbar-inner { min-height: 50px; }
.topbar-bold .tb-note { font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; }
.topbar-bold .tb-signin, .topbar-bold .tb-signup { padding: 8px 20px; border-radius: 30px; font-size: 13px; }
.topbar-bold .tb-signup { box-shadow: 0 8px 22px rgba(233,176,58,.35); }

@media (max-width: 860px) { .tb-note { display: none; } .topbar-left { gap: 16px; } }
@media (max-width: 620px) {
  .topbar-inner { height: auto; padding: 8px 0; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .topbar-left { gap: 14px; font-size: 12px; flex-wrap: wrap; justify-content: center; }
  .tb-contact span, .tb-contact { font-size: 12px; }
  .tb-signin { display: none; }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: #0d0d10;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.brand-logo svg { width: 24px; height: 24px; }
.brand-name { display: block; font-weight: 700; font-size: 20px; line-height: 1.05; }
.brand-sub { display: block; margin-top: 3px; font-size: 9px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > .live-chat, .nav-menu > .mobile-auth { display: none; } /* only shown inside mobile drawer */
.mobile-auth .btn { width: 100%; justify-content: center; }

/* uploaded logo */
.brand-img { height: 40px; width: auto; max-width: 190px; object-fit: contain; display: block; }

/* =========================================================
   HEADER BACKGROUND PRESETS  (class: hdr-<style>)
   ========================================================= */
.header.hdr-gold   { background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-deep)) !important; border-bottom-color: transparent; }
.header.hdr-solid  { background: #0d0d10 !important; }
.header.hdr-glass  { background: rgba(255,255,255,0.05) !important; backdrop-filter: blur(16px); }
:root[data-theme="light"] .header.hdr-glass { background: rgba(20,20,28,0.06) !important; }
.header.hdr-purple { background: linear-gradient(120deg, #3a2d73, #221a49) !important; }
.header.hdr-ocean  { background: linear-gradient(120deg, #0e3d63, #0a2740) !important; }
.header.hdr-light  { background: #ffffff !important; border-bottom-color: rgba(20,20,30,0.08); }

/* dark text (for gold / light / custom light headers) */
.header.hdr-text-dark .nav-link,
.header.hdr-text-dark .brand-name { color: #1a1204; }
.header.hdr-text-dark .brand-sub { color: #3a2c10; }
.header.hdr-text-dark .nav-link:hover,
.header.hdr-text-dark .nav-item.active .nav-link { color: #000; }
.header.hdr-text-dark .nav-item.active .nav-link { background: rgba(0,0,0,0.10); }
.header.hdr-text-dark .brand-name .gold-text { -webkit-text-fill-color: #1a1204; color: #1a1204; }
.header.hdr-text-dark .theme-toggle { color: #1a1204; border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.06); }
.header.hdr-text-dark .live-chat { background: #12100a; color: var(--gold-2); border-color: transparent; }
.header.hdr-text-dark .live-chat:hover { background: #000; color: var(--gold-2); border-color: transparent; filter: none; }
.header.hdr-text-dark .hamburger { border-color: rgba(0,0,0,0.25); }
.header.hdr-text-dark .hamburger span { background: #1a1204; }
.header.hdr-text-dark .caret { color: #1a1204; }
/* dropdown adapts to light/gold headers */
.header.hdr-text-dark .dropdown { background: #ffffff; border-color: rgba(20,20,30,0.12); box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
.header.hdr-text-dark .dropdown a { color: #2a2a30; }
.header.hdr-text-dark .dropdown a small { color: #8a8a92; }
.header.hdr-text-dark .dropdown a:hover { background: rgba(233,176,58,0.16); color: #14141a; }
.header.hdr-text-dark .dropdown a svg { color: var(--gold-deep); background: rgba(233,176,58,0.16); }
.foot-about .brand-img { height: 44px; }

/* =========================================================
   MENU STYLE PRESETS  (header class: menu-<style>)
   ========================================================= */
/* 2) MINIMAL — text only, thin gold underline */
.menu-minimal .nav-link svg:not(.caret) { display: none; }
.menu-minimal .nav-link { padding: 10px 12px; position: relative; }
.menu-minimal .nav-item.active .nav-link,
.menu-minimal .nav-link:hover { background: transparent; }
.menu-minimal .nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--gold-grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.menu-minimal .nav-item.active .nav-link::after, .menu-minimal .nav-link:hover::after { transform: scaleX(1); }

/* 3) PILL — every item a soft pill, active filled gold */
.menu-pill .nav-menu { gap: 6px; }
.menu-pill .nav-link { border-radius: 30px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-soft); }
.menu-pill .nav-item.active .nav-link { background: var(--gold-grad); color: #1a1204; border-color: transparent; }
.menu-pill .nav-item.active .nav-link svg { color: #1a1204; }
.menu-pill .nav-link:hover { border-color: var(--gold); color: var(--gold); }

/* 4) UNDERLINE — bold labels, animated centered underline */
.menu-underline .nav-link { padding: 10px 14px; font-weight: 600; position: relative; }
.menu-underline .nav-item.active .nav-link, .menu-underline .nav-link:hover { background: transparent; color: var(--gold); }
.menu-underline .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; height: 2px; width: 0; background: var(--gold-grad);
  transform: translateX(-50%); border-radius: 2px; transition: width .28s ease;
}
.menu-underline .nav-item.active .nav-link::after, .menu-underline .nav-link:hover::after { width: calc(100% - 26px); }

/* 5) BORDERED — each item boxed, active gold border */
.menu-bordered .nav-menu { gap: 8px; }
.menu-bordered .nav-link { border: 1px solid var(--border); border-radius: 10px; }
.menu-bordered .nav-item.active .nav-link { background: var(--gold-grad-soft); border-color: var(--gold); color: var(--gold); }
.menu-bordered .nav-link:hover { border-color: var(--gold); }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 9px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link svg { width: 17px; height: 17px; opacity: 0.85; }
.nav-link:hover, .nav-item.active .nav-link { color: var(--gold); }
.nav-item.active .nav-link { background: var(--gold-grad-soft); }
.nav-link .caret { width: 12px; height: 12px; transition: transform 0.25s ease; }
.nav-item.has-drop:hover .caret { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: #0d0d0e;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.24s ease;
}
.nav-item.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 9px;
  font-size: 14px; color: var(--muted);
  transition: background 0.18s ease, color 0.18s ease;
}
.dropdown a:hover { background: rgba(233,176,58,0.08); color: var(--text); }
.dropdown a svg { width: 30px; height: 30px; padding: 6px; background: var(--gold-grad-soft); border-radius: 8px; color: var(--gold); flex-shrink: 0; }
.dropdown a small { display: block; color: var(--muted-2); font-size: 11.5px; font-weight: 400; }
.dropdown a strong { font-weight: 500; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.live-chat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px;
  border: 1px solid transparent;
  background: var(--gold-grad);
  color: #1a1204; font-weight: 600; font-size: 14px;
  transition: all 0.22s ease;
}
.live-chat:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); filter: brightness(1.04); }
.live-chat svg { width: 17px; height: 17px; }
.live-chat .dot { width: 8px; height: 8px; background: #34d17a; border-radius: 50%; box-shadow: 0 0 0 3px rgba(52,209,122,0.25); }

.theme-toggle {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 10px;
  background: rgba(233,176,58,0.05); color: var(--gold);
  cursor: pointer; display: grid; place-items: center;
  transition: all 0.22s ease;
}
.theme-toggle:hover { background: var(--gold-grad); color: #1a1204; transform: translateY(-2px); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ic-moon { display: none; }
:root[data-theme="light"] .theme-toggle .ic-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ic-moon { display: block; }

/* hero illustration (inner pages without an uploaded image) */
.hero-image--illus { border: none; background: transparent; box-shadow: none; overflow: visible; aspect-ratio: auto; display: grid; place-items: center; }
.hero-image--illus .hv { width: 100%; max-width: 460px; height: auto; animation: heroFloat 6s ease-in-out infinite; }

.hamburger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 10px;
  background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.hamburger span { width: 20px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 70px 0 52px;
  background:
    radial-gradient(700px 400px at 85% 15%, rgba(233,176,58,0.10), transparent 60%),
    radial-gradient(600px 500px at 0% 100%, rgba(233,176,58,0.05), transparent 55%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--gold-grad-soft);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--gold); margin-bottom: 26px;
}
.hero-badge svg { width: 15px; height: 15px; }
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero p.lead { color: var(--muted); font-size: 16px; max-width: 480px; margin-bottom: 30px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 34px; }
.hero-stat { display: flex; align-items: center; gap: 11px; }
.hero-stat .ic { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--gold); }
.hero-stat .ic svg { width: 18px; height: 18px; }
.hero-stat b { font-size: 14px; font-weight: 600; display: block; line-height: 1.2; }
.hero-stat span { font-size: 12px; color: var(--muted); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-trust p { font-size: 11px; letter-spacing: 2px; color: var(--muted-2); text-transform: uppercase; margin-bottom: 16px; }
.hero-trust .logos { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.hero-trust .logos span { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: 14px; opacity: 0.8; }
.hero-trust .logos svg { width: 18px; height: 18px; color: var(--gold); }

/* image placeholder */
.hero-image {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(233,176,58,0.05), rgba(0,0,0,0.4)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 12px, transparent 12px 24px);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-image .ph { text-align: center; color: var(--muted-2); }
.hero-image .ph svg { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--gold); opacity: 0.7; }
.hero-image .ph b { display: block; color: var(--muted); font-weight: 600; font-size: 15px; }
.hero-image .ph small { font-size: 13px; }
/* If a real image is dropped in, add <img> and it fills the box */
.hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Transparent product-style hero image: no box chrome, show whole object with a subtle glow + float */
.hero-image--product {
  border: none;
  background: radial-gradient(60% 60% at 60% 45%, rgba(233,176,58,0.16), transparent 70%);
  box-shadow: none;
  overflow: visible;
}
.hero-image--product img {
  position: relative;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(233,176,58,0.12));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .hero-image--product img { animation: none; } }

/* =========================================================
   HERO STYLE VARIANTS
   ========================================================= */
/* All 5 styles share the split layout (text left, image right). Only the
   left text/buttons design changes per .hstyle-* class. */

/* shared additions */
.hero-textlink { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-weight: 600; font-size: 14.5px; }
.hero-textlink svg { width: 16px; height: 16px; transition: transform .2s ease; }
.hero-textlink:hover svg { transform: translateX(4px); }

/* 2) BOLD — oversized heading, uppercase kicker, big buttons */
.hstyle-bold h1 { font-size: clamp(40px, 5.2vw, 64px); letter-spacing: -2px; line-height: 1.05; }
.hstyle-bold .lead { font-size: 17px; max-width: 500px; }
.hero-toplabel { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.hero-toplabel i { width: 36px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.hstyle-bold .hero-cta .btn { padding: 15px 30px; font-size: 15px; }

/* 3) CARD — text in a glass card with gold accent bar + checklist */
.hstyle-card .hero-text { align-self: center; }
.hero-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px 34px; overflow: hidden; box-shadow: var(--shadow); }
.hero-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--gold-grad); }
.hero-card h1 { font-size: clamp(30px, 3.4vw, 42px); }
.hero-checklist { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.hero-checklist li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text); }
.hero-checklist svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.hstyle-card .btn-gold { border-radius: 40px; }

/* 4) ACCENT — gold bar beside heading, outlined badge, star rating */
.hstyle-accent .hero-badge { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.hero-accent-head { position: relative; padding-left: 22px; margin: 4px 0 16px; }
.hero-accent-head::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; border-radius: 4px; background: var(--gold-grad); }
.hero-accent-head h1 { margin: 0; }
.hero-rating { display: flex; align-items: center; gap: 12px; margin: 4px 0 26px; flex-wrap: wrap; }
.hero-rating .stars { display: inline-flex; gap: 3px; color: var(--gold); }
.hero-rating .stars svg { width: 17px; height: 17px; }
.hero-rating .rtxt { color: var(--muted); font-size: 13.5px; }
.hero-rating .rtxt b { color: var(--text); }

/* 5) MINIMAL PRO — clean, highlighter underline on the accent word */
.hero-minilabel { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hstyle-minimalpro h1 { font-size: clamp(36px, 4.8vw, 56px); font-weight: 800; letter-spacing: -1.5px; }
.hstyle-minimalpro h1 .gold-text { -webkit-text-fill-color: var(--gold); color: var(--gold); background: none; box-shadow: inset 0 -0.28em 0 rgba(233,176,58,0.18); }
.hstyle-minimalpro .lead { font-size: 17px; max-width: 500px; }
.hstyle-minimalpro .hero-cta { margin-top: 30px; }

/* =========================================================
   DOMAIN SEARCH
   ========================================================= */
.domain-section { padding-top: 0; }
.domain-box {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 40px 40px 34px;
  background:
    radial-gradient(500px 300px at 15% 0%, rgba(233,176,58,0.12), transparent 60%),
    linear-gradient(135deg, rgba(233,176,58,0.06), rgba(20,16,8,0.25));
  overflow: hidden;
}
.domain-head { text-align: center; margin-bottom: 24px; }
.domain-head h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; margin-bottom: 8px; }
.domain-head p { color: var(--muted); font-size: 15px; }
.domain-form {
  display: flex; align-items: center; gap: 10px;
  max-width: 680px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 8px 8px 8px 16px;
}
.domain-form .domain-ic { color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.domain-form .domain-ic svg { width: 22px; height: 22px; }
.domain-form input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font); font-size: 16px; padding: 12px 4px;
}
.domain-form .btn { flex-shrink: 0; }
.domain-tlds { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px auto 0; max-width: 680px; }
.domain-tlds .tld {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 6px 14px; border-radius: 30px; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s ease;
}
.domain-tlds .tld:hover { color: var(--gold); border-color: var(--gold); background: rgba(233,176,58,0.06); }
.domain-result { max-width: 680px; margin: 20px auto 0; text-align: center; font-size: 15px; }
.domain-result .dr-ok, .domain-result .dr-taken, .domain-result .dr-note {
  padding: 16px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.domain-result .dr-ok { background: rgba(52,209,122,0.1); border: 1px solid rgba(52,209,122,0.4); color: #4ade80; }
.domain-result .dr-taken { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.35); color: #f87171; }
.domain-result .dr-note { background: rgba(233,176,58,0.08); border: 1px solid var(--border); color: var(--muted); }
.domain-result .dr-ok b, .domain-result .dr-taken b { color: inherit; }
.domain-result .dr-loading, .domain-result .dr-warn { color: var(--muted); }
.domain-result .btn-sm { padding: 8px 16px; font-size: 13px; }
@media (max-width: 560px) {
  .domain-box { padding: 30px 20px; }
  .domain-form { flex-wrap: wrap; }
  .domain-form input { width: 100%; }
  .domain-form .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 40px;
  margin: 0 auto 48px;
}
.tabs-wrap { display: flex; justify-content: center; }
.pricing-tab {
  border: none; background: transparent; cursor: pointer;
  padding: 10px 22px; border-radius: 30px;
  color: var(--muted); font-family: var(--font); font-weight: 500; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.22s ease;
}
.pricing-tab .save {
  font-size: 10.5px; padding: 3px 8px; border-radius: 20px;
  background: rgba(52,209,122,0.15); color: #4ade80; font-weight: 600;
}
.pricing-tab.active { background: var(--gold-grad); color: #1a1204; }
.pricing-tab.active .save { background: rgba(0,0,0,0.18); color: #1a1204; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.plan:hover { transform: translateY(-8px); border-color: rgba(233,176,58,0.4); box-shadow: var(--shadow); }
.plan.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(233,176,58,0.07), var(--card) 40%);
  box-shadow: 0 20px 60px rgba(233,176,58,0.16);
}
.plan-flag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold-grad); color: #1a1204;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; white-space: nowrap;
}
.plan-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.plan-ic { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--gold-grad-soft); border: 1px solid var(--border); color: var(--gold); }
.plan-ic svg { width: 24px; height: 24px; }
.plan-name { font-size: 17px; font-weight: 700; }
.plan-desc { font-size: 12.5px; color: var(--muted); }
.plan-price-row { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 6px; }
.plan-price { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.plan-price .per { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan-billed { font-size: 12.5px; color: var(--muted); margin-bottom: 24px; }
.plan-server { margin-left: auto; opacity: 0.9; }
.plan-server svg { width: 74px; height: 60px; }
.plan-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--text); }
.plan-features li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* =========================================================
   FEATURES GRID
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  --acc:#f6ce6a;
  position:relative; overflow:hidden;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}
/* each feature cycles through a vibrant accent (repeats every 6) */
.feature:nth-child(6n+1){ --acc:#f6ce6a; }  /* gold    */
.feature:nth-child(6n+2){ --acc:#54b8f5; }  /* sky     */
.feature:nth-child(6n+3){ --acc:#3ed6a0; }  /* emerald */
.feature:nth-child(6n+4){ --acc:#b192f9; }  /* violet  */
.feature:nth-child(6n+5){ --acc:#fb7091; }  /* rose    */
.feature:nth-child(6n+6){ --acc:#fb9a3c; }  /* orange  */
.feature:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--acc) 45%, transparent);
  background: linear-gradient(160deg, color-mix(in srgb, var(--acc) 8%, var(--card)), var(--card));
  box-shadow: 0 22px 42px -24px color-mix(in srgb, var(--acc) 60%, transparent);
}
.feature-ic {
  width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center; border-radius: 16px;
  color: var(--acc);
  background-color: rgba(255,255,255,.04);
  background-image: radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--acc) 32%, transparent), color-mix(in srgb, var(--acc) 8%, transparent));
  border: 1px solid color-mix(in srgb, var(--acc) 38%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 22px -14px color-mix(in srgb, var(--acc) 70%, transparent);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}
.feature:hover .feature-ic { transform: scale(1.07) rotate(-3deg); box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 26px -12px color-mix(in srgb, var(--acc) 85%, transparent); }
.feature-ic svg { width: 29px; height: 29px; }
.feature h4 { font-size: 15.5px; font-weight: 700; letter-spacing:-.2px; margin-bottom: 5px; }
.feature p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* =========================================================
   DATA CENTERS
   ========================================================= */
.dc-section { background: var(--bg-2); }
.dc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.dc-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  padding: 30px 22px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
:root[data-theme="light"] .dc-card { border-color: rgba(0,0,0,.08); box-shadow: 0 8px 24px -18px rgba(0,0,0,.3); }
.dc-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(340px 120px at 50% -10%, rgba(233,176,58,.14), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.dc-card:hover {
  transform: translateY(-7px);
  border-color: rgba(233,176,58,.45);
  background: linear-gradient(170deg, var(--card-2), var(--card));
  box-shadow: 0 28px 54px -28px rgba(233,176,58,.5);
}
.dc-card:hover::before { opacity: 1; }
/* Netherlands data-center highlight (VPS page) */
.vps-nl{ background:var(--bg-2); }
.nl-wrap{ display:grid; grid-template-columns:1.3fr 1fr; gap:44px; align-items:center;
  background:linear-gradient(135deg, rgba(233,176,58,.08), rgba(233,176,58,.02)); border:1px solid var(--border); border-radius:22px; padding:40px 44px; }
.nl-list{ list-style:none; display:flex; flex-direction:column; gap:13px; }
.nl-list li{ display:flex; align-items:flex-start; gap:11px; color:var(--muted); font-size:14px; line-height:1.5; }
.nl-list li b{ color:var(--text); font-weight:600; }
.nl-list svg{ width:19px; height:19px; color:var(--gold); flex-shrink:0; margin-top:1px; }
.nl-card{ background:var(--card); border:1px solid var(--border); border-radius:18px; padding:28px; text-align:center; }
.nl-globe{ position:relative; width:150px; height:150px; margin:0 auto 22px; display:grid; place-items:center; color:var(--gold);
  background:radial-gradient(circle at 30% 30%, rgba(233,176,58,.20), transparent 70%); border-radius:50%; border:1px solid var(--border); animation:heroFloat 6s ease-in-out infinite; }
.nl-globe > svg{ width:104px; height:104px; }
.nl-flag{ position:absolute; bottom:6px; right:10px; font-size:30px; }
.nl-stats{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.nl-stat{ background:var(--bg-2); border:1px solid var(--border); border-radius:12px; padding:12px 8px; }
.nl-stat b{ display:block; font-size:19px; font-weight:800; color:var(--gold); letter-spacing:-.3px; }
.nl-stat span{ font-size:11.5px; color:var(--muted); }
@media(max-width:820px){ .nl-wrap{ grid-template-columns:1fr; gap:30px; padding:30px 24px; } }
.dc-flag {
  position: relative; z-index: 2;
  width: 96px; height: 64px; border-radius: 12px; overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 30px -14px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.05);
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
}
.dc-flag .fb { width: 100%; height: 100%; display: block; }
.dc-card:hover .dc-flag { transform: scale(1.06); }
.dc-info { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.dc-name { font-size: 16px; font-weight: 800; letter-spacing: -.3px; color: var(--text); }
.dc-country { font-size: 12.5px; color: var(--muted); }
.dc-ping {
  position: absolute; z-index: 3; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: #4ade80;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.28); border-radius: 999px; padding: 4px 9px;
}
.dc-ping .dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-wrap { position: relative; }
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.testi .quote-mark { position: absolute; top: 22px; right: 24px; color: rgba(233,176,58,0.22); }
.testi .quote-mark svg { width: 40px; height: 40px; }
.testi .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); }
.testi .stars svg { width: 17px; height: 17px; }
.testi p.body { font-size: 14.5px; color: var(--text); line-height: 1.65; margin-bottom: 24px; }
.testi-person { display: flex; align-items: center; gap: 13px; }
.testi-person .avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.testi-person .avatar svg { width: 100%; height: 100%; }
.testi-person b { font-size: 14.5px; font-weight: 600; display: block; }
.testi-person span { font-size: 12.5px; color: var(--gold); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.testi-dots .d { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: 0.2s; }
.testi-dots .d.active { background: var(--gold); width: 26px; border-radius: 6px; }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card);
  display: grid; place-items: center; cursor: pointer; color: var(--gold);
  transition: 0.2s; z-index: 5;
}
.testi-arrow:hover { background: var(--gold-grad); color: #1a1204; }
.testi-arrow.left { left: -22px; }
.testi-arrow.right { right: -22px; }
.testi-arrow svg { width: 18px; height: 18px; }

/* =========================================================
   BLOG / LATEST POSTS
   ========================================================= */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.blog-head .left .section-tag, .blog-head .left .section-title { text-align: left; margin-left: 0; }
.blog-head .section-title { margin-bottom: 0; }
.view-all { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; font-size: 14px; }
.view-all svg { width: 16px; height: 16px; transition: transform 0.2s; }
.view-all:hover svg { transform: translateX(4px); }

.posts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.post-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.26s ease, border-color 0.26s ease;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); border-color: var(--border); }
.post-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.post-thumb svg { width: 100%; height: 100%; object-fit: cover; }
.post-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold-grad); color: #1a1204;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px;
  padding: 5px 11px; border-radius: 6px;
}
.post-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.post-body h3 { font-size: 15.5px; font-weight: 600; line-height: 1.4; margin-bottom: 14px; flex: 1; }
.post-card:hover .post-body h3 { color: var(--gold); }
.post-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--muted); }
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-meta svg { width: 14px; height: 14px; color: var(--gold); }

/* Blog page big cards */
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-list .post-body h3 { font-size: 17px; }
.blog-list .post-excerpt { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

/* =========================================================
   CTA
   ========================================================= */
.cta-section { padding: 40px 0 90px; }
.cta-box {
  position: relative; overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background:
    radial-gradient(500px 300px at 85% 50%, rgba(233,176,58,0.18), transparent 60%),
    linear-gradient(135deg, rgba(233,176,58,0.10), rgba(20,16,8,0.4));
  padding: 46px 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.cta-box h2 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; margin-bottom: 10px; }
.cta-box p { color: var(--muted); font-size: 15px; max-width: 460px; }
.cta-rocket { position: absolute; right: 30px; bottom: -10px; opacity: 0.35; pointer-events: none; }
.cta-rocket svg { width: 150px; height: 150px; color: var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot-guarantee {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 30px 0;
}
.foot-guarantee .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.guar { display: flex; align-items: center; gap: 14px; }
.guar .ic { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: var(--gold-grad-soft); border: 1px solid var(--border); color: var(--gold); flex-shrink: 0; }
.guar .ic svg { width: 22px; height: 22px; }
.guar b { font-size: 14.5px; font-weight: 600; display: block; }
.guar span { font-size: 12.5px; color: var(--muted); }

.footer { background: var(--bg-2); padding: 60px 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
}
.foot-about-contact { margin: 20px 0 4px; }
.foot-about-contact li { margin-bottom: 10px; }
.foot-about .brand { margin-bottom: 18px; }
.foot-about p { color: var(--muted); font-size: 13.5px; margin-bottom: 22px; max-width: 300px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 9px; border: 1px solid var(--border); color: var(--muted); transition: 0.2s; }
.foot-social a:hover { background: var(--gold-grad); color: #1a1204; border-color: transparent; transform: translateY(-3px); }
.foot-social a svg { width: 17px; height: 17px; }
.foot-col h4 { font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.foot-col ul li { margin-bottom: 12px; }
.foot-col ul li a { color: var(--muted); font-size: 13.5px; transition: 0.2s; }
.foot-col ul li a:hover { color: var(--gold); padding-left: 4px; }
/* footer dropdown / accordion links */
.foot-col .foot-drop { margin-bottom: 12px; }
.foot-drop-btn { display: flex; align-items: center; gap: 8px; width: 100%; background: none; border: 0; padding: 0; margin: 0; cursor: pointer; color: var(--muted); font: inherit; font-size: 13.5px; text-align: left; transition: 0.2s; }
.foot-drop-btn:hover { color: var(--gold); }
.foot-chev { width: 14px; height: 14px; margin-left: auto; transition: transform 0.28s ease; opacity: 0.7; flex-shrink: 0; }
.foot-drop.open .foot-chev { transform: rotate(180deg); opacity: 1; }
.foot-drop-list { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.32s ease, margin-top 0.32s ease; padding-left: 12px; border-left: 1px solid var(--border-soft); margin-top: 0; }
.foot-drop.open .foot-drop-list { max-height: 640px; margin-top: 12px; }
.foot-drop-list li { margin-bottom: 10px; }
.foot-drop-list li:last-child { margin-bottom: 0; }
.foot-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 16px; color: var(--muted); font-size: 13.5px; }
.foot-contact li svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.foot-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.foot-bottom p { color: var(--muted-2); font-size: 13px; }
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom .links a { color: var(--muted-2); font-size: 13px; transition: 0.2s; }
.foot-bottom .links a:hover { color: var(--gold); }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-hero {
  padding: 70px 0 40px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(233,176,58,0.10), transparent 65%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .crumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.page-hero .crumbs a { color: var(--gold); }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* comparison table */
.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp-table th, .cmp-table td { padding: 16px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border-soft); }
.cmp-table thead th { background: var(--card); color: var(--gold); font-weight: 600; }
.cmp-table td:first-child { color: var(--muted); }
.cmp-table tbody tr:hover td { background: rgba(233,176,58,0.03); }
.cmp-table svg { width: 18px; height: 18px; color: var(--gold); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq {
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--card); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
  padding: 20px 22px; color: var(--text); font-family: var(--font); font-weight: 500; font-size: 15px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.22s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--card); margin-bottom: 18px; }
.contact-info-card .ic { width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--gold-grad-soft); border: 1px solid var(--border); color: var(--gold); }
.contact-info-card .ic svg { width: 24px; height: 24px; }
.contact-info-card b { display: block; font-size: 15px; margin-bottom: 3px; }
.contact-info-card span { color: var(--muted); font-size: 14px; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font); font-size: 14px;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.alert-ok { background: rgba(52,209,122,0.1); border: 1px solid rgba(52,209,122,0.35); color: #4ade80; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-ok svg { width: 20px; height: 20px; }

/* single post */
.post-hero-img { aspect-ratio: 21/9; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 34px; }
.post-hero-img svg { width: 100%; height: 100%; object-fit: cover; }
.post-content { max-width: 780px; margin: 0 auto; }
.post-content h2 { font-size: 24px; margin: 34px 0 14px; font-weight: 700; }
.post-content h3 { font-size: 19px; margin: 26px 0 12px; font-weight: 600; }
.post-content p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.post-content ul { margin: 0 0 18px 0; }
.post-content ul li { color: var(--muted); font-size: 16px; line-height: 1.8; padding-left: 26px; position: relative; margin-bottom: 8px; }
.post-content ul li::before { content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); }
.post-content blockquote { border-left: 3px solid var(--gold); padding: 6px 22px; margin: 24px 0; color: var(--text); font-style: italic; background: var(--card); border-radius: 0 10px 10px 0; }

/* 404 */
.err-wrap { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.err-wrap h1 { font-size: 120px; font-weight: 800; line-height: 1; }
.err-wrap p { color: var(--muted); margin: 10px 0 26px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .dc-grid { grid-template-columns: repeat(3, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-actions .live-chat { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan.featured { transform: none; }
  .testi-track { grid-template-columns: 1fr; }
  .testi:nth-child(n+2) { display: none; }
  .testi-arrow { display: none; }
  .blog-list { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* hide the top bar on mobile */
  .topbar { display: none !important; }

  /* mobile menu drawer */
  .nav-menu.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #0b0b0e; border-bottom: 1px solid var(--border);
    padding: 14px; gap: 6px; box-shadow: var(--shadow);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  :root[data-theme="light"] .nav-menu.mobile-open { background: #ffffff; }
  /* readable links regardless of header colour/menu style */
  .header .nav-menu.mobile-open .nav-link {
    padding: 14px 16px; font-size: 15px; color: var(--text) !important;
    background: rgba(255,255,255,0.02) !important; border: 1px solid var(--border-soft) !important;
    border-radius: 12px;
  }
  :root[data-theme="light"] .header .nav-menu.mobile-open .nav-link { background: rgba(20,20,30,0.02) !important; }
  .header .nav-menu.mobile-open .nav-link svg:not(.caret) { color: var(--gold) !important; }
  .header .nav-menu.mobile-open .nav-item.active .nav-link { color: var(--gold) !important; background: var(--gold-grad-soft) !important; border-color: var(--border) !important; }
  .nav-menu.mobile-open .nav-link::after { display: none; } /* kill underline-style bars in drawer */
  /* nested submenu inside the drawer — force normal flow (beats desktop hover positioning) */
  .nav-menu.mobile-open .dropdown {
    position: static !important; left: auto !important; top: auto !important; right: auto !important;
    transform: none !important; opacity: 1 !important; visibility: visible !important;
    box-shadow: none !important; border: none !important;
    background: rgba(255,255,255,0.03) !important;
    margin: 2px 0 6px 14px !important; padding: 4px !important;
    display: none; min-width: 0 !important; width: auto !important; border-radius: 10px;
  }
  .nav-menu.mobile-open .nav-item.drop-open .dropdown { display: block; }
  .nav-menu.mobile-open .dropdown a { padding: 11px 12px; border-radius: 9px; }
  .nav-menu.mobile-open .dropdown a svg { width: 30px; height: 30px; flex-shrink: 0; }
  .nav-menu.mobile-open .dropdown a strong { font-size: 14px; }
  .nav-menu.mobile-open .dropdown a small { font-size: 11.5px; white-space: normal; }
  .header.hdr-text-dark .nav-menu.mobile-open .dropdown a strong { color: var(--text); }
  .nav-menu.mobile-open .dropdown a, .nav-menu.mobile-open .dropdown a strong { color: var(--text); }
  .nav-menu.mobile-open .dropdown a small { color: var(--muted); }
  /* auth buttons + live chat inside the drawer */
  .nav-menu.mobile-open .mobile-auth { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
  .nav-menu.mobile-open .live-chat { display: inline-flex; justify-content: center; margin-top: 8px; color: var(--gold) !important; background: rgba(233,176,58,0.06) !important; border: 1px solid var(--border) !important; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .dc-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-guarantee .row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-box { flex-direction: column; text-align: center; padding: 36px 26px; }
  .cta-box p { margin: 0 auto; }
  .cta-rocket { display: none; }
  .blog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  /* keep the 3 billing tabs on ONE row */
  /* pricing tabs → tidy 2-column grid of full-width pills on mobile */
  .tabs-wrap { max-width: 100%; overflow: visible; padding: 0; }
  .pricing-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; border-radius: 16px; padding: 8px; margin: 0 auto 34px; }
  .pricing-tab { justify-content: center; padding: 12px 10px; font-size: 13.5px; gap: 7px; white-space: nowrap; border-radius: 12px; }
  .pricing-tab .save { font-size: 10px; padding: 2px 7px; }
}
@media (max-width: 380px) {
  .pricing-tab { padding: 8px 10px; font-size: 11.5px; }
  .pricing-tab .save { padding: 2px 5px; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .features-grid, .dc-grid, .foot-guarantee .row { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .plan { padding: 26px 22px; }
}
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .nav-actions { gap: 6px; }
  .theme-toggle, .cart-btn { width: 38px; height: 38px; }
  .hamburger { width: 38px; }
  .brand-name small { display: none; }   /* free up header space on tiny screens */
}

/* ============ Floating WhatsApp bubble ============ */
.wa-float{
  position:fixed; bottom:24px; z-index:900;
  display:inline-flex; align-items:center; gap:0;
  text-decoration:none; --wa:#25D366;
}
.wa-float.wa-right{ right:24px; flex-direction:row-reverse; }
.wa-float.wa-left{ left:24px; flex-direction:row; }
.wa-float .wa-ico{
  width:58px; height:58px; flex:0 0 58px;
  display:grid; place-items:center; border-radius:50%;
  background:var(--wa); color:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,.55);
  animation:waPulse 2.4s infinite;
  transition:transform .2s ease;
}
.wa-float:hover .wa-ico{ transform:scale(1.07); }
.wa-float .wa-ico svg{ width:32px; height:32px; }
.wa-float .wa-tip{
  background:#fff; color:#111; font-size:13.5px; font-weight:600;
  padding:10px 14px; border-radius:12px; white-space:nowrap;
  box-shadow:0 8px 22px rgba(0,0,0,.18); position:relative;
  max-width:210px; line-height:1.35;
}
.wa-float.wa-right .wa-tip{ margin-right:12px; }
.wa-float.wa-left  .wa-tip{ margin-left:12px; }
:root[data-theme="dark"] .wa-float .wa-tip{ background:#1c1f27; color:#f1f1f3; }
/* tail on the tooltip */
.wa-float .wa-tip::after{
  content:""; position:absolute; top:50%; transform:translateY(-50%);
  border:7px solid transparent;
}
.wa-float.wa-right .wa-tip::after{ right:-13px; border-left-color:#fff; }
.wa-float.wa-left  .wa-tip::after{ left:-13px; border-right-color:#fff; }
:root[data-theme="dark"] .wa-float.wa-right .wa-tip::after{ border-left-color:#1c1f27; }
:root[data-theme="dark"] .wa-float.wa-left  .wa-tip::after{ border-right-color:#1c1f27; }
@keyframes waPulse{
  0%{ box-shadow:0 10px 26px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow:0 10px 26px rgba(0,0,0,.28), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 10px 26px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){ .wa-float .wa-ico{ animation:none; } }
/* hide the little label on small phones — keep just the bubble */
@media (max-width:560px){
  .wa-float .wa-tip{ display:none; }
  .wa-float{ bottom:18px; }
  .wa-float.wa-right{ right:18px; }
  .wa-float.wa-left{ left:18px; }
}

/* ============ FOOTER STYLE PRESETS ============ */
/* 1) classic = default (bg-2, gold accents) — no extra rules needed */

/* 2) dark — deep black footer with a thin gold top line */
.footer.foot-dark { background:#040404; border-top:2px solid transparent; border-image:var(--gold-grad) 1; }
.footer.foot-dark .foot-social a { border-color:rgba(233,176,58,.25); }

/* 3) gradient — subtle gold-tinted gradient wash */
.footer.foot-gradient {
  background:
    radial-gradient(700px 380px at 12% 0%, rgba(233,176,58,.12), transparent 60%),
    linear-gradient(180deg, #0c0b0a 0%, #060606 100%);
  border-top:1px solid var(--border);
}
.footer.foot-gradient .foot-col h4 { color:var(--gold-2); }

/* 4) minimal — flat, airy, thin separators, less chrome */
.footer.foot-minimal { background:var(--bg); padding-top:48px; }
.footer.foot-minimal .foot-grid { border-bottom:1px solid var(--border-soft); }
.footer.foot-minimal .foot-social a { border:none; background:rgba(255,255,255,.04); }
.footer.foot-minimal .foot-col h4 { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--muted-2); }

/* 5) bordered — each column sits in a soft card */
.footer.foot-bordered { background:var(--bg-2); }
.footer.foot-bordered .foot-grid { gap:22px; }
.footer.foot-bordered .foot-col {
  background:var(--card); border:1px solid var(--border);
  border-radius:14px; padding:22px 20px;
}
.footer.foot-bordered .foot-col h4 { color:var(--gold); }
.footer.foot-bordered .foot-about {
  background:var(--card); border:1px solid var(--border);
  border-radius:14px; padding:24px 22px;
}

/* ============ DOMAIN REGISTRATION PAGE ============ */
.dom-hero{
  position:relative; padding:76px 0 60px; text-align:center; overflow:hidden;
  background:
    radial-gradient(760px 420px at 50% -10%, rgba(233,176,58,.16), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, rgba(233,176,58,.06), transparent 55%);
  border-bottom:1px solid var(--border-soft);
}
.dom-hero-inner{ max-width:1040px; margin:0 auto; }
.dom-hero .hero-badge{ margin-bottom:20px; }
.dom-hero h1{ font-size:clamp(32px,4.6vw,52px); font-weight:800; letter-spacing:-1px; line-height:1.08; margin-bottom:16px; }
.dom-hero .lead{ color:var(--muted); font-size:16.5px; max-width:600px; margin:0 auto 30px; }
.dom-search{
  display:flex; align-items:center; gap:10px; max-width:780px; margin:0 auto;
  background:var(--card); border:1px solid var(--border); border-radius:14px;
  padding:9px 9px 9px 16px; box-shadow:var(--shadow);
}
.dom-search-ic{ color:var(--gold); display:grid; place-items:center; flex-shrink:0; }
.dom-search-ic svg{ width:22px; height:22px; }
.dom-search input{
  flex:1; background:transparent; border:none; outline:none; color:var(--text);
  font-family:var(--font); font-size:16px; padding:10px 4px; min-width:0;
}
.dom-search .btn{ flex-shrink:0; }
.dom-chips{ display:flex; flex-wrap:wrap; justify-content:center; gap:9px; margin:20px auto 0; max-width:780px; }
.dom-chips .tld{
  font-size:13px; font-weight:600; color:var(--muted); cursor:pointer;
  padding:6px 14px; border:1px solid var(--border); border-radius:20px; transition:.18s;
}
.dom-chips .tld:hover{ color:#1a1204; background:var(--gold-grad); border-color:transparent; transform:translateY(-2px); }
.dom-result{ max-width:860px; margin:22px auto 0; text-align:center; font-size:15px; }
.dom-result .dr-ok,.dom-result .dr-taken,.dom-result .dr-note{ padding:14px 18px; border-radius:12px; display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.dom-result .dr-ok{ background:rgba(52,209,122,.1); border:1px solid rgba(52,209,122,.4); color:#4ade80; }
.dom-result .dr-taken{ background:rgba(239,68,68,.08); border:1px solid rgba(239,68,68,.35); color:#f87171; }
.dom-result .dr-note{ background:rgba(233,176,58,.08); border:1px solid var(--border); color:var(--muted); }
.dom-result .dr-loading,.dom-result .dr-warn{ color:var(--muted); }
.dom-result .btn-sm{ padding:8px 16px; font-size:13px; }
.dom-trust{ display:flex; flex-wrap:wrap; justify-content:center; gap:26px; margin-top:30px; }
.dom-trust span{ display:inline-flex; align-items:center; gap:8px; color:var(--muted); font-size:13.5px; font-weight:500; }
.dom-trust svg{ width:18px; height:18px; color:#34d17a; }

/* TLD pricing grid */
.tld-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.tld-card{
  position:relative; background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:26px 22px; text-align:center; transition:.22s;
}
.tld-card:hover{ transform:translateY(-5px); border-color:var(--gold); box-shadow:var(--shadow-gold); }
.tld-card.is-pop{ border-color:var(--gold); background:linear-gradient(180deg, rgba(233,176,58,.08), var(--card) 55%); }
.tld-flag{
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  background:var(--gold-grad); color:#1a1204; font-size:11px; font-weight:700;
  letter-spacing:.4px; padding:4px 12px; border-radius:20px; white-space:nowrap;
}
.tld-flag.flag-hot{ background:linear-gradient(135deg,#8b5cf6,#6366f1); color:#fff; }
.tld-flag.flag-deal{ background:linear-gradient(135deg,#34d17a,#10b981); color:#04240f; }
.tld-name{ font-size:30px; font-weight:800; color:var(--gold); letter-spacing:-.5px; margin-bottom:10px; }
.tld-price{ font-size:24px; font-weight:800; }
.tld-price span{ font-size:12px; font-weight:500; color:var(--muted); }
.tld-renew{ font-size:12.5px; color:var(--muted-2); margin:6px 0 18px; }
.tld-btn{ font-size:13.5px; padding:11px 0; }
.tld-note{ text-align:center; color:var(--muted-2); font-size:12.5px; margin-top:26px; }

/* Transfer box */
.transfer-box{
  display:grid; grid-template-columns:1.3fr 1fr; gap:40px; align-items:center;
  background:linear-gradient(135deg, rgba(233,176,58,.10), rgba(233,176,58,.02));
  border:1px solid var(--border); border-radius:22px; padding:44px;
}
.transfer-text h2{ font-size:clamp(24px,3vw,34px); font-weight:800; letter-spacing:-.5px; margin:6px 0 14px; }
.transfer-text > p{ color:var(--muted); font-size:15px; margin-bottom:20px; max-width:460px; }
.transfer-list{ margin-bottom:26px; }
.transfer-list li{ display:flex; align-items:center; gap:11px; color:var(--text); font-size:14.5px; margin-bottom:12px; }
.transfer-list svg{ width:19px; height:19px; color:var(--gold); flex-shrink:0; }
.transfer-form-wrap{ display:flex; }
.transfer-form{ width:100%; background:var(--card); border:1px solid var(--border); border-radius:16px; padding:24px; }
.transfer-form h4{ font-size:16px; font-weight:700; margin-bottom:16px; }
.tf-field{ margin-bottom:14px; }
.tf-field label{ display:block; font-size:12.5px; color:var(--muted); margin-bottom:6px; font-weight:500; }
.tf-field label small{ color:var(--muted-2); font-weight:400; }
.tf-field input, .tf-field select{ width:100%; background:var(--bg-2); border:1px solid var(--border); border-radius:10px; color:var(--text); font-size:14px; padding:11px 13px; font-family:var(--font); }
.tf-field input:focus, .tf-field select:focus{ outline:none; border-color:var(--gold); }
.tf-err{ background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.35); color:#f87171; padding:9px 12px; border-radius:9px; font-size:13px; margin-bottom:12px; }
.tf-note{ font-size:11.5px; color:var(--muted-2); margin-top:10px; line-height:1.5; }
.transfer-visual{ position:relative; height:230px; display:grid; place-items:center; }
.tv-globe{ width:150px; height:150px; border-radius:50%; display:grid; place-items:center; color:var(--gold);
  background:radial-gradient(circle at 30% 30%, rgba(233,176,58,.22), transparent 70%);
  border:1px solid var(--border); animation:heroFloat 6s ease-in-out infinite; }
.tv-globe svg{ width:100px; height:100px; }
.tv-tld{ position:absolute; background:var(--card); border:1px solid var(--border); color:var(--gold);
  font-weight:700; font-size:13px; padding:6px 13px; border-radius:20px; box-shadow:var(--shadow); }
.tv-tld.tv-1{ top:8%; left:6%; animation:heroFloat 5s ease-in-out infinite; }
.tv-tld.tv-2{ top:20%; right:2%; animation:heroFloat 6.5s ease-in-out infinite; }
.tv-tld.tv-3{ bottom:16%; left:0; animation:heroFloat 5.5s ease-in-out infinite; }
.tv-tld.tv-4{ bottom:6%; right:10%; animation:heroFloat 7s ease-in-out infinite; }

@media (max-width:900px){
  .tld-grid{ grid-template-columns:repeat(2,1fr); }
  .transfer-box{ grid-template-columns:1fr; gap:30px; padding:32px 24px; }
  .transfer-visual{ height:190px; order:-1; }
}
@media (max-width:560px){
  .dom-search{ flex-wrap:wrap; padding:12px; }
  .dom-search input{ width:100%; text-align:center; }
  .dom-search .btn{ width:100%; justify-content:center; }
  .tld-grid{ grid-template-columns:1fr 1fr; gap:12px; }
}

/* ---- Whois Checker result ---- */
.whois-result{ margin-top:22px; }
.wq-card{ border:1px solid var(--border); border-radius:16px; background:var(--card); overflow:hidden; }
.wq-head{ display:flex; align-items:center; gap:12px; padding:16px 20px; border-bottom:1px solid var(--border); background:linear-gradient(90deg,rgba(233,176,58,.06),transparent); flex-wrap:wrap; }
.wq-head b{ font-size:18px; font-weight:700; overflow-wrap:anywhere; }
.wq-badge{ font-size:11.5px; font-weight:700; padding:3px 10px; border-radius:20px; }
.wq-badge.avail{ background:rgba(52,209,122,.15); color:#34d17a; }
.wq-badge.taken{ background:rgba(239,68,68,.14); color:#f87171; }
.wq-body{ padding:6px 20px; }
.wq-row{ display:grid; grid-template-columns:150px 1fr; gap:14px; padding:12px 0; border-bottom:1px solid var(--border-soft); font-size:14px; }
.wq-row:last-child{ border-bottom:none; }
.wq-k{ color:var(--muted); font-weight:500; }
.wq-v{ color:var(--text); overflow-wrap:anywhere; }
.wq-raw{ border-top:1px solid var(--border); }
.wq-raw summary{ cursor:pointer; padding:14px 20px; color:var(--gold); font-size:13px; font-weight:600; }
.wq-raw pre{ margin:0; padding:0 20px 18px; font-size:11.5px; color:var(--muted); white-space:pre-wrap; word-break:break-word; max-height:340px; overflow:auto; }
@media(max-width:560px){ .wq-row{ grid-template-columns:1fr; gap:2px; } .wq-k{ font-size:12px; } }

/* ---- Domain search RESULTS (namecheap-style rows) ---- */
.dom-result{ text-align:left; }
.dr-msg,.dr-hint{ text-align:center; color:var(--muted); font-size:14px; padding:14px; }
.dr-hint{ font-size:12.5px; color:var(--muted-2); }
.dr-loading{ display:flex; align-items:center; justify-content:center; gap:10px; color:var(--muted); padding:16px; }
.dr-spin{ width:18px; height:18px; border:2px solid var(--border); border-top-color:var(--gold); border-radius:50%; animation:drspin .7s linear infinite; display:inline-block; }
@keyframes drspin{ to{ transform:rotate(360deg); } }
.dr-listhead{ font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted-2); margin:18px 4px 10px; }
.dr-primary-wrap{ margin-top:4px; }
.dr-row{
  display:grid; grid-template-columns:1fr auto auto auto; align-items:center; gap:16px;
  padding:15px 18px; border:1px solid var(--border); border-radius:12px; background:var(--card); margin-bottom:10px;
}
.dr-row.dr-primary{ border-color:var(--gold); background:linear-gradient(180deg, rgba(233,176,58,.08), var(--card) 60%); padding:20px; }
.dr-row.taken{ opacity:.72; }
.dr-dom{ display:flex; align-items:center; gap:10px; min-width:0; flex-wrap:wrap; }
.dr-dom b{ font-size:17px; font-weight:700; overflow-wrap:anywhere; word-break:normal; }
.dr-primary .dr-dom b{ font-size:22px; letter-spacing:-.3px; }
.dr-lead{ font-size:10.5px; letter-spacing:1px; text-transform:uppercase; color:var(--gold); border:1px solid var(--border); padding:2px 8px; border-radius:20px; }
.dr-dot{ width:9px; height:9px; border-radius:50%; flex-shrink:0; background:var(--muted-2); }
.dr-row.avail .dr-dot{ background:#34d17a; box-shadow:0 0 0 3px rgba(52,209,122,.2); }
.dr-row.taken .dr-dot{ background:#f87171; }
.dr-status{ font-size:12.5px; font-weight:700; white-space:nowrap; }
.dr-status.avail{ color:#34d17a; } .dr-status.taken{ color:#f87171; } .dr-status.unknown{ color:var(--muted); }
.dr-pricewrap{ display:flex; flex-direction:column; align-items:flex-end; min-width:70px; }
.dr-price{ font-size:16px; font-weight:800; color:var(--text); }
.dr-renew{ font-size:11px; color:var(--muted-2); }
.dr-act{ min-width:96px; text-align:right; }
.dr-act .dr-buy{ width:100%; justify-content:center; }
.dr-tag{ font-size:12px; color:var(--muted-2); }
@media (max-width:620px){
  .dr-row{ grid-template-columns:1fr auto; row-gap:10px; }
  .dr-pricewrap{ align-items:flex-start; }
  .dr-status{ text-align:right; }
  .dr-act{ grid-column:1 / -1; min-width:0; }
  .dr-act .dr-buy{ width:100%; }
}

/* ---- generic button loading (spinner shade inside any .btn) ---- */
.btn.is-loading{ color:transparent !important; pointer-events:none; position:relative; }
.btn.is-loading > *{ visibility:hidden; }
.btn.is-loading::after{
  content:""; position:absolute; top:50%; left:50%; width:17px; height:17px; margin:-8.5px 0 0 -8.5px;
  border:2px solid rgba(255,255,255,.35); border-top-color:#fff; border-radius:50%;
  animation:drspin .7s linear infinite;
}
.btn-gold.is-loading::after{ border-color:rgba(26,18,4,.28); border-top-color:#1a1204; }
.btn-outline.is-loading::after{ border-color:rgba(233,176,58,.3); border-top-color:var(--gold); }

/* ============ CART BUTTON + DRAWER + CHECKOUT ============ */
.cart-btn{ position:relative; width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--border); border-radius:10px; background:transparent; color:var(--text); cursor:pointer; transition:.2s; }
.cart-btn:hover{ border-color:var(--gold); color:var(--gold); }
.cart-btn svg{ width:20px; height:20px; }
.header.hdr-text-dark .cart-btn{ color:#1a1204; border-color:rgba(0,0,0,.2); }
.cart-count{ position:absolute; top:-6px; right:-6px; background:var(--gold-grad); color:#1a1204; font-size:11px; font-weight:800; min-width:18px; height:18px; padding:0 5px; border-radius:20px; display:grid; place-items:center; }

.cart-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:1000; backdrop-filter:blur(2px); animation:fadeIn .2s ease; }
@keyframes fadeIn{ from{opacity:0} to{opacity:1} }
.cart-drawer{ position:fixed; top:0; right:0; height:100%; width:420px; max-width:92vw; background:var(--bg-2); border-left:1px solid var(--border); z-index:1001; transform:translateX(100%); transition:transform .32s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(0,0,0,.4); }
.cart-drawer.open{ transform:translateX(0); }
.cart-view{ display:flex; flex-direction:column; height:100%; min-height:0; }
.cart-view[hidden]{ display:none !important; }
.cart-drawer [hidden]{ display:none !important; }
.cart-head{ display:flex; align-items:center; gap:12px; padding:20px 22px; border-bottom:1px solid var(--border); flex-shrink:0; }
.cart-head h3{ font-size:17px; font-weight:700; flex:1; display:flex; align-items:center; gap:9px; }
.cart-head h3 svg{ width:20px; height:20px; color:var(--gold); }
.cart-x{ background:transparent; border:none; color:var(--muted); font-size:26px; line-height:1; cursor:pointer; width:32px; height:32px; border-radius:8px; }
.cart-x:hover{ color:#fff; background:rgba(255,255,255,.06); }
.cart-back{ background:transparent; border:none; color:var(--muted); font-size:22px; cursor:pointer; width:32px; height:32px; border-radius:8px; }
.cart-back:hover{ color:var(--gold); }
.cart-body{ flex:1; overflow-y:auto; padding:16px 22px; min-height:0; }
.cart-empty{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; color:var(--muted); text-align:center; padding:40px 22px; }
.cart-empty svg{ width:60px; height:60px; opacity:.4; }

.ci{ display:grid; grid-template-columns:1fr auto auto; gap:10px; align-items:start; padding:14px 0; border-bottom:1px solid var(--border-soft); }
.ci-main{ min-width:0; }
.ci-name{ font-weight:600; font-size:14.5px; word-break:break-all; }
.ci-sub{ font-size:12px; color:var(--muted-2); margin-top:2px; }
.ci-subline{ padding:10px 0 12px 14px; align-items:center; }
.ci-name-sm{ display:flex; align-items:center; gap:7px; font-size:13.5px; font-weight:600; color:var(--text); word-break:break-all; }
.ci-name-sm svg{ width:13px; height:13px; flex:0 0 13px; color:var(--gold); }
.ci-free{ color:#4ade80; font-size:12.5px; font-weight:600; }
/* year selector on domain result rows */
.dr-yr{ background:var(--bg-2); border:1px solid var(--border); border-radius:8px; color:var(--text); font-size:12.5px; padding:6px 8px; font-family:var(--font); margin-right:8px; }
.dr-act{ display:flex; align-items:center; gap:6px; justify-content:flex-end; }
.ci-price{ font-weight:700; font-size:14px; white-space:nowrap; }
.ci-rm{ background:transparent; border:none; color:var(--muted-2); font-size:20px; cursor:pointer; line-height:1; padding:0 2px; }
.ci-rm:hover{ color:#f87171; }
.ci-domain{ display:flex; gap:6px; margin-top:8px; grid-column:1 / -1; }
.ci-dom-input{ flex:1; min-width:0; background:var(--card); border:1px solid var(--border); border-radius:7px; color:var(--text); font-size:12.5px; padding:7px 9px; font-family:var(--font); }
.ci-dom-act{ background:var(--card); border:1px solid var(--border); border-radius:7px; color:var(--text); font-size:12px; padding:0 6px; font-family:var(--font); }

.cart-foot{ flex-shrink:0; border-top:1px solid var(--border); padding:16px 22px 20px; background:var(--bg); }
.cart-coupon{ display:flex; gap:8px; margin-bottom:6px; }
.cart-coupon input{ flex:1; min-width:0; background:var(--card); border:1px solid var(--border); border-radius:8px; color:var(--text); font-size:13px; padding:10px 12px; font-family:var(--font); }
.cart-coupon button{ background:transparent; border:1px solid var(--gold); color:var(--gold); border-radius:8px; padding:0 16px; font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; }
.cart-coupon button:hover{ background:var(--gold); color:#1a1204; }
.cart-coupon-msg{ font-size:12.5px; min-height:16px; margin-bottom:8px; color:var(--muted); }
.cart-coupon-msg.ok{ color:#4ade80; } .cart-coupon-msg.err{ color:#f87171; }
.cart-totals{ margin:8px 0 14px; }
.ct-row{ display:flex; justify-content:space-between; font-size:14px; padding:4px 0; color:var(--muted); }
.ct-row.ct-total{ font-size:17px; font-weight:800; color:var(--text); border-top:1px solid var(--border); margin-top:6px; padding-top:12px; }
.ct-discount{ color:#4ade80; }
.cart-note{ font-size:11px; color:var(--muted-2); text-align:center; margin-top:10px; }

/* checkout form (drawer + page) */
.co-sec{ margin-bottom:22px; }
.co-sec h4{ font-size:14px; font-weight:700; margin-bottom:14px; display:flex; align-items:center; gap:9px; }
.co-step{ width:22px; height:22px; border-radius:50%; background:var(--gold-grad); color:#1a1204; font-size:12px; font-weight:800; display:grid; place-items:center; }
.co-form .field{ margin-bottom:12px; }
.co-form label{ display:block; font-size:12.5px; color:var(--muted); margin-bottom:5px; }
.co-form input, .co-form select{ width:100%; background:var(--card); border:1px solid var(--border); border-radius:9px; color:var(--text); font-size:14px; padding:11px 13px; font-family:var(--font); }
.co-form input:focus, .co-form select:focus{ outline:none; border-color:var(--gold); }
.co-grid2{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.co-pay{ display:flex; flex-direction:column; gap:9px; }
.co-pay-loading{ color:var(--muted-2); font-size:13px; padding:8px 0; }
.co-pay-opt{ display:flex; align-items:center; justify-content:space-between; gap:12px; border:1px solid var(--border); border-radius:11px; padding:15px 18px; cursor:pointer; font-size:14.5px; transition:.18s; position:relative; }
.co-pay-opt:hover{ border-color:var(--gold); background:rgba(233,176,58,.06); }
.co-pay-opt input{ position:absolute; opacity:0; width:0; height:0; margin:0; pointer-events:none; }
.co-pay-opt span{ flex:1; }
.co-pay-opt.selected, .co-pay-opt:has(input:checked){ border-color:var(--gold); background:rgba(233,176,58,.09); box-shadow:0 0 0 1px var(--gold) inset; }
.co-terms{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--text); margin:18px 0 18px; }
.co-terms input{ width:18px; height:18px; flex:0 0 18px; accent-color:var(--gold); cursor:pointer; margin:0; }
.co-terms a{ color:var(--gold); font-weight:600; }
.co-error{ background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.35); color:#f87171; padding:11px 14px; border-radius:9px; font-size:13.5px; margin-bottom:14px; }
.co-submit{ position:relative; }
.co-spin{ display:inline-block; width:15px; height:15px; border:2px solid rgba(0,0,0,.3); border-top-color:#1a1204; border-radius:50%; animation:drspin .7s linear infinite; margin-left:8px; vertical-align:-2px; }

/* /checkout page */
.co-page .co-title{ font-size:clamp(26px,3.4vw,38px); font-weight:800; letter-spacing:-.5px; margin-bottom:26px; }
.co-layout{ display:grid; grid-template-columns:1.5fr 1fr; gap:34px; align-items:start; }
.co-main{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:28px; }
.co-summary{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:24px; position:sticky; top:100px; }
.co-summary h3{ font-size:16px; font-weight:700; margin-bottom:16px; }
.co-items{ margin-bottom:14px; }
.co-empty{ color:var(--muted); font-size:14px; } .co-empty a{ color:var(--gold); }
.co-continue{ display:inline-block; margin-top:14px; color:var(--gold); font-size:13.5px; }
@media (max-width:860px){ .co-layout{ grid-template-columns:1fr; } .co-summary{ position:static; order:-1; } }
@media (max-width:520px){ .co-grid2{ grid-template-columns:1fr; } }

/* toast */
.hp-toast{ position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(20px); background:#12100a; color:#fff; border:1px solid var(--gold); padding:12px 20px; border-radius:10px; font-size:14px; font-weight:600; z-index:1100; opacity:0; pointer-events:none; transition:.28s; box-shadow:0 12px 34px rgba(0,0,0,.4); }
.hp-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* multi-step checkout nav */
.co-steps{ display:flex; align-items:center; gap:0; margin-bottom:24px; }
.co-steps i{ flex:1; height:2px; background:var(--border); margin:0 4px; }
.co-stepdot{ width:32px; height:32px; border-radius:50%; display:grid; place-items:center; font-weight:700; font-size:14px; background:var(--card-2); color:var(--muted); border:1px solid var(--border); }
.co-stepdot.active{ background:var(--gold-grad); color:#1a1204; border-color:transparent; }
.co-navbtns{ display:flex; gap:12px; margin:8px 0 4px; }
.co-navbtns .co-next{ flex:1; justify-content:center; }

/* ============ AUTH (login modal + register page) ============ */
.auth-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:1200; backdrop-filter:blur(3px); animation:fadeIn .2s ease; }
.auth-modal{ position:fixed; top:50%; left:50%; transform:translate(-50%,-46%); width:400px; max-width:94vw; background:var(--bg-2); border:1px solid var(--border); border-radius:18px; padding:32px 30px; z-index:1201; opacity:0; visibility:hidden; transition:.25s; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.auth-modal.open{ opacity:1; visibility:visible; transform:translate(-50%,-50%); }
.auth-x{ position:absolute; top:14px; right:16px; background:transparent; border:none; color:var(--muted); font-size:26px; cursor:pointer; line-height:1; }
.auth-x:hover{ color:#fff; }
.auth-head{ text-align:center; margin-bottom:22px; }
.auth-logo{ width:52px; height:52px; margin:0 auto 14px; display:grid; place-items:center; background:var(--gold-grad); color:#1a1204; border-radius:14px; }
.auth-logo svg{ width:28px; height:28px; }
.auth-head h3{ font-size:21px; font-weight:800; margin-bottom:5px; }
.auth-head p{ color:var(--muted); font-size:14px; }
.auth-form .field{ margin-bottom:13px; }
.auth-form label{ display:block; font-size:12.5px; color:var(--muted); margin-bottom:5px; }
.auth-form input{ width:100%; background:var(--card); border:1px solid var(--border); border-radius:9px; color:var(--text); font-size:14px; padding:11px 13px; font-family:var(--font); }
.auth-form input:focus{ outline:none; border-color:var(--gold); }
.auth-error{ background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.35); color:#f87171; padding:10px 13px; border-radius:9px; font-size:13px; margin-bottom:12px; }
.auth-ok{ background:rgba(52,209,122,.1); border:1px solid rgba(52,209,122,.35); color:#34d17a; padding:10px 13px; border-radius:9px; font-size:13px; margin-bottom:12px; line-height:1.5; }
.auth-links{ display:flex; justify-content:space-between; margin-top:16px; font-size:13px; }
.auth-links a{ color:var(--gold); }
.tb-user{ display:inline-flex; align-items:center; gap:7px; color:var(--gold); font-weight:600; font-size:12.5px; padding:6px 12px; border:1px solid rgba(233,176,58,.3); border-radius:8px; transition:.2s; cursor:pointer; }
.tb-user:hover{ background:rgba(233,176,58,.12); border-color:var(--gold); }
.tb-user svg{ width:15px; height:15px; }

.auth-page{ max-width:640px; margin:0 auto; }
.auth-page-head{ text-align:center; margin-bottom:26px; }
.auth-page-head h1{ font-size:clamp(26px,3.4vw,38px); font-weight:800; letter-spacing:-.5px; }
.auth-page-sub{ color:var(--muted); margin-top:8px; } .auth-page-sub a{ color:var(--gold); }
.auth-card{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:30px; }

/* logged-in banner + "have account" prompt on checkout */
.co-loggedin{ display:flex; align-items:flex-start; gap:12px; background:rgba(52,209,122,.08); border:1px solid rgba(52,209,122,.3); border-radius:11px; padding:14px 16px; margin-bottom:20px; font-size:14px; }
.co-loggedin svg{ width:22px; height:22px; color:#34d17a; flex-shrink:0; }
.co-loggedin small{ color:var(--muted); }
@media (max-width:600px){ .co-loggedin{ display:none !important; } }  /* hide the logged-in banner on mobile */
.co-haveacct{ background:var(--card-2); border:1px solid var(--border); border-radius:10px; padding:12px 15px; margin-bottom:20px; font-size:13.5px; color:var(--muted); }
.co-haveacct a{ color:var(--gold); font-weight:600; }

/* coupon remove link */
.coupon-remove{ color:var(--muted-2) !important; text-decoration:underline; margin-left:6px; font-size:12px; }
.coupon-remove:hover{ color:#f87171 !important; }

/* payment radio spacing fix — clear gap between the dot and the label */
.co-submit{ margin-top:6px; }

/* ============ CONFIGURE (hosting domain step) ============ */
.cfg-title{ font-size:clamp(24px,3.2vw,36px); font-weight:800; letter-spacing:-.5px; margin-bottom:26px; }
.cfg-layout{ display:grid; grid-template-columns:1.6fr 1fr; gap:30px; align-items:start; }
.cfg-left{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:26px; }
.cfg-tabs{ display:flex; gap:8px; margin-bottom:22px; flex-wrap:wrap; }
.cfg-tab{ flex:1; min-width:140px; background:var(--card-2); border:1px solid var(--border); color:var(--muted); border-radius:10px; padding:12px 14px; font-size:13.5px; font-weight:600; cursor:pointer; font-family:var(--font); transition:.18s; }
.cfg-tab:hover{ color:var(--text); }
.cfg-tab.active{ background:var(--gold-grad); color:#1a1204; border-color:transparent; }
.cfg-hint{ color:var(--muted); font-size:14px; margin-bottom:16px; }
.cfg-search{ display:flex; gap:8px; margin-bottom:8px; }
.cfg-search input{ flex:1; min-width:0; background:var(--bg-2); border:1px solid var(--border); border-radius:10px; color:var(--text); font-size:15px; padding:12px 14px; font-family:var(--font); }
.cfg-search select{ background:var(--bg-2); border:1px solid var(--border); border-radius:10px; color:var(--text); font-size:14px; padding:0 10px; font-family:var(--font); }
.cfg-search .btn{ flex-shrink:0; }
.cfg-input{ width:100%; background:var(--bg-2); border:1px solid var(--border); border-radius:10px; color:var(--text); font-size:15px; padding:12px 14px; font-family:var(--font); }
.cfg-page .field label{ display:block; font-size:12.5px; color:var(--muted); margin-bottom:6px; }
.cfg-page .field{ margin-bottom:14px; }
.cfg-result{ margin-top:14px; font-size:15px; }
.cfg-result .dr-ok,.cfg-result .dr-taken,.cfg-result .dr-note{ padding:14px 16px; border-radius:11px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.cfg-result .dr-ok{ background:rgba(52,209,122,.1); border:1px solid rgba(52,209,122,.4); color:#4ade80; }
.cfg-result .dr-taken{ background:rgba(239,68,68,.08); border:1px solid rgba(239,68,68,.35); color:#f87171; }
.cfg-result .dr-note{ background:rgba(233,176,58,.08); border:1px solid var(--border); color:var(--muted); }
.cfg-result .dr-loading,.cfg-result .dr-warn{ color:var(--muted); }
.cfg-err{ background:rgba(239,68,68,.1); border:1px solid rgba(239,68,68,.35); color:#f87171; padding:10px 13px; border-radius:9px; font-size:13px; margin-top:12px; }
.cfg-summary{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:24px; position:sticky; top:100px; }
.cfg-brk{ margin-top:14px; border-top:1px solid var(--border); padding-top:14px; display:flex; flex-direction:column; gap:9px; }
.cfg-brk-row{ display:flex; align-items:center; justify-content:space-between; font-size:13.5px; color:var(--muted); }
.cfg-brk-row b{ color:var(--text); }
.cfg-strike{ text-decoration:line-through; color:var(--muted-2); }
.cfg-off{ color:#34d17a; font-weight:700; }
.cfg-brk-total{ border-top:1px dashed var(--border); padding-top:10px; margin-top:2px; font-size:15px; color:var(--text); }
.cfg-brk-total b{ color:var(--gold); font-size:18px; }
.cfg-summary h3{ font-size:16px; font-weight:700; margin-bottom:16px; }
.cfg-plan-name{ font-size:18px; font-weight:800; }
.cfg-plan-cycle{ color:var(--muted); font-size:13px; margin-top:4px; }
.cfg-plan-price{ font-size:24px; font-weight:800; color:var(--gold); margin-top:12px; }
.cfg-plan-price span{ font-size:12px; color:var(--muted); font-weight:500; }
.cfg-noplan{ text-align:center; padding:50px 20px; color:var(--muted); }
.cfg-noplan p{ margin-bottom:16px; }
@media (max-width:860px){
  .cfg-layout{ grid-template-columns:1fr; }
  .cfg-left, .cfg-summary{ min-width:0; }               /* let grid children shrink instead of overflowing */
  .cfg-summary{ position:static; order:-1; }
}
@media (max-width:600px){
  .cfg-left{ padding:18px 16px; }
  .cfg-tabs{ flex-direction:column; gap:8px; }
  .cfg-tab{ width:100%; min-width:0; flex:none; }
  .cfg-search{ flex-wrap:wrap; }
  .cfg-search input{ width:100%; min-width:0; }
  .cfg-search .btn{ width:100%; justify-content:center; }
  .dr-row{ padding:14px; }
  .dr-row.dr-primary{ padding:16px; }
  .dr-act{ display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
  .dr-act .dr-yr{ flex:1 1 120px; min-width:0; }
  .dr-act .btn{ flex:1 1 auto; }
}

/* ============ WHMCS BRIDGE / CLIENT PORTAL ============ */
.portal-wrap{ background:var(--bg); }
.portal-frame-wrap{ position:relative; width:100%; background:var(--bg); }
/* JS sets the exact height from the WHMCS footer snippet so only the page scrolls (no inner scrollbar).
   The default is a fallback for when the snippet isn't installed yet. */
#portalFrame{ display:block; width:100%; height:calc(100vh - 140px); min-height:720px; border:0; background:#fff; overflow:hidden; }
.portal-loading{ position:absolute; top:0; left:0; right:0; display:flex; align-items:center; justify-content:center; gap:10px; padding:40px; color:var(--muted); font-size:15px; }
/* sign-in gate */
.portal-gate{ min-height:70vh; display:grid; place-items:center; padding:50px 20px; }
.portal-gate-card{ max-width:420px; width:100%; text-align:center; background:var(--card); border:1px solid var(--border); border-radius:18px; padding:40px 34px; }
.portal-gate-card .auth-logo{ margin:0 auto 18px; }
.portal-gate-card h2{ font-size:22px; font-weight:800; margin-bottom:8px; }
.portal-gate-card p{ color:var(--muted); font-size:14.5px; margin-bottom:22px; }
.portal-gate-card .btn{ width:100%; justify-content:center; }
.portal-gate-sub{ margin:18px 0 0 !important; font-size:13px; }
.portal-gate-sub a{ color:var(--gold); }

/* portal embed-failure help */
.portal-help{ position:absolute; inset:0; display:grid; place-items:center; padding:40px 20px; background:var(--bg); z-index:2; }
.portal-help-card{ max-width:640px; background:var(--card); border:1px solid var(--border); border-radius:16px; padding:32px; }
.portal-help-card h3{ font-size:19px; font-weight:800; margin-bottom:12px; color:var(--gold); }
.portal-help-card p{ color:var(--muted); font-size:14.5px; margin-bottom:14px; }
.portal-help-card ol{ margin:0 0 20px 18px; color:var(--muted); font-size:14px; line-height:1.7; }
.portal-help-card code.pc{ display:block; background:#000; color:#8fd3ff; padding:9px 12px; border-radius:7px; margin:8px 0; font-size:12px; word-break:break-all; }
.portal-help-card code:not(.pc){ background:rgba(255,255,255,.06); padding:1px 6px; border-radius:4px; color:var(--gold-2); }

/* ============================================================
   1-CLICK APP INSTALLS — sliding logo marquee (homepage)
   ============================================================ */
.apps-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(1100px 300px at 50% -10%, rgba(233,176,58,.10), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
:root[data-theme="light"] .apps-section{
  background:
    radial-gradient(1100px 300px at 50% -10%, rgba(233,176,58,.14), transparent 70%),
    linear-gradient(180deg, #ffffff, var(--bg));
  border-color:rgba(0,0,0,.06);
}
.apps-head{ text-align:center; }
.apps-tag{ display:inline-flex; align-items:center; gap:7px; justify-content:center; }
.apps-tag svg{ width:15px; height:15px; }
.apps-hl{ color:var(--gold); }
:root[data-theme="light"] .apps-hl{ color:var(--gold-deep); }

.apps-marquee{
  position:relative;
  margin-top:34px;
  display:flex;
  flex-direction:column;
  gap:22px;
  /* fade both edges */
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image:linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.apps-row{ overflow:hidden; }
.apps-track{
  display:flex;
  width:max-content;
  gap:22px;
  animation:apps-scroll var(--apps-speed,36s) linear infinite;
  will-change:transform;
}
.apps-track.rev{ animation-direction:reverse; }
.apps-marquee:hover .apps-track{ animation-play-state:paused; }
.apps-group{ display:flex; gap:22px; padding-left:0; }

.apps-logo{
  flex:0 0 auto;
  width:96px; height:96px;
  display:grid; place-items:center;
  background:#fff;
  border-radius:20px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 26px -14px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.6);
  transition:transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s, border-color .28s;
}
.apps-logo img{
  width:58px; height:58px; object-fit:contain;
  filter:saturate(1.02);
  transition:transform .28s cubic-bezier(.2,.7,.3,1);
}
.apps-logo:hover{
  transform:translateY(-7px);
  border-color:rgba(233,176,58,.55);
  box-shadow:0 20px 40px -16px rgba(233,176,58,.5), 0 0 0 3px rgba(233,176,58,.16);
}
.apps-logo:hover img{ transform:scale(1.08); }

@keyframes apps-scroll{
  from{ transform:translateX(0); }
  to  { transform:translateX(-50%); }
}
@media (max-width:640px){
  .apps-marquee{ margin-top:26px; gap:16px; }
  .apps-track, .apps-group{ gap:16px; }
  .apps-logo{ width:76px; height:76px; border-radius:17px; }
  .apps-logo img{ width:46px; height:46px; }
}
@media (prefers-reduced-motion:reduce){
  .apps-track{ animation:none; }
  .apps-row{ overflow-x:auto; }
}

/* ============================================================
   TRUST / TRANSPARENCY — premium conversion grid (homepage)
   ============================================================ */
.trust-section{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1000px 380px at 50% -8%, rgba(233,176,58,.12), transparent 66%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top:1px solid rgba(255,255,255,.05);
}
:root[data-theme="light"] .trust-section{
  background:
    radial-gradient(1000px 380px at 50% -8%, rgba(233,176,58,.16), transparent 66%),
    linear-gradient(180deg, #fff, var(--bg));
  border-color:rgba(0,0,0,.06);
}
.trust-head{ max-width:760px; margin:0 auto 44px; text-align:center; }
.trust-tag{ display:inline-flex; align-items:center; gap:8px; justify-content:center; }
.trust-tag svg{ width:16px; height:16px; }
.trust-title{
  font-size:clamp(30px,4.4vw,50px); font-weight:850; line-height:1.06;
  letter-spacing:-1.2px; margin:8px 0 18px; color:var(--text);
}
.trust-text{ color:var(--muted); font-size:16px; line-height:1.7; margin:0 auto 26px; max-width:640px; }
.trust-btn{ font-size:14.5px; }
.trust-btn svg{ width:18px; height:18px; margin-left:3px; }

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.trust-card{
  --acc:#f6ce6a;              /* per-card accent (set below) */
  position:relative; overflow:hidden;
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:30px 28px 32px;
  transition:transform .32s cubic-bezier(.2,.7,.3,1), border-color .32s, box-shadow .32s, background .32s;
}
/* each card gets its own vibrant accent */
.trust-card:nth-child(1){ --acc:#f6ce6a; }   /* gold   */
.trust-card:nth-child(2){ --acc:#54b8f5; }   /* sky    */
.trust-card:nth-child(3){ --acc:#3ed6a0; }   /* emerald*/
.trust-card:nth-child(4){ --acc:#b192f9; }   /* violet */
.trust-card:nth-child(5){ --acc:#fb7091; }   /* rose   */
.trust-card:nth-child(6){ --acc:#fb9a3c; }   /* orange */
:root[data-theme="light"] .trust-card{ border-color:rgba(0,0,0,.08); box-shadow:0 8px 24px -18px rgba(0,0,0,.3); }
/* soft accent glow that appears on hover */
.trust-card::after{
  content:""; position:absolute; right:-30px; top:-30px; width:150px; height:150px; border-radius:50%;
  background:radial-gradient(circle, color-mix(in srgb, var(--acc) 22%, transparent), transparent 70%);
  opacity:0; transition:opacity .4s; pointer-events:none;
}
/* gradient accent line that grows on hover */
.trust-card::before{
  content:""; position:absolute; top:0; left:0; height:3px; width:0; z-index:1;
  background:linear-gradient(90deg, var(--acc), color-mix(in srgb, var(--acc) 35%, transparent));
  transition:width .4s cubic-bezier(.2,.7,.3,1);
}
.trust-card:hover{
  transform:translateY(-7px);
  border-color:color-mix(in srgb, var(--acc) 50%, transparent);
  background:linear-gradient(170deg, var(--card-2), var(--card));
  box-shadow:0 28px 52px -26px color-mix(in srgb, var(--acc) 55%, transparent);
}
.trust-card:hover::before{ width:100%; }
.trust-card:hover::after{ opacity:1; }

.trust-ic{
  display:grid; place-items:center;
  width:70px; height:70px; border-radius:20px; margin-bottom:22px;
  color:var(--acc);
  background-color:rgba(255,255,255,.04);
  background-image:radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--acc) 34%, transparent), color-mix(in srgb, var(--acc) 8%, transparent));
  border:1px solid color-mix(in srgb, var(--acc) 40%, transparent);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14), 0 12px 28px -16px color-mix(in srgb, var(--acc) 70%, transparent);
  transition:transform .32s cubic-bezier(.2,.7,.3,1), box-shadow .32s;
}
.trust-ic svg{ width:36px; height:36px; }
.trust-card:hover .trust-ic{ transform:scale(1.08) rotate(-4deg); box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 16px 34px -14px color-mix(in srgb, var(--acc) 85%, transparent); }
.trust-card h3{ font-size:20px; font-weight:800; letter-spacing:-.4px; margin-bottom:10px; color:var(--text); }
.trust-card h3{ font-size:20px; font-weight:800; letter-spacing:-.4px; margin-bottom:10px; color:var(--text); }
.trust-card p{ color:var(--muted); font-size:14.5px; line-height:1.68; margin:0; }

@media (max-width:900px){
  .trust-grid{ grid-template-columns:repeat(2, 1fr); gap:16px; }
  .trust-head{ margin-bottom:34px; }
}
@media (max-width:560px){
  .trust-grid{ grid-template-columns:1fr; }
  .trust-card{ padding:26px 22px 28px; border-radius:19px; }
  .trust-ic{ width:62px; height:62px; border-radius:18px; margin-bottom:18px; }
  .trust-ic svg{ width:32px; height:32px; }
}

/* ============================================================
   "WHAT IS / WHY PREMIUM" SEO block + comparison table (homepage)
   ============================================================ */
.info-section{
  position:relative; overflow:hidden;
  background:linear-gradient(180deg, var(--bg), var(--bg-2));
}
.info-box{
  max-width:920px; margin:0 auto; text-align:center;
  padding:clamp(30px,5vw,56px) clamp(22px,5vw,60px);
  border-radius:28px;
  border:1px solid rgba(233,176,58,.16);
  background:
    radial-gradient(700px 260px at 50% -10%, rgba(233,176,58,.12), transparent 70%),
    linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow:0 40px 80px -50px rgba(0,0,0,.7);
}
:root[data-theme="light"] .info-box{ border-color:rgba(233,176,58,.28); box-shadow:0 30px 60px -44px rgba(0,0,0,.25); }
.info-tag{
  display:inline-block; font-size:12px; font-weight:800; letter-spacing:1.6px; text-transform:uppercase;
  color:var(--gold); padding:6px 14px; border-radius:999px; margin-bottom:16px;
  background:var(--gold-grad-soft); border:1px solid rgba(233,176,58,.28);
}
.info-title{ font-size:clamp(26px,3.6vw,40px); font-weight:850; letter-spacing:-1px; line-height:1.1; margin-bottom:20px; color:var(--text); }
.info-body p{ color:var(--muted); font-size:16px; line-height:1.8; margin:0 auto 15px; max-width:760px; }
.info-body p:last-child{ margin-bottom:0; }

.cmp-h{ margin-top:clamp(48px,7vw,80px); }
.cmp2-wrap{
  margin-top:30px; border-radius:20px; overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  overflow-x:auto; -webkit-overflow-scrolling:touch;
}
:root[data-theme="light"] .cmp2-wrap{ border-color:rgba(0,0,0,.09); }
.cmp2{ width:100%; min-width:620px; border-collapse:collapse; font-size:15px; }
.cmp2 th, .cmp2 td{ padding:17px 22px; text-align:left; vertical-align:middle; }
.cmp2 thead th{
  background:var(--card-2); color:var(--text); font-weight:800; font-size:14px; letter-spacing:.2px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
:root[data-theme="light"] .cmp2 thead th{ border-bottom-color:rgba(0,0,0,.08); }
.cmp2 tbody tr{ border-bottom:1px solid rgba(255,255,255,.055); transition:background .2s; }
:root[data-theme="light"] .cmp2 tbody tr{ border-bottom-color:rgba(0,0,0,.06); }
.cmp2 tbody tr:last-child{ border-bottom:none; }
.cmp2 tbody tr:hover{ background:rgba(255,255,255,.03); }
:root[data-theme="light"] .cmp2 tbody tr:hover{ background:rgba(0,0,0,.02); }
.cmp2 td.c-feat{ font-weight:700; color:var(--text); }
.cmp2 td.c-ord{ color:var(--muted); }
.cmp2 td.c-ord, .cmp2 td.c-us{ white-space:nowrap; }
/* highlighted "ours" column */
.cmp2 .c-us{
  background:linear-gradient(180deg, color-mix(in srgb, var(--gold) 12%, transparent), color-mix(in srgb, var(--gold) 5%, transparent));
  border-left:1px solid rgba(233,176,58,.2);
  color:var(--text); font-weight:600;
}
.cmp2 thead th.c-us{ background:var(--gold-grad); color:#1a1204; border-left:none; }
.c-us-badge{ display:inline-flex; align-items:center; gap:8px; font-weight:800; }
.c-us-badge svg{ width:17px; height:17px; }
/* check / cross icons */
.v-ic, .x-ic{ display:inline-grid; place-items:center; width:22px; height:22px; border-radius:7px; margin-right:10px; vertical-align:-6px; }
.v-ic{ color:#2fbd7e; background:rgba(47,189,126,.14); border:1px solid rgba(47,189,126,.3); }
.v-ic svg{ width:14px; height:14px; }
.x-ic{ color:#e46a7b; background:rgba(228,106,123,.12); border:1px solid rgba(228,106,123,.26); }
.x-ic svg{ width:13px; height:13px; }

@media (max-width:560px){
  .info-body p{ font-size:15px; line-height:1.75; }
  .cmp2 th, .cmp2 td{ padding:14px 16px; }
}

/* ============================================================
   "HOW TO LAUNCH" — numbered steps section (homepage)
   ============================================================ */
.steps-section{ position:relative; overflow:hidden; padding-top:0; }
.steps-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:22px;
  margin-top:38px;
}
.step-card{
  --acc:#f6ce6a;
  position:relative;
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:30px 26px 28px;
  transition:transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s, background .3s;
}
:root[data-theme="light"] .step-card{ border-color:rgba(0,0,0,.08); box-shadow:0 8px 24px -18px rgba(0,0,0,.3); }
.step-card:nth-child(4n+1){ --acc:#f6ce6a; }
.step-card:nth-child(4n+2){ --acc:#54b8f5; }
.step-card:nth-child(4n+3){ --acc:#3ed6a0; }
.step-card:nth-child(4n+4){ --acc:#b192f9; }
.step-card:hover{
  transform:translateY(-6px);
  border-color:color-mix(in srgb, var(--acc) 50%, transparent);
  background:linear-gradient(170deg, var(--card-2), var(--card));
  box-shadow:0 26px 50px -26px color-mix(in srgb, var(--acc) 55%, transparent);
}
/* connecting line between steps (desktop only) */
.step-card:not(:last-child)::after{
  content:""; position:absolute; top:52px; right:-22px; width:22px; height:2px; z-index:1;
  background:linear-gradient(90deg, color-mix(in srgb, var(--acc) 55%, transparent), transparent);
}
.step-num{
  display:grid; place-items:center;
  width:52px; height:52px; border-radius:50%; margin-bottom:22px;
  font-size:22px; font-weight:850; color:#1a1204;
  background:linear-gradient(135deg, color-mix(in srgb, var(--acc) 92%, #fff), var(--acc));
  box-shadow:0 12px 26px -12px color-mix(in srgb, var(--acc) 90%, transparent), inset 0 1px 0 rgba(255,255,255,.5);
}
.step-card h3{ font-size:19px; font-weight:800; letter-spacing:-.3px; margin-bottom:9px; color:var(--text); }
.step-card p{ color:var(--muted); font-size:14px; line-height:1.65; margin:0; }

.steps-cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:38px; }
.steps-cta .btn svg{ width:17px; height:17px; margin-left:3px; }

@media (max-width:900px){
  .steps-grid{ grid-template-columns:repeat(2, 1fr); gap:16px; }
  .step-card:not(:last-child)::after{ display:none; }
}
@media (max-width:520px){
  .steps-grid{ grid-template-columns:1fr; }
  .steps-cta .btn{ width:100%; justify-content:center; }
}

/* ============================================================
   "TOP USE CASES" — homepage grid (above Data Centers)
   ============================================================ */
.uc-section{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1000px 360px at 50% -8%, rgba(233,176,58,.09), transparent 66%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.uc-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-top:40px;
}
.uc-card{
  --acc:#f6ce6a;
  position:relative; overflow:hidden;
  display:flex; gap:18px; align-items:flex-start;
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:26px 24px;
  transition:transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s, background .3s;
}
:root[data-theme="light"] .uc-card{ border-color:rgba(0,0,0,.08); box-shadow:0 8px 24px -18px rgba(0,0,0,.3); }
.uc-card:nth-child(1){ --acc:#f6ce6a; }
.uc-card:nth-child(2){ --acc:#54b8f5; }
.uc-card:nth-child(3){ --acc:#3ed6a0; }
.uc-card:nth-child(4){ --acc:#b192f9; }
.uc-card:nth-child(5){ --acc:#fb7091; }
.uc-card:nth-child(6){ --acc:#fb9a3c; }
.uc-card:nth-child(7){ --acc:#22d3ee; }
.uc-card:nth-child(8){ --acc:#a3e635; }
.uc-card:nth-child(9){ --acc:#f472b6; }
.uc-card:hover{
  transform:translateY(-6px);
  border-color:color-mix(in srgb, var(--acc) 48%, transparent);
  background:linear-gradient(168deg, var(--card-2), var(--card));
  box-shadow:0 26px 50px -26px color-mix(in srgb, var(--acc) 55%, transparent);
}
.uc-ic{
  flex-shrink:0; display:grid; place-items:center;
  width:56px; height:56px; border-radius:15px;
  color:var(--acc);
  background-color:rgba(255,255,255,.04);
  background-image:radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--acc) 32%, transparent), color-mix(in srgb, var(--acc) 8%, transparent));
  border:1px solid color-mix(in srgb, var(--acc) 40%, transparent);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px -14px color-mix(in srgb, var(--acc) 70%, transparent);
  transition:transform .3s cubic-bezier(.2,.7,.3,1);
}
.uc-ic svg{ width:28px; height:28px; }
.uc-card:hover .uc-ic{ transform:scale(1.08) rotate(-4deg); }
.uc-card h3{ font-size:16.5px; font-weight:800; letter-spacing:-.3px; margin-bottom:7px; color:var(--text); line-height:1.25; }
.uc-card p{ color:var(--muted); font-size:13.5px; line-height:1.6; margin:0; }
.uc-cta{ display:flex; justify-content:center; margin-top:38px; }
.uc-cta .btn svg{ width:17px; height:17px; margin-left:3px; }

@media (max-width:900px){ .uc-grid{ grid-template-columns:repeat(2, 1fr); gap:16px; } }
@media (max-width:560px){
  .uc-grid{ grid-template-columns:1fr; }
  .uc-cta .btn{ width:100%; justify-content:center; }
}

/* ============================================================
   HOMEPAGE FAQ — premium accordion (below reviews)
   ============================================================ */
.home-faq{
  position:relative; overflow:hidden;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(233,176,58,.09), transparent 68%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.home-faq .faq-list{ max-width:840px; margin-top:38px; gap:16px; }
.home-faq .faq{
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:var(--card);
  transition:border-color .3s, background .3s, box-shadow .3s, transform .3s;
}
:root[data-theme="light"] .home-faq .faq{ border-color:rgba(0,0,0,.08); box-shadow:0 6px 20px -16px rgba(0,0,0,.3); }
.home-faq .faq:hover{ border-color:rgba(233,176,58,.34); }
.home-faq .faq.open{
  border-color:rgba(233,176,58,.5);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--gold) 10%, transparent), transparent 30%),
    linear-gradient(170deg, var(--card-2), var(--card));
  box-shadow:0 22px 46px -28px rgba(233,176,58,.5);
}
.home-faq .faq-q{
  padding:22px 24px; font-size:16.5px; font-weight:700; letter-spacing:-.2px; gap:18px; align-items:center;
}
.home-faq .faq.open .faq-q{ color:var(--gold-2); }
.home-faq .faq-q svg{
  width:34px; height:34px; padding:7px; box-sizing:border-box; border-radius:10px; color:var(--gold);
  background:var(--gold-grad-soft); border:1px solid rgba(233,176,58,.32);
  transition:transform .35s cubic-bezier(.2,.7,.3,1), background .3s, color .3s;
}
.home-faq .faq.open .faq-q svg{ transform:rotate(135deg); background:var(--gold-grad); color:#1a1204; }
.home-faq .faq-a p{ padding:0 24px 22px; font-size:14.5px; line-height:1.75; }
@media (max-width:560px){
  .home-faq .faq-q{ padding:18px 18px; font-size:15px; gap:12px; }
  .home-faq .faq-q svg{ width:30px; height:30px; }
}

/* ============================================================
   "WHAT IS ..." intro block + stats (hosting pages)
   ============================================================ */
.wi-section{ position:relative; overflow:hidden; background:linear-gradient(180deg, var(--bg), var(--bg-2)); }
.wi-wrap{ display:grid; grid-template-columns:1.35fr 1fr; gap:44px; align-items:center; }
.wi-title{ font-size:clamp(26px,3.4vw,38px); font-weight:850; letter-spacing:-.8px; line-height:1.12; margin:8px 0 18px; color:var(--text); }
.wi-body p{ color:var(--muted); font-size:15.5px; line-height:1.8; margin:0 0 14px; }
.wi-body p:last-child{ margin-bottom:0; }
.wi-stats{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.wi-stat{
  position:relative; overflow:hidden;
  background:linear-gradient(165deg, var(--card-2), var(--card));
  border:1px solid rgba(233,176,58,.18); border-radius:18px;
  padding:26px 20px; text-align:center;
  transition:transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
}
.wi-stat:hover{ transform:translateY(-5px); border-color:rgba(233,176,58,.45); box-shadow:0 22px 44px -26px rgba(233,176,58,.5); }
.wi-stat b{ display:block; font-size:30px; font-weight:850; letter-spacing:-1px; line-height:1;
  background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.wi-stat span{ display:block; margin-top:8px; font-size:12.5px; color:var(--muted); font-weight:600; }
@media (max-width:820px){ .wi-wrap{ grid-template-columns:1fr; gap:30px; } }
@media (max-width:400px){ .wi-stats{ grid-template-columns:1fr; } }

/* ============================================================
   PLAN COMPARISON table — premium (hosting pages)
   ============================================================ */
.pcmp-wrap{
  margin-top:38px; border-radius:24px; padding:6px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, var(--card-2), var(--card));
  overflow-x:auto; -webkit-overflow-scrolling:touch;
}
:root[data-theme="light"] .pcmp-wrap{ border-color:rgba(0,0,0,.08); box-shadow:0 20px 50px -34px rgba(0,0,0,.35); }
.pcmp{ width:100%; min-width:680px; border-collapse:separate; border-spacing:0; }
.pcmp th, .pcmp td{ padding:15px 22px; text-align:center; border-bottom:1px solid rgba(255,255,255,.06); }
:root[data-theme="light"] .pcmp th, :root[data-theme="light"] .pcmp td{ border-bottom-color:rgba(0,0,0,.06); }
.pcmp tbody tr:last-child td{ border-bottom:none; }

/* feature (left) column */
.pcmp .pc-feat{ text-align:left; font-weight:700; color:var(--text); white-space:nowrap; font-size:14px; }
.pc-corner{ font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--muted-2); }
.pcmp tbody .pc-feat{ background:rgba(255,255,255,.015); }
:root[data-theme="light"] .pcmp tbody .pc-feat{ background:rgba(0,0,0,.015); }

/* plan header */
.pcmp thead th{ vertical-align:top; padding:26px 22px 22px; position:relative; }
.pc-ic{ display:inline-grid; place-items:center; width:46px; height:46px; border-radius:13px; margin-bottom:12px;
  color:var(--gold); background:var(--gold-grad-soft); border:1px solid rgba(233,176,58,.28); }
.pc-ic svg{ width:24px; height:24px; }
.pc-name{ display:block; font-size:15px; font-weight:800; letter-spacing:.3px; text-transform:uppercase; color:var(--text); }
.pc-price{ display:block; margin-top:8px; font-size:26px; font-weight:850; letter-spacing:-.6px;
  background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.pc-price small{ -webkit-text-fill-color:var(--muted); font-size:12px; font-weight:600; }

/* value cells */
.pcmp td .pc-v{ display:inline-grid; place-items:center; width:20px; height:20px; border-radius:6px; margin-right:9px; vertical-align:-5px;
  color:#2fbd7e; background:rgba(47,189,126,.16); border:1px solid rgba(47,189,126,.32); }
.pcmp td .pc-v svg{ width:12px; height:12px; }
.pcmp td .pc-txt{ font-size:13.8px; font-weight:600; color:var(--text); }
.pc-x{ color:var(--muted-2); }
.pcmp tbody tr:hover td{ background:rgba(255,255,255,.025); }
:root[data-theme="light"] .pcmp tbody tr:hover td{ background:rgba(0,0,0,.02); }

/* featured column — highlighted & elevated as a premium raised card */
.pcmp .pc-hot{ background:linear-gradient(180deg, color-mix(in srgb, var(--gold) 15%, transparent), color-mix(in srgb, var(--gold) 5%, transparent));
  box-shadow:inset 1.5px 0 0 color-mix(in srgb, var(--gold) 45%, transparent), inset -1.5px 0 0 color-mix(in srgb, var(--gold) 45%, transparent); }
.pcmp thead th.pc-hot{
  border-top-left-radius:20px; border-top-right-radius:20px;
  padding-top:38px;
  background:linear-gradient(180deg, color-mix(in srgb, var(--gold) 34%, var(--card-2)), color-mix(in srgb, var(--gold) 9%, var(--card)));
  box-shadow:inset 1.5px 0 0 color-mix(in srgb, var(--gold) 55%, transparent), inset -1.5px 0 0 color-mix(in srgb, var(--gold) 55%, transparent), inset 0 3px 0 var(--gold), 0 -14px 34px -20px color-mix(in srgb, var(--gold) 90%, transparent);
}
.pcmp tbody tr:hover .pc-hot{ background:color-mix(in srgb, var(--gold) 17%, transparent); }
.pcmp .pc-hot .pc-ic{ background:var(--gold-grad); color:#1a1204; border-color:transparent; box-shadow:0 8px 20px -10px color-mix(in srgb, var(--gold) 90%, transparent); }
.pcmp .pc-hot .pc-name{ color:var(--gold); }

/* premium "Most Popular" badge — crown icon + glow + shimmer */
.pc-ribbon{ position:absolute; top:0; left:50%; transform:translate(-50%,-52%);
  display:inline-flex; align-items:center; gap:6px; z-index:2;
  font-size:10.5px; font-weight:900; letter-spacing:1.3px; text-transform:uppercase; color:#1a1204;
  background:var(--gold-grad); padding:7px 15px 7px 12px; border-radius:999px; white-space:nowrap;
  border:1.5px solid color-mix(in srgb, #fff 52%, var(--gold));
  box-shadow:0 10px 26px -8px color-mix(in srgb, var(--gold) 95%, transparent), 0 0 0 4px color-mix(in srgb, var(--gold) 13%, transparent);
  overflow:hidden; }
.pc-ribbon svg{ width:13px; height:13px; flex:none; }
.pc-ribbon::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(110deg, transparent 22%, rgba(255,255,255,.7) 50%, transparent 78%);
  transform:translateX(-130%); animation:pcShimmer 3.6s ease-in-out infinite; }
@keyframes pcShimmer{ 0%,58%{ transform:translateX(-130%); } 100%{ transform:translateX(130%); } }
@media (prefers-reduced-motion: reduce){ .pc-ribbon::after{ animation:none; display:none; } }

.pc-cta-row td{ padding-top:22px; padding-bottom:24px; }
.pcmp .pc-cta-row .pc-hot{ border-bottom-left-radius:20px; border-bottom-right-radius:20px;
  box-shadow:inset 1.5px 0 0 color-mix(in srgb, var(--gold) 45%, transparent), inset -1.5px 0 0 color-mix(in srgb, var(--gold) 45%, transparent), inset 0 -1.5px 0 color-mix(in srgb, var(--gold) 45%, transparent); }
.pcmp .btn-sm{ white-space:nowrap; }

/* ===== Announcement bar (site-wide promo) ===== */
.announce-bar{ font-size:13.5px; font-weight:600; }
.announce-inner{ position:relative; display:flex; align-items:center; justify-content:center; gap:14px; padding:9px 44px; flex-wrap:wrap; }
.announce-cta{ display:inline-flex; align-items:center; gap:5px; font-weight:800; text-decoration:underline; text-underline-offset:3px; white-space:nowrap; }
.announce-cta svg{ width:14px; height:14px; }
.announce-x{ position:absolute; right:14px; top:50%; transform:translateY(-50%); background:none; border:0; font-size:22px; line-height:1; cursor:pointer; opacity:.65; }
.announce-x:hover{ opacity:1; }
@media(max-width:640px){ .announce-x{ display:none; } .announce-inner{ padding:9px 16px; } }

/* ===== Deals / promotions ===== */
.deals-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; max-width:1120px; margin:0 auto; }
.deal-card{ position:relative; background:linear-gradient(180deg,var(--card-2),var(--card)); border:1px solid var(--border); border-radius:18px; padding:26px 24px; display:flex; flex-direction:column; transition:.25s; overflow:hidden; }
.deal-card:hover{ transform:translateY(-4px); border-color:color-mix(in srgb,var(--gold) 45%,transparent); box-shadow:0 24px 50px -30px color-mix(in srgb,var(--gold) 60%,transparent); }
.deal-ribbon{ position:absolute; top:16px; right:-36px; transform:rotate(45deg); background:var(--gold-grad); color:#1a1204; font-size:10px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; padding:5px 42px; }
.deal-disc{ font-size:30px; font-weight:850; letter-spacing:-1px; line-height:1; background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:8px; }
.deal-title{ font-size:19px; font-weight:800; margin:0 0 8px; color:var(--text); }
.deal-desc{ color:var(--muted); font-size:14px; line-height:1.6; margin:0 0 18px; flex:1; }
.deal-code{ display:flex; align-items:center; gap:10px; background:color-mix(in srgb,var(--gold) 10%,transparent); border:1px dashed color-mix(in srgb,var(--gold) 45%,transparent); border-radius:10px; padding:10px 12px; margin-bottom:18px; }
.dc-label{ font-size:11px; text-transform:uppercase; letter-spacing:.5px; color:var(--muted-2); }
.dc-val{ font-weight:800; letter-spacing:1px; color:var(--gold); flex:1; }
.dc-copy{ background:var(--gold-grad); color:#1a1204; border:0; border-radius:7px; padding:6px 13px; font-weight:700; font-size:12px; cursor:pointer; }
.deal-foot{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.deal-exp{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; color:var(--muted); }
.deal-exp svg{ width:14px; height:14px; color:var(--gold); }

/* ===== Blog toolbar / pagination ===== */
.blog-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; margin-bottom:30px; }
.blog-search{ display:flex; align-items:center; gap:8px; background:var(--card); border:1px solid var(--border); border-radius:12px; padding:6px 8px 6px 14px; flex:1; min-width:240px; max-width:440px; }
.blog-search svg{ width:18px; height:18px; color:var(--muted); flex:none; }
.blog-search input{ flex:1; background:none; border:0; color:var(--text); font-size:14px; outline:none; }
.blog-cats{ display:flex; gap:8px; flex-wrap:wrap; }
.blog-cat{ padding:7px 14px; border-radius:20px; background:var(--card); border:1px solid var(--border); color:var(--muted); font-size:13px; font-weight:600; transition:.2s; }
.blog-cat:hover{ color:var(--gold); border-color:color-mix(in srgb,var(--gold) 40%,transparent); }
.blog-cat.active{ background:var(--gold-grad); color:#1a1204; border-color:transparent; }
.blog-cat span{ opacity:.6; font-size:11px; }
.blog-result{ color:var(--muted); margin-bottom:20px; }
.blog-pager{ display:flex; justify-content:center; gap:8px; margin-top:44px; flex-wrap:wrap; }
.blog-pager .pg{ min-width:42px; text-align:center; padding:9px 14px; border-radius:10px; background:var(--card); border:1px solid var(--border); color:var(--muted); font-weight:600; font-size:14px; transition:.2s; }
.blog-pager .pg:hover{ color:var(--gold); border-color:color-mix(in srgb,var(--gold) 40%,transparent); }
.blog-pager .pg.active{ background:var(--gold-grad); color:#1a1204; border-color:transparent; }

/* ===== Single post: tags, share, author ===== */
.post-tags{ display:flex; gap:8px; flex-wrap:wrap; }
.post-tagchip{ padding:5px 12px; border-radius:20px; background:color-mix(in srgb,var(--gold) 9%,transparent); border:1px solid color-mix(in srgb,var(--gold) 30%,transparent); color:var(--gold); font-size:12.5px; font-weight:600; }
.post-share{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ps-label{ font-weight:700; color:var(--muted); font-size:13.5px; }
.ps-btn{ display:inline-grid; place-items:center; width:38px; height:38px; border-radius:10px; background:var(--card); border:1px solid var(--border); color:var(--muted); cursor:pointer; transition:.2s; }
.ps-btn:hover{ color:var(--gold); border-color:color-mix(in srgb,var(--gold) 45%,transparent); transform:translateY(-2px); }
.ps-btn svg{ width:17px; height:17px; }
.ps-copy.copied{ color:#2fbd7e; border-color:#2fbd7e; }
.author-box{ display:flex; gap:16px; align-items:flex-start; background:var(--card); border:1px solid var(--border); border-radius:16px; padding:20px 22px; }
.author-ava{ width:56px; height:56px; border-radius:50%; object-fit:cover; flex:none; }
.author-ava-ph{ display:grid; place-items:center; background:var(--gold-grad); color:#1a1204; font-weight:800; font-size:22px; }
.author-name{ font-weight:800; font-size:16px; margin-bottom:4px; color:var(--text); }
.author-bio{ color:var(--muted); font-size:14px; line-height:1.6; margin:0; }

/* ===== Accessibility: skip link + visible focus ===== */
.skip-link{ position:absolute; left:-9999px; top:0; z-index:2000; background:var(--gold-grad); color:#1a1204; font-weight:700; padding:10px 18px; border-radius:0 0 10px 0; }
.skip-link:focus{ left:0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible{
  outline:3px solid color-mix(in srgb, var(--gold) 70%, transparent); outline-offset:2px; border-radius:6px;
}
main:focus{ outline:none; }

/* ===== Cookie consent banner ===== */
.cookie-bar{ position:fixed; z-index:1400; background:var(--card-2); border:1px solid var(--border); border-radius:16px; box-shadow:0 24px 60px -24px rgba(0,0,0,.7); padding:18px 20px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.cookie-bottom{ left:50%; transform:translateX(-50%); bottom:20px; max-width:900px; width:calc(100% - 32px); }
.cookie-bottom-left{ left:20px; bottom:20px; max-width:400px; flex-direction:column; align-items:flex-start; }
.cookie-bottom-right{ right:20px; bottom:20px; max-width:400px; flex-direction:column; align-items:flex-start; }
.cookie-txt{ flex:1; color:var(--muted); font-size:13.5px; line-height:1.6; margin:0; min-width:220px; }
.cookie-txt a{ color:var(--gold); text-decoration:underline; text-underline-offset:2px; }
.cookie-btns{ display:flex; gap:10px; flex:none; }
@media(max-width:560px){ .cookie-bar{ flex-direction:column; align-items:stretch; } .cookie-btns{ justify-content:flex-end; } }
