﻿/* =====================================================================
   DeepSeek Hosting Page — HostGuru Africa
   Brand: Cyan #06b6d4 · Navy #050e1f · AI / developer aesthetic
   ===================================================================== */

:root {
  --ds-cyan:   #06b6d4;
  --ds-blue:   #0369a1;
  --ds-dark:   #050e1f;
  --ds-mid:    #0c1a2e;
  --ds-glow:   rgba(6,182,212,.18);
  --ds-light:  #cffafe;
}

/* ── Container ───────────────────────────────────────────────────────── */
.container-hg {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) { .container-hg { padding: 0 16px; } }

/* ── Hero ────────────────────────────────────────────────────────────── */
.ds-hero {
  background: linear-gradient(135deg, #050e1f 0%, #0c1a2e 45%, #0c4a6e 80%, #0369a1 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
/* Neural / grid pattern overlay */
.ds-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.ds-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 450px at 15% 60%, rgba(6,182,212,.12), transparent),
    radial-gradient(ellipse 500px 350px at 85% 25%, rgba(3,105,161,.20), transparent);
  pointer-events: none;
}
.ds-hero-inner { position: relative; z-index: 1; }
.ds-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .ds-hero-grid { grid-template-columns: 1fr; } }

/* Badge */
.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.35);
  color: #67e8f9;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 24px;
  padding: 6px 16px;
  margin-bottom: 22px;
}

/* H1 */
.ds-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 20px;
}
.ds-grad {
  background: linear-gradient(90deg, #67e8f9, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trust pills */
.ds-trust-row  { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.ds-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: #cffafe;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 13px;
}

/* Hero CTAs */
.btn-ds-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06b6d4;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-ds-p:hover { background: #0891b2; transform: translateY(-1px); }

.btn-ds-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: #cffafe !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(6,182,212,.35);
  transition: background .2s;
}
.btn-ds-s:hover { background: rgba(6,182,212,.15); }

/* Hero terminal */
.ds-terminal {
  background: #0a0f1e;
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(6,182,212,.12);
}
.ds-term-bar {
  background: #111827;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ds-term-dots { display: flex; gap: 6px; }
.ds-term-dot  { width: 12px; height: 12px; border-radius: 50%; }
.ds-term-title {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  margin-left: 8px;
  flex: 1;
  text-align: center;
}
.ds-term-body  { padding: 20px; font-family: 'Fira Code','Courier New',monospace; font-size: 12.5px; line-height: 1.7; }
.ds-prompt     { color: #06b6d4; font-weight: 700; }
.ds-cmd        { color: #67e8f9; }
.ds-out        { color: rgba(255,255,255,.55); display: block; padding-left: 16px; }
.ds-out-green  { color: #4ade80; }
.ds-out-cyan   { color: #67e8f9; }
.ds-out-yellow { color: #fbbf24; }
.ds-cursor     {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #06b6d4;
  border-radius: 1px;
  animation: ds-blink 1.1s infinite;
  vertical-align: middle;
}
@keyframes ds-blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

/* ── Stat bar ────────────────────────────────────────────────────────── */
.ds-stat-bar {
  background: #0c1a2e;
  border-bottom: 1px solid rgba(6,182,212,.12);
  padding: 18px 0;
}
.ds-stat-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ds-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 28px;
  border-right: 1px solid rgba(6,182,212,.1);
}
.ds-stat-item:last-child { border-right: none; }
.ds-stat-num { font-size: 1.5rem; font-weight: 900; color: #67e8f9; line-height: 1; }
.ds-stat-lbl { font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 4px; text-align: center; }

/* ── Eyebrow / headings ──────────────────────────────────────────────── */
.eyebrow-ds {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ds-cyan);
  margin-bottom: 12px;
}
.sh-ds {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  line-height: 1.2;
}
.sub-ds { font-size: .97rem; color: #6b7280; line-height: 1.75; margin: 0 0 20px; }

/* ── What is DeepSeek ────────────────────────────────────────────────── */
.ds-what { background: #fff; padding: 72px 0; border-bottom: 1px solid #e5e7eb; }
.ds-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 860px) { .ds-what-grid { grid-template-columns: 1fr; gap: 32px; } }

.ds-model-card {
  background: linear-gradient(135deg, #0c1a2e, #0c4a6e);
  border: 1px solid rgba(6,182,212,.2);
  border-radius: 18px;
  padding: 28px;
}
.ds-model-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #67e8f9; margin-bottom: 20px; }
.ds-model-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ds-model-row:last-child { border-bottom: none; }
.ds-model-label { font-size: 12.5px; color: rgba(255,255,255,.5); min-width: 120px; }
.ds-model-val   { font-size: 13px; font-weight: 700; color: #fff; }
.ds-model-tag   { font-size: 11px; font-weight: 700; background: rgba(6,182,212,.2); color: #67e8f9; border-radius: 6px; padding: 2px 8px; }

/* ── Plans section ───────────────────────────────────────────────────── */
.ds-plans { background: #f8fafc; padding: 72px 0 60px; }

/* ══ hgl-* PRICING CARDS — DeepSeek cyan theme override ══════════════
   Full hgl-* system with cyan (#06b6d4) accent instead of orange.
   ════════════════════════════════════════════════════════════════════ */

/* Billing toggle */

/* Cards grid */



@media(max-width:1100px){.hgl-grid{grid-template-columns:repeat(2,1fr)}.hgl-grid-3col{grid-template-columns:repeat(2,1fr)}.hgl-grid-4col{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.hgl-grid,.hgl-grid-3col{grid-template-columns:1fr}}

/* Individual card */


/* Badge */





/* Plan name + tagline */

/* Price block */

/* Divider */

/* Feature rows — RESOURCES */




/* Feature rows — STACK */



/* Support badge */



/* Unlimited badge */

/* CTA button — DS cyan override */





/* Full specs table */
.hgl-specs-table{display:none;margin-top:40px;overflow-x:auto}
.hgl-specs-table.open{display:block}








/* Specs toggle */




/* ── hgl-* MOBILE RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1100px){.hgl-card{padding:24px 20px}}
@media(max-width:767px){

}
@media(max-width:600px){

  .hgl-specs-table{border-radius:0;margin-left:-16px;margin-right:-16px;width:calc(100% + 32px)}



}
@media(max-width:400px){

}

/* ── Steps ───────────────────────────────────────────────────────────── */
.ds-start { background: linear-gradient(135deg, #050e1f 0%, #0c1a2e 100%); padding: 72px 0; }
.ds-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
@media (max-width: 860px) { .ds-steps { grid-template-columns: 1fr; gap: 20px; } }

.ds-step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(6,182,212,.18);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ds-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,182,212,.15);
  border: 2px solid rgba(6,182,212,.4);
  color: #67e8f9;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-step-title { font-size: 1.05rem; font-weight: 800; color: #fff; }
.ds-step-desc  { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; }
.ds-step-tag   {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(6,182,212,.12);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  padding: 5px 12px;
  align-self: flex-start;
}

/* ── Why self-host ───────────────────────────────────────────────────── */
.ds-why { background: #fff; padding: 72px 0; border-bottom: 1px solid #e5e7eb; }
.ds-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 900px) { .ds-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ds-why-grid { grid-template-columns: 1fr; } }

.ds-wc {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.ds-wc:hover { box-shadow: 0 8px 32px rgba(6,182,212,.10); transform: translateY(-3px); }
.ds-wc-icon  { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ds-wc-title { font-size: .97rem; font-weight: 800; color: #111; }
.ds-wc-desc  { font-size: 13px; color: #6b7280; line-height: 1.65; }

/* ── Use cases ───────────────────────────────────────────────────────── */
.ds-uses { background: #f8fafc; padding: 72px 0; }
.ds-uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 900px) { .ds-uses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ds-uses-grid { grid-template-columns: 1fr; } }

.ds-uc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .18s;
}
.ds-uc:hover { box-shadow: 0 8px 28px rgba(6,182,212,.10); transform: translateY(-3px); }
.ds-uc-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ds-cyan); margin-bottom: 2px; }
.ds-uc-title { font-size: .97rem; font-weight: 800; color: #111; }
.ds-uc-desc  { font-size: 12.5px; color: #6b7280; line-height: 1.65; }

/* ── Comparison table ────────────────────────────────────────────────── */
.ds-compare { background: #fff; padding: 72px 0; border-bottom: 1px solid #e5e7eb; }
.ds-cmp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 760px) { .ds-cmp-grid { grid-template-columns: 1fr; } }

.ds-cmp-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px;
}
.ds-cmp-vs    { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ds-cyan); margin-bottom: 10px; }
.ds-cmp-title { font-size: 1.05rem; font-weight: 800; color: #111; margin-bottom: 14px; }
.ds-cmp-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ds-cmp-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #374151; line-height: 1.55; }
.ds-cmp-badge { display: inline-block; background: #cffafe; color: #0e7490; font-size: 10px; font-weight: 700; border-radius: 6px; padding: 2px 8px; margin-top: 10px; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.ds-faq { background: #fff; padding: 72px 0; }
.ds-faq-wrap { max-width: 780px; margin: 32px auto 0; }

/* ── CTA ─────────────────────────────────────────────────────────────── */
.ds-cta {
  background: linear-gradient(135deg, #050e1f 0%, #0c1a2e 50%, #0c4a6e 100%);
  padding: 80px 0;
}
.ds-cta-inner { text-align: center; }
.ds-cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; color: #fff; margin: 0 0 16px; }



@media(max-width:1200px){ .hgl-grid-4col,.hgl-grid-5col { grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){  .hgl-grid-4col,.hgl-grid-5col { grid-template-columns:1fr; } }


/* Badge — minimal top-right pill */





/* Name & tagline */

/* Price */

/* Divider */

/* Resource rows — clean key/value table */

/* Features checklist — clean, no colour overrides */




/* CTA button */





/* Period toggle */

/* Support label */


/* Plans-note footer */

/* ═══════════════════════════════════════════════════════════
   HGL PRICING CARDS — Clean, lightweight, consistent
   Applies to: hosting, VPS, dedicated, OpenClaw, DeepSeek,
               Cloud VDS, n8n, ecommerce, reseller pages
   ═══════════════════════════════════════════════════════════ */

/* Grid */
.hgl-grid                 { display:grid; gap:18px; }
.hgl-grid-4col            { grid-template-columns:repeat(4,1fr); }
.hgl-grid-5col            { grid-template-columns:repeat(5,1fr); }
.hgl-grid-3col            { grid-template-columns:repeat(3,1fr); }
@media(max-width:1200px)  { .hgl-grid-4col,.hgl-grid-5col { grid-template-columns:repeat(2,1fr); } }
@media(max-width:900px)   { .hgl-grid-3col { grid-template-columns:1fr; } }
@media(max-width:640px)   { .hgl-grid-4col,.hgl-grid-5col,.hgl-grid-3col { grid-template-columns:1fr; } }

/* Card base */
.hgl-card {
  background:#fff;
  border:1.5px solid #e5e7eb;
  border-radius:16px;
  padding:24px 20px;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  transition:border-color .2s, box-shadow .2s, transform .18s;
}
.hgl-card:hover {
  border-color:#d1d5db;
  box-shadow:0 8px 24px rgba(0,0,0,.07);
  transform:translateY(-2px);
}
.hgl-card.hgl-featured {
  border-color:#f57200;
  box-shadow:0 0 0 3px rgba(245,114,0,.08);
}
.hgl-card.hgl-featured:hover {
  box-shadow:0 8px 28px rgba(245,114,0,.14);
}

/* Badge — small pill top-right */
.hgl-badge {
  position:absolute; top:14px; right:14px;
  font-size:9.5px; font-weight:800;
  letter-spacing:.07em; text-transform:uppercase;
  padding:4px 11px; border-radius:100px; color:#fff;
  line-height:1.4;
}
.hgl-badge.orange  { background:#f57200; }
.hgl-badge.green   { background:#16a34a; }
.hgl-badge.blue    { background:#2563eb; }
.hgl-badge.purple  { background:#7c3aed; }
.hgl-badge.teal    { background:#0d9488; }
.hgl-badge.cyan    { background:#0891b2; }
.hgl-badge.indigo  { background:#4f46e5; }

/* Plan name & tagline */
.hgl-name {
  font-size:.97rem; font-weight:800; color:#111827;
  margin:0 0 4px; padding-right:70px; line-height:1.3;
}
.hgl-tagline {
  font-size:12px; color:#6b7280;
  margin:0 0 14px; line-height:1.5;
}

/* Price block */
.hgl-price-block  { margin-bottom:14px; }
.hgl-price        { font-size:1.95rem; font-weight:900; color:#111827; line-height:1; letter-spacing:-.02em; }
.hgl-price sub    { font-size:12px; font-weight:500; color:#9ca3af; vertical-align:baseline; letter-spacing:0; }
.hgl-billing-note { font-size:11px; color:#9ca3af; margin-top:4px; }
.hgl-price-data   { display:none; }

/* Divider */
.hgl-divider { border:none; border-top:1px solid #f3f4f6; margin:0 0 12px; }

/* Resource rows — clean key/value */
.hgl-resources   { display:flex; flex-direction:column; margin-bottom:12px; }
.hgl-res-row     { display:flex; justify-content:space-between; align-items:center; padding:6px 0; border-bottom:1px solid #f9fafb; font-size:12.5px; }
.hgl-res-row:last-child { border-bottom:none; }
.hgl-res-label   { color:#6b7280; font-weight:500; }
.hgl-res-value   { color:#111827; font-weight:700; }
.hgl-unlimited   { color:#16a34a !important; font-weight:700; }

/* Feature checklist — uniform, no colour overrides */
.hgl-stack       { display:flex; flex-direction:column; gap:5px; margin-bottom:18px; flex:1; }
.hgl-stack-row   { display:flex; align-items:flex-start; gap:8px; font-size:12.5px; line-height:1.45; }
.hgl-stack-row svg  { flex-shrink:0; margin-top:1px; color:#16a34a; }
.hgl-stack-row span { flex:1; color:#374151 !important; font-weight:500 !important; font-style:normal !important; }

/* CTA button */
.hgl-cta {
  display:block; text-align:center;
  padding:11px 16px; border-radius:9px;
  font-size:13.5px; font-weight:700;
  text-decoration:none;
  transition:background .18s, transform .15s, box-shadow .15s;
  margin-top:auto;
}
.hgl-cta.primary             { background:#f57200; color:#fff !important; border:1.5px solid #f57200; }
.hgl-cta.primary:hover       { background:#d96000; border-color:#d96000; transform:translateY(-1px); box-shadow:0 4px 12px rgba(245,114,0,.25); }
.hgl-cta.outline             { background:#fff; color:#374151 !important; border:1.5px solid #e5e7eb; }
.hgl-cta.outline:hover       { border-color:#f57200; color:#f57200 !important; }

/* Period toggle (monthly/annual) */
.hgl-toggle-wrap   { display:inline-flex; background:#f3f4f6; border-radius:100px; padding:3px; gap:3px; margin-bottom:24px; }
.hgl-period-btn    { background:transparent; border:none; border-radius:100px; padding:7px 20px; font-size:13px; font-weight:600; color:#6b7280; cursor:pointer; transition:background .15s,color .15s; }
.hgl-period-btn.active { background:#fff; color:#111827; box-shadow:0 1px 4px rgba(0,0,0,.10); }
.hgl-save-badge    { background:#dcfce7; color:#166534; font-size:10px; font-weight:700; padding:2px 7px; border-radius:100px; margin-left:6px; }

/* Support label — hide (removed from PHP, kept for safety) */
.hgl-support { display:none; }

/* Specs expand toggle */
.hgl-toggle-specs {
  background:transparent; border:1.5px solid #e5e7eb; border-radius:8px;
  padding:8px 20px; font-size:13px; font-weight:600; color:#6b7280;
  cursor:pointer; display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; transition:border-color .15s, color .15s;
}
.hgl-toggle-specs:hover { border-color:#f57200; color:#f57200; }

/* Specs table */
.hgl-specs-table { display:none; margin-top:20px; overflow-x:auto; }
.hgl-specs-table.visible { display:block; }
.hgl-table { width:100%; border-collapse:collapse; font-size:13px; }
.hgl-table th,.hgl-table td { padding:9px 12px; border:1px solid #f1f5f9; text-align:left; }
.hgl-table th { background:#f8fafc; font-weight:700; color:#374151; }
.hgl-table .hgl-yes { color:#16a34a; font-weight:700; text-align:center; }
.hgl-table .hgl-no  { color:#9ca3af; text-align:center; }
.hgl-unlimited      { color:#16a34a; font-weight:700; }

/* Plans footer note */
.hgl-plans-note { text-align:center; margin-top:18px; font-size:12px; color:#9ca3af; line-height:1.7; }

/* Responsive */
@media(max-width:480px) {
  .hgl-card   { padding:20px 16px; border-radius:14px; }
  .hgl-price  { font-size:1.75rem; }
  .hgl-name   { font-size:.93rem; padding-right:60px; }
  .hgl-badge  { font-size:9px; padding:3px 9px; }
}