/* ================================================================
   GALAXYWEB AG — product_hostingreseller.css
   Seitenspezifisches CSS für pages/product_hostingreseller.php
   Abhängigkeiten: main.css, main_hero.css, main_separator.css, pricing.css
   KEIN product_webshop.css erforderlich — alles selbständig.
   ================================================================ */

/* ── Reseller Akzentfarbe (Teal) ───────────────────────────── */
:root {
  --rs:       #0d9488;
  --rs-d:     #0f766e;
  --rs-light: #e6faf8;
  --rs-glow:  rgba(13,148,136,.22);
}
body.dark {
  --rs-light: rgba(13,148,136,.18);
}


/* ═══ 1: PLESK-DASHBOARD MOCKUP (Hero rechts) ══════════════ */

.reseller-dashboard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,30,80,.18), 0 0 0 1px rgba(13,148,136,.1);
  width: 100%;
  max-width: 460px;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.reseller-dashboard:hover {
  transform: perspective(900px) rotateY(-1deg) rotateX(0deg);
  box-shadow: 0 32px 100px rgba(0,30,80,.22), 0 0 0 1px rgba(13,148,136,.18);
}
body.dark .reseller-dashboard {
  box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(13,148,136,.15);
}

.rsd-bar {
  background: #111e30;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rsd-logo {
  width: 24px; height: 24px;
  background: var(--rs);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rsd-logo svg { width: 14px; height: 14px; }
.rsd-bar-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); }
.rsd-bar-live {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.35);
}
.rsd-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rs);
  box-shadow: 0 0 6px var(--rs-glow);
  animation: rsdPulse 2s ease-in-out infinite;
}
@keyframes rsdPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.8); }
}

.rsd-body { display: flex; flex-direction: column; padding: 14px 16px; gap: 10px; }

.rsd-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.rsd-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
}
body.dark .rsd-stat { background: rgba(255,255,255,.04); }
.rsd-stat-label {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.rsd-stat-val { font-size: 17px; font-weight: 800; color: var(--text); }
.rsd-stat-delta { font-size: 10px; font-weight: 600; margin-top: 2px; color: var(--muted); }
.rsd-stat-delta.up { color: var(--rs); }

.rsd-clients { display: flex; flex-direction: column; gap: 6px; }
.rsd-client-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
}
body.dark .rsd-client-row { background: rgba(255,255,255,.04); }
.rsd-client-name    { color: var(--text); font-weight: 600; flex: 1; }
.rsd-client-domains { color: var(--muted); font-size: 11px; flex-shrink: 0; }
.rsd-client-badge {
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 20px; flex-shrink: 0;
}
.rsd-badge-ok  { background: rgba(13,148,136,.12); color: var(--rs-d); }
.rsd-badge-new { background: rgba(0,120,200,.12);  color: var(--blue); }
body.dark .rsd-badge-ok  { background: rgba(13,148,136,.22); color: #5eead4; }
body.dark .rsd-badge-new { background: rgba(0,120,200,.2);   color: #60a5fa; }

.rsd-ssl {
  display: flex; align-items: center; gap: 9px;
  background: rgba(13,148,136,.07);
  border: 1px solid rgba(13,148,136,.22);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px; color: var(--muted);
}
body.dark .rsd-ssl { background: rgba(13,148,136,.1); }
.rsd-ssl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rs); flex-shrink: 0; }
.rsd-ssl strong { color: var(--text); font-weight: 700; }


/* ═══ 2: FÜR WEN — 3-KARTEN-GRID mit Teal-Akzent ══════════ */

.fuer-wen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fuer-wen-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.fuer-wen-card:hover {
  border-color: rgba(13,148,136,.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13,148,136,.1);
}
body.dark .fuer-wen-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }

.fwc-icon {
  width: 44px; height: 44px;
  background: var(--rs-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
body.dark .fwc-icon { background: rgba(13,148,136,.18); }
.fwc-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--rs-d);
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.fwc-title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.fwc-text  { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ═══ 3: TESTIMONIALS GRID ═══════════════════════════════════ */
/* .tcard Styling kommt aus main.css — nur Grid hier */

.tcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* ═══ 4: WARUM-VISUAL CONTAINER (Aurora-Section) ═══════════ */

.wpv-visual {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(11,20,38,.65);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
}

.wpv-perf-header {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}

/* Security-Checkliste */
.wpv-sec-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.7);
}
.wpv-sec-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(13,148,136,.18);
  border: 1px solid rgba(13,148,136,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wpv-sec-check svg { width: 12px; height: 12px; fill: none; stroke: #5eead4; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.wpv-perf-note { font-size: 11px; color: rgba(255,255,255,.25); margin-top: 4px; }

/* Metriken-Grid */
.shv-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 4px;
}
.shv-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 5px;
}
.shv-metric-accent {
  border-color: rgba(0,120,200,.35);
  background: rgba(0,120,200,.1);
}
.shv-metric-val {
  font-size: 28px; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -.02em;
}
.shv-metric-accent .shv-metric-val { color: var(--blue-brand, #5badff); }
.shv-metric-unit { font-size: 14px; font-weight: 600; opacity: .7; margin-left: 2px; }
.shv-metric-label {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .06em;
}

/* Migration-Flow */
.wpv-visual-migr {
  align-items: center; flex-direction: row; flex-wrap: wrap;
  justify-content: center; gap: 0; padding: 32px 28px; position: relative;
}
.wpv-migr-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 20px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  min-width: 110px;
}
.wpv-migr-step-accent { border-color: rgba(0,120,200,.5); background: rgba(0,120,200,.15); box-shadow: 0 0 24px rgba(0,120,200,.2); }
.wpv-migr-step-done   { border-color: rgba(16,185,129,.3); background: rgba(16,185,129,.07); }
.wpv-migr-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
}
.wpv-migr-step-accent .wpv-migr-icon { background: rgba(0,120,200,.25); color: var(--blue-brand, #5badff); }
.wpv-migr-icon-done  { background: rgba(16,185,129,.2); color: #6ee7b7; }
.wpv-migr-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.wpv-migr-val   { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); }
.wpv-migr-step-accent .wpv-migr-val { color: var(--blue-brand, #5badff); }
.wpv-migr-step-done   .wpv-migr-val { color: var(--blue-brand, #5badff); }
.wpv-migr-connector { padding: 0 10px; color: rgba(255,255,255,.2); flex-shrink: 0; margin-top: -16px; }
.wpv-migr-note { width: 100%; text-align: center; font-size: 11px; color: rgba(255,255,255,.25); margin-top: 8px; flex-basis: 100%; }
.wpv-val-highlight { color: var(--blue-brand, #5badff); }


/* ═══ 5: AURORA-OVERRIDES FÜR #warum-reseller ═══════════════ */

#warum-reseller .feature-text h3        { color: #fff; }
#warum-reseller .feature-text h3 em     { color: var(--blue-brand, #5badff); }
#warum-reseller .feature-text p         { color: rgba(255,255,255,.45); }
#warum-reseller .feature-text .gw-label { color: rgba(255,255,255,.72); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); }
#warum-reseller .feat-list li           { color: rgba(255,255,255,.55); }
#warum-reseller .feat-list li::before   { background: rgba(0,120,200,.2); color: var(--blue-brand, #5badff); }
#warum-reseller .btn.btn-primary        { background: var(--blue); color: #fff; border-color: var(--blue); }
#warum-reseller .feature-row.reverse .wpv-visual   { order: 1; }
#warum-reseller .feature-row.reverse .feature-text { order: 2; }


/* ═══ 6: INFO-GRID Badge Override (Teal statt Sky) ══════════ */

.gb-teal { background: var(--rs-light); }
.gb-teal svg { stroke: var(--rs-d); }
body.dark .gb-teal { background: rgba(13,148,136,.18); }


/* ═══ 7: TESTIMONIALS — Teal-Akzent auf Karten 2 & 3 ════════ */

.testimonials .tcard:nth-child(2)::before {
  background: linear-gradient(90deg, var(--rs), transparent) !important;
}
.testimonials .tcard:nth-child(3)::before {
  background: linear-gradient(90deg, var(--rs-d), transparent) !important;
}
.testimonials .tcard:nth-child(2):hover { box-shadow: 0 12px 32px var(--rs-glow) !important; border-color: rgba(13,148,136,.35) !important; }
.testimonials .tcard:nth-child(3):hover { box-shadow: 0 12px 32px var(--rs-glow) !important; border-color: rgba(13,148,136,.25) !important; }


/* ═══ 8: RESPONSIVE ═════════════════════════════════════════ */

@media (max-width: 900px) {
  .fuer-wen-grid    { grid-template-columns: 1fr; }
  .tcards-grid      { grid-template-columns: 1fr; }
  .reseller-dashboard { max-width: 100%; transform: none; }
  .reseller-dashboard:hover { transform: none; }
  .shv-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reseller-dashboard { display: none; }
  .rsd-stat-row { grid-template-columns: repeat(2, 1fr); }
}