/* =============================================
   pages/backup-storage.css — Backup & Storage Service Page
   ============================================= */
/* =============================
   BACKUP & STORAGE PAGE
   ============================= */

/* ===================================== */
/* BACKUP HERO */
/* ===================================== */
/* ============================= */
/* BACKUP & STORAGE HERO         */
/* ============================= */

.bs-hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Background */
.bs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, #091228 0%, #122246 45%, #193264 100%);
}

.bs-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* Orbs */
.bs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
  animation: bsOrbDrift 14s ease-in-out infinite;
}
.bs-orb-1 {
  width: 320px;
  height: 320px;
  background: #1e4fd8;
  opacity: 0.13;
  top: -80px;
  right: 100px;
}
.bs-orb-2 {
  width: 200px;
  height: 200px;
  background: #f19839;
  opacity: 0.09;
  bottom: -50px;
  right: 20px;
  animation-delay: -7s;
}
@keyframes bsOrbDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, 12px);
  }
}

/* Layout */
.bs-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

/* ---- LEFT ---- */
.bs-hero-text {
  color: #fff;
}

/* Eyebrow */
.bs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #f19839;
  margin-bottom: 16px;
  opacity: 0;
  animation: bsFadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

.bs-eyebrow-dot {
  width: 10px;
  height: 10px;
  background: #f19839;
  border-radius: 50%;
  flex-shrink: 0;
  animation: bsBlink 1.6s ease-in-out infinite;
}

@keyframes bsBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Title */
.bs-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  opacity: 0;
  animation: bsFadeUp 0.55s ease forwards;
  animation-delay: 0.2s;
}
.bs-hero-title span {
  color: #f19839;
}

/* Subtitle */
.bs-hero-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 26px;
  opacity: 0;
  animation: bsFadeUp 0.55s ease forwards;
  animation-delay: 0.3s;
}

/* Buttons */
.bs-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: bsFadeUp 0.55s ease forwards;
  animation-delay: 0.4s;
}

/* Stats */
.bs-stats {
  display: flex;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: bsFadeUp 0.5s ease forwards;
  animation-delay: 0.88s;
}

.bs-stat {
  display: flex;
  flex-direction: column;
  padding: 0 20px 0 0;
}
.bs-stat + .bs-stat {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bs-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #f19839;
  letter-spacing: -0.02em;
}

.bs-stat-lbl {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 2px;
}

@keyframes bsFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- RIGHT — FLOW VIZ ---- */
.bs-hero-viz {
  opacity: 0;
  animation: bsFadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
}

.bs-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Nodes */
.bs-node {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  transition: border-color 0.3s ease;
}

.bs-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
}

.bs-node-src::before {
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
}
.bs-node-bak::before {
  background: linear-gradient(180deg, #f19839, #f58220);
}
.bs-node-cld::before {
  background: linear-gradient(180deg, #34d399, #10b981);
}

/* Node icon */
.bs-node-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bs-node-src .bs-node-icon {
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
}
.bs-node-bak .bs-node-icon {
  background: rgba(241, 152, 57, 0.15);
  border: 1px solid rgba(241, 152, 57, 0.3);
}
.bs-node-cld .bs-node-icon {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.bs-node-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bs-node-src .bs-node-icon svg {
  stroke: #60a5fa;
}
.bs-node-bak .bs-node-icon svg {
  stroke: #f19839;
}
.bs-node-cld .bs-node-icon svg {
  stroke: #34d399;
}

/* Node text */
.bs-node-text {
  flex: 1;
  min-width: 0;
}

.bs-node-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.bs-node-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Node badge */
.bs-node-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bs-node-src .bs-node-badge {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}
.bs-node-bak .bs-node-badge {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}
.bs-node-cld .bs-node-badge {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

/* Connectors */
.bs-connector {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 38px;
  position: relative;
}

.bs-conn-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

/* animated data packet */
.bs-conn-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(241, 152, 57, 0.9),
    transparent
  );
  animation: bsPacketFlow 2.5s ease-in-out infinite;
}

.bs-connector-2 .bs-conn-line::after {
  animation-delay: -1.25s;
}

@keyframes bsPacketFlow {
  0% {
    left: -44px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.bs-conn-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(241, 152, 57, 0.5);
  flex-shrink: 0;
}

.bs-conn-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(115deg, #091228, #122246);
  padding: 2px 9px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
}

/* Metrics bar */
.bs-metrics {
  display: flex;
  gap: 0;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bs-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.bs-metric:last-child {
  border-right: none;
}

.bs-metric-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: #f19839;
  letter-spacing: -0.01em;
}

.bs-metric-lbl {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 992px) {
  .bs-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bs-hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .bs-hero-buttons {
    flex-direction: column;
  }
  .bs-stats {
    gap: 12px;
    flex-wrap: wrap;
  }
  .bs-node-title {
    font-size: 0.78rem;
  }
  .bs-node-sub {
    font-size: 0.6rem;
  }
}
/* ===================================== */
/* BACKUP PROBLEM → SOLUTION */
/* ===================================== */

.backup-problem-solution {
  padding: 100px 0;
}

.backup-problem-solution h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1c3f;
  position: relative;
  margin-bottom: 20px;
}

.backup-problem-solution h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f19839, #f58220);
  margin-top: 10px;
  border-radius: 2px;
}

.backup-problem-solution p {
  color: #4b5563;
  line-height: 1.8;
}

/* ===================================== */
/* BACKUP SERVICE CARDS */
/* ===================================== */

.backup-service-cards {
  padding: 100px 0;
}

.backup-service-cards h2 {
  font-weight: 800;
  color: #0f1c3f;
}

.backup-service-cards .card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.backup-service-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.backup-service-cards .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1c3f;
}

.backup-service-cards .card-text {
  color: #4b5563;
  line-height: 1.7;
}

/* ===================================== */
/* BACKUP TECHNOLOGIES */
/* ===================================== */

.backup-technologies {
  background: #f8f9fa;
  padding: 100px 0;
}

.backup-technologies h2 {
  font-weight: 800;
  color: #0f1c3f;
}

.tech-card {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tech-card img {
  max-height: 40px;
  object-fit: contain;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* ===================================== */
/* WHAT WE PROTECT */
/* ===================================== */

.backup-coverage {
  padding: 100px 0;
  background: #ffffff;
}

.backup-coverage h2 {
  font-weight: 800;
  color: #0f1c3f;
}

.coverage-card {
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.coverage-icon {
  font-size: 32px;
}

.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* ===================================== */
/* BACKUP BENEFITS */
/* ===================================== */

.backup-benefits {
  padding: 100px 0;
}

.backup-benefits h2 {
  font-weight: 800;
  color: #0f1c3f;
}

.backup-benefits li {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
}

.backup-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f58220;
  font-weight: bold;
}

/* ===================================== */
/* 3-2-1 BACKUP STRATEGY */
/* ===================================== */

.backup-strategy {
  padding: 100px 0;
  background: #f8f9fa;
}

.backup-strategy h2 {
  font-weight: 800;
  color: #0f1c3f;
}

.backup-strategy p {
  color: #4b5563;
  line-height: 1.8;
}

.backup-strategy ul {
  margin-top: 20px;
  padding-left: 18px;
}

.backup-strategy li {
  margin-bottom: 10px;
  color: #374151;
}

.strategy-visual {
  background: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  padding: 40px;
  transition: all 0.3s ease;
}

.strategy-visual h3 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #0f1c3f;
}

.strategy-visual p {
  font-size: 1.2rem;
  color: #f58220;
  font-weight: 600;
}

.strategy-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* ===================================== */
/* BACKUP CTA */
/* ===================================== */

.backup-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #0f1c3f, #1e293b);
  color: #fff;
}

.backup-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
}

.backup-cta p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===================================== */
/* MOBILE OPTIMIZATION */
/* ===================================== */

@media (max-width: 991px) {
  .hero-section.bg-backup {
    padding: 120px 0 80px;
  }

  .backup-icon-circle {
    margin-top: 40px;
  }

  .strategy-visual {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .backup-problem-solution,
  .backup-technologies,
  .backup-service-cards,
  .backup-coverage,
  .backup-benefits,
  .backup-strategy {
    padding: 70px 0;
  }

  .coverage-icon {
    font-size: 26px;
  }

  .strategy-visual h3 {
    font-size: 45px;
  }
}

/* ===============================
BACKUP HOW IT WORKS PAGE
================================ */

/* HERO BACKGROUND */
/* ============================= */
