/* ============================================================
   reseller-hosting.css — Page-specific styles
   Shared components are in base.css + theme.css + components.css
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.reseller-hero-wrapper {
  position: relative; padding: 160px 0;
  background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(47,134,255,.15), transparent), #06090f;
  overflow: hidden; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
body.light-mode .reseller-hero-wrapper {
  background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(47,134,255,.1), transparent), #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.rh-badge { display: inline-block; padding: 6px 16px; background: rgba(47,134,255,.1); color: var(--brand-blue); border: 1px solid rgba(47,134,255,.2); border-radius: 50px; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1.5rem; }

.rh-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.35; letter-spacing: -0.01em; color: #fff; margin-bottom: 1.25rem; }
body.light-mode .rh-title { color: #0f172a; }
.rh-title span { background: linear-gradient(135deg, var(--brand-blue), var(--accent-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.rh-subtitle { font-size: 1.15rem; color: #94a3b8; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6; }
body.light-mode .rh-subtitle { color: #475569; }

/* Dashboard mockup */
.mockup-window {
  max-width: 800px; margin: 0 auto;
  background: #0f172a; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 40px rgba(47,134,255,.1);
  overflow: hidden;
  transform: perspective(1000px) rotateX(2deg);
  transition: transform .5s ease;
}
body.light-mode .mockup-window { background: #f8fafc; border-color: rgba(0,0,0,.1); }
.mockup-window:hover { transform: perspective(1000px) rotateX(0deg) translateY(-10px); }

.mockup-header { background: #1e293b; padding: 12px 20px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.05); }
body.light-mode .mockup-header { background: #e2e8f0; }

.mockup-dots { display: flex; gap: 8px; }
.mockup-dot  { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f56; } .mockup-dot.y { background: #ffbd2e; } .mockup-dot.g { background: #27c93f; }

.mockup-body { padding: 30px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .mockup-body { grid-template-columns: 1fr; padding: 20px; } }

.mockup-stat { background: rgba(255,255,255,.03); padding: 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,.05); text-align: center; }
body.light-mode .mockup-stat { background: #fff; border-color: rgba(0,0,0,.08); }
.mockup-stat i      { font-size: 1.5rem; color: var(--brand-blue); margin-bottom: 10px; display: block; }
.mockup-stat .value { font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 5px; }
.mockup-stat .label { font-size: .85rem; color: #94a3b8; text-transform: uppercase; font-weight: 600; }
body.light-mode .mockup-stat .value { color: #0f172a; }
body.light-mode .mockup-stat .label { color: #64748b; }

/* ── PIPELINE (How it Works) ─────────────────────────────── */
.pipeline-section { padding: var(--section-py) 0; background: var(--bg-page); }

.pipeline-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
  position: relative; margin-top: 40px;
}
.pipeline-grid::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, rgba(47,134,255,0), rgba(47,134,255,.5), rgba(47,134,255,0)); z-index: 0;
}
@media (max-width: 991px) { .pipeline-grid { grid-template-columns: 1fr; gap: 50px; } .pipeline-grid::before { display: none; } }

.pipeline-step {
  background: #111827; border: 1px solid rgba(255,255,255,.05); border-radius: 20px;
  padding: 40px 30px; text-align: center; position: relative; z-index: 1; transition: transform .3s;
}
body.light-mode .pipeline-step { background: #fff; border-color: rgba(0,0,0,.08); box-shadow: 0 10px 30px rgba(0,0,0,.03); }
.pipeline-step:hover { transform: translateY(-5px); }

.pipeline-step .step-number {
  width: 60px; height: 60px;
  background: var(--bg-page, #0f172a); border: 2px solid var(--brand-blue);
  color: var(--brand-blue); font-size: 1.5rem; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
body.light-mode .pipeline-step .step-number { background: #fff; box-shadow: 0 10px 20px rgba(47,134,255,.15); }

.pipeline-step h3 { font-size: 1.3rem; color: #fff; font-weight: 700; margin-bottom: 15px; }
body.light-mode .pipeline-step h3 { color: #0f172a; }
.pipeline-step p  { color: #94a3b8; font-size: .95rem; line-height: 1.6; margin: 0; }
body.light-mode .pipeline-step p { color: #475569; }

/* ── ZIGZAG (reused from VPS, inline here for reseller colour) */
.zigzag-section { padding: 100px 0; background: #06090f; border-top: 1px solid rgba(255,255,255,.05); }
body.light-mode .zigzag-section { background: #f8fafc; border-color: rgba(0,0,0,.05); }

.zz-row { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.zz-row:last-child { margin-bottom: 0; }
.zz-content { flex: 1; }
.zz-visual  { flex: 1; gap: 20px; }

@media (max-width: 991px) {
  .zz-row { flex-direction: column; gap: 40px; margin-bottom: 80px; text-align: center; }
  .zz-row.reverse { flex-direction: column-reverse; }
  .zz-feature-box { text-align: center; }
  .zz-icon { margin: 0 auto 10px !important; }
}

.zz-kicker { color: var(--brand-blue); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; display: block; margin-bottom: 10px; }
.zz-title { color: #fff; font-size: 2.2rem; font-weight: 800; line-height: 1.35; margin-bottom: 20px; }
body.light-mode .zz-title { color: #0f172a; }
.zz-desc  { color: #94a3b8; font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
body.light-mode .zz-desc { color: #475569; }

.zz-feature-box { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 24px; text-align: center; transition: all .3s; }
body.light-mode .zz-feature-box { background: #fff; border-color: rgba(0,0,0,.08); }
.zz-feature-box:hover { border-color: var(--brand-blue); transform: translateY(-5px); }

.zz-icon { width: 45px; height: 45px; background: rgba(47,134,255,.1); color: var(--brand-blue); border-radius: 10px; display: block; margin: auto; padding-top: 7px; font-size: 1.2rem; }
.zz-feature-box h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 10px 0 8px; }
body.light-mode .zz-feature-box h4 { color: #0f172a; }
.zz-feature-box p  { color: #64748b; font-size: .9rem; line-height: 1.5; margin: 0; }
body.light-mode .zz-feature-box p  { color: #475569; }

/* Mobile card layout fix */
@media (max-width: 768px) {
  .hmk-card-top { display: block !important; }
  .hmk-card-purple .hmk-icon-box, .hmk-card-blue .hmk-icon-box, .hmk-card-orange .hmk-icon-box { margin-bottom: 10px; }
}

/* ── PRICING LIGHT MODE ──────────────────────────────────── */
body.light-mode .hmk-pricing-section { background: var(--bg-page) !important; border-color: rgba(0,0,0,.05) !important; }
body.light-mode .hmk-pricing-title   { color: #0f172a !important; }
body.light-mode .hmk-pricing-subtitle { color: #475569 !important; }

/* ── FAQ ─────────────────────────────────────────────────── */
.hmk-faq-section { background: #06090f; border-top: 1px solid rgba(255,255,255,.05); }
body.light-mode .hmk-faq-section { background: #f8fafc !important; border-color: rgba(0,0,0,.05) !important; }
