/* =============================================
   components/how-it-works.css
   How It Works page styles for all 7 services:
   Cybersecurity, Backup, Cloud, Email,
   Hardware, Managed Services, Web Development
   ============================================= */

/* ⚠️  DEVELOPER NOTE — UNSCOPED SHARED SELECTORS
   The following selectors are re-defined per service section:
   .process-card, .process-card:hover, .process-card p, .process-number,
   .workflow-step, .workflow-arrow, .stack-card, .environment-card
   Since CSS cascades, the LAST definition in this file wins globally.
   To fix: scope each to its section wrapper, e.g. .bh-section .process-card
   This matches the behaviour of the original style.css exactly. */

/* ============================================================
   CYBERSECURITY HOW IT WORKS
   ============================================================ */

/* ============================= */
/* GLOBAL SECTION SPACING */
/* ============================= */

.section-lg {
  padding: 100px 0;
}

/* ============================= */
/* HERO */
/* ============================= */
/* ============================= */
/* CYBERSECURITY HOW IT WORKS    */
/* ============================= */

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

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

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

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

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

.cyh-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: cyhFadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

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

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

.cyh-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: cyhFadeUp 0.55s ease forwards;
  animation-delay: 0.2s;
}
.cyh-hero-title span {
  color: #f19839;
}

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

.cyh-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: cyhFadeUp 0.55s ease forwards;
  animation-delay: 0.4s;
}

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

/* ---- RIGHT — DASHBOARD ---- */
.cyh-hero-viz {
  opacity: 0;
  animation: cyhFadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
  width: 100%;
}

.cyh-dash {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

/* Header */
.cyh-dash-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cyh-hdots {
  display: flex;
  gap: 5px;
}
.cyh-hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.cyh-hd-r {
  background: #ff5f57;
}
.cyh-hd-a {
  background: #ffbd2e;
}
.cyh-hd-g {
  background: #28c840;
}

.cyh-dash-title {
  flex: 1;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.cyh-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cyh-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: cyhBlink 1.4s ease-in-out infinite;
}

/* Security score */
.cyh-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cyh-score-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(
    #4ade80 0% 86%,
    rgba(255, 255, 255, 0.08) 86% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cyh-score-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0a1228;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cyh-score-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}
.cyh-score-lbl {
  font-size: 0.36rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.cyh-score-info {
  flex: 1;
}
.cyh-score-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.cyh-score-sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Domain checks */
.cyh-domains {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cyh-domain {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cyh-domain-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cyh-domain-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cyh-di-green {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.cyh-di-green svg {
  stroke: #4ade80;
}
.cyh-di-orange {
  background: rgba(241, 152, 57, 0.12);
  border: 1px solid rgba(241, 152, 57, 0.3);
}
.cyh-di-orange svg {
  stroke: #f19839;
}

.cyh-domain-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.cyh-bar-wrap {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.cyh-bar {
  height: 100%;
  border-radius: 2px;
  animation: cyhBarPulse 3s ease-in-out infinite;
}
.cyh-bar-g {
  background: #4ade80;
  animation-delay: 0s;
}
.cyh-bar-o {
  background: #f19839;
  animation-delay: -1.5s;
}

@keyframes cyhBarPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.cyh-domain-status {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cyh-ds-secure {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.cyh-ds-review {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}

/* Recent events */
.cyh-events {
  padding: 10px 16px 14px;
}

.cyh-ev-head {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cyh-ev-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cyh-ev-row:last-child {
  border-bottom: none;
}

.cyh-ev-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cyh-dot-red {
  background: #ef4444;
}
.cyh-dot-orange {
  background: #f19839;
  animation: cyhBlink 1.5s ease-in-out infinite;
}
.cyh-dot-blue {
  background: #60a5fa;
}

.cyh-ev-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cyh-ev-time {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.cyh-ev-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.cyh-eb-blocked {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.cyh-eb-warn {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}
.cyh-eb-info {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

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

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

@media (max-width: 576px) {
  .cyh-hero-buttons {
    flex-direction: column;
  }
  .cyh-ev-time {
    display: none;
  }
  .cyh-bar-wrap {
    width: 60px;
  }
}
/* ============================= */
/* PROCESS SECTION */
/* ============================= */

.process-intro {
  max-width: 700px;
  margin: 0 auto 70px;
  color: #4b5563;
}

.process-row {
  margin-bottom: 80px;
}

.process-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1c3f;
  margin-bottom: 15px;
}

.process-section p {
  color: #4b5563;
  line-height: 1.8;
}

.process-step-number {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f19839, #f58220);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(241, 152, 57, 0.35);
}

/* ============================= */
/* INFO CARDS */
/* ============================= */

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-card h5 {
  font-weight: 700;
  color: #0f1c3f;
  margin-bottom: 12px;
}

.info-card p {
  margin-bottom: 0;
  color: #4b5563;
}

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

.cyber-howitworks-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f1c3f, #1e293b);
  font-size: clamp(1.8rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cyber-howitworks-cta h2 {
  font-size: 2.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  color: #ffffff;
}
.cyber-howitworks-cta .lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  color: #ffffff;
}

/* ============================================================
   BACKUP & STORAGE HOW IT WORKS
   ============================================================ */

/* BACKUP HOW IT WORKS HERO      */
/* ============================= */

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

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

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

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

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

.bh-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: bhFadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

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

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

.bh-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: bhFadeUp 0.55s ease forwards;
  animation-delay: 0.2s;
}
.bh-hero-title span {
  color: #f19839;
}

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

.bh-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: bhFadeUp 0.55s ease forwards;
  animation-delay: 0.4s;
}

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

/* ---- RIGHT — DASHBOARD ---- */
.bh-hero-viz {
  opacity: 0;
  animation: bhFadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
  width: 100%;
}

/* Dashboard card */
.bh-dash {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

/* Header */
.bh-dash-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bh-hdots {
  display: flex;
  gap: 5px;
}
.bh-hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.bh-hd-r {
  background: #ff5f57;
}
.bh-hd-a {
  background: #ffbd2e;
}
.bh-hd-g {
  background: #28c840;
}

.bh-dash-title {
  flex: 1;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.bh-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bh-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: bhBlink 1.4s ease-in-out infinite;
}

/* Active job */
.bh-active-job {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bh-job-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bh-job-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(241, 152, 57, 0.15);
  border: 1px solid rgba(241, 152, 57, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bh-job-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #f19839;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bh-job-info {
  flex: 1;
  min-width: 0;
}
.bh-job-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh-job-meta {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.bh-job-pct {
  font-size: 0.75rem;
  font-weight: 800;
  color: #f19839;
  flex-shrink: 0;
}

/* Progress bar */
.bh-prog-wrap {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 7px;
}

.bh-prog-bar {
  height: 100%;
  width: 73%;
  background: linear-gradient(90deg, #f19839, #f58220);
  border-radius: 3px;
  animation: bhProgAnim 8s ease-in-out infinite;
}

@keyframes bhProgAnim {
  0% {
    width: 68%;
  }
  50% {
    width: 82%;
  }
  100% {
    width: 68%;
  }
}

.bh-prog-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.32);
}

/* Stat grid */
.bh-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bh-sg-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 10px 12px;
}

.bh-sg-val {
  font-size: 1rem;
  font-weight: 800;
  color: #f19839;
  letter-spacing: -0.02em;
}
.bh-sg-lbl {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

/* Job list */
.bh-job-list {
  padding: 10px 16px 14px;
}

.bh-job-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.bh-job-row:last-child {
  border-bottom: none;
}

.bh-jr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bh-dot-green {
  background: #4ade80;
}
.bh-dot-orange {
  background: #f19839;
  animation: bhBlink 1.5s ease-in-out infinite;
}
.bh-dot-blue {
  background: #60a5fa;
}

.bh-jr-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh-jr-time {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
}

.bh-jr-badge {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.bh-badge-done {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.bh-badge-run {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}
.bh-badge-sched {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

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

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

@media (max-width: 576px) {
  .bh-hero-buttons {
    flex-direction: column;
  }
  .bh-jr-time {
    display: none;
  }
  .bh-job-meta {
    display: none;
  }
}
/* ===============================
BACKUP PROCESS
================================ */

.backup-process h2 {
  font-weight: 700;
}

.process-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.process-number {
  font-size: 34px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 15px;
}

/* ===============================
BACKUP ARCHITECTURE
================================ */

.backup-architecture h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.backup-list {
  list-style: none;
  padding: 0;
}

.backup-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.backup-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* ===============================
BACKUP STRATEGY
================================ */

.strategy-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.strategy-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.strategy-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

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

.rule-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.rule-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.rule-box h3 {
  font-size: 50px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 10px;
}

.rule-box h5 {
  font-weight: 600;
}

/* ===============================
BACKUP WORKFLOW PROFESSIONAL
================================ */

.workflow-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.workflow-step {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  width: 180px;
  height: 200px; /* ensures same height */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.workflow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.workflow-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.workflow-step h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.workflow-step p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.workflow-arrow {
  font-size: 28px;
  color: #2563eb;
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* Mobile */

@media (max-width: 768px) {
  .workflow-container {
    flex-direction: column;
    align-items: center;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .workflow-step {
    width: 240px;
    height: 200px;
  }
}
/* ===============================
BACKUP CTA
================================ */
.backup-cta {
  padding: 50px 0; /* less top and bottom padding */
  text-align: center;
  background: linear-gradient(135deg, #0f1c3f, #1e293b);
  color: #ffffff;
}

.backup-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px; /* reduce space below title */
  color: #ffffff;
}

.backup-cta .lead {
  max-width: 600px;
  margin: 0 auto 30px; /* reduce bottom margin */
  opacity: 0.9;
  color: #ffffff;
}

.backup-cta .hero-btn-primary {
  padding: 12px 30px; /* same size button but visually balanced */
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .process-box,
  .strategy-box,
  .rule-box {
    margin-bottom: 25px;
  }

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

/* ============================================================
   CLOUD SERVICES HOW IT WORKS
   ============================================================ */

/* CLOUD HOW IT WORKS HERO       */
/* ============================= */

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

/* Background */
.ch-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, #091228 0%, #0d1f45 50%, #0a2a5e 100%);
}

.ch-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 */
.ch-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
  animation: chOrbDrift 14s ease-in-out infinite;
}
.ch-orb-1 {
  width: 320px;
  height: 320px;
  background: #1a6fd8;
  opacity: 0.15;
  top: -80px;
  right: 80px;
}
.ch-orb-2 {
  width: 200px;
  height: 200px;
  background: #f19839;
  opacity: 0.08;
  bottom: -50px;
  left: 40px;
  animation-delay: -7s;
}
@keyframes chOrbDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, 12px);
  }
}

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

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

.ch-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: chFadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

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

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

.ch-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: chFadeUp 0.55s ease forwards;
  animation-delay: 0.2s;
}
.ch-hero-title span {
  color: #f19839;
}

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

.ch-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: chFadeUp 0.55s ease forwards;
  animation-delay: 0.4s;
}

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

/* ---- RIGHT — DASHBOARD ---- */
.ch-hero-viz {
  opacity: 0;
  animation: chFadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
  width: 100%;
}

/* Dashboard */
.ch-dash {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

/* Header */
.ch-dash-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ch-hdots {
  display: flex;
  gap: 5px;
}
.ch-hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.ch-hd-r {
  background: #ff5f57;
}
.ch-hd-a {
  background: #ffbd2e;
}
.ch-hd-g {
  background: #28c840;
}

.ch-dash-title {
  flex: 1;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.ch-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ch-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: chBlink 1.4s ease-in-out infinite;
}

/* Top stats */
.ch-top-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.ch-ts-val {
  font-size: 1rem;
  font-weight: 800;
  color: #f19839;
  letter-spacing: -0.02em;
}
.ch-ts-lbl {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
  text-align: center;
}

/* Resource meters */
.ch-meters {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ch-meter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ch-m-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  width: 48px;
  flex-shrink: 0;
}

.ch-m-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.ch-m-bar {
  height: 100%;
  border-radius: 3px;
  animation: chMeterPulse 4s ease-in-out infinite;
}

.ch-bar-cpu {
  width: 42%;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  animation-delay: 0s;
}
.ch-bar-mem {
  width: 67%;
  background: linear-gradient(90deg, #f19839, #f58220);
  animation-delay: -1s;
}
.ch-bar-net {
  width: 28%;
  background: linear-gradient(90deg, #34d399, #10b981);
  animation-delay: -2s;
}
.ch-bar-str {
  width: 55%;
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  animation-delay: -3s;
}

@keyframes chMeterPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.ch-m-pct {
  font-size: 0.62rem;
  font-weight: 700;
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}
.ch-cpu-c {
  color: #60a5fa;
}
.ch-mem-c {
  color: #f19839;
}
.ch-net-c {
  color: #34d399;
}
.ch-str-c {
  color: #a78bfa;
}

/* Workload list */
.ch-vm-list {
  padding: 10px 16px 14px;
}

.ch-vm-head {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.ch-vm-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ch-vm-row:last-child {
  border-bottom: none;
}

.ch-vm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ch-vd-green {
  background: #4ade80;
}
.ch-vd-orange {
  background: #f19839;
  animation: chBlink 1.8s ease-in-out infinite;
}
.ch-vd-blue {
  background: #60a5fa;
}

.ch-vm-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ch-vm-type {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.ch-vm-badge {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.ch-vb-run {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.ch-vb-mig {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}
.ch-vb-sc {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

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

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

@media (max-width: 576px) {
  .ch-hero-buttons {
    flex-direction: column;
  }
  .ch-vm-type {
    display: none;
  }
}
/* Workflow */

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.workflow-step {
  background: #0f1c3f;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 500;
}

.workflow-arrow {
  font-size: 1.2rem;
  color: #f58220;
}

/* CTA section (same as cyber-cta) */
.cloud-cta {
  background: linear-gradient(135deg, #0f1c3f, #1e293b);
  padding: 100px 0;
  text-align: center;
}

.cloud-cta h2 {
  font-size: clamp(1.8rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.cloud-cta .lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  color: #ffffff;
}

.cloud-cta .hero-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #243e7e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(36, 62, 126, 0.3);
}

.cloud-cta .hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(241, 152, 57, 0.35);
  background: linear-gradient(135deg, #f58220, #ff7b00);
}

/* ==========================================
   EMAIL HOW-IT-WORKS PAGE
   ========================================== */

/* HERO SECTION */
/* ============================= */
/* EMAIL HOW IT WORKS HERO       */
/* ============================= */

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

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

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

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

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

.eh-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: ehFadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

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

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

.eh-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: ehFadeUp 0.55s ease forwards;
  animation-delay: 0.2s;
}
.eh-hero-title span {
  color: #f19839;
}

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

.eh-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: ehFadeUp 0.55s ease forwards;
  animation-delay: 0.4s;
}

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

/* ---- RIGHT — DASHBOARD ---- */
.eh-hero-viz {
  opacity: 0;
  animation: ehFadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
  width: 100%;
}

.eh-dash {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

/* Header */
.eh-dash-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.eh-hdots {
  display: flex;
  gap: 5px;
}
.eh-hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.eh-hd-r {
  background: #ff5f57;
}
.eh-hd-a {
  background: #ffbd2e;
}
.eh-hd-g {
  background: #28c840;
}

.eh-dash-title {
  flex: 1;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.eh-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eh-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: ehBlink 1.4s ease-in-out infinite;
}

/* Top stats grid */
.eh-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.eh-tg-val {
  font-size: 1rem;
  font-weight: 800;
  color: #f19839;
  letter-spacing: -0.02em;
}
.eh-tg-lbl {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
  text-align: center;
}

/* Threat breakdown */
.eh-threats {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eh-th-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eh-th-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eh-th-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eh-ti-red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.eh-ti-red svg {
  stroke: #ef4444;
}
.eh-ti-orange {
  background: rgba(241, 152, 57, 0.12);
  border: 1px solid rgba(241, 152, 57, 0.28);
}
.eh-ti-orange svg {
  stroke: #f19839;
}
.eh-ti-purple {
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.28);
}
.eh-ti-purple svg {
  stroke: #a78bfa;
}

.eh-th-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.eh-bar-wrap {
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.eh-bar {
  height: 100%;
  border-radius: 2px;
  animation: ehBarPulse 3s ease-in-out infinite;
}
.eh-bar-r {
  background: #ef4444;
  animation-delay: 0s;
}
.eh-bar-o {
  background: #f19839;
  animation-delay: -1s;
}
.eh-bar-p {
  background: #a78bfa;
  animation-delay: -2s;
}

@keyframes ehBarPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.eh-th-count {
  font-size: 0.65rem;
  font-weight: 800;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.eh-tc-r {
  color: #ef4444;
}
.eh-tc-o {
  color: #f19839;
}
.eh-tc-p {
  color: #a78bfa;
}

/* Archive status */
.eh-archive {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eh-arc-head {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.eh-arc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eh-arc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(241, 152, 57, 0.12);
  border: 1px solid rgba(241, 152, 57, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eh-arc-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #f19839;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eh-arc-info {
  flex: 1;
  min-width: 0;
}
.eh-arc-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eh-arc-sub {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.eh-arc-badge {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Recent activity */
.eh-recent {
  padding: 10px 16px 14px;
}

.eh-rec-head {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.eh-rec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.eh-rec-row:last-child {
  border-bottom: none;
}

.eh-rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eh-rd-green {
  background: #4ade80;
}
.eh-rd-red {
  background: #ef4444;
}
.eh-rd-orange {
  background: #f19839;
  animation: ehBlink 1.5s ease-in-out infinite;
}

.eh-rec-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eh-rec-time {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.eh-rec-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.eh-rb-del {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.eh-rb-blk {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.eh-rb-arc {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}

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

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

@media (max-width: 576px) {
  .eh-hero-buttons {
    flex-direction: column;
  }
  .eh-rec-time {
    display: none;
  }
  .eh-bar-wrap {
    width: 55px;
  }
}

/* ==========================================
   INTRO SECTION
   ========================================== */

section h2 {
  font-weight: 700;
  color: #0f1c3f;
}

section .lead {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
}

/* ==========================================
   PROCESS CARDS
   ========================================== */

.process-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px auto;

  background: linear-gradient(135deg, #f19839, #f58220);
  color: #ffffff;

  font-weight: 700;
  font-size: 1.4rem;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(241, 152, 57, 0.35);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1c3f;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ==========================================
   BENEFIT BOXES
   ========================================== */

.benefit-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.benefit-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1c3f;
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */

/* .email-cta duplicate removed — canonical definition in pages/email-archival.css */

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

@media (max-width: 768px) {
  .hero-section.bg-email {
    padding: 70px 0;
  }

  .process-card {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ============================================================
   HARDWARE & NETWORKING HOW IT WORKS
   ============================================================ */

/* =====================================
   HARDWARE & NETWORKING HOW IT WORKS
   ===================================== */

/* HERO SECTION */
/* ============================= */
/* HARDWARE HOW IT WORKS HERO    */
/* ============================= */

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

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

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

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

/* ---- LEFT ---- */
.hw-hiw-text {
  color: #fff;
}

.hw-hiw-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: hwHiwFadeUp 0.5s ease forwards 0.1s;
}

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

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

.hw-hiw-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: hwHiwFadeUp 0.55s ease forwards 0.2s;
}
.hw-hiw-title span {
  color: #f19839;
}

.hw-hiw-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 28px;
  opacity: 0;
  animation: hwHiwFadeUp 0.55s ease forwards 0.3s;
}

.hw-hiw-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hwHiwFadeUp 0.55s ease forwards 0.4s;
}

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

/* ---- RIGHT — DIAGRAM ---- */
.hw-hiw-viz {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: hwHiwFadeUp 0.7s ease forwards 0.55s;
  width: 100%;
}

.hw-hiw-diagram {
  position: relative;
  width: 100%;
  max-width: 320px;
}

/* SVG overlay */
.hw-hiw-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* Line styles */
.hw-line-deployed {
  stroke: rgba(74, 222, 128, 0.5);
  stroke-width: 1.5;
  fill: none;
}
.hw-line-active {
  stroke: rgba(241, 152, 57, 0.6);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 4 3;
}
.hw-line-pending {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 3 4;
}

/* Tiers */
.hw-hiw-tier {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 18px 0 0;
}

.hw-hiw-tier-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 0 8px;
}

/* Device */
.hw-hiw-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hw-hiw-box {
  border-radius: 10px;
  background: rgba(10, 20, 52, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  min-width: 58px;
  position: relative;
  transition: border-color 0.3s ease;
}

.hw-hiw-box-wide {
  min-width: 78px;
  padding: 10px 16px;
}

.hw-hiw-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hw-hiw-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hw-hiw-devname {
  font-size: 0.44rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Status dot on top-right */
.hw-hiw-box::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #0a1228;
}

/* Deployed — green */
.hw-dev-deployed .hw-hiw-box {
  border: 1.5px solid rgba(74, 222, 128, 0.5);
  animation: hwDeployedPulse 3s ease-in-out infinite;
}
.hw-dev-deployed .hw-hiw-icon svg {
  stroke: #4ade80;
}
.hw-dev-deployed .hw-hiw-devname {
  color: #4ade80;
}
.hw-dev-deployed .hw-hiw-box::after {
  background: #4ade80;
}

@keyframes hwDeployedPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.04);
  }
}

/* Active — orange pulsing */
.hw-dev-active .hw-hiw-box {
  border: 1.5px solid rgba(241, 152, 57, 0.6);
  animation: hwActivePulse 1.5s ease-in-out infinite;
}
.hw-dev-active .hw-hiw-icon svg {
  stroke: #f19839;
}
.hw-dev-active .hw-hiw-devname {
  color: #f19839;
}
.hw-dev-active .hw-hiw-box::after {
  background: #f19839;
  animation: hwHiwBlink 1.2s ease-in-out infinite;
}

@keyframes hwActivePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(241, 152, 57, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(241, 152, 57, 0.05);
  }
}

/* Pending — dimmed */
.hw-dev-pending .hw-hiw-box {
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  opacity: 0.45;
}
.hw-dev-pending .hw-hiw-icon svg {
  stroke: rgba(255, 255, 255, 0.4);
}
.hw-dev-pending .hw-hiw-devname {
  color: rgba(255, 255, 255, 0.3);
}
.hw-dev-pending .hw-hiw-box::after {
  background: rgba(255, 255, 255, 0.2);
}

/* Legend */
.hw-hiw-legend {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
}

.hw-hiw-leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.hw-hiw-leg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hw-ld-green {
  background: #4ade80;
}
.hw-ld-orange {
  background: #f19839;
}
.hw-ld-grey {
  background: rgba(255, 255, 255, 0.25);
}

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

@media (max-width: 992px) {
  .hw-hiw-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hw-hiw-sub {
    max-width: 100%;
  }
  .hw-hiw-diagram {
    max-width: 300px;
    margin: 0 auto;
  }
  .hw-hiw-legend {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hw-hiw-buttons {
    flex-direction: column;
  }
  .hw-hiw-diagram {
    max-width: 280px;
  }
  .hw-hiw-legend {
    max-width: 280px;
    gap: 12px;
  }
  .hw-hiw-box {
    padding: 8px 9px;
    min-width: 50px;
  }
  .hw-hiw-box-wide {
    min-width: 68px;
    padding: 8px 12px;
  }
  .hw-hiw-devname {
    font-size: 0.4rem;
  }
}

/* =========================
   PROCESS SECTION
   ========================= */

.process-section h2 {
  font-weight: 700;
  color: #0f1c3f;
}

.process-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.process-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f1c3f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f1c3f;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* =========================
   INFRASTRUCTURE STACK
   ========================= */

.hardware-stack h2 {
  font-weight: 700;
  color: #0f1c3f;
}

.stack-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

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

.stack-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f1c3f;
}

.stack-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* =========================
   INFRASTRUCTURE ENVIRONMENTS
   ========================= */

.hardware-environments h2 {
  font-weight: 700;
  color: #0f1c3f;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.environment-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}

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

.env-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.environment-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f1c3f;
}

.environment-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* =========================
   CTA SECTION
   ========================= */

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

.hardware-cta h2 {
  font-weight: 700;
}

.hardware-cta p {
  max-width: 700px;
  margin: auto;
  color: #e5e7eb;
}

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

@media (max-width: 991px) {
  .bg-hardware-howitworks .hero-title {
    font-size: 34px;
  }

  .hardware-icon-circle {
    width: 120px;
    height: 120px;
    font-size: 48px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .bg-hardware-howitworks {
    padding: 70px 0;
  }

  .process-card {
    padding: 25px;
  }

  .stack-card {
    padding: 25px;
  }

  .environment-card {
    padding: 25px;
  }
}

/* ============================================================
   MANAGED SERVICES HOW IT WORKS
   ============================================================ */

/* =====================================
   MANAGED SERVICES - HOW IT WORKS PAGE
   ===================================== */

/* HERO SECTION */
/* ============================= */
/* MANAGED HOW IT WORKS HERO     */
/* ============================= */

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

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

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

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

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

.mh-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: mhFadeUp 0.5s ease forwards 0.1s;
}

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

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

.mh-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: mhFadeUp 0.55s ease forwards 0.2s;
}
.mh-hero-title span {
  color: #f19839;
}

.mh-hero-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 28px;
  opacity: 0;
  animation: mhFadeUp 0.55s ease forwards 0.3s;
}

.mh-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: mhFadeUp 0.55s ease forwards 0.4s;
}

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

/* ---- RIGHT — DASHBOARD ---- */
.mh-hero-viz {
  opacity: 0;
  animation: mhFadeUp 0.7s ease forwards 0.55s;
  width: 100%;
}

.mh-dash {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

/* Header */
.mh-dash-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mh-hdots {
  display: flex;
  gap: 5px;
}
.mh-hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.mh-hd-r {
  background: #ff5f57;
}
.mh-hd-a {
  background: #ffbd2e;
}
.mh-hd-g {
  background: #28c840;
}

.mh-dash-title {
  flex: 1;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.mh-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mh-live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: mhBlink 1.4s ease-in-out infinite;
}

/* Health score */
.mh-health-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mh-health-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(
    #4ade80 0% 94%,
    rgba(255, 255, 255, 0.08) 94% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-health-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a1228;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mh-health-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}
.mh-health-lbl {
  font-size: 0.34rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.mh-health-info {
  flex: 1;
}
.mh-health-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.mh-health-sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* Domain grid */
.mh-domain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mh-domain-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease;
}
.mh-domain-card:hover {
  border-color: rgba(241, 152, 57, 0.3);
}

.mh-dc-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mh-dc-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mh-dci-green {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.22);
}
.mh-dci-green svg {
  stroke: #4ade80;
}
.mh-dci-orange {
  background: rgba(241, 152, 57, 0.12);
  border: 1px solid rgba(241, 152, 57, 0.28);
}
.mh-dci-orange svg {
  stroke: #f19839;
}
.mh-dci-blue {
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
}
.mh-dci-blue svg {
  stroke: #60a5fa;
}
.mh-dci-purple {
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
}
.mh-dci-purple svg {
  stroke: #a78bfa;
}

.mh-dc-info {
  flex: 1;
  min-width: 0;
}
.mh-dc-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mh-dc-status {
  font-size: 0.52rem;
  font-weight: 700;
  margin-top: 2px;
}
.mh-dcs-ok {
  color: #4ade80;
}
.mh-dcs-warn {
  color: #f19839;
  animation: mhBlink 1.8s ease-in-out infinite;
}

/* Uptime strip */
.mh-uptime-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mh-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.mh-us:last-child {
  border-right: none;
}

.mh-us-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #f19839;
  letter-spacing: -0.02em;
}
.mh-us-lbl {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
  text-align: center;
}

/* Recent activity */
.mh-alerts {
  padding: 10px 16px 13px;
}

.mh-al-head {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}

.mh-al-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mh-al-row:last-child {
  border-bottom: none;
}

.mh-al-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mh-dot-green {
  background: #4ade80;
}
.mh-dot-orange {
  background: #f19839;
  animation: mhBlink 1.5s ease-in-out infinite;
}
.mh-dot-blue {
  background: #60a5fa;
}

.mh-al-name {
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mh-al-time {
  font-size: 0.53rem;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.mh-al-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}
.mh-ab-ok {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}
.mh-ab-warn {
  background: rgba(241, 152, 57, 0.15);
  color: #f19839;
}
.mh-ab-info {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
}

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

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

@media (max-width: 576px) {
  .mh-hero-buttons {
    flex-direction: column;
  }
  .mh-al-time {
    display: none;
  }
  .mh-domain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* TIMELINE STEPS */

.step {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0f1c3f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step:hover {
  transform: translateY(-6px);
  background: #2563eb;
}

/* OVERVIEW */

.process-overview {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 40px;
}

.process-overview h2 {
  font-weight: 700;
}

.process-overview p {
  max-width: 750px;
  margin: auto;
  color: #555;
}

/* PROCESS PHASE SECTIONS */

.process-phase {
  padding: 80px 0;
}

.process-phase h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.process-phase p {
  color: #555;
  line-height: 1.7;
}

.process-phase ul {
  margin-top: 15px;
  padding-left: 18px;
}

.process-phase li {
  margin-bottom: 8px;
  color: #444;
}

/* ============================= */
/* MANAGED HIW — PHASE VISUALS   */
/* ============================= */

.mh-phase-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 280px;
  width: 100%;
  text-align: center;
}

/* Icon circle */
.mh-phase-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mh-phase-icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Color variants */
.mh-pi-blue {
  background: rgba(96, 165, 250, 0.12);
  border: 2px solid rgba(96, 165, 250, 0.3);
}
.mh-pi-blue svg {
  stroke: #2563eb;
}

.mh-pi-orange {
  background: rgba(241, 152, 57, 0.12);
  border: 2px solid rgba(241, 152, 57, 0.35);
}
.mh-pi-orange svg {
  stroke: #c47a10;
}

.mh-pi-green {
  background: rgba(74, 222, 128, 0.12);
  border: 2px solid rgba(74, 222, 128, 0.3);
}
.mh-pi-green svg {
  stroke: #16a34a;
}

.mh-pi-purple {
  background: rgba(167, 139, 250, 0.12);
  border: 2px solid rgba(167, 139, 250, 0.3);
}
.mh-pi-purple svg {
  stroke: #7c3aed;
}

/* Phase badge */
.mh-phase-badge {
  font-size: 0.62rem;
  font-weight: 800;
  color: #f19839;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(241, 152, 57, 0.1);
  border: 1px solid rgba(241, 152, 57, 0.25);
  padding: 3px 12px;
  border-radius: 20px;
}

/* Phase label */
.mh-phase-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f1c3f;
  line-height: 1.3;
}

/* Chips */
.mh-phase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.mh-chip {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.07);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
  .mh-phase-visual {
    margin: 24px auto 0;
  }
}

/* CTA SECTION */

.cta-section {
  background: linear-gradient(135deg, #0f1c3f, #1e293b);
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .process-circle {
    width: 180px;
    height: 180px;
    margin-top: 30px;
  }

  .step {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }

  .process-icon {
    width: 120px;
    height: 120px;
    font-size: 36px;
    margin-top: 25px;
  }

  .timeline::before {
    left: 5%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .process-phase {
    text-align: center;
  }

  .process-phase ul {
    display: inline-block;
    text-align: left;
  }

  .timeline::before {
    display: none;
  }
}

/* ============================================================
   WEB DEVELOPMENT HOW IT WORKS
   ============================================================ */

/* ============================= */
/* WEB DEV HOW IT WORKS HERO     */
/* ============================= */

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

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

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

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

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

.wd-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: wdFadeUp 0.5s ease forwards 0.1s;
}

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

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

.wd-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: wdFadeUp 0.55s ease forwards 0.2s;
}
.wd-hero-title span {
  color: #f19839;
}

.wd-hero-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 28px;
  opacity: 0;
  animation: wdFadeUp 0.55s ease forwards 0.3s;
}

.wd-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: wdFadeUp 0.55s ease forwards 0.4s;
}

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

/* ---- RIGHT — BROWSER MOCKUP ---- */
.wd-hero-viz {
  opacity: 0;
  animation: wdFadeUp 0.7s ease forwards 0.55s;
  width: 100%;
}

/* Browser frame */
.wd-browser {
  background: #1a2744;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Browser chrome bar */
.wd-chrome {
  background: #0d1528;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wd-dots {
  display: flex;
  gap: 5px;
}
.wd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.wd-dot-r {
  background: #ff5f57;
}
.wd-dot-a {
  background: #ffbd2e;
}
.wd-dot-g {
  background: #28c840;
}

.wd-addressbar {
  flex: 1;
  height: 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.wd-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 6px;
  flex-shrink: 0;
  animation: wdBlink 1.6s ease-in-out infinite;
}

/* Blinking cursor in address bar */
.wd-cursor {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  animation: wdCursorBlink 1s ease-in-out infinite;
  vertical-align: middle;
  margin-left: 2px;
}

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

/* Website being built */
.wd-browser-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Site nav */
.wd-site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  opacity: 0;
  animation: wdElemIn 0.4s ease forwards 0.8s;
}

.wd-site-logo {
  width: 50px;
  height: 7px;
  background: rgba(241, 152, 57, 0.8);
  border-radius: 3px;
}

.wd-site-nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.wd-nav-link {
  width: 28px;
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.wd-nav-btn {
  width: 36px;
  height: 18px;
  background: rgba(241, 152, 57, 0.4);
  border-radius: 3px;
  border: 1px solid rgba(241, 152, 57, 0.5);
}

/* Site hero section */
.wd-site-hero {
  background: linear-gradient(
    135deg,
    rgba(13, 31, 69, 0.8),
    rgba(26, 50, 110, 0.8)
  );
  border-radius: 6px;
  padding: 16px 14px;
  opacity: 0;
  animation: wdElemIn 0.4s ease forwards 1.1s;
}

.wd-sh-badge {
  width: 60px;
  height: 5px;
  background: rgba(241, 152, 57, 0.6);
  border-radius: 2px;
  margin-bottom: 8px;
}
.wd-sh-title {
  width: 85%;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  margin-bottom: 5px;
}
.wd-sh-title2 {
  width: 65%;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  margin-bottom: 10px;
}
.wd-sh-sub {
  width: 90%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 3px;
}
.wd-sh-sub2 {
  width: 75%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 12px;
}

.wd-sh-btns {
  display: flex;
  gap: 8px;
}
.wd-sh-btn-p {
  width: 60px;
  height: 20px;
  background: rgba(241, 152, 57, 0.7);
  border-radius: 4px;
}
.wd-sh-btn-s {
  width: 60px;
  height: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* Service cards row */
.wd-site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  opacity: 0;
  animation: wdElemIn 0.4s ease forwards 1.4s;
}

.wd-site-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px;
}

.wd-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(241, 152, 57, 0.2);
  margin-bottom: 5px;
}
.wd-card-t {
  width: 70%;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin-bottom: 4px;
}
.wd-card-s {
  width: 90%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 2px;
}
.wd-card-s2 {
  width: 60%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

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

/* Code snippet */
.wd-code-panel {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 14px;
  opacity: 0;
  animation: wdElemIn 0.4s ease forwards 1.7s;
}

.wd-code-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.wd-code-line:last-child {
  margin-bottom: 0;
}

.wd-code-num {
  font-size: 0.57rem;
  color: rgba(255, 255, 255, 0.2);
  width: 12px;
  text-align: right;
  flex-shrink: 0;
}

.wd-code-text {
  font-size: 0.65rem;
  font-family: "Courier New", monospace;
  color: rgba(255, 255, 255, 0.5);
}

.wd-kw {
  color: #60a5fa;
}
.wd-str {
  color: #34d399;
}
.wd-fn {
  color: #f19839;
}

.wd-code-cursor {
  display: inline-block;
  width: 6px;
  height: 9px;
  background: rgba(241, 152, 57, 0.8);
  animation: wdCursorBlink 1s ease-in-out infinite;
  vertical-align: middle;
}

/* Build progress */
.wd-build-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  opacity: 0;
  animation: wdElemIn 0.4s ease forwards 2s;
}

.wd-build-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.wd-build-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.wd-build-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #f19839, #f58220);
  border-radius: 2px;
  animation: wdBuildAnim 5s ease-in-out infinite;
}

@keyframes wdBuildAnim {
  0%,
  100% {
    width: 62%;
  }
  50% {
    width: 78%;
  }
}

.wd-build-pct {
  font-size: 0.58rem;
  font-weight: 800;
  color: #f19839;
  flex-shrink: 0;
}

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

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

@media (max-width: 576px) {
  .wd-hero-buttons {
    flex-direction: column;
  }
  .wd-site-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================
   PROCESS CARDS
   ============================= */

.process-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* process number */

.process-number {
  font-size: 30px;
  font-weight: 800;
  color: #f58220;
  margin-bottom: 14px;
  letter-spacing: 1px;
  animation: processGlow 4s ease-in-out infinite;
}

@keyframes processGlow {
  0% {
    text-shadow: 0 0 0 rgba(245, 130, 32, 0);
  }
  50% {
    text-shadow: 0 0 12px rgba(245, 130, 32, 0.45);
  }
  100% {
    text-shadow: 0 0 0 rgba(245, 130, 32, 0);
  }
}

/* process text */

.process-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1c3f;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* =============================
   WORKFLOW SECTION
   ============================= */

.workflow-list {
  padding-left: 18px;
  margin-top: 20px;
}

.workflow-list li {
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: #374151;
}

/* workflow grid */

.workflow-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* workflow steps */

.workflow-step {
  background: linear-gradient(135deg, #0f1c3f, #1e293b);
  color: #ffffff;
  padding: 22px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: workflowFloat 6s ease-in-out infinite;
}

.workflow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* animation delays */

.workflow-step:nth-child(2) {
  animation-delay: 1s;
}
.workflow-step:nth-child(3) {
  animation-delay: 2s;
}
.workflow-step:nth-child(4) {
  animation-delay: 3s;
}

@keyframes workflowFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* =============================
   DELIVERABLE CARDS
   ============================= */

.deliverable-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  height: 100%;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.deliverable-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1c3f;
  margin-bottom: 12px;
}

.deliverable-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* =============================
   SCROLL REVEAL
   ============================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 992px) {
  .workflow-visual {
    margin-top: 35px;
  }
}

@media (max-width: 768px) {
  .process-card {
    padding: 26px 20px;
  }

  .workflow-visual {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   INDUSTRIES SECTION
========================================== */
