/* ============================================================
   Onur Bilişim - xobtheme.css  (v8)
   Ultra-premium dark hosting theme
   ============================================================ */

/* -------------------- 1. CUSTOM PROPERTIES -------------------- */
:root {
  --xob-bg:        #050a14;
  --xob-bg-2:      #07101f;
  --xob-bg-3:      #0a1626;
  --xob-surface:   rgba(255, 255, 255, 0.03);
  --xob-surface-2: rgba(255, 255, 255, 0.05);
  --xob-border:    rgba(255, 255, 255, 0.08);
  --xob-border-2:  rgba(14, 165, 233, 0.25);

  --xob-blue:      #0ea5e9;
  --xob-blue-d:    #0284c7;
  --xob-cyan:      #22d3ee;
  --xob-accent:    #38bdf8;

  --xob-text:      #e6edf6;
  --xob-text-2:    #a9b7cb;
  --xob-text-3:    #6f7f96;

  --xob-grad:      linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
  --xob-grad-soft: linear-gradient(135deg, rgba(14,165,233,.18), rgba(34,211,238,.10));

  --xob-shadow:    0 18px 50px -18px rgba(0, 0, 0, .65);
  --xob-shadow-blue: 0 0 40px -8px rgba(14, 165, 233, .45);
  --xob-glass:     rgba(10, 22, 38, 0.55);

  --xob-radius:    16px;
  --xob-radius-sm: 10px;
  --xob-radius-lg: 24px;

  --xob-container: 1200px;
  --xob-header-h:  72px;
  --xob-topbar-h:  40px;

  --xob-ease:      cubic-bezier(.22, 1, .36, 1);
  --xob-font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* -------------------- 2. BASE / RESET -------------------- */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.xob-body {
  margin: 0;
  font-family: var(--xob-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--xob-text);
  background: var(--xob-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.xob-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--xob-accent); text-decoration: none; transition: color .2s var(--xob-ease); }
a:hover, a:focus { color: var(--xob-cyan); }

h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--xob-blue); outline-offset: 2px; border-radius: 4px; }

/* -------------------- 3. LAYOUT WRAPPERS -------------------- */
.xob-bg-content {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(14,165,233,.10), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(34,211,238,.07), transparent 55%),
    var(--xob-bg);
}

.xob-page-wrap { position: relative; z-index: 1; }

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

.xob-main { display: block; min-height: 40vh; }

/* -------------------- 4. BUTTONS -------------------- */
.xob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font: 600 15px/1 var(--xob-font);
  border-radius: var(--xob-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--xob-ease), box-shadow .2s var(--xob-ease), background .2s var(--xob-ease), border-color .2s var(--xob-ease);
  white-space: nowrap;
}
.xob-btn i { font-size: 14px; }
.xob-btn-primary {
  color: #04101d !important;
  background: var(--xob-grad);
  box-shadow: var(--xob-shadow-blue);
}
.xob-btn-primary:hover { color: #04101d !important; transform: translateY(-2px); box-shadow: 0 0 50px -6px rgba(34,211,238,.6); }
.xob-btn-ghost {
  color: var(--xob-text);
  background: var(--xob-surface);
  border-color: var(--xob-border);
  backdrop-filter: blur(8px);
}
.xob-btn-ghost:hover { color: #fff; border-color: var(--xob-border-2); background: var(--xob-surface-2); transform: translateY(-2px); }
.xob-btn-lg { padding: 14px 28px; font-size: 16px; }
.xob-btn-sm { padding: 9px 16px; font-size: 13px; font-weight: 600; }
.xob-btn-block { width: 100%; }

/* -------------------- 5. TOPBAR -------------------- */
.xob-topbar {
  background: rgba(3, 7, 15, .85);
  border-bottom: 1px solid var(--xob-border);
  font-size: 13px;
  backdrop-filter: blur(10px);
}
.xob-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--xob-topbar-h);
  gap: 12px;
}
.xob-topbar-left, .xob-topbar-right { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.xob-topbar-link, .xob-topbar-phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--xob-text-2);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s, background .2s;
}
.xob-topbar-link:hover, .xob-topbar-phone:hover { color: #fff; background: var(--xob-surface); }
.xob-topbar-phone { color: var(--xob-cyan); font-weight: 600; }
.xob-topbar-cta { color: var(--xob-cyan); }
.xob-topbar-panel { color: var(--xob-accent); }
.xob-topbar-sep { width: 1px; height: 16px; background: var(--xob-border); }

/* -------------------- 6. HEADER (sticky glass) -------------------- */
.xob-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--xob-glass);
  border-bottom: 1px solid var(--xob-border);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: background .25s, box-shadow .25s, border-color .25s;
}
.xob-header.is-scrolled {
  background: rgba(5, 10, 20, .92);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.6);
  border-color: var(--xob-border-2);
}
.xob-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--xob-header-h);
  gap: 16px;
}

/* Logo */
.xob-logo { display: inline-flex; align-items: center; gap: 12px; }
.xob-logo-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--xob-grad);
  color: #04101d;
  font-size: 20px;
  box-shadow: var(--xob-shadow-blue);
  flex: 0 0 auto;
}
.xob-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.xob-logo-name { font-size: 19px; font-weight: 600; color: #fff; letter-spacing: -.02em; }
.xob-logo-name strong { color: var(--xob-cyan); font-weight: 700; }
.xob-logo-tag { font-size: 11px; color: var(--xob-text-3); letter-spacing: .04em; text-transform: uppercase; }
.xob-logo-sm .xob-logo-mark { width: 36px; height: 36px; font-size: 17px; }

/* Desktop nav */
.xob-nav { display: none; }
.xob-nav-list { display: flex; align-items: center; gap: 4px; }
.xob-nav-list > li { position: relative; }
.xob-nav-list > li > a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  color: var(--xob-text-2);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.xob-nav-list > li > a i:first-child { color: var(--xob-blue); font-size: 13px; }
.xob-nav-list > li > a:hover { color: #fff; background: var(--xob-surface); }
.xob-caret { font-size: 12px !important; transition: transform .2s; color: var(--xob-text-3) !important; }
.xob-has-sub:hover .xob-caret { transform: rotate(180deg); }

/* Dropdown */
.xob-sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  padding: 8px;
  background: rgba(8, 16, 28, .96);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  box-shadow: var(--xob-shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--xob-ease), transform .2s var(--xob-ease), visibility .2s;
}
.xob-has-sub:hover .xob-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.xob-sub::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.xob-sub li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  color: var(--xob-text-2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.xob-sub li a i { color: var(--xob-blue); width: 18px; text-align: center; }
.xob-sub li a:hover { background: var(--xob-grad-soft); color: #fff; }

.xob-header-actions { display: flex; align-items: center; gap: 12px; }
.xob-header-btn { display: none; }

/* Hamburger */
.xob-hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  padding: 0 11px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 10px;
  cursor: pointer;
}
.xob-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--xob-text);
  border-radius: 2px;
  transition: transform .25s var(--xob-ease), opacity .2s;
}

/* -------------------- 7. MOBILE OVERLAY NAV -------------------- */
.xob-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 9, 18, .98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  padding: 18px 20px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s var(--xob-ease), transform .3s var(--xob-ease), visibility .3s;
  overflow-y: auto;
}
.xob-mobile-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.xob-mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 12px;
  border-bottom: 1px solid var(--xob-border);
}
.xob-mobile-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 10px;
  color: var(--xob-text);
  font-size: 20px;
  cursor: pointer;
}
.xob-mobile-list > li { border-bottom: 1px solid var(--xob-border); }
.xob-mobile-list > li > a,
.xob-m-row > a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 4px;
  color: var(--xob-text);
  font-size: 17px;
  font-weight: 500;
}
.xob-mobile-list > li > a i,
.xob-m-row > a i { color: var(--xob-blue); width: 22px; text-align: center; }
.xob-m-row { display: flex; align-items: center; justify-content: space-between; }
.xob-m-row > a { flex: 1; }
.xob-m-toggle {
  width: 44px; height: 44px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 10px;
  color: var(--xob-text-2);
  font-size: 18px;
  cursor: pointer;
  transition: transform .25s var(--xob-ease);
}
.xob-m-has-sub.is-open .xob-m-toggle { transform: rotate(180deg); color: var(--xob-cyan); }
.xob-m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--xob-ease);
}
.xob-m-has-sub.is-open .xob-m-sub { max-height: 260px; }
.xob-m-sub li a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 4px 13px 34px;
  color: var(--xob-text-2);
  font-size: 15px;
}
.xob-m-sub li a i { color: var(--xob-accent); width: 18px; }

.xob-mobile-actions { display: grid; gap: 10px; margin: 22px 0; }
.xob-mobile-contact { display: flex; flex-wrap: wrap; gap: 10px; }
.xob-mobile-contact a {
  flex: 1 1 140px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  color: var(--xob-text-2);
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 10px;
  font-size: 14px;
}

/* -------------------- 8. HERO -------------------- */
.xob-hero { position: relative; padding: 56px 0 64px; overflow: hidden; }
.xob-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.xob-hero-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 80%);
}
.xob-hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: xobFloat 12s ease-in-out infinite;
}
.xob-hero-glow-1 { width: 420px; height: 420px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(14,165,233,.55), transparent 70%); }
.xob-hero-glow-2 { width: 360px; height: 360px; bottom: -120px; left: -80px; background: radial-gradient(circle, rgba(34,211,238,.4), transparent 70%); animation-delay: -4s; }

.xob-hero-inner { position: relative; z-index: 1; display: grid; gap: 40px; }
.xob-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--xob-cyan);
  background: var(--xob-grad-soft);
  border: 1px solid var(--xob-border-2);
  border-radius: 100px;
  margin-bottom: 22px;
}
.xob-hero-title { font-size: 34px; color: #fff; }
.xob-grad-text {
  background: var(--xob-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.xob-hero-sub { font-size: 17px; color: var(--xob-text-2); max-width: 560px; margin-bottom: 28px; }
.xob-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.xob-hero-points { display: flex; flex-wrap: wrap; gap: 18px; }
.xob-hero-points li { display: inline-flex; align-items: center; gap: 8px; color: var(--xob-text-2); font-size: 14px; }
.xob-hero-points i { color: var(--xob-cyan); }

/* Hero visual / server illustration */
.xob-hero-visual { display: none; }
.xob-server-illustration { position: relative; display: grid; place-items: center; min-height: 360px; }
.xob-server-rack {
  width: 300px; padding: 18px;
  background: linear-gradient(160deg, rgba(14,22,38,.9), rgba(7,16,31,.9));
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow), var(--xob-shadow-blue);
  display: grid; gap: 12px;
}
.xob-server-unit {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--xob-border);
  border-radius: 10px;
}
.xob-led { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.15); flex: 0 0 auto; }
.xob-led-on { background: var(--xob-cyan); box-shadow: 0 0 10px var(--xob-cyan); animation: xobBlink 2.4s ease-in-out infinite; }
.xob-bars { flex: 1; height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--xob-blue), transparent); opacity: .6; }
.xob-orbit {
  position: absolute;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--xob-grad-soft);
  border: 1px solid var(--xob-border-2);
  border-radius: 16px;
  color: var(--xob-cyan); font-size: 22px;
  box-shadow: var(--xob-shadow-blue);
  top: 8%; right: 6%;
  animation: xobFloat 6s ease-in-out infinite;
}
.xob-orbit-2 { top: auto; right: auto; bottom: 10%; left: 4%; animation-delay: -3s; color: var(--xob-accent); }

/* -------------------- 9. STATS -------------------- */
.xob-stats { padding: 8px 0 8px; }
.xob-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.xob-stat {
  text-align: center;
  padding: 22px 16px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  backdrop-filter: blur(8px);
}
.xob-stat-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--xob-grad-soft);
  color: var(--xob-cyan); font-size: 20px;
}
.xob-stat-num { font-size: 26px; font-weight: 700; color: #fff; }
.xob-stat-label { font-size: 13px; color: var(--xob-text-3); }

/* -------------------- 10. SECTIONS -------------------- */
.xob-section { padding: 56px 0; }
.xob-section-alt { background: linear-gradient(180deg, transparent, rgba(7,16,31,.6), transparent); }
.xob-section-head { text-align: center; max-width: 680px; margin: 0 auto 38px; }
.xob-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  color: var(--xob-cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.xob-section-title { font-size: 28px; color: #fff; }
.xob-section-desc { font-size: 16px; color: var(--xob-text-2); }

/* -------------------- 11. SERVICE CARDS -------------------- */
.xob-services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.xob-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
  transition: transform .3s var(--xob-ease), border-color .3s, box-shadow .3s;
  backdrop-filter: blur(8px);
  color: var(--xob-text);
}
.xob-card:hover { transform: translateY(-6px); border-color: var(--xob-border-2); box-shadow: var(--xob-shadow), var(--xob-shadow-blue); color: var(--xob-text); }
.xob-card-glow {
  position: absolute; top: -40%; right: -30%;
  width: 300px; height: 220px;
  background: radial-gradient(circle, rgba(14,165,233,.28), transparent 70%);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.xob-card:hover .xob-card-glow { opacity: 1; }
.xob-card-icon {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--xob-grad-soft);
  border: 1px solid var(--xob-border-2);
  color: var(--xob-cyan); font-size: 24px;
}
.xob-card h3 { font-size: 20px; color: #fff; }
.xob-card p { color: var(--xob-text-2); font-size: 14.5px; }
.xob-card-feats { display: grid; gap: 9px; margin: 4px 0 20px; }
.xob-card-feats li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--xob-text-2); }
.xob-card-feats i { color: var(--xob-cyan); font-size: 12px; }
.xob-card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--xob-accent); font-size: 14.5px;
}
.xob-card:hover .xob-card-link { color: var(--xob-cyan); }
.xob-card:hover .xob-card-link i { transform: translateX(4px); }
.xob-card-link i { transition: transform .25s var(--xob-ease); }

.xob-card-featured { border-color: var(--xob-border-2); box-shadow: var(--xob-shadow-blue); }
.xob-card-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: #04101d;
  background: var(--xob-grad);
  border-radius: 100px;
  text-transform: uppercase;
}
.xob-card-cta { background: var(--xob-grad-soft); border-color: var(--xob-border-2); justify-content: center; text-align: center; align-items: center; }
.xob-card-cta .xob-card-icon { background: rgba(255,255,255,.06); }

/* -------------------- 12. FEATURES (Why us) -------------------- */
.xob-features-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.xob-feature {
  padding: 28px 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  transition: transform .3s var(--xob-ease), border-color .3s;
}
.xob-feature:hover { transform: translateY(-4px); border-color: var(--xob-border-2); }
.xob-feature-icon {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--xob-grad);
  color: #04101d; font-size: 26px;
  box-shadow: var(--xob-shadow-blue);
}
.xob-feature h3 { font-size: 19px; color: #fff; }
.xob-feature p { color: var(--xob-text-2); font-size: 14.5px; margin: 0; }

/* -------------------- 13. INFRASTRUCTURE -------------------- */
.xob-infra { display: grid; gap: 32px; }
.xob-infra-text .xob-section-title { text-align: left; }
.xob-infra-cta { margin-top: 22px; }
.xob-infra-specs { display: grid; grid-template-columns: 1fr; gap: 12px; }
.xob-spec {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  transition: border-color .25s, transform .25s;
}
.xob-spec:hover { border-color: var(--xob-border-2); transform: translateX(4px); }
.xob-spec-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 12px;
  background: var(--xob-grad-soft);
  color: var(--xob-cyan); font-size: 18px;
}
.xob-spec strong { display: block; color: #fff; font-size: 15px; }
.xob-spec span { color: var(--xob-text-3); font-size: 13px; }

/* -------------------- 14. CTA BAND -------------------- */
.xob-cta-band { padding: 16px 0 64px; }
.xob-cta-inner {
  position: relative;
  display: grid; gap: 24px;
  padding: 40px 28px;
  background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(34,211,238,.08));
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
  text-align: center;
}
.xob-cta-bg { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.xob-cta-content { position: relative; z-index: 1; }
.xob-cta-content h2 { font-size: 25px; color: #fff; }
.xob-cta-content p { color: var(--xob-text-2); margin: 0; }
.xob-cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* -------------------- 15. FOOTER -------------------- */
.xob-footer {
  margin-top: 40px;
  padding: 52px 0 28px;
  background: linear-gradient(180deg, rgba(5,10,20,.4), rgba(3,7,15,.9));
  border-top: 1px solid var(--xob-border);
}
.xob-footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.xob-footer-about { color: var(--xob-text-3); font-size: 14px; margin: 16px 0 18px; max-width: 360px; }
.xob-footer-social { display: flex; gap: 10px; }
.xob-footer-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  color: var(--xob-text-2); font-size: 16px;
  transition: all .25s var(--xob-ease);
}
.xob-footer-social a:hover { color: #04101d; background: var(--xob-grad); transform: translateY(-3px); border-color: transparent; }
.xob-footer-col h4 { font-size: 15px; color: #fff; margin-bottom: 16px; letter-spacing: .02em; }
.xob-footer-col ul li { margin-bottom: 11px; }
.xob-footer-col ul li a { color: var(--xob-text-2); font-size: 14px; }
.xob-footer-col ul li a:hover { color: var(--xob-cyan); }
.xob-footer-contact li { display: flex; align-items: center; gap: 10px; color: var(--xob-text-2); font-size: 14px; }
.xob-footer-contact i { color: var(--xob-blue); width: 16px; text-align: center; }
.xob-footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.xob-footer-badges span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  font-size: 12px; color: var(--xob-text-2);
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 100px;
}
.xob-footer-badges i { color: var(--xob-cyan); }
.xob-footer-bottom {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 38px; padding-top: 24px;
  border-top: 1px solid var(--xob-border);
  text-align: center;
}
.xob-footer-bottom p { color: var(--xob-text-3); font-size: 13px; margin: 0; }
.xob-footer-legal { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.xob-footer-legal a { color: var(--xob-text-3); font-size: 13px; }
.xob-footer-legal a:hover { color: var(--xob-cyan); }

/* -------------------- 16. ANIMATIONS -------------------- */
.xob-animate { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--xob-ease), transform .6s var(--xob-ease); }
.xob-animate.is-visible { opacity: 1; transform: translateY(0); }

@keyframes xobFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes xobBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ============================================================
   17. SERVICE PAGE HEROES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--xob-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.dedicated-head,
.cloud-head,
.seo-head,
.service-head,
.hosting-head {
  position: relative;
  padding: 56px 0 48px;
  margin: 0;
  max-width: none;
  text-align: left;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,10,20,.2) 0%, rgba(5,10,20,.85) 100%),
    radial-gradient(900px 400px at 85% 20%, rgba(14,165,233,.18), transparent 60%),
    linear-gradient(135deg, #07101f 0%, #0a1626 100%);
  border-bottom: 1px solid var(--xob-border);
}
.dedicated-head::before,
.cloud-head::before,
.seo-head::before,
.service-head::before,
.hosting-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .35;
  pointer-events: none;
}
.dedicated-head .container,
.cloud-head .container,
.seo-head .container,
.service-head .container,
.hosting-head .container {
  position: relative;
  z-index: 1;
  height: auto !important;
  min-height: 0 !important;
  background: none !important;
}
.dedicated-head h1, .dedicated-head h2,
.cloud-head h1, .cloud-head h2,
.seo-head h1, .seo-head h2,
.service-head h1, .service-head h2,
.hosting-head h1, .hosting-head h2,
.hosting-head h3 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.dedicated-head p, .cloud-head p,
.seo-head p,
.service-head p, .hosting-head p {
  color: var(--xob-text-2) !important;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}
.dedicated-head font, .hosting-head font { color: inherit !important; }

/* ============================================================
   18. DEDICATED SERVER PACKETS (kiralik-sunucu)
   ============================================================ */
.dedicated-content {
  display: block;
  max-width: var(--xob-container);
  margin: 0 auto;
  padding: 32px 20px 56px;
  background: transparent !important;
}
.dedicated-content > .container { padding: 0; max-width: 100%; }

.dedicated-packet {
  margin-bottom: 16px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
}
.dedicated-packet ul { margin: 0; padding: 0; }
.dedicated-packet ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  overflow: hidden;
  transition: transform .25s var(--xob-ease), border-color .25s, box-shadow .25s;
  backdrop-filter: blur(10px);
}
.dedicated-packet ul li:hover {
  transform: translateY(-3px);
  border-color: var(--xob-border-2);
  box-shadow: var(--xob-shadow), var(--xob-shadow-blue);
}
.dedicated-packet ul li > div {
  flex: 1 1 120px;
  min-height: 110px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--xob-border) !important;
  color: var(--xob-text-2);
  font-size: 13px;
  line-height: 1.4;
  float: none !important;
  height: auto !important;
  width: auto !important;
}
.dedicated-packet ul li > div:first-child {
  flex: 1.4 1 180px;
  min-height: 130px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(34,211,238,.06));
}
.dedicated-packet ul li > div:first-child h3 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 8px;
  padding: 0 !important;
}
.dedicated-packet ul li > div:first-child img {
  max-height: 96px;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
.dedicated-packet ul li > div .image { height: auto !important; width: auto !important; display: block !important; }
.dedicated-packet ul li > div .image img { max-height: 36px; margin: 0 auto 6px; }
.dedicated-packet ul li > div:last-child {
  flex: 1 1 140px;
  border-right: none !important;
  gap: 10px;
  background: rgba(14,165,233,.06);
}
.dedicated-packet .price {
  color: var(--xob-cyan) !important;
  font-size: 22px !important;
  font-weight: 700;
  padding: 0 !important;
}
.dedicated-packet .price strong { font-size: 26px; color: #fff; }
.dedicated-packet ul li > div:last-child a,
.dedicated-packet a.ripple {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 140px;
  line-height: 1.2 !important;
  padding: 12px 16px !important;
  background: var(--xob-grad) !important;
  color: #04101d !important;
  border-radius: var(--xob-radius-sm) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border: none;
  box-shadow: var(--xob-shadow-blue);
  transition: transform .2s;
}
.dedicated-packet ul li > div:last-child a:hover { transform: translateY(-2px); color: #04101d !important; }
.dedicated-packet ul li > div:last-child a > span { display: none; }

.dedicated-properties {
  padding: 48px 20px;
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(34,211,238,.04));
  border-top: 1px solid var(--xob-border);
  border-bottom: 1px solid var(--xob-border);
}
.dedicated-properties .container {
  max-width: var(--xob-container);
  margin: 0 auto;
  height: auto !important;
  background: none !important;
  text-align: center;
  color: var(--xob-text);
}
.dedicated-properties h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 0 0 24px !important;
}
.dedicated-properties ul {
  float: none !important;
  width: 100% !important;
  position: static !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 14px;
  color: var(--xob-text-2);
}
.dedicated-properties ul li { padding: 8px 0; opacity: 1; }
@media (min-width: 768px) {
  .dedicated-properties ul { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ============================================================
   19. VPS / VDS PACKETS
   ============================================================ */
.service-container {
  max-width: var(--xob-container);
  margin: 0 auto;
  padding: 32px 20px 56px;
}
.whmcs-packets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 0 24px;
  overflow: visible;
}
.whmcs-packets .whmcs-packet {
  float: none;
  width: 100%;
  height: auto;
  margin: 0;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-top: 3px solid var(--xob-blue) !important;
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform .25s var(--xob-ease), border-color .25s, box-shadow .25s;
}
.whmcs-packets .whmcs-packet:hover {
  transform: translateY(-4px);
  border-color: var(--xob-border-2);
  box-shadow: var(--xob-shadow), var(--xob-shadow-blue);
}
.whmcs-packets .whmcs-packet .logo {
  height: auto;
  padding: 24px 16px 12px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: var(--xob-font);
}
.whmcs-packets .whmcs-packet .price {
  background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(34,211,238,.1));
  height: auto;
  line-height: 1.2;
  padding: 16px;
  font-size: 36px;
  font-weight: 700;
  color: var(--xob-cyan);
  font-family: var(--xob-font);
}
.whmcs-packets .whmcs-packet .properties ul li {
  color: var(--xob-text-2);
  border-bottom-color: var(--xob-border);
  padding: 10px 0;
  font-size: 14px;
}
.whmcs-packets .whmcs-packet .buy-btn { padding: 16px 16px 24px; }
.whmcs-packets .whmcs-packet .buy-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  line-height: 1.2 !important;
  padding: 14px 28px !important;
  background: var(--xob-grad) !important;
  color: #04101d !important;
  border-radius: var(--xob-radius-sm);
  font-weight: 700;
  font-size: 14px;
}
.whmcs-packets .whmcs-packet .buy-btn a:hover { filter: brightness(1.06); color: #04101d !important; }
.whmcs-packets .whmcs-packet .buy-btn.vps a { background: var(--xob-grad) !important; }

/* ============================================================
   20. HOSTING / SEO PACKETS
   ============================================================ */
.hosting-packets {
  max-width: var(--xob-container);
  margin: 0 auto;
  padding: 32px 20px 56px;
  overflow: visible;
}
.hosting-packets > .container { padding: 0; max-width: 100%; }
.hosting-packets .packs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.hosting-packets .hosting-packet {
  float: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform .25s var(--xob-ease), box-shadow .25s;
}
.hosting-packets .hosting-packet:hover {
  transform: translateY(-4px);
  box-shadow: var(--xob-shadow), var(--xob-shadow-blue);
}
.hosting-packets .hosting-packet > h3 {
  margin: 0;
  padding: 18px 20px;
  background: var(--xob-grad);
  color: #04101d !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 0;
  line-height: 1.3;
}
.hosting-packets .hosting-packet > h3::before { display: none; }
.hosting-packets .hosting-packet ul li {
  color: var(--xob-text-2);
  border-bottom-color: var(--xob-border);
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
}
.hosting-packets .hosting-packet ul li [class^="icon"] { opacity: .7; }
.hosting-packets .hosting-packet .price,
.hosting-packets .hosting-packet .fiyat {
  text-align: center;
  padding: 20px;
  color: var(--xob-cyan);
  font-size: 28px;
  font-weight: 700;
}
.hosting-packets .hosting-packet a.ripple,
.hosting-packets .hosting-packet .btn-buy {
  display: block;
  margin: 0 20px 24px;
  padding: 14px;
  text-align: center;
  background: var(--xob-grad);
  color: #04101d !important;
  border-radius: var(--xob-radius-sm);
  font-weight: 700;
}

/* ============================================================
   21. CLOUD VDS PAGE
   ============================================================ */
.cloud-head { padding: 36px 0 56px; }
.cloud-head .container {
  min-height: 0 !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0;
}
.cloud-head .xob-eyebrow {
  display: block;
  margin: 0 0 10px;
}
.cloud-head h1 {
  margin: 0 0 14px;
  max-width: 720px;
}
.cloud-head-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--xob-text-2) !important;
  max-width: 680px;
  margin: 0 0 20px;
}
.cloud-head-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cloud-head-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--xob-text-2);
}
.cloud-head-badges i { color: var(--xob-cyan); }

/* Package slider */
.xob-cloud-slider { position: relative; margin-top: 0; }
.cloud-head .cloud-nav {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid var(--xob-border);
  border-radius: 50%;
  background: rgba(10, 22, 38, .9);
  color: var(--xob-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.cloud-head .cloud-nav:hover {
  background: var(--xob-grad-soft);
  border-color: var(--xob-border-2);
  color: #fff;
  box-shadow: var(--xob-shadow-blue);
}
.cloud-head .cloud-nav.prev { left: -6px; }
.cloud-head .cloud-nav.next { right: -6px; }

.cloud-head .cloud-tab {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 4px 2px 12px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.cloud-head .cloud-tab li { float: none; flex: 0 0 auto; }
.cloud-head .cloud-tab li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 76px;
  padding: 12px 14px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  color: var(--xob-text-2);
  transition: all .22s var(--xob-ease);
  text-decoration: none;
}
.cloud-head .cloud-tab li a .cloud-tab-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--xob-text-3);
  margin-bottom: 4px;
}
.cloud-head .cloud-tab li a h3 {
  font-size: 15px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}
.cloud-head .cloud-tab li.active a,
.cloud-head .cloud-tab li a:hover {
  background: var(--xob-grad-soft);
  border-color: var(--xob-border-2);
  box-shadow: var(--xob-shadow-blue);
  transform: translateY(-2px);
}
.cloud-head .cloud-tab li.active a .cloud-tab-tier { color: var(--xob-cyan); }

.cloud-head .cloud-tab-container {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  left: auto !important;
  bottom: auto !important;
  margin-top: 16px;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  padding: 28px 24px 32px;
  backdrop-filter: blur(16px);
  box-shadow: var(--xob-shadow);
}
.cloud-head .cloud-tab-container > div {
  display: none;
  animation: xobCloudFade .35s var(--xob-ease);
}
.cloud-head .cloud-tab-container > div.active { display: block; }
@keyframes xobCloudFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cloud-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--xob-border);
}
.cloud-panel-title strong {
  display: block;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.cloud-panel-title span {
  display: block;
  font-size: 14px;
  color: var(--xob-text-3);
}
.cloud-popular-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #04101d;
  background: var(--xob-grad);
  border-radius: 100px;
  vertical-align: middle;
}
.cloud-head .cloud-tab-container .price {
  height: auto !important;
  background: none !important;
  padding: 0;
  text-align: right;
  border: none;
  margin: 0;
}
.cloud-head .cloud-tab-container .price h3 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--xob-cyan) !important;
  padding: 0 0 12px !important;
  margin: 0;
  line-height: 1;
}
.cloud-head .cloud-tab-container .price h3 small {
  font-size: 14px;
  font-weight: 500;
  color: var(--xob-text-3);
}
.cloud-head .cloud-tab-container .price a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 24px;
  font-size: 14px;
}

.cloud-head .cloud-tab-container .properties { width: 100% !important; margin: 0; }
.cloud-head .cloud-tab-container .properties ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cloud-head .cloud-tab-container .properties ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 18px 16px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  transition: border-color .2s, transform .2s;
}
.cloud-head .cloud-tab-container .properties ul li:hover {
  border-color: var(--xob-border-2);
  transform: translateY(-2px);
}
.cloud-head .cloud-tab-container .properties ul li .image {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--xob-grad-soft);
}
.cloud-head .cloud-tab-container .properties ul li .image i {
  font-size: 20px;
  color: var(--xob-cyan);
}
.cloud-head .cloud-tab-container .properties ul li .title {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--xob-text-3);
}
.cloud-head .cloud-tab-container .properties ul li .title strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

/* Page sections */
.cloud-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}
.cloud-section-head .xob-eyebrow { margin-bottom: 10px; }
.cloud-section-head h2 {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.cloud-section-head p {
  margin: 0;
  color: var(--xob-text-2);
  font-size: 15px;
  line-height: 1.7;
}

.cloud-vds-intro { margin-bottom: 56px; }

.cloud-compare { margin-bottom: 56px; }
.cloud-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.cloud-compare-card {
  position: relative;
  padding: 28px 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
}
.cloud-compare-card.is-highlight {
  border-color: var(--xob-border-2);
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(34,211,238,.04));
  box-shadow: var(--xob-shadow-blue);
}
.cloud-compare-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: #fff;
}
.cloud-compare-card h3 i {
  color: var(--xob-cyan);
  margin-right: 8px;
}
.cloud-compare-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.cloud-compare-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--xob-text-2);
  border-bottom: 1px solid var(--xob-border);
}
.cloud-compare-card ul li:last-child { border-bottom: none; }
.cloud-compare-card ul li i.fa-check { color: #4ade80; margin-right: 8px; }
.cloud-compare-card ul li.is-neutral { color: var(--xob-text-3); }
.cloud-compare-card .cloud-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.cloud-includes { margin-bottom: 48px; }
.cloud-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cloud-include {
  padding: 18px 16px;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  text-align: center;
}
.cloud-include i {
  display: block;
  font-size: 22px;
  color: var(--xob-cyan);
  margin-bottom: 10px;
}
.cloud-include strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.cloud-include span {
  font-size: 12px;
  color: var(--xob-text-3);
}

.cloud-section-grid-wrap { margin-bottom: 48px; }
.cloud-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.cloud-section-card {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.cloud-section-card:hover {
  border-color: var(--xob-border-2);
  transform: translateY(-2px);
}
.cloud-section-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--xob-grad-soft);
  color: var(--xob-cyan);
  font-size: 22px;
  margin-bottom: 16px;
}
.cloud-section-card h3 { color: #fff; font-size: 20px; margin: 0 0 10px; }
.cloud-section-card p {
  color: var(--xob-text-2);
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

.cloud-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 56px;
}
.cloud-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: start;
  padding: 24px;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  backdrop-filter: blur(12px);
}
.cloud-benefit-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--xob-cyan);
  opacity: .75;
  line-height: 1;
}
.cloud-benefit h3 { color: #fff; font-size: 18px; margin: 0 0 8px; }
.cloud-benefit p {
  color: var(--xob-text-2);
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.cloud-usecases { margin-bottom: 56px; }
.cloud-usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cloud-usecase {
  padding: 24px 22px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  transition: border-color .2s, transform .2s;
}
.cloud-usecase:hover {
  border-color: var(--xob-border-2);
  transform: translateY(-3px);
}
.cloud-usecase-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--xob-grad-soft);
  color: var(--xob-cyan);
  font-size: 20px;
  margin-bottom: 14px;
}
.cloud-usecase h3 { margin: 0 0 8px; font-size: 17px; color: #fff; }
.cloud-usecase p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--xob-text-2); }

.cloud-faq { margin-bottom: 48px; }
.cloud-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.cloud-faq-item {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  overflow: hidden;
}
.cloud-faq-item summary {
  padding: 16px 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
}
.cloud-faq-item summary::-webkit-details-marker { display: none; }
.cloud-faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--xob-text-2);
}

.cloud-cta { margin-bottom: 12px; }
.cloud-cta-inner {
  text-align: center;
  padding: 44px 24px;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow-blue);
}
.cloud-cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  color: #fff;
}
.cloud-cta-inner p {
  margin: 0 auto 22px;
  max-width: 460px;
  color: var(--xob-text-2);
  font-size: 15px;
}
.cloud-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cloud-plan-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #04101d;
  background: var(--xob-grad);
  border-radius: 100px;
}

@media (min-width: 640px) {
  .cloud-includes-grid { grid-template-columns: repeat(3, 1fr); }
  .cloud-usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .cloud-section-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .cloud-head .cloud-tab { justify-content: center; flex-wrap: wrap; overflow: visible; }
  .cloud-head .cloud-tab-container .properties ul { grid-template-columns: repeat(4, 1fr); }
  .cloud-head .cloud-nav.prev { left: -18px; }
  .cloud-head .cloud-nav.next { right: -18px; }
  .cloud-compare-grid { grid-template-columns: repeat(3, 1fr); }
  .cloud-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .cloud-includes-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 767px) {
  .xob-main:has(.cloud-head),
  .xob-cloud-page {
    overflow-x: clip;
    max-width: 100%;
  }

  .cloud-head {
    padding: 28px 0 40px;
    overflow: hidden;
  }
  .cloud-head .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .cloud-head h1 { font-size: 26px; max-width: 100%; }
  .cloud-head-lead { font-size: 15px; max-width: 100%; }
  .cloud-head-badges { gap: 8px; margin-bottom: 20px; }
  .cloud-head-badges span { font-size: 12px; padding: 7px 12px; }

  .xob-cloud-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .cloud-head .cloud-tab {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    margin: 0 -2px;
    padding: 4px 2px 10px;
    max-width: 100%;
  }
  .cloud-head .cloud-tab::-webkit-scrollbar { display: none; }
  .cloud-head .cloud-tab li a {
    min-width: 84px;
    min-height: 64px;
    padding: 10px 12px;
    scroll-snap-align: start;
  }
  .cloud-head .cloud-tab li a h3 { font-size: 14px; }

  .cloud-head .cloud-tab-container {
    padding: 20px 16px 24px;
    margin-top: 12px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .cloud-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .cloud-panel-title strong { font-size: 20px; }
  .cloud-head .cloud-tab-container .price {
    text-align: left;
    width: 100%;
  }
  .cloud-head .cloud-tab-container .price a {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .cloud-head .cloud-nav { display: none; }
  .cloud-head .cloud-tab-container .properties ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cloud-head .cloud-tab-container .properties ul li {
    padding: 14px;
  }

  .xob-cloud-page {
    padding: 28px 0 48px;
  }
  .xob-cloud-page > .xob-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cloud-compare-card,
  .cloud-usecase,
  .cloud-section-card,
  .cloud-benefit {
    padding: 20px 16px;
  }
  .cloud-cta-inner { padding: 28px 20px; }
  .cloud-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cloud-cta-actions .xob-btn { width: 100%; }
}

/* ============================================================
   22. CART PAGE
   ============================================================ */
.xob-cart .xob-main { padding-bottom: 0; }

.xob-cart-hero {
  padding: 40px 0 28px;
  text-align: center;
  border-bottom: 1px solid var(--xob-border);
  background: linear-gradient(180deg, rgba(14,165,233,.08), transparent);
}
.xob-cart-hero h1,
.card-head .container > h1 {
  margin: 0 0 28px;
  padding: 0 !important;
  height: auto !important;
  text-align: center;
}
.xob-cart-hero h1 span,
.card-head .container > h1 span {
  display: inline-block;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: none !important;
  padding: 0 !important;
  letter-spacing: -.02em;
}

.xob-cart-steps,
.card-head .container .card-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  overflow: visible;
  margin: 0;
  padding: 0;
  list-style: none;
}
.xob-cart-steps li,
.card-head .container .card-tab li {
  float: none;
  width: auto;
  margin: 0 !important;
  flex: 1 1 140px;
  max-width: 180px;
}
.xob-cart-steps li a,
.card-head .container .card-tab li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100% !important;
  height: auto !important;
  min-height: 84px;
  padding: 12px 10px;
  background: var(--xob-surface) !important;
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  color: var(--xob-text-3) !important;
  transition: all .2s var(--xob-ease);
}
.xob-cart-steps li a .number,
.card-head .container .card-tab li a .number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  color: var(--xob-text-2);
}
.xob-cart-steps li a .text,
.card-head .container .card-tab li a .text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 0 !important;
  line-height: 1.3;
}
.xob-cart-steps li.active a,
.xob-cart-steps li a:hover,
.card-head .container .card-tab li.active a,
.card-head .container .card-tab li a:hover {
  background: var(--xob-grad-soft) !important;
  border-color: var(--xob-border-2);
  color: #fff !important;
  background-position: 0 0 !important;
}
.xob-cart-steps li.active a .number,
.card-head .container .card-tab li.active a .number { color: var(--xob-cyan); }

.card-head {
  height: auto !important;
  padding: 40px 0 28px;
  max-width: none;
  margin: 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(14,165,233,.08), transparent);
  border-bottom: 1px solid var(--xob-border);
}

.card-container {
  display: block;
  background: transparent !important;
  position: relative;
  max-width: none;
  margin: 0 auto 48px;
  padding: 0 20px 48px;
}
.card-container > .container,
.card-container > .xob-container,
.card-container > .xob-cart-panel {
  position: relative !important;
  top: 0 !important;
  max-width: var(--xob-container);
  min-height: 0 !important;
  margin: 24px auto 0;
  padding: 28px 24px 36px !important;
  background: var(--xob-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow);
}

.xob-cart-wrap {
  padding: 0 20px 48px;
}
.xob-cart-wrap > .xob-container {
  background: var(--xob-glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow);
  padding: 28px 24px 36px;
  margin-top: 24px;
}

.xob-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.xob-cart-section { padding: 0; }
.xob-cart-layout { margin: 0; }

.xob-cart-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.xob-cart-currency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
}
.xob-cart-currency label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--xob-text-2);
  white-space: nowrap;
}
.xob-cart-currency label i { color: var(--xob-cyan); margin-right: 4px; }
.xob-cart-currency select {
  width: auto;
  min-width: 90px;
  height: 36px;
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  color: var(--xob-text);
  border: 1px solid var(--xob-border);
  border-radius: 8px;
}

.xob-cart-sidebar {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  padding: 18px 14px;
  position: sticky;
  top: calc(var(--xob-topbar-h) + var(--xob-header-h) + 16px);
}
.xob-cart-sidebar h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--xob-border);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.xob-cart-sidebar h3 i { color: var(--xob-cyan); margin-right: 6px; }

.xob-cart-cats { margin: 0; padding: 0; list-style: none; }
.xob-cart-cats li { margin-bottom: 4px; }
.xob-cart-cats li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--xob-radius-sm);
  color: var(--xob-text-2);
  font-size: 13px;
  line-height: 1.35;
  transition: background .2s, color .2s;
}
.xob-cart-cats li a:hover {
  background: var(--xob-surface-2);
  color: #fff;
}
.xob-cart-cats li.active a {
  background: var(--xob-grad-soft);
  color: #fff;
  border: 1px solid var(--xob-border-2);
  font-weight: 600;
}

.xob-cart-products-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--xob-border);
}
.xob-cart-products-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #fff;
}
.xob-cart-products-head p {
  margin: 0;
  color: var(--xob-text-3);
  font-size: 14px;
}

.xob-product-card {
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.xob-product-card:hover {
  border-color: var(--xob-border-2) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(14,165,233,.25);
}
.xob-product-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
}
.xob-product-title small {
  font-size: 12px;
  font-weight: 500;
  color: var(--xob-text-3);
}
.xob-product-desc {
  color: var(--xob-text-2);
  font-size: 14px;
  line-height: 1.65;
}
.xob-product-desc p { margin: 0 0 .5em; color: inherit; }
.xob-price-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--xob-text-3);
  margin-bottom: 4px;
}
.xob-price {
  color: var(--xob-cyan) !important;
  font-weight: 700;
  font-size: 28px !important;
  margin: 4px 0 14px !important;
  line-height: 1.1;
}
.xob-price small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--xob-text-2);
  margin-top: 4px;
}
.xob-price-free { font-size: 22px !important; }
.xob-btn-order,
.xob-btn-viewcart {
  min-width: 160px;
}
.xob-cart-footer-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--xob-border);
}

/* ============================================================
   23. WHMCS ORDER / CLIENT AREA (#whmcsx)
   ============================================================ */
#whmcsx {
  padding: 0;
}
#whmcsx .containerx { max-width: 100%; padding: 0; }
#whmcsx > section { padding: 0; }

#whmcsx h1 {
  font-size: 22px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
}
.xob-cart #whmcsx > section > .containerx > h1,
.xob-cart #whmcsx h1.xob-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#whmcsx .page-header {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--xob-border);
}
#whmcsx .page-header h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.xob-cart #whmcsx .nav-pills > li > a,
#whmcsx .nav-pills > li > a {
  color: var(--xob-text-2);
  border-radius: var(--xob-radius-sm);
  margin-bottom: 4px;
  padding: 10px 14px;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.xob-cart #whmcsx .nav-pills > li > a:hover,
#whmcsx .nav-pills > li > a:hover { background: var(--xob-surface-2); color: #fff; }
.xob-cart #whmcsx .nav-pills > li.active > a,
.xob-cart #whmcsx .nav-pills > li.active > a:hover,
.xob-cart #whmcsx .nav-pills > li.active > a:focus,
#whmcsx .nav-pills > li.active > a,
#whmcsx .nav-pills > li.active > a:hover,
#whmcsx .nav-pills > li.active > a:focus {
  background: var(--xob-grad);
  color: #04101d;
  font-weight: 600;
}

.xob-cart #whmcsx .alert-info,
.xob-cart #whmcsx fieldset.alert-info,
#whmcsx .alert-info,
#whmcsx fieldset.alert-info {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-sm);
  color: var(--xob-text);
  padding: 12px 16px;
}
#whmcsx .pull-right.margin-top { float: none !important; margin: 0 0 16px !important; text-align: right; }

.xob-clientarea .panel,
.xob-cart .panel,
.xob-cart #whmcsx .panel,
.xob-cart #whmcsx .card,
.xob-cart #whmcsx .well,
#whmcsx .panel,
#whmcsx .card,
#whmcsx .well {
  background: var(--xob-surface);
  color: var(--xob-text);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  box-shadow: none;
  margin-bottom: 16px;
}
.xob-cart #whmcsx .panel-body,
#whmcsx .panel-body { padding: 20px; }
.xob-cart #whmcsx .panel-body .lead,
#whmcsx .panel-body .lead {
  color: var(--xob-cyan);
  font-weight: 700;
  font-size: 28px;
  margin: 8px 0 12px;
}
.xob-cart #whmcsx .panel-body h3.text-info,
.xob-cart #whmcsx .panel-body .xob-product-title,
#whmcsx .panel-body h3.text-info {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
}
.xob-cart #whmcsx .panel-body p,
#whmcsx .panel-body p { color: var(--xob-text-2); font-size: 14px; line-height: 1.6; }
.xob-cart #whmcsx .panel-heading,
.xob-cart #whmcsx .card-header,
#whmcsx .panel-heading,
#whmcsx .card-header {
  background: var(--xob-surface-2);
  color: #fff;
  border-bottom: 1px solid var(--xob-border);
  font-weight: 600;
  border-radius: var(--xob-radius) var(--xob-radius) 0 0;
}
.xob-cart #whmcsx .panel a,
.xob-cart #whmcsx .card a,
#whmcsx .panel a,
#whmcsx .card a { color: var(--xob-accent); }
.xob-cart #whmcsx .table,
#whmcsx .table { color: var(--xob-text); width: 100%; }
.xob-cart #whmcsx .table > thead > tr > th,
#whmcsx .table > thead > tr > th {
  color: #fff;
  border-color: var(--xob-border);
  background: var(--xob-surface-2);
}
.xob-cart #whmcsx .table > tbody > tr > td,
#whmcsx .table > tbody > tr > td { border-color: var(--xob-border); vertical-align: middle; }
.xob-cart #whmcsx .form-control,
#whmcsx .form-control {
  background: rgba(255,255,255,.05);
  color: var(--xob-text);
  border: 1px solid var(--xob-border);
  border-radius: 10px;
  height: auto;
  padding: 10px 14px;
}
.xob-cart #whmcsx .form-control:focus,
#whmcsx .form-control:focus {
  border-color: var(--xob-blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.18);
  background: rgba(255,255,255,.08);
}
.xob-cart #whmcsx label,
#whmcsx label { color: var(--xob-text-2); font-weight: 500; }
.xob-cart #whmcsx .btn,
.xob-cart #whmcsx .btn-primary,
.xob-cart #whmcsx .btn-info,
#whmcsx .btn,
#whmcsx .btn-primary,
#whmcsx .btn-info {
  background: var(--xob-grad);
  border: none;
  color: #04101d;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  transition: filter .2s, transform .2s;
}
.xob-cart #whmcsx .btn:hover,
.xob-cart #whmcsx .btn-primary:hover,
.xob-cart #whmcsx .btn-info:hover,
#whmcsx .btn:hover,
#whmcsx .btn-primary:hover,
#whmcsx .btn-info:hover {
  filter: brightness(1.05);
  color: #04101d;
  transform: translateY(-1px);
}
.xob-cart #whmcsx .btn.disabled,
.xob-cart #whmcsx .btn-primary.disabled,
#whmcsx .btn.disabled,
#whmcsx .btn-primary.disabled {
  opacity: .5;
  transform: none;
}
.xob-cart #whmcsx .btn-info,
#whmcsx .btn-info {
  background: var(--xob-surface-2);
  color: var(--xob-cyan);
  border: 1px solid var(--xob-border-2);
}
.xob-cart #whmcsx .btn-info:hover,
#whmcsx .btn-info:hover { background: var(--xob-grad); color: #04101d; border-color: transparent; }
.xob-cart #whmcsx .alert-danger,
#whmcsx .alert-danger {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
  color: #fecaca;
  border-radius: var(--xob-radius-sm);
}
.xob-cart #whmcsx .alert-success,
#whmcsx .alert-success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: #bbf7d0;
  border-radius: var(--xob-radius-sm);
}
.xob-cart #whmcsx .well,
#whmcsx .well {
  background: var(--xob-surface);
  border-color: var(--xob-border);
  color: var(--xob-text-2);
}
.xob-cart #whmcsx .text-muted,
#whmcsx .text-muted { color: var(--xob-text-3) !important; }
.xob-cart #whmcsx .label,
.xob-cart #whmcsx .badge,
#whmcsx .label,
#whmcsx .badge { border-radius: 100px; }
.xob-cart #whmcsx .text-center.form-group,
#whmcsx .text-center.form-group { margin-top: 24px; }

/* WHMCS cart — override legacy whmcsx.css light panels */
.xob-cart #whmcsx .panel-default {
  border-color: var(--xob-border) !important;
  background: var(--xob-surface) !important;
}
.xob-cart #whmcsx .panel-default > .panel-body {
  background: transparent !important;
  color: var(--xob-text) !important;
}
.xob-cart #whmcsx .glyphicon { display: none; }
.xob-cart #whmcsx .btn .fa { margin-right: 6px; }

/* ============================================================
   24. LOGO IMAGE
   ============================================================ */
.xob-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.xob-logo-sm .xob-logo-img { height: 30px; }
.xob-logo:has(.xob-logo-img) .xob-logo-mark,
.xob-logo:has(.xob-logo-img) .xob-logo-text { display: none; }
.xob-logo-sm:has(.xob-logo-img) .xob-logo-name { display: none; }

/* ============================================================
   25. SERVICE PAGE RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .whmcs-packets { grid-template-columns: repeat(2, 1fr); }
  .hosting-packets .packs { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .dedicated-packet ul li > div { min-height: 120px; }
  .whmcs-packets { grid-template-columns: repeat(3, 1fr); }
  .hosting-packets .packs { grid-template-columns: repeat(3, 1fr); }
  .xob-cart-steps li, .card-head .container .card-tab li { flex: 0 1 160px; }
}

@media (max-width: 767px) {
  .dedicated-packet ul li { flex-direction: column; }
  .dedicated-packet ul li > div {
    flex: 1 1 auto;
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid var(--xob-border);
    min-height: 0;
    padding: 14px;
  }
  .dedicated-packet ul li > div:last-child { border-bottom: none; }
  .card-container > .container,
  .card-container > .xob-container,
  .card-container > .xob-cart-panel,
  .xob-cart-wrap > .xob-container { padding: 20px 16px 28px !important; }
  #whmcsx .row > [class*="col-"] { width: 100%; float: none; margin-bottom: 20px; }
  .xob-cart-steps li, .card-head .container .card-tab li { flex: 1 1 calc(50% - 8px); max-width: none; }
  .xob-cart-sidebar { position: static; margin-bottom: 20px; }
  .xob-cart-toolbar { justify-content: stretch; }
  .xob-cart-currency { width: 100%; justify-content: space-between; }
  .xob-product-card .col-md-4 { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--xob-border); }
}

@media (min-width: 992px) {
  .whmcs-packets { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* >= 640px */
@media (min-width: 640px) {
  .xob-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .xob-hero-title { font-size: 40px; }
  .xob-section-title { font-size: 32px; }
  .xob-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .xob-cta-inner { padding: 48px 40px; }
}

/* >= 768px */
@media (min-width: 768px) {
  .xob-services-grid { grid-template-columns: repeat(2, 1fr); }
  .xob-features-grid { grid-template-columns: repeat(3, 1fr); }
  .xob-infra-specs { grid-template-columns: repeat(2, 1fr); }
  .xob-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
  .xob-cta-inner { flex-direction: row; }
  .xob-cta-content h2 { font-size: 28px; }
  .xob-hero { padding: 72px 0 80px; }
  .xob-hero-title { font-size: 46px; }
}

/* >= 992px - desktop nav appears */
@media (min-width: 992px) {
  .xob-nav { display: block; }
  .xob-hamburger { display: none; }
  .xob-header-btn { display: inline-flex; }
  .xob-mobile-overlay { display: none !important; }

  .xob-hero-inner { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; }
  .xob-hero-visual { display: block; }
  .xob-hero-title { font-size: 52px; }

  .xob-services-grid { grid-template-columns: repeat(3, 1fr); }
  .xob-infra { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
  .xob-section { padding: 76px 0; }
}

/* >= 1200px */
@media (min-width: 1200px) {
  .xob-hero-title { font-size: 58px; }
  .xob-section-title { font-size: 36px; }
}

/* ============================================================
   26. LOGIN / REGISTER (AUTH)
   ============================================================ */
.xob-auth {
  padding: 48px 20px 64px;
  min-height: 50vh;
}
.xob-auth-wide { padding-top: 32px; }
.xob-auth-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 28px 36px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow);
  backdrop-filter: blur(12px);
}
.xob-register-card { max-width: 820px; }
.xob-auth-head { text-align: center; margin-bottom: 28px; }
.xob-auth-head h1 {
  font-size: clamp(26px, 4vw, 32px);
  color: #fff;
  margin: 8px 0 10px;
}
.xob-auth-head p { color: var(--xob-text-2); margin: 0; font-size: 15px; }
.xob-auth-form { display: flex; flex-direction: column; gap: 16px; }
.xob-field { display: flex; flex-direction: column; gap: 6px; }
.xob-field span { font-size: 13px; font-weight: 600; color: var(--xob-text-2); }
.xob-field input,
.xob-field select,
.xob-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--xob-radius-sm);
  border: 1px solid var(--xob-border);
  background: rgba(255,255,255,.04);
  color: var(--xob-text);
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.xob-field input:focus,
.xob-select:focus {
  outline: none;
  border-color: var(--xob-blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.18);
}
.xob-auth-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.xob-auth-meta a { color: var(--xob-cyan); }
.xob-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--xob-text-2);
  font-size: 14px;
  cursor: pointer;
}
.xob-check input { margin-top: 3px; }
.xob-check a { color: var(--xob-cyan); }
.xob-auth-foot {
  text-align: center;
  margin: 8px 0 0;
  color: var(--xob-text-3);
  font-size: 14px;
}
.xob-auth-foot a { color: var(--xob-cyan); font-weight: 600; }
.xob-auth-note { text-align: center; font-size: 13px; margin: 0; }
.xob-auth-note a { color: var(--xob-cyan); }
.xob-alert {
  padding: 12px 14px;
  border-radius: var(--xob-radius-sm);
  font-size: 14px;
}
.xob-alert-danger {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
  color: #fecaca;
}
.xob-alert ul { margin: 8px 0 0 18px; padding: 0; }
.xob-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.xob-field-full { grid-column: 1 / -1; }
.xob-captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.xob-captcha-row img,
.xob-captcha-img {
  border-radius: 10px;
  width: 300px;
  height: 84px;
  box-shadow: 0 1px 2px rgba(15, 40, 70, 0.08);
  border: 1px solid rgba(180, 198, 214, 0.9);
  background: #eef3f8;
}
.xob-captcha-input {
  max-width: 220px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.xob-register-form .xob-btn { margin-top: 8px; }

.xob-clientarea .xob-main:has(.xob-auth) { padding-top: 0; }
.xob-register .xob-main { padding-top: 0; }

/* Cloud & SEO page sections */
.xob-cloud-page,
.xob-seo-page {
  padding: 32px 20px 56px;
}

/* SEO Sunucu page */
.seo-head-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.seo-head-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--xob-text-2);
}
.seo-head-badges i { color: var(--xob-cyan); }
.seo-head p strong { color: #fff; }

.seo-hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 28px 24px;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--xob-shadow);
  margin-bottom: 40px;
}
.seo-hero-label {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--xob-cyan);
  background: var(--xob-grad-soft);
  border: 1px solid var(--xob-border-2);
  border-radius: 100px;
}
.seo-hero-main h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
}
.seo-hero-lead {
  color: var(--xob-text-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 640px;
}
.seo-hero-lead strong { color: #fff; }

.seo-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.seo-spec {
  padding: 16px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  text-align: center;
}
.seo-spec-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--xob-grad-soft);
  color: var(--xob-cyan);
  font-size: 18px;
  margin-bottom: 10px;
}
.seo-spec strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}
.seo-spec span {
  display: block;
  font-size: 12px;
  color: var(--xob-text-3);
}

.seo-price-box {
  padding: 24px 20px;
  background: linear-gradient(160deg, rgba(14,165,233,.14), rgba(34,211,238,.06));
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius);
  text-align: center;
}
.seo-price-from {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--xob-text-3);
  margin-bottom: 8px;
}
.seo-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--xob-cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.seo-price small { font-size: 20px; font-weight: 600; }
.seo-price-note {
  display: block;
  font-size: 12px;
  color: var(--xob-text-3);
  margin-bottom: 20px;
}
.seo-price-box .xob-btn { margin-bottom: 10px; }
.seo-price-box .xob-btn:last-child { margin-bottom: 0; }

.seo-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}
.seo-section-head h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 10px;
}
.seo-section-head p {
  color: var(--xob-text-2);
  margin: 0;
  line-height: 1.7;
}

.seo-ip-section {
  margin-bottom: 48px;
  padding: 32px 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
}
.seo-ip-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.seo-ip-block {
  padding: 20px 16px;
  text-align: center;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  transition: border-color .2s, transform .2s;
}
.seo-ip-block:hover {
  border-color: var(--xob-border-2);
  transform: translateY(-2px);
}
.seo-ip-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--xob-cyan);
  margin-bottom: 8px;
}
.seo-ip-block code {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  background: none;
  padding: 0;
}
.seo-ip-block p {
  margin: 0;
  font-size: 12px;
  color: var(--xob-text-3);
}
.seo-ip-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--xob-grad-soft);
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-sm);
}
.seo-ip-note i {
  color: var(--xob-cyan);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.seo-ip-note p {
  margin: 0;
  color: var(--xob-text-2);
  font-size: 14px;
  line-height: 1.65;
}
.seo-ip-note strong { color: #fff; }

.seo-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.seo-compare { margin-bottom: 48px; }
.seo-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.seo-compare-card {
  padding: 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  display: flex;
  flex-direction: column;
}
.seo-compare-card.is-featured {
  border-color: var(--xob-border-2);
  background: linear-gradient(160deg, rgba(14,165,233,.10), var(--xob-surface));
  box-shadow: var(--xob-shadow-blue);
}
.seo-compare-card h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 16px;
}
.seo-compare-card h3 i { color: var(--xob-cyan); margin-right: 8px; }
.seo-compare-card ul { margin: 0 0 20px; padding: 0; list-style: none; }
.seo-compare-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--xob-border);
  color: var(--xob-text-2);
  font-size: 14px;
}
.seo-compare-card li:last-child { border-bottom: none; }
.seo-compare-card li i { color: var(--xob-cyan); margin-right: 8px; width: 16px; }

.seo-compare-card .seo-hero-lead {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.seo-compare-card .seo-hero-label {
  display: inline-block;
  margin-bottom: 10px;
}
.seo-price-inline {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--xob-border);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.seo-price-inline .seo-price {
  margin-bottom: 14px;
}

.seo-cta {
  text-align: center;
  padding: 40px 28px;
  background: var(--xob-glass);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
}
.seo-cta h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 10px;
}
.seo-cta p {
  color: var(--xob-text-2);
  margin: 0 0 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.seo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   22b. EMAIL HOSTING PAGE
   ============================================================ */
.xob-email-page {
  padding: 28px 20px 48px;
}
.xob-email-page .seo-compare {
  margin-bottom: 40px;
}
.xob-email-page .seo-section-head {
  margin-bottom: 24px;
}
.xob-email-page .seo-section-head h2 {
  font-size: clamp(22px, 3vw, 28px);
}
.xob-email-page .seo-section-head p {
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}
.xob-mail-grid {
  gap: 14px;
}
.xob-mail-card {
  padding: 20px 18px;
}
.xob-mail-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.xob-mail-card h3 i {
  font-size: 15px;
  margin-right: 6px;
  color: var(--xob-cyan);
}
.xob-mail-card .seo-hero-lead {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.xob-mail-card ul {
  margin-bottom: 16px;
}
.xob-mail-card li {
  padding: 5px 0;
  font-size: 13px;
}
.xob-mail-price {
  padding: 14px 0 0 !important;
  margin-top: auto;
  border-top: 1px solid var(--xob-border);
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
.xob-mail-price .seo-price-from {
  font-size: 11px;
  margin-bottom: 4px;
}
.xob-mail-price .seo-price {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 2px;
}
.xob-mail-price .seo-price small {
  font-size: 14px;
}
.xob-mail-price-note {
  display: block;
  font-size: 11px;
  color: var(--xob-text-3);
  margin-bottom: 10px;
}
.xob-mail-card .xob-btn {
  padding: 7px 14px;
  font-size: 12px;
  gap: 6px;
  min-height: 0;
  width: auto;
  margin-top: 4px;
}
.xob-mail-card .xob-btn i {
  font-size: 12px;
}
.xob-email-page .seo-compare-card.is-featured {
  box-shadow: 0 0 0 1px rgba(34,211,238,.25);
}
.xob-mail-includes {
  margin-bottom: 36px;
}
.xob-mail-includes .cloud-section-head h2 {
  font-size: clamp(20px, 2.5vw, 24px);
}
.xob-mail-features .cloud-include {
  padding: 14px 16px;
}
.xob-mail-features .cloud-include i {
  font-size: 18px;
  margin-bottom: 8px;
}
.xob-mail-features .cloud-include strong {
  font-size: 14px;
}
.xob-mail-features .cloud-include span {
  font-size: 12px;
}
.xob-mail-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.xob-mail-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
}
.xob-mail-benefit-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(14,165,233,.12);
  color: var(--xob-cyan);
  font-size: 15px;
}
.xob-mail-benefit h3 {
  font-size: 15px;
  color: #fff;
  margin: 0 0 4px;
}
.xob-mail-benefit p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--xob-text-2);
  margin: 0;
}
.xob-mail-faq .cloud-section-head h2 {
  font-size: clamp(20px, 2.5vw, 24px);
}
@media (min-width: 768px) {
  .xob-email-page .seo-compare-grid.xob-mail-grid { grid-template-columns: repeat(3, 1fr); }
  .xob-mail-benefits { grid-template-columns: repeat(3, 1fr); }
}

.xob-cloud-grid {
  padding: 0 0 40px;
}
.xob-cloud-features,
.xob-seo-page .xob-features-grid {
  margin-top: 0;
}
.xob-seo-page .hosting-packets {
  padding: 0;
  max-width: none;
}
.hosting-packets .hosting-packet .price strong {
  display: block;
  font-size: 28px;
  color: var(--xob-cyan);
}
.hosting-packets .hosting-packet .price span {
  display: block;
  font-size: 12px;
  color: var(--xob-text-3);
  margin-top: 4px;
}
.hosting-packets .hosting-packet > a.ripple,
.hosting-packets .hosting-packet a.ripple {
  display: block;
  margin: 0 20px 24px;
  padding: 14px;
  text-align: center;
  background: var(--xob-grad);
  color: #04101d !important;
  border-radius: var(--xob-radius-sm);
  font-weight: 700;
}
.whmcs-packets .whmcs-packet .properties ul li i {
  color: var(--xob-cyan);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .xob-form-grid { grid-template-columns: repeat(2, 1fr); }
  .xob-cloud-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-spec-grid { grid-template-columns: repeat(4, 1fr); }
  .seo-ip-visual { grid-template-columns: repeat(4, 1fr); }
  .seo-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .xob-auth { padding: 64px 20px 80px; }
  .xob-cloud-grid { grid-template-columns: repeat(3, 1fr); }
  .seo-hero-card { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .seo-compare-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .xob-cloud-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .xob-cloud-grid { grid-template-columns: repeat(4, 1fr); }
}

/* -------------------- 20. REDUCED MOTION -------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .xob-animate { opacity: 1; transform: none; }
  .xob-hero-glow, .xob-orbit, .xob-led-on { animation: none; }
}

/* ============================================================
   27. CORPORATE / SUPPORT PAGES
   ============================================================ */
.xob-corp-hero {
  padding: 48px 20px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(14,165,233,.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--xob-border);
}
.xob-corp-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin: 8px 0 12px;
}
.xob-corp-hero p {
  color: var(--xob-text-2);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}
.xob-corp { padding-bottom: 56px; }
.xob-corp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 20px 0;
}
.xob-corp-main { min-width: 0; }
.xob-corp-card,
.xob-corp-menu {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  padding: 24px;
}
.xob-corp-card h2 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 20px;
}
.xob-corp-menu h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--xob-text-3);
  margin: 0 0 16px;
}
.xob-corp-menu ul { list-style: none; margin: 0; padding: 0; }
.xob-corp-menu li { margin: 0; }
.xob-corp-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--xob-radius-sm);
  color: var(--xob-text-2);
  font-size: 14px;
  transition: background .2s, color .2s;
}
.xob-corp-menu a:hover,
.xob-corp-menu li.active a {
  background: rgba(14,165,233,.1);
  color: var(--xob-cyan);
}
.xob-corp-form { display: flex; flex-direction: column; gap: 16px; }
.xob-form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.xob-form-grid-2 { grid-template-columns: 1fr; }
.xob-field-input,
.xob-corp-form textarea,
.xob-corp-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--xob-radius-sm);
  border: 1px solid var(--xob-border);
  background: rgba(255,255,255,.04);
  color: var(--xob-text);
  font: inherit;
}
.xob-corp-form textarea { min-height: 140px; resize: vertical; }
.xob-field-hint { font-size: 13px; color: var(--xob-text-3); margin: 0 0 8px; }
.xob-form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.xob-alert-success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: #bbf7d0;
}
.xob-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.xob-contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
}
.xob-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14,165,233,.12);
  color: var(--xob-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.xob-contact-card strong { display: block; color: #fff; margin-bottom: 4px; font-size: 14px; }
.xob-contact-card p { margin: 0; color: var(--xob-text-2); font-size: 14px; line-height: 1.5; }
.xob-contact-card a { color: var(--xob-cyan); }
.xob-bank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.xob-bank-card {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  padding: 20px;
}
.xob-bank-logo {
  margin-bottom: 16px;
}
.xob-bank-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.xob-bank-logo-box img {
  display: block;
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.xob-bank-card dl { margin: 0; }
.xob-bank-card dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
}
.xob-bank-card dl > div:last-child { border-bottom: 0; }
.xob-bank-card dt { color: var(--xob-text-3); font-weight: 600; }
.xob-bank-card dd { margin: 0; color: #fff; word-break: break-all; }
.xob-corp-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--xob-radius-lg);
}
.xob-corp-note p {
  margin: 0 0 10px;
  color: var(--xob-text-2);
  font-size: 14px;
}
.xob-corp-note p:last-child { margin-bottom: 0; }
.xob-corp-note i { color: var(--xob-cyan); margin-right: 8px; }
.xob-faq-list { display: flex; flex-direction: column; gap: 10px; }
.xob-faq-item {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
}
.xob-faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}
.xob-faq-item summary::-webkit-details-marker { display: none; }
.xob-faq-item summary::after {
  content: '+';
  float: right;
  color: var(--xob-cyan);
  font-size: 18px;
}
.xob-faq-item[open] summary::after { content: '−'; }
.xob-faq-body {
  padding: 0 20px 16px;
  color: var(--xob-text-2);
  font-size: 14px;
  line-height: 1.6;
}
.xob-faq-body a { color: var(--xob-cyan); }
.xob-corp-cta {
  margin-top: 28px;
  padding: 24px;
  text-align: center;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
}
.xob-corp-cta p { color: var(--xob-text-2); margin: 0 0 16px; }
.xob-corp-cta .xob-btn { margin: 4px; }
.xob-panel-wrap {
  padding: 0 20px 48px;
  max-width: 960px;
  margin: 0 auto;
}
.xob-panel-wrap .xob-corp-form,
.xob-panel-wrap .xob-kb,
.xob-panel-wrap .xob-ticket-form,
.xob-panel-wrap .xob-dept-grid { max-width: 100%; }
.xob-kb { display: flex; flex-direction: column; gap: 28px; }
.xob-kb-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.xob-kb-search .xob-field-input { flex: 1; min-width: 200px; }
.xob-kb-cats h2,
.xob-kb-popular h2 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 16px;
}
.xob-kb-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.xob-kb-cat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.xob-kb-cat-card:hover {
  border-color: rgba(14,165,233,.4);
  transform: translateY(-2px);
}
.xob-kb-cat-icon { color: var(--xob-cyan); font-size: 20px; }
.xob-kb-cat-name { color: #fff; font-weight: 600; font-size: 16px; }
.xob-kb-cat-count { color: var(--xob-text-3); font-size: 13px; }
.xob-kb-cat-desc { color: var(--xob-text-2); font-size: 13px; margin-top: 4px; }
.xob-kb-articles { list-style: none; margin: 0; padding: 0; }
.xob-kb-articles li { margin: 0 0 10px; }
.xob-kb-articles a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  color: inherit;
}
.xob-kb-articles a:hover { border-color: rgba(14,165,233,.35); }
.xob-kb-articles i { color: var(--xob-cyan); margin-top: 3px; }
.xob-kb-articles strong { display: block; color: #fff; margin-bottom: 4px; }
.xob-kb-articles small { color: var(--xob-text-2); font-size: 13px; line-height: 1.5; }
.xob-dept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.xob-dept-card {
  padding: 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  text-align: center;
}
.xob-dept-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(14,165,233,.12);
  color: var(--xob-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.xob-dept-card h3 { color: #fff; margin: 0 0 8px; font-size: 18px; }
.xob-dept-card p { color: var(--xob-text-2); font-size: 14px; margin: 0 0 18px; }
.xob-ticket-form { display: flex; flex-direction: column; gap: 16px; }
.xob-ticket-attachments h3 { font-size: 16px; color: #fff; margin: 0 0 10px; }
.xob-ticket-add-file { font-size: 13px; color: var(--xob-text-2); margin: 0; }
.xob-ticket-add-file a { color: var(--xob-cyan); }

/* Hidden wait overlay (replaces broken bootstrap modal outside #whmcsx) */
.xob-wait-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.xob-wait-overlay.is-visible {
  display: flex;
}
.xob-wait-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.xob-wait-box img {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .xob-corp-grid { grid-template-columns: 1fr 260px; align-items: start; }
  .xob-form-grid-2 { grid-template-columns: 1fr 1fr; }
  .xob-contact-cards { grid-template-columns: repeat(3, 1fr); }
  .xob-bank-grid { grid-template-columns: repeat(2, 1fr); }
  .xob-kb-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .xob-dept-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .xob-kb-cat-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Linux / Windows VDS pages */
.seo-head.linuxvds {
  background:
    linear-gradient(180deg, rgba(5,10,20,.2) 0%, rgba(5,10,20,.85) 100%),
    radial-gradient(900px 400px at 85% 20%, rgba(34,197,94,.14), transparent 60%),
    linear-gradient(135deg, #07101f 0%, #0a1626 100%);
}
.seo-head.windowsvds {
  background:
    linear-gradient(180deg, rgba(5,10,20,.2) 0%, rgba(5,10,20,.85) 100%),
    radial-gradient(900px 400px at 85% 20%, rgba(59,130,246,.16), transparent 60%),
    linear-gradient(135deg, #07101f 0%, #0a1626 100%);
}
.xob-vds-page {
  padding: 48px 0 64px;
}
.xob-vds-page .seo-compare {
  margin-bottom: 40px;
}
.xob-vds-page .seo-section-head {
  margin-bottom: 28px;
}
.xob-vds-page .seo-section-head h2 {
  color: #fff;
  margin: 0 0 10px;
}
.xob-vds-page .seo-section-head p {
  margin: 0;
  color: var(--xob-text-2);
  max-width: 720px;
}
.xob-vds-grid {
  gap: 14px;
}
.xob-vds-card {
  padding: 20px;
}
.xob-vds-card h3 {
  font-size: 17px;
  margin: 0 0 12px;
}
.xob-vds-card h3 i {
  color: var(--xob-cyan);
  margin-right: 8px;
}
.xob-vds-card ul {
  flex: 1;
  margin: 0 0 16px;
}
.xob-vds-card li {
  padding: 6px 0;
  font-size: 13px;
}
.xob-vds-price {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--xob-border);
  text-align: center;
}
.xob-vds-price .seo-price-from {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--xob-text-3);
  margin-bottom: 4px;
}
.xob-vds-price .seo-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--xob-cyan);
  line-height: 1.1;
}
.xob-vds-price .seo-price small {
  font-size: 14px;
  font-weight: 600;
}
.xob-vds-price-note {
  display: block;
  font-size: 12px;
  color: var(--xob-text-3);
  margin: 4px 0 12px;
}
.xob-vds-card .xob-btn {
  width: 100%;
  justify-content: center;
}
.xob-vds-page .seo-compare-card.is-featured {
  border-color: var(--xob-border-2);
  background: linear-gradient(160deg, rgba(14,165,233,.10), var(--xob-surface));
  box-shadow: var(--xob-shadow-blue);
}
.xob-vds-includes {
  margin-bottom: 40px;
}
.xob-vds-includes .cloud-section-head h2 {
  color: #fff;
}
.xob-vds-features .cloud-include {
  padding: 18px 16px;
}
.xob-vds-faq .cloud-section-head h2 {
  font-size: clamp(20px, 2.5vw, 24px);
}
@media (min-width: 640px) {
  .xob-vds-page .seo-compare-grid.xob-vds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .xob-vds-page .seo-compare-grid.xob-vds-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   28. REGISTER PAGE (REDESIGN)
   ============================================================ */
.xob-register-page {
  padding-bottom: 56px;
}
.xob-register-hero {
  padding: 40px 20px 28px;
}
.xob-register-hero h1 {
  font-size: clamp(28px, 4vw, 36px);
}
.xob-register-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 28px 20px 0;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.xob-register-main {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  padding: 28px 24px 32px;
  box-shadow: var(--xob-shadow);
  min-width: 0;
}
.xob-register-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.xob-register-trust,
.xob-register-help {
  padding: 20px;
}
.xob-register-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.xob-register-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--xob-text-2);
}
.xob-register-benefits i {
  color: var(--xob-cyan);
  margin-top: 2px;
  flex-shrink: 0;
}
.xob-register-help ul { list-style: none; margin: 0; padding: 0; }
.xob-register-help a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--xob-radius-sm);
  color: var(--xob-text-2);
  font-size: 14px;
  transition: background .2s, color .2s;
}
.xob-register-help a:hover {
  background: rgba(14,165,233,.1);
  color: var(--xob-cyan);
}
.xob-register-help a i { width: 16px; text-align: center; color: var(--xob-cyan); }
.xob-register-section {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--xob-border);
}
.xob-register-section-last,
.xob-register-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.xob-register-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  margin: 0 0 18px;
}
.xob-register-section h2 i {
  color: var(--xob-cyan);
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.xob-register-form .xob-form-grid {
  gap: 16px;
}
.xob-register-form .xob-field span {
  font-size: 13px;
}
.xob-optional {
  font-style: normal;
  font-weight: 400;
  color: var(--xob-text-3);
  font-size: 12px;
}
.xob-register-form .xob-check {
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-sm);
  line-height: 1.5;
}
.xob-register-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--xob-border);
}
.xob-register-actions .xob-auth-foot { margin: 0; }
body.xob-register .xob-main { padding-top: 0; }
body.xob-register .xob-register-page input[type="text"],
body.xob-register .xob-register-page input[type="email"],
body.xob-register .xob-register-page input[type="tel"],
body.xob-register .xob-register-page input[type="password"],
body.xob-register .xob-register-page .xob-register-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: var(--xob-radius-sm);
  border: 1px solid var(--xob-border);
  background: rgba(255,255,255,.04);
  color: var(--xob-text);
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
body.xob-register .xob-register-page input:focus,
body.xob-register .xob-register-page .xob-select:focus {
  outline: none;
  border-color: var(--xob-blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,.18);
}
body.xob-register .xob-register-page .xob-captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
body.xob-register .xob-register-page .xob-captcha-row img {
  border-radius: 8px;
  border: 1px solid var(--xob-border);
  display: block;
}
@media (min-width: 768px) {
  .xob-register-layout {
    grid-template-columns: 1fr 280px;
  }
  .xob-register-aside {
    order: 2;
  }
  .xob-register-main {
    order: 1;
  }
  .xob-register-form .xob-form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .xob-register-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
  .xob-register-main {
    padding: 32px 32px 36px;
  }
}

/* =============================================================
   29. HOMEPAGE PRO (DATACENTER & SERVER VISUALS)
   ============================================================ */

/* Hero with photo background */
.xob-hero-pro {
  min-height: 520px;
  padding: 64px 0 72px;
}
.xob-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.38;
}
.xob-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 10, 22, 0.94) 0%, rgba(4, 10, 22, 0.78) 42%, rgba(4, 10, 22, 0.55) 100%),
    linear-gradient(180deg, rgba(4, 10, 22, 0.2) 0%, rgba(4, 10, 22, 0.85) 100%);
}
.xob-hero-pro .xob-hero-grid { opacity: 0.45; }

/* Server showcase */
.xob-hero-showcase {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}
.xob-hero-showcase-bg {
  position: absolute;
  inset: 8% 0 0;
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
  border: 1px solid var(--xob-border);
  opacity: 0.55;
}
.xob-hero-showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.85) brightness(0.7);
}
.xob-hero-showcase-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(4, 10, 22, 0.9) 100%);
}
.xob-hero-showcase-frame {
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.xob-hero-server-img {
  display: block;
  width: min(100%, 400px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.xob-hero-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(7, 16, 31, 0.88);
  border: 1px solid var(--xob-border-2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  box-shadow: var(--xob-shadow-blue);
  white-space: nowrap;
  animation: xobFloat 7s ease-in-out infinite;
}
.xob-hero-float i { color: var(--xob-cyan); }
.xob-hero-float-1 { top: 0; right: -4px; }
.xob-hero-float-2 { bottom: 18%; left: -8px; animation-delay: -2s; }
.xob-hero-float-3 { bottom: 0; right: 12%; animation-delay: -4s; }

@media (max-width: 991px) {
  .xob-hero-visual { display: block; margin-top: 8px; }
  .xob-hero-showcase { min-height: 280px; }
  .xob-hero-server-img { width: min(100%, 240px); }
  .xob-hero-float { font-size: 11px; padding: 8px 12px; }
  .xob-hero-float-1 { top: 4px; right: 0; }
  .xob-hero-float-3 { display: none; }
}

.xob-home-dc { padding-top: 48px; }
.xob-dc-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.xob-dc-shot {
  position: relative;
  margin: 0;
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
  border: 1px solid var(--xob-border);
  background: var(--xob-surface);
  transition: transform 0.35s var(--xob-ease), border-color 0.35s, box-shadow 0.35s;
}
.xob-dc-shot:hover {
  transform: translateY(-4px);
  border-color: var(--xob-border-2);
  box-shadow: var(--xob-shadow), var(--xob-shadow-blue);
}
.xob-dc-shot img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--xob-ease);
}
.xob-dc-shot:hover img { transform: scale(1.04); }
.xob-dc-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 22, 0.92));
}
.xob-dc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--xob-cyan);
  margin-bottom: 6px;
}
.xob-dc-shot figcaption strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.xob-dc-shot-main img { height: 260px; }

@media (min-width: 768px) {
  .xob-dc-gallery { grid-template-columns: repeat(2, 1fr); }
  .xob-dc-shot-main { grid-column: 1 / -1; }
  .xob-dc-shot-main img { height: 340px; }
  .xob-dc-shot img { height: 240px; }
}

@media (min-width: 992px) {
  .xob-dc-gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .xob-dc-shot-main { grid-column: 1; grid-row: 1 / span 2; }
  .xob-dc-shot-main img { height: 100%; min-height: 420px; }
  .xob-dc-shot:not(.xob-dc-shot-main) img { height: 100%; min-height: 200px; }
}

.xob-home-hardware {
  background: linear-gradient(180deg, transparent, rgba(7, 16, 31, 0.55), transparent);
}
.xob-hardware {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 32px 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius-lg);
  overflow: hidden;
}
.xob-hardware-visual {
  text-align: center;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 60%, rgba(14, 165, 233, 0.12), transparent 65%),
    linear-gradient(160deg, rgba(14, 22, 38, 0.6), rgba(7, 16, 31, 0.4));
  border-radius: var(--xob-radius);
  border: 1px solid var(--xob-border);
}
.xob-hardware-visual img {
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}
.xob-hardware-text .xob-section-title { text-align: left; }
.xob-hardware-text .xob-section-desc { text-align: left; margin-bottom: 20px; }
.xob-hardware-list { display: grid; gap: 12px; margin: 0 0 24px; }
.xob-hardware-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--xob-text-2);
}
.xob-hardware-list i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--xob-grad-soft);
  color: var(--xob-cyan);
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .xob-hardware {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    padding: 40px 44px;
  }
}

.xob-home-why { position: relative; overflow: hidden; }
.xob-home-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home-dc-aisle.jpg?v=6") center/cover no-repeat;
  background-image: -webkit-image-set(url("../images/home-dc-aisle.webp?v=6") type("image/webp"), url("../images/home-dc-aisle.jpg?v=6") type("image/jpeg"));
  background-image: image-set(url("../images/home-dc-aisle.webp?v=6") type("image/webp"), url("../images/home-dc-aisle.jpg?v=6") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.xob-infra-pro .xob-infra-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.xob-home-trust {
  padding: 28px 0 12px;
  border-top: 1px solid var(--xob-border);
}
.xob-trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xob-text-3);
  margin-bottom: 20px;
}
.xob-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 36px;
}
.xob-trust-logos img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.4);
  transition: opacity 0.25s, filter 0.25s;
}
.xob-trust-logos img:hover {
  opacity: 0.9;
  filter: grayscale(0) brightness(1);
}

.xob-cta-pro .xob-cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.xob-cta-pro .xob-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 10, 22, 0.88), rgba(4, 10, 22, 0.72));
}

@media (min-width: 992px) {
  .xob-hero-pro { min-height: 580px; padding: 80px 0 88px; }
  .xob-hero-server-img { width: min(100%, 380px); }
  .xob-hero-showcase { min-height: 420px; }
}

/* =============================================================
   30. PRICE + KDV INLINE (compact price rows)
   ============================================================ */

/* VDS cards: 200 TL + KDV on same line */
.xob-vds-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 2px;
}
.xob-vds-price .seo-price-from {
  flex: 0 0 100%;
  margin-bottom: 2px;
}
.xob-vds-price .seo-price {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.xob-vds-price .xob-vds-price-note {
  display: inline;
  margin: 0;
  flex: 0 0 auto;
  align-self: center;
  font-size: 13px;
  line-height: 1;
}
.xob-vds-price .xob-btn {
  flex: 0 0 100%;
  margin-top: 10px;
}

/* SEO / compare price boxes with note */
.seo-price-box .seo-price-row,
.xob-vds-price .seo-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex: 0 0 100%;
  margin-bottom: 12px;
}
.seo-price-box .seo-price-row .seo-price,
.xob-vds-price .seo-price-row .seo-price {
  margin-bottom: 0;
}
.seo-price-box .seo-price-row .seo-price-note,
.seo-price-box .seo-price-row .xob-vds-price-note,
.xob-vds-price .seo-price-row .xob-vds-price-note {
  display: inline;
  margin: 0;
  font-size: 13px;
  line-height: 1;
}

.seo-price-box:not(.xob-vds-price):not(.xob-mail-price) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 2px;
}
.seo-price-box:not(.xob-vds-price):not(.xob-mail-price) .seo-price-from {
  flex: 0 0 100%;
  margin-bottom: 2px;
}
.seo-price-box:not(.xob-vds-price):not(.xob-mail-price) .seo-price {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.seo-price-box:not(.xob-vds-price):not(.xob-mail-price) .seo-price-note {
  display: inline;
  margin: 0 0 14px;
  flex: 0 0 auto;
  align-self: center;
  font-size: 13px;
  line-height: 1.2;
  max-width: 300px;
  text-align: left;
}
.seo-price-box:not(.xob-vds-price):not(.xob-mail-price) .xob-btn {
  flex: 0 0 100%;
}

/* E-posta hosting cards */
.xob-mail-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 2px;
}
.xob-mail-price .seo-price-from {
  flex: 0 0 100%;
}
.xob-mail-price .seo-price {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.xob-mail-price-note {
  display: inline;
  margin: 0 0 10px;
  flex: 0 0 auto;
  align-self: center;
}
.xob-mail-price .xob-btn {
  flex: 0 0 100%;
}

/* Bayi / hosting packet prices: 500 TL +KDV / AYLIK inline */
.hosting-packets .hosting-packet .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 10px;
  padding: 14px 20px;
  line-height: 1.2;
}
.hosting-packets .hosting-packet .price h3 {
  margin: 0;
  padding: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--xob-cyan);
  line-height: 1;
}
.hosting-packets .hosting-packet .price p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--xob-text-3);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Dedicated / kiralik sunucu inline TL + KDV already in one line — keep compact */
.dedicated-packet .price {
  line-height: 1.3;
}

@media (min-width: 992px) {
  .xob-hero-server-img { width: min(100%, 440px); }
}

/* =============================================================
   31. HERO MOSAIC (replaces server cutout showcase)
   ============================================================ */
.xob-hero-pro .xob-hero-overlay {
  background:
    linear-gradient(105deg, rgba(4, 10, 22, 0.97) 0%, rgba(4, 10, 22, 0.88) 50%, rgba(4, 10, 22, 0.72) 100%);
}

.xob-hero-visual { display: block; }

.xob-hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.xob-hero-mosaic-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--xob-border-2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  line-height: 0;
}
.xob-hero-mosaic-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--xob-ease);
}
.xob-hero-mosaic-item:hover img { transform: scale(1.04); }
.xob-hero-mosaic-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.xob-hero-mosaic-a,
.xob-hero-mosaic-b {
  aspect-ratio: 4 / 3;
}
.xob-hero-mosaic-stat {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  min-width: 88px;
  background: rgba(7, 16, 31, 0.92);
  border: 1px solid var(--xob-border-2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: var(--xob-shadow-blue);
  text-align: center;
}
.xob-hero-mosaic-stat strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--xob-cyan);
  line-height: 1.1;
}
.xob-hero-mosaic-stat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--xob-text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.xob-hero-mosaic-stat-1 { bottom: 12px; left: 12px; }
.xob-hero-mosaic-stat-2 {
  top: 12px;
  right: 12px;
  flex-direction: row;
  gap: 6px;
  min-width: auto;
  padding: 8px 12px;
}
.xob-hero-mosaic-stat-2 i { color: var(--xob-cyan); font-size: 14px; }
.xob-hero-mosaic-stat-2 span { margin-top: 0; font-size: 12px; }

@media (max-width: 991px) {
  .xob-hero-mosaic { max-width: 100%; margin-top: 8px; }
  .xob-hero-mosaic-main { aspect-ratio: 16 / 10; }
}

@media (min-width: 992px) {
  .xob-hero-mosaic { max-width: 520px; gap: 12px; }
  .xob-hero-mosaic-stat strong { font-size: 22px; }
}

/* =============================================================
   32. REVERT KDV INLINE on SEO Sunucu + E-Posta pages
   ============================================================ */
.xob-seo-page .seo-price-box {
  display: block;
  text-align: center;
}
.xob-seo-page .seo-price-box .seo-price-from {
  display: block;
  flex: none;
  margin-bottom: 8px;
}
.xob-seo-page .seo-price-box .seo-price {
  display: block;
  margin-bottom: 8px;
  flex: none;
}
.xob-seo-page .seo-price-box .seo-price-note {
  display: block;
  margin: 0 0 20px;
  max-width: none;
  text-align: center;
  flex: none;
  align-self: auto;
}
.xob-seo-page .seo-price-box .xob-btn {
  flex: none;
  width: 100%;
}

.xob-email-page .xob-mail-price {
  display: block;
  text-align: left;
}
.xob-email-page .xob-mail-price .seo-price-from {
  display: block;
  flex: none;
  margin-bottom: 4px;
}
.xob-email-page .xob-mail-price .seo-price {
  display: block;
  margin-bottom: 2px;
  flex: none;
}
.xob-email-page .xob-mail-price-note {
  display: block;
  margin: 0 0 10px;
  flex: none;
  align-self: auto;
}
.xob-email-page .xob-mail-price .xob-btn {
  flex: none;
  width: auto;
}

/* =============================================================
   33. E-POSTA MAIL PRICE (card footer redesign)
   ============================================================ */
.xob-email-page .xob-mail-card {
  padding: 20px 18px 0;
  overflow: hidden;
}
.xob-email-page .xob-mail-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin-top: auto;
  margin-left: -18px;
  margin-right: -18px;
  margin-bottom: 0;
  width: calc(100% + 36px);
  padding: 18px 16px 16px !important;
  border-top: 1px solid var(--xob-border-2);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.12), rgba(34, 211, 238, 0.04)) !important;
  border-radius: 0;
  box-shadow: none;
}
.xob-email-page .seo-compare-card.is-featured .xob-mail-price {
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.16), rgba(34, 211, 238, 0.06)) !important;
}
.xob-email-page .xob-mail-price-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xob-text-3);
  margin-bottom: 6px;
}
.xob-email-page .xob-mail-price-amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--xob-cyan);
  line-height: 1.1;
  margin: 0 0 4px;
}
.xob-email-page .xob-mail-price-amount small {
  font-size: 16px;
  font-weight: 600;
}
.xob-email-page .xob-mail-price-note {
  display: block;
  font-size: 11px;
  color: var(--xob-text-3);
  margin: 0 0 14px;
}
.xob-email-page .xob-mail-price .xob-btn {
  width: 100% !important;
  max-width: 100%;
  justify-content: center;
  padding: 10px 16px !important;
  font-size: 13px !important;
  margin: 0 !important;
}

/* =============================================================
   34. SEO SUNUCU PRICE BOX (hero sidebar)
   ============================================================ */
.xob-seo-page .seo-hero-side {
  display: flex;
  align-items: stretch;
}
.xob-seo-page .xob-seo-price-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.14), rgba(34, 211, 238, 0.06));
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-lg);
  box-shadow: var(--xob-shadow-blue);
}
.xob-seo-page .xob-seo-price-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--xob-text-3);
  margin-bottom: 10px;
}
.xob-seo-page .xob-seo-price-amount {
  font-size: clamp(36px, 5vw, 44px);
  font-weight: 700;
  color: var(--xob-cyan);
  line-height: 1.05;
  margin: 0 0 8px;
}
.xob-seo-page .xob-seo-price-amount small {
  font-size: 0.48em;
  font-weight: 600;
}
.xob-seo-page .xob-seo-price-note {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: var(--xob-text-3);
  margin: 0 0 22px;
  padding: 0 4px;
}
.xob-seo-page .xob-seo-price-box .xob-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.xob-seo-page .xob-seo-price-box .xob-btn:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .xob-seo-page .seo-hero-side {
    position: sticky;
    top: 96px;
  }
}

.xob-lang-switch{display:inline-flex;align-items:center;gap:2px;margin-right:10px;padding:2px;border-radius:6px;background:rgba(255,255,255,.06);border:1px solid rgba(120,160,220,.15)}
.xob-lang-switch a{display:inline-block;padding:3px 8px;font-size:11px;font-weight:600;color:#8fa3c4;text-decoration:none;border-radius:4px;line-height:1.2}
.xob-lang-switch a:hover{color:#e8f0ff}
.xob-lang-switch a.is-active{color:#050a14;background:linear-gradient(135deg,#0ea5e9,#22d3ee)}

/* Corporate prose pages */
.xob-prose p { color: var(--xob-text-2); line-height: 1.7; margin: 0 0 14px; }
.xob-prose p:last-child { margin-bottom: 0; }
.xob-prose h2 { margin-bottom: 12px; }
.xob-prose-list { margin: 8px 0 0; padding-left: 18px; color: var(--xob-text-2); line-height: 1.7; }
.xob-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.xob-offer-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
}
.xob-offer-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
}
.xob-offer-item p {
  margin: 0;
  color: var(--xob-text-2);
  line-height: 1.6;
  font-size: 0.95rem;
}
.xob-info-list { margin: 0; }
.xob-info-list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.xob-info-list > div:last-child { border-bottom: 0; }
.xob-info-list dt { margin: 0; color: var(--xob-text-3); font-weight: 600; }
.xob-info-list dd { margin: 0; color: #fff; }
.xob-cert-list { list-style: none; margin: 0; padding: 0; }
.xob-cert-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.xob-cert-list li:last-child { border-bottom: 0; }
.xob-cert-list i { color: var(--xob-cyan); }
.xob-corp-main > .xob-corp-card + .xob-corp-card { margin-top: 14px; }
@media (max-width: 640px) {
  .xob-info-list > div { grid-template-columns: 1fr; gap: 4px; }
}

/* --- 10 Gbps live-traffic graph tile (Cacti/RRDtool) --- */
.xob-dc-shot-graph img { object-fit: contain; object-position: top center; background: #0a1626; }
.xob-dc-shot-graph figcaption { background: linear-gradient(180deg, transparent, rgba(4, 10, 22, 0.92)); }

/* =============================================================
   CLIENT AREA PANEL (pageheader.tpl) — dark xobtheme layout
   ============================================================ */
.clientarea-head {
  position: relative;
  max-width: var(--xob-container);
  margin: 24px auto 28px;
  min-height: 280px;
  padding: 0 0 120px;
  background:
    radial-gradient(900px 280px at 15% 0%, rgba(14,165,233,.22), transparent 55%),
    linear-gradient(160deg, rgba(14,165,233,.12), rgba(8,18,34,.55));
  border: 1px solid var(--xob-border-2);
  border-radius: var(--xob-radius-lg);
  color: #fff;
  overflow: visible;
}
.clientarea-head > .container {
  position: relative;
  max-width: var(--xob-container);
  margin: 0 auto;
  padding: 36px 24px 0;
  min-height: 120px;
}
.clientarea-head .logout {
  position: absolute;
  top: 36px;
  right: 24px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 44px;
  padding: 0 18px 0 42px;
  background: #ef4444 url("../images/icon-logout.png") no-repeat 14px center;
  background-size: 18px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: filter .2s, transform .2s;
}
.clientarea-head .logout:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff !important;
}
.clientarea-head .profile-menu {
  position: relative;
  top: auto;
  right: auto;
  z-index: 50;
  width: 220px;
}
.clientarea-head .profile-menu > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  height: 44px;
  padding: 0 48px 0 44px;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  border-radius: 999px;
  color: #04101d !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  overflow: hidden;
}
.clientarea-head .profile-menu > a .arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,16,29,.18);
  font-size: 16px;
  color: #04101d;
}
.clientarea-head .profile-menu > a .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 44px;
  background: url("../images/icon-cark2.png") no-repeat center;
  background-size: 18px;
}
.clientarea-head .profile-menu .dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 60;
  top: 100%;
  left: 0;
  right: auto;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  background: #0b1a2e;
  border: 1px solid var(--xob-border-2);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,.45);
  transition: opacity .15s ease;
}
.clientarea-head .profile-menu .dropdown ul {
  list-style: none;
  margin: 0;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.clientarea-head .profile-menu .dropdown ul li { margin: 0; }
.clientarea-head .profile-menu .dropdown ul li a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--xob-text) !important;
  font-size: 13px;
  text-decoration: none !important;
  border: none !important;
}
.clientarea-head .profile-menu .dropdown ul li a:hover {
  background: rgba(14,165,233,.16);
  color: #fff !important;
}
.clientarea-head .profile-menu:hover .dropdown,
.clientarea-head .profile-menu:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  top: 100%;
}
.clientarea-head .user-profile {
  position: absolute;
  top: 36px;
  left: 24px;
  display: flex;
  align-items: center;
  min-height: 56px;
  max-width: calc(100% - 420px);
  padding: 8px 20px 8px 72px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--xob-border);
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.clientarea-head .user-profile span { font-weight: 700; margin-left: 4px; }
.clientarea-head .user-profile img {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  object-fit: cover;
}
.clientarea-head .clientarea-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(4,10,22,.55);
  border-top: 1px solid var(--xob-border);
  border-radius: 0 0 var(--xob-radius-lg) var(--xob-radius-lg);
  overflow: visible;
}
.clientarea-head .clientarea-menu .container {
  max-width: var(--xob-container);
  margin: 0 auto;
  padding: 0 16px;
}
.clientarea-head .clientarea-menu .container > ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
}
.clientarea-head .clientarea-menu .container > ul > li {
  position: relative;
  float: none;
  margin: 0;
  padding: 0;
  height: auto;
}
.clientarea-head .clientarea-menu .container > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  min-height: 92px;
  padding: 10px 8px;
  border-radius: 10px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  border: none !important;
  transition: background .2s;
}
.clientarea-head .clientarea-menu .container > ul > li > a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 100%;
  margin-bottom: 4px;
  padding: 0;
}
.clientarea-head .clientarea-menu .container > ul > li > a .icon img {
  max-height: 32px;
  width: auto;
}
.clientarea-head .clientarea-menu .container > ul > li > a:hover,
.clientarea-head .clientarea-menu .container > ul > li.active > a {
  background: rgba(14,165,233,.22);
}
.clientarea-head .clientarea-menu .container > ul > li > ul {
  list-style: none;
  position: absolute;
  z-index: 40;
  left: 0;
  top: 100%;
  width: 230px;
  margin: 0;
  padding: 10px 8px 8px;
  background: #0b1a2e;
  border: 1px solid var(--xob-border-2);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.clientarea-head .clientarea-menu .container > ul > li > ul:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 14px;
  background: transparent;
}
.clientarea-head .clientarea-menu .container > ul > li > ul li {
  border-bottom: 1px solid var(--xob-border);
}
.clientarea-head .clientarea-menu .container > ul > li > ul li:last-child,
.clientarea-head .clientarea-menu .container > ul > li > ul li.divider {
  border-bottom: none;
}
.clientarea-head .clientarea-menu .container > ul > li > ul li.divider {
  height: 1px;
  margin: 6px 4px;
  background: var(--xob-border);
  padding: 0;
}
.clientarea-head .clientarea-menu .container > ul > li > ul li a {
  display: block;
  padding: 10px 12px;
  color: var(--xob-text-2) !important;
  font-size: 13px;
  text-decoration: none !important;
  border: none !important;
  border-radius: 8px;
}
.clientarea-head .clientarea-menu .container > ul > li > ul li a:hover {
  background: rgba(14,165,233,.16);
  color: #fff !important;
}
.clientarea-head .clientarea-menu .container > ul > li:hover > ul,
.clientarea-head .clientarea-menu .container > ul > li:focus-within > ul {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  top: 100%;
}

.tickets-content {
  max-width: var(--xob-container);
  margin: 0 auto 40px;
  padding: 18px 20px 24px;
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: var(--xob-radius);
  color: var(--xob-text);
  box-shadow: none;
}
.tickets-content h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 14px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--xob-border);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-indent: 0;
}
.tickets-content h3 .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--xob-grad);
  color: #04101d;
  font-size: 12px;
  font-weight: 800;
}
.tickets-content h3 .new-ticket {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(14,165,233,.16);
  color: var(--xob-cyan) !important;
  font-size: 13px;
  text-decoration: none !important;
}
.tickets-content .ticket-table,
.tickets-content .panel {
  background: transparent;
  border: none;
  box-shadow: none;
}
.tickets-content .table { color: var(--xob-text); }
.xob-panel-wrap {
  max-width: var(--xob-container);
  margin: 0 auto 48px;
  padding: 0 16px 24px;
}

@media (max-width: 991px) {
  .clientarea-head {
    min-height: 0;
    padding: 20px 16px 16px;
  }
  .clientarea-head > .container {
    padding: 0;
    min-height: 0;
  }
  .clientarea-head .user-profile,
  .clientarea-head .profile-menu,
  .clientarea-head .logout {
    position: static;
    max-width: none;
    width: 100%;
    margin: 0 0 10px;
  }
  .clientarea-head .profile-menu { width: 100%; }
  .clientarea-head .clientarea-menu {
    position: static;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid var(--xob-border);
  }
  .clientarea-head .clientarea-menu .container > ul { justify-content: center; }
  .clientarea-head .clientarea-menu .container > ul > li > a {
    width: 104px;
    min-height: 84px;
  }
}

/* =============================================================
   CLIENT PANEL LISTS / TABLES / FILTERS
   ============================================================ */
.xob-panel-wrap,
#whmcsx.xob-panel-wrap {
  max-width: var(--xob-container);
  margin: 0 auto 48px;
  padding: 0 16px 32px;
  color: var(--xob-text);
}
.xob-panel-wrap > section,
#whmcsx.xob-panel-wrap > section {
  display: block;
}
.xob-panel-wrap .containerx,
#whmcsx .containerx {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
/* Toolbar rows only — do NOT flex normal Bootstrap grids */
.xob-panel-wrap .xob-toolbar.row,
#whmcsx .xob-toolbar.row,
.xob-panel-wrap .well.form-inline,
#whmcsx .well.form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin: 0 0 16px;
}
.xob-panel-wrap .xob-toolbar .col-md-7,
.xob-panel-wrap .xob-toolbar .col-md-5,
#whmcsx .xob-toolbar .col-md-7,
#whmcsx .xob-toolbar .col-md-5 {
  float: none;
  width: auto;
  padding: 0;
}
.xob-panel-wrap .xob-toolbar .col-md-7,
#whmcsx .xob-toolbar .col-md-7 { flex: 1 1 240px; }
.xob-panel-wrap .xob-toolbar .col-md-5,
#whmcsx .xob-toolbar .col-md-5 {
  flex: 0 1 auto;
  margin-left: auto;
}
#resultsfound,
.xob-panel-wrap #resultsfound {
  color: var(--xob-text-2);
  font-size: 14px;
  padding-top: 4px !important;
}
.xob-panel-wrap .well,
.xob-panel-wrap .well-sm,
#whmcsx .well,
#whmcsx .well-sm {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 12px;
  box-shadow: none;
  padding: 10px 12px;
  margin: 0;
}
.xob-panel-wrap .form-inline,
#whmcsx .form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  float: none !important;
}
.xob-panel-wrap .form-inline .form-group,
#whmcsx .form-inline .form-group { margin: 0; }
.xob-panel-wrap .form-control,
#whmcsx .form-control,
.xob-panel-wrap select.form-control,
#whmcsx select.form-control,
#resultslimit select {
  background: rgba(255,255,255,.06) !important;
  color: var(--xob-text) !important;
  border: 1px solid var(--xob-border-2) !important;
  border-radius: 10px !important;
  height: 40px;
  min-height: 40px;
  padding: 8px 12px;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}
.xob-panel-wrap .form-control::placeholder,
#whmcsx .form-control::placeholder { color: var(--xob-text-3, #8aa0b8); }
.xob-panel-wrap .btn,
.xob-panel-wrap .btn-success,
.xob-panel-wrap .btn-primary,
#whmcsx .btn,
#whmcsx .btn-success,
#whmcsx .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: var(--xob-grad);
  color: #04101d !important;
  font-weight: 700;
  text-decoration: none !important;
}
.xob-panel-wrap .btn:hover,
#whmcsx .btn:hover { filter: brightness(1.05); color: #04101d !important; }

.xob-panel-wrap .panel,
.xob-panel-wrap .panel-default,
#whmcsx .panel,
#whmcsx .panel-default {
  background: var(--xob-surface);
  border: 1px solid var(--xob-border);
  border-radius: 14px;
  box-shadow: none;
  overflow: auto;
  margin-bottom: 16px;
}
.xob-panel-wrap .table,
#whmcsx .table,
#resultslist {
  width: 100%;
  border-collapse: collapse;
  color: var(--xob-text);
  margin: 0;
}
.xob-panel-wrap .table > thead > tr > th,
.xob-panel-wrap .table > tbody > tr > td,
#whmcsx .table > thead > tr > th,
#whmcsx .table > tbody > tr > td,
#resultslist > thead > tr > th,
#resultslist > tbody > tr > td {
  display: table-cell;
  padding: 12px 14px;
  border-top: 1px solid var(--xob-border);
  vertical-align: middle;
  white-space: nowrap;
}
.xob-panel-wrap .table > thead > tr > th,
#whmcsx .table > thead > tr > th,
#resultslist > thead > tr > th {
  background: var(--xob-surface-2);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border-top: none;
  border-bottom: 1px solid var(--xob-border-2);
}
.xob-panel-wrap .table > thead > tr > th a,
#whmcsx .table > thead > tr > th a,
#resultslist > thead > tr > th a {
  color: #fff !important;
  text-decoration: none !important;
}
.xob-panel-wrap .table > thead > tr > th a:hover,
#whmcsx .table > thead > tr > th a:hover { color: var(--xob-cyan) !important; }
.xob-panel-wrap .table-striped > tbody > tr:nth-of-type(odd) > td,
#whmcsx .table-striped > tbody > tr:nth-of-type(odd) > td {
  background: rgba(255,255,255,.03);
}
.xob-panel-wrap .table a,
#whmcsx .table a { color: var(--xob-accent); }
.xob-panel-wrap .label,
#whmcsx .label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.xob-panel-wrap .pagination,
#whmcsx .pagination {
  display: flex;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  gap: 8px;
}
.xob-panel-wrap .pagination > li > a,
#whmcsx .pagination > li > a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--xob-border);
  background: var(--xob-surface);
  color: var(--xob-text) !important;
  text-decoration: none !important;
}
.xob-panel-wrap .pagination > li.disabled > a,
#whmcsx .pagination > li.disabled > a {
  opacity: .45;
  pointer-events: none;
}
#resultslimit {
  float: none !important;
  display: inline-block;
  margin: 8px 0 0 auto !important;
}
#resultslimit fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.xob-panel-wrap .pull-right,
#whmcsx .pull-right { float: none !important; }

@media (max-width: 767px) {
  .xob-panel-wrap .row,
  #whmcsx .xob-toolbar.row { flex-direction: column; align-items: stretch; }
  .xob-panel-wrap .col-md-5,
  #whmcsx .col-md-5 { margin-left: 0; width: 100%; }
  .xob-panel-wrap .form-inline,
  #whmcsx .form-inline { width: 100%; }
  .xob-panel-wrap .form-control,
  #whmcsx .form-control { min-width: 0 !important; width: 100%; }
  .xob-panel-wrap .table > thead > tr > th,
  .xob-panel-wrap .table > tbody > tr > td,
  #resultslist > thead > tr > th,
  #resultslist > tbody > tr > td { white-space: normal; }
}

/* =============================================================
   CLIENT PANEL CONTRAST FIX (must beat whmcsx white panels)
   ============================================================ */
body.xob-body #whmcsx.xob-panel-wrap,
body.xob-body .xob-panel-wrap {
  background: transparent !important;
  color: #e8eef7 !important;
}
body.xob-body #whmcsx .panel,
body.xob-body #whmcsx .panel-default,
body.xob-body #whmcsx .panel-body,
body.xob-body #whmcsx .well,
body.xob-body #whmcsx .well-sm,
body.xob-body .xob-panel-wrap .panel,
body.xob-body .xob-panel-wrap .panel-default,
body.xob-body .xob-panel-wrap .well {
  background: #0b1524 !important;
  background-color: #0b1524 !important;
  color: #e8eef7 !important;
  border-color: rgba(255,255,255,.10) !important;
  box-shadow: none !important;
}
body.xob-body #whmcsx .table,
body.xob-body #whmcsx .table > thead > tr > th,
body.xob-body #whmcsx .table > tbody > tr > td,
body.xob-body #whmcsx #resultslist,
body.xob-body #whmcsx #resultslist > thead > tr > th,
body.xob-body #whmcsx #resultslist > tbody > tr > td {
  background-color: transparent !important;
  color: #e8eef7 !important;
  border-color: rgba(255,255,255,.10) !important;
}
body.xob-body #whmcsx .table > thead > tr > th,
body.xob-body #whmcsx #resultslist > thead > tr > th {
  background: #122033 !important;
  color: #ffffff !important;
}
body.xob-body #whmcsx .table > thead > tr > th a,
body.xob-body #whmcsx #resultslist > thead > tr > th a {
  color: #ffffff !important;
}
body.xob-body #whmcsx .table-striped > tbody > tr:nth-of-type(odd) > td {
  background-color: rgba(255,255,255,.04) !important;
}
body.xob-body #whmcsx #resultsfound,
body.xob-body #whmcsx .pagination > li > a,
body.xob-body #whmcsx label,
body.xob-body #whmcsx p,
body.xob-body #whmcsx td,
body.xob-body #whmcsx th {
  color: #e8eef7 !important;
}
body.xob-body #whmcsx .pagination > li > a {
  background: #0b1524 !important;
  border-color: rgba(255,255,255,.12) !important;
}
body.xob-body #whmcsx .form-control,
body.xob-body #whmcsx select,
body.xob-body #whmcsx input[type="text"],
body.xob-body #whmcsx #resultslimit select {
  background: #0f1c2e !important;
  background-color: #0f1c2e !important;
  color: #e8eef7 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}
body.xob-body #whmcsx .btn-success,
body.xob-body #whmcsx .btn-primary,
body.xob-body #whmcsx .btn {
  background-image: linear-gradient(135deg, #0ea5e9, #22d3ee) !important;
  background-color: #0ea5e9 !important;
  border: none !important;
  color: #04101d !important;
}
body.xob-body #whmcsx a:not(.btn):not(.label):not(.xob-btn):not(.xob-btn-primary) {
  color: #38bdf8 !important;
}
body.xob-body #whmcsx .label-active,
body.xob-body #whmcsx .label-Active {
  background: #16a34a !important;
  color: #fff !important;
}
/* home tickets white card */
body.xob-body .tickets-content {
  background: #0b1524 !important;
  border-color: rgba(255,255,255,.10) !important;
  color: #e8eef7 !important;
}
body.xob-body .tickets-content h3 { color: #fff !important; }

/* Homepage picture/img fill */
.xob-hero-mosaic picture,
.xob-dc-gallery picture,
.xob-home-hardware picture {
  display: contents;
}
.xob-hero-mosaic img,
.xob-dc-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Font Awesome: prevent theme font cascade / cross-origin tofu squares */
.fa,
.fa:before,
i.fa,
i.fa:before {
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
