/* ============================================================
   TMK GLOBAL LLC — services.css
   Service Detail Pages, Holo Panels, Pricing
============================================================ */

/* Shared keyframe used across service page panels */
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

/* ============================================================
   SERVICE DETAIL PAGE STYLES
   Used by: services/*.html
============================================================ */

/* ── Service Hero ─────────────────────────────────────────── */
.sd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0,85,238,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 70%, rgba(0,255,136,0.08) 0%, transparent 60%);
  isolation: isolate;
}

.sd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 255, 136, 0.18), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(0, 212, 255, 0.16), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(0, 85, 238, 0.12), transparent 34%);
  filter: blur(12px);
  z-index: 1;
  pointer-events: none;
}

.sd-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.11) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 45%, black, transparent 72%);
  animation: sdGridMove 18s linear infinite;
}

@keyframes sdGridMove {
  from { background-position: 0 0; }
  to   { background-position: 116px 116px; }
}

.sd-hero-beam {
  position: absolute;
  width: 520px;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.75), rgba(0, 212, 255, 0.55), transparent);
  filter: blur(0.4px);
  opacity: 0.42;
  transform-origin: center;
}

.sd-beam-1 {
  top: 28%;
  right: -120px;
  transform: rotate(-22deg);
  animation: sdBeamFloat 5s ease-in-out infinite alternate;
}

.sd-beam-2 {
  bottom: 24%;
  left: -160px;
  transform: rotate(18deg);
  animation: sdBeamFloat 6s ease-in-out infinite alternate-reverse;
}

@keyframes sdBeamFloat {
  from { opacity: 0.22; translate: 0 0; }
  to   { opacity: 0.65; translate: 24px -18px; }
}

.sd-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: var(--nav-h) 0 56px;
  width: 100%;
  min-height: 720px;
  position: relative;
  z-index: 5;
}

.sd-hero-content {
  flex: 1;
  max-width: 600px;
  padding: 40px 0;
}

.sd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--trans);
  margin-bottom: 20px;
}
.sd-back-link:hover { color: var(--neon-green); }
.sd-back-link:hover i { transform: translateX(-3px); }
.sd-back-link i { font-size: 0.75rem; transition: var(--trans); }

.sd-hero-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sd-topline-text {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

.sd-topline-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(0,255,136,0.6);
}

.sd-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.2vw, 4.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
  max-width: 760px;
  text-shadow: 0 0 34px rgba(0, 255, 136, 0.12);
}

.sd-hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(196, 204, 216, 0.88);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 720px;
}

.sd-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.sd-mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(0, 255, 136, 0.14);
  border-radius: 22px;
  padding: 18px 22px;
  backdrop-filter: blur(14px);
  width: fit-content;
  box-shadow: inset 0 0 25px rgba(0, 255, 136, 0.04);
}
.sd-mini-stat { text-align: center; }
.sd-ms-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-green);
  text-shadow: 0 0 14px rgba(0,255,136,0.45);
  line-height: 1;
  margin-bottom: 4px;
}
.sd-ms-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sd-ms-divider {
  width: 1px; height: 36px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── Holographic Visual ───────────────────────────────────── */
.sd-hero-visual {
  flex-shrink: 0;
  width: 400px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  min-height: 420px;
  transform: translateZ(0);
}

.sd-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  pointer-events: none;
}
.sd-orbit-1 {
  width: 370px; height: 370px;
  border-width: 1px;
  border-color: rgba(0,255,136,0.12);
  animation: orbitA 14s linear infinite;
}
.sd-orbit-2 {
  width: 430px; height: 430px;
  border-width: 1px;
  border-color: rgba(0,212,255,0.08);
  animation: orbitA 20s linear infinite reverse;
}

.sd-glow-blob {
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(ellipse, rgba(0,85,238,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}

/* ── Holographic Panel ────────────────────────────────────── */
.holo-panel {
  width: 340px;
  background: rgba(5,5,12,0.9);
  border: 1px solid rgba(0,255,136,0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 70px rgba(0, 255, 136, 0.18),
    0 0 120px rgba(0, 212, 255, 0.12),
    inset 0 0 45px rgba(0, 255, 136, 0.08);
  position: relative;
  z-index: 2;
  will-change: transform;
  animation: sdPanelFloat 5s ease-in-out infinite;
}

@keyframes sdPanelFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50%       { transform: translateY(-12px) rotateX(2deg) rotateY(-3deg); }
}

.holo-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0,255,136,0.06);
  border-bottom: 1px solid rgba(0,255,136,0.18);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.holo-live { display: flex; align-items: center; gap: 6px; color: var(--neon-green); }
.holo-blink {
  width: 6px; height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--neon-green);
  animation: pulseDot 1.5s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}
.holo-name { color: rgba(255,255,255,0.6); }
.holo-time { color: var(--electric-blue); font-size: 0.62rem; }

.holo-map {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0,8,20,0.6);
}
.holo-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.holo-route {
  position: absolute;
  height: 1px;
  pointer-events: none;
}
.route-1 {
  width: 58%; top: 38%; left: 8%;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.7), transparent);
  transform: rotate(-14deg);
  animation: routePulse 3s ease-in-out infinite;
}
.route-2 {
  width: 44%; top: 62%; left: 32%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.7), transparent);
  transform: rotate(9deg);
  animation: routePulse 4.2s ease-in-out infinite 0.6s;
}
.route-3 {
  width: 28%; top: 22%; left: 58%;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.5), transparent);
  transform: rotate(-6deg);
  animation: routePulse 3.6s ease-in-out infinite 1.1s;
}
@keyframes routePulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

.holo-truck {
  position: absolute;
  font-size: 0.72rem;
  animation: truckFloat 3s ease-in-out infinite;
}
.ht-1 { top: 33%; left: 22%; color: var(--neon-green); filter: drop-shadow(0 0 4px var(--neon-green)); }
.ht-2 { top: 56%; left: 62%; color: var(--electric-blue); filter: drop-shadow(0 0 4px var(--electric-blue)); animation-delay: 1.2s; }
@keyframes truckFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.holo-pin {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pinPulse 2.2s ease-in-out infinite;
}
.hp-1 { top: 18%; left: 12%; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }
.hp-2 { top: 72%; left: 42%; background: var(--electric-blue); box-shadow: 0 0 8px var(--electric-blue); animation-delay: 0.8s; }
.hp-3 { top: 42%; left: 82%; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); animation-delay: 1.6s; }

.holo-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.5) 50%, transparent 100%);
  animation: scanLine 3.5s linear infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.holo-cards-row {
  display: flex;
  border-top: 1px solid rgba(0,255,136,0.1);
  border-bottom: 1px solid rgba(0,255,136,0.1);
}
.holo-mini-card {
  flex: 1;
  padding: 7px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,136,0.14);
  background: linear-gradient(180deg, rgba(0,255,136,0.04), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 18px rgba(0,255,136,0.04);
}
.holo-mini-card:last-child { border-right: none; }
.hmc-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hmc-val {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}
.hmc-green { color: var(--neon-green); }
.hmc-blue  { color: var(--electric-blue); }

.holo-metrics {
  display: flex;
  padding: 10px 14px;
}
.holo-metric {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.holo-metric:last-child { border-right: none; }
.hm-label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.hm-value {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-green);
}

/* ── Floating Chips ───────────────────────────────────────── */
.sd-floating-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.72);
  border: 1px solid rgba(0, 255, 136, 0.28);
  backdrop-filter: blur(14px);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow:
    0 0 24px rgba(0, 255, 136, 0.16),
    inset 0 0 18px rgba(0, 255, 136, 0.06);
  pointer-events: none;
}

.sd-floating-chip i {
  color: var(--neon-green);
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.85));
}

.sd-chip-1 { top: 26%; right: 32%; animation: sdChipFloat 4.2s ease-in-out infinite; }
.sd-chip-2 { top: 58%; right: 6%;  animation: sdChipFloat 5.2s ease-in-out infinite reverse; }
.sd-chip-3 { bottom: 18%; right: 27%; animation: sdChipFloat 4.8s ease-in-out infinite; }

@keyframes sdChipFloat {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50%       { transform: translateY(-14px); opacity: 1; }
}

/* ── Blue icon modifier ───────────────────────────────────── */
.sd-icon-blue {
  background: linear-gradient(135deg, var(--blue-dim) 0%, var(--neon-green-dim) 100%) !important;
  border-color: rgba(0,212,255,0.2) !important;
  color: var(--electric-blue) !important;
}

/* ── What We Offer ────────────────────────────────────────── */
.sd-offer-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,85,238,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5% 80%, rgba(0,255,136,0.04) 0%, transparent 60%);
}

.sd-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sd-offer-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(0,255,136,0.03), rgba(0,0,0,0));
  backdrop-filter: blur(14px);
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.sd-offer-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 35px rgba(0,255,136,0.16),
    0 0 70px rgba(0,212,255,0.08),
    inset 0 0 35px rgba(0,255,136,0.05);
}

.sd-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  z-index: 1;
}

.sd-offer-card:hover::before { left: 160%; }

.sd-offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0,255,136,0.06), transparent 35%);
  pointer-events: none;
}

.sd-offer-card > * { position: relative; z-index: 2; }

.sd-offer-icon {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--neon-green-dim) 0%, var(--blue-dim) 100%);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--neon-green);
  margin-bottom: 18px;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow:
    inset 0 0 25px rgba(0,255,136,0.05),
    0 0 18px rgba(0,255,136,0.08);
}

.sd-offer-card:hover .sd-offer-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 0 30px rgba(0,255,136,0.25);
}

.sd-offer-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.sd-offer-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  max-width: 90%;
}

/* ── Why Choose ───────────────────────────────────────────── */
.sd-why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(0,255,136,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(0,212,255,0.04) 0%, transparent 60%);
}

.sd-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(0,255,136,0.08), transparent 35%);
  pointer-events: none;
}

.sd-why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.sd-why-text {
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.72);
  max-width: 650px;
  margin-bottom: 28px;
}

.sd-why-benefits { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.sd-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: transform 0.35s ease, color 0.35s ease;
}
.sd-benefit:hover { transform: translateX(8px); color: var(--text-primary); }
.sd-benefit i {
  color: var(--neon-green);
  font-size: 0.82rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,255,136,0.6));
}

/* ── Operations Panel ─────────────────────────────────────── */
.sd-ops-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,255,136,0.16);
  box-shadow:
    0 0 40px rgba(0,255,136,0.12),
    0 0 90px rgba(0,212,255,0.06),
    inset 0 0 35px rgba(0,255,136,0.04);
  backdrop-filter: blur(20px);
}

.sd-ops-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(0,255,136,0.08), transparent);
  animation: sdScan 5s linear infinite;
}

@keyframes sdScan {
  0%   { top: -30%; }
  100% { top: 120%; }
}

.sd-ops-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.8), transparent);
}

.sdop-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0,255,136,0.05);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.sdop-header i { color: var(--neon-green); font-size: 0.9rem; }
.sdop-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0,255,136,0.2);
}

.sdop-items { padding: 8px 0; }
.sdop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.35s ease, background 0.35s ease;
}
.sdop-item:last-child { border-bottom: none; }
.sdop-item:hover { transform: translateX(6px); background: rgba(0,255,136,0.04); }

.sdop-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pinPulse 2.5s ease-in-out infinite;
}
.sdop-green { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.sdop-blue  { background: var(--electric-blue); box-shadow: 0 0 6px var(--electric-blue); animation-delay: 0.8s; }

.sdop-label { font-size: 0.85rem; color: var(--text-secondary); flex: 1; }
.sdop-val   { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--neon-green); }

.sdop-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(0,255,136,0.03);
  border-top: 1px solid rgba(0,255,136,0.12);
}
.sdop-bar-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.sdop-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.sdop-progress-fill {
  height: 100%;
  width: 94%;
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0,255,136,0.35);
  animation: progressGlow 2s ease-in-out infinite alternate;
}
@keyframes progressGlow {
  from { box-shadow: none; }
  to   { box-shadow: 0 0 8px var(--neon-green); }
}
.sdop-bar-val { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--neon-green); }

/* ── Process Timeline ─────────────────────────────────────── */
.sd-process-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(0,85,238,0.06) 0%, transparent 70%);
}

.sd-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 212, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(0, 255, 136, 0.06), transparent 35%);
  pointer-events: none;
}

.sd-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  z-index: 2;
}

.sd-process-timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.75), rgba(0,212,255,0.55), transparent);
  box-shadow: 0 0 20px rgba(0,255,136,0.24);
  z-index: 0;
}

.sd-process-step {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 34px 24px;
  border: 1px solid rgba(0,255,136,0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0,255,136,0.045), rgba(255,255,255,0.025));
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 28px rgba(0,255,136,0.035);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sd-process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,212,255,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sd-process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 36px rgba(0,255,136,0.14),
    0 0 70px rgba(0,212,255,0.08),
    inset 0 0 30px rgba(0,255,136,0.055);
}
.sd-process-step:hover::before { opacity: 1; }

.sd-step-num {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.28);
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 28px;
  box-shadow: 0 0 22px rgba(0,255,136,0.12);
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.sd-process-step:hover .sd-step-num {
  border-color: var(--neon-green);
  box-shadow: 0 0 24px rgba(0,255,136,0.3);
  transform: scale(1.05);
}

.sd-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.sd-step-text {
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  font-size: 0.95rem;
}

.sd-process-connector { display: none; }

/* ── Equipment Section ────────────────────────────────────── */
.sd-equip-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0,85,238,0.06) 0%, transparent 65%);
}

.sd-equip-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 45%, rgba(0, 255, 136, 0.07), transparent 34%),
    radial-gradient(circle at 82% 58%, rgba(0, 212, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.sd-equip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.sd-equip-card {
  position: relative;
  min-height: 185px;
  padding: 34px 24px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0,255,136,0.16);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sd-equip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,255,136,0.045), transparent),
    radial-gradient(circle at top, rgba(0,212,255,0.07), transparent 42%);
  opacity: 0.8;
  pointer-events: none;
}

.sd-equip-card::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.8), rgba(0,212,255,0.7), transparent);
  box-shadow: 0 0 18px rgba(0,255,136,0.4);
  opacity: 0.8;
}

.sd-equip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 34px rgba(0,255,136,0.14),
    inset 0 0 28px rgba(0,255,136,0.04);
}

.sd-equip-card > * { position: relative; z-index: 2; }

.sd-equip-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-green);
  font-size: 1.8rem;
  box-shadow: inset 0 0 24px rgba(0,255,136,0.055);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sd-equip-card:nth-child(even) .sd-equip-icon {
  color: var(--electric-blue);
  filter: drop-shadow(0 0 5px rgba(0,212,255,0.3));
}
.sd-equip-card:hover .sd-equip-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 28px rgba(0,255,136,0.22);
}

.sd-equip-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Results / Stats ──────────────────────────────────────── */
.sd-results-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 10% 50%, rgba(0,255,136,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 30%, rgba(0,85,238,0.06) 0%, transparent 60%);
}

.sd-results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(0, 255, 136, 0.08), transparent 34%),
    radial-gradient(circle at 78% 55%, rgba(0, 212, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.sd-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.sd-result-item {
  position: relative;
  min-height: 210px;
  padding: 34px 26px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0,255,136,0.16);
  background: linear-gradient(180deg, rgba(0,255,136,0.04), rgba(255,255,255,0.025));
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sd-result-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,212,255,0.09), transparent 38%);
  opacity: 0.8;
  pointer-events: none;
}

.sd-result-item::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.8), rgba(0,212,255,0.65), transparent);
  box-shadow: 0 0 18px rgba(0,255,136,0.35);
}

.sd-result-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,136,0.45);
  box-shadow:
    0 0 34px rgba(0,255,136,0.14),
    0 0 70px rgba(0,212,255,0.08),
    inset 0 0 28px rgba(0,255,136,0.04);
}

.sd-result-item > * { position: relative; z-index: 2; }

.sd-result-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-green);
  font-size: 1.6rem;
  margin: 0 auto 22px;
  box-shadow: inset 0 0 22px rgba(0,255,136,0.055);
  transition: var(--trans);
}
.sd-result-item:hover .sd-result-icon { box-shadow: 0 0 18px var(--neon-green-glow); }

.sd-result-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.sd-result-text {
  color: rgba(255,255,255,0.62);
  font-size: 0.98rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.sd-faq-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 50% 45% at 50% 60%, rgba(0,85,238,0.05) 0%, transparent 65%);
}

.sd-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0,255,136,0.07), transparent 34%),
    radial-gradient(circle at 80% 60%, rgba(0,212,255,0.06), transparent 34%);
  pointer-events: none;
}

.sd-faq-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  border: 1px solid rgba(0,255,136,0.16);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 24px rgba(0,255,136,0.035);
  transition: border-color 0.3s var(--ease);
}
.faq-item.open { border-color: rgba(0,255,136,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: var(--glass-bg);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--trans);
}
.faq-question:hover { background: var(--glass-bg-hover); color: var(--neon-green); }
.faq-item.open .faq-question { color: var(--neon-green); background: rgba(0,255,136,0.04); }

.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--neon-green);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,255,136,0.15); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  padding: 4px 0 4px;
}

/* ── Final CTA ────────────────────────────────────────────── */
.sd-final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
}

.sd-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,255,136,0.13), transparent 38%),
    radial-gradient(circle at 80% 70%, rgba(0,212,255,0.09), transparent 34%);
  pointer-events: none;
}

.sd-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,85,238,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,255,136,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sd-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  border: 1px solid rgba(0,255,136,0.22);
  border-radius: 30px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 50px rgba(0,255,136,0.14),
    inset 0 0 45px rgba(0,255,136,0.045);
}

.sd-cta-inner::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.9), rgba(0,212,255,0.7), transparent);
}

.sd-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--text-primary);
}
.sd-cta-sub {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 30px;
}
.sd-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   CUSTOMER SERVICE PAGE — SUPPORT SCHEDULE PANEL
============================================================ */
.supp-schedule {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 8, 20, 0.6);
}

.supp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.06);
  font-size: 0.7rem;
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
}
.supp-row:nth-child(even) { background: rgba(0, 255, 136, 0.02); }

.sr-icon {
  font-size: 0.72rem;
  color: var(--neon-green);
  filter: drop-shadow(0 0 4px var(--neon-green));
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.sr-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr-badge {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  flex-shrink: 0;
}
.sr-confirmed { background: rgba(0, 255, 136, 0.12); color: var(--neon-green); border: 1px solid rgba(0, 255, 136, 0.28); }
.sr-active    { background: rgba(0, 212, 255, 0.12); color: var(--electric-blue); border: 1px solid rgba(0, 212, 255, 0.28); animation: rowPulse 2s ease-in-out infinite; }
.sr-live      { background: rgba(0, 255, 136, 0.18); color: var(--neon-green); border: 1px solid rgba(0, 255, 136, 0.38); animation: rowPulse 1.5s ease-in-out infinite; }
@keyframes rowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.supp-notif {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  z-index: 3;
  animation: pinPulse 2s ease-in-out infinite;
}
.sn-1 { top: 18%; right: 12%; background: var(--neon-green); box-shadow: 0 0 7px var(--neon-green); }
.sn-2 { bottom: 20%; right: 30%; background: var(--electric-blue); box-shadow: 0 0 7px var(--electric-blue); animation-delay: 1s; }

/* ============================================================
   ERP / CRM SOFTWARE PAGE — DASHBOARD PANEL
============================================================ */
.sd-caps-section {
  background:
    radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
}

.sd-caps-section .sd-offer-card {
  min-height: 280px;
  background: linear-gradient(180deg, rgba(0,212,255,0.04), rgba(255,255,255,0.02));
}

.erp-kpi-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}
.erp-kpi-card {
  flex: 1;
  padding: 12px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  border: 1px solid rgba(0,255,136,0.16);
  background: linear-gradient(180deg, rgba(0,255,136,0.04), rgba(255,255,255,0.025));
  box-shadow: inset 0 0 20px rgba(0,255,136,0.04), 0 0 20px rgba(0,255,136,0.06);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.erp-kpi-card:last-child { border-right: none; }
.erp-kpi-card:hover { transform: translateY(-6px); border-color: rgba(0,255,136,0.4); }

.ekc-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ekc-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--neon-green);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.45);
}
.ekc-change {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--neon-green);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.ekc-blue { color: var(--electric-blue); }

.erp-analytics {
  padding: 10px 14px;
  position: relative;
  background: rgba(0, 8, 20, 0.45);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  overflow: hidden;
}
.erp-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.erp-bar-row:last-of-type { margin-bottom: 0; }

.ebr-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  width: 58px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ebr-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.ebr-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), rgba(0, 255, 136, 0.45));
  border-radius: 2px;
  animation: erpBarGlow 2.5s ease-in-out infinite alternate;
}
.ebr-blue {
  background: linear-gradient(90deg, var(--electric-blue), rgba(0, 212, 255, 0.45));
  animation-delay: 0.6s;
}
@keyframes erpBarGlow {
  from { box-shadow: none; }
  to   { box-shadow: 0 0 6px var(--neon-green); }
}
.ebr-val { font-family: var(--font-display); font-size: 0.6rem; font-weight: 700; color: var(--neon-green); width: 28px; text-align: right; flex-shrink: 0; }
.ebr-val-blue { color: var(--electric-blue); }

/* ============================================================
   WEB DEVELOPMENT PAGE — BROWSER UI PANEL
============================================================ */
.wb-chrome { gap: 8px; }

.wb-url-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 136, 0.14);
  border-radius: 5px;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  white-space: nowrap;
  text-transform: none;
}
.wb-lock { color: var(--neon-green); font-size: 0.52rem; flex-shrink: 0; }

.wb-dots { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.wb-dots span { width: 7px; height: 7px; border-radius: 50%; display: block; }
.wb-dots span:nth-child(1) { background: rgba(255, 80, 80, 0.65); }
.wb-dots span:nth-child(2) { background: rgba(255, 189, 65, 0.65); }
.wb-dots span:nth-child(3) { background: rgba(0, 255, 136, 0.65); }

.wb-preview {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 6, 18, 0.58);
  padding: 8px 10px;
}

.wb-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 35%);
  pointer-events: none;
}

.wb-page-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  padding: 4px 7px;
  background: rgba(0, 255, 136, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 4px;
}
.wb-nav-logo { width: 30px; height: 6px; background: linear-gradient(90deg, var(--neon-green), var(--electric-blue)); border-radius: 2px; opacity: 0.65; flex-shrink: 0; }
.wb-nav-links { display: flex; gap: 5px; flex: 1; justify-content: center; }
.wb-nav-link { width: 22px; height: 4px; background: rgba(255, 255, 255, 0.14); border-radius: 2px; }
.wb-nav-btn { width: 28px; height: 6px; background: rgba(0, 255, 136, 0.42); border-radius: 3px; box-shadow: 0 0 5px rgba(0, 255, 136, 0.28); flex-shrink: 0; }

.wb-hero-block { padding: 8px 7px; margin-bottom: 7px; border: 1px dashed rgba(0, 255, 136, 0.12); border-radius: 4px; background: rgba(0, 255, 136, 0.018); }
.wb-h-text { display: flex; flex-direction: column; gap: 4px; margin-bottom: 7px; }
.wb-line { height: 4px; background: rgba(255, 255, 255, 0.13); border-radius: 2px; }
.wb-line-lg { width: 72%; background: linear-gradient(90deg, rgba(0,255,136,0.5), rgba(0,212,255,0.3)); }
.wb-line-md { width: 52%; }
.wb-line-sm { width: 38%; }

.wb-h-ctas { display: flex; gap: 5px; }
.wb-cta { height: 7px; border-radius: 3px; flex-shrink: 0; }
.wb-cta-primary { width: 38px; background: rgba(0, 255, 136, 0.55); box-shadow: 0 0 6px rgba(0, 255, 136, 0.3); animation: wbCtaGlow 2.2s ease-in-out infinite alternate; }
.wb-cta-outline { width: 38px; background: transparent; border: 1px solid rgba(255, 255, 255, 0.18); }
@keyframes wbCtaGlow {
  from { box-shadow: 0 0 3px rgba(0,255,136,0.2); }
  to   { box-shadow: 0 0 10px rgba(0,255,136,0.55); }
}

.wb-cards-row { display: flex; gap: 5px; }
.wb-card {
  flex: 1;
  height: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wb-card:hover { transform: translateY(-6px); box-shadow: 0 0 20px rgba(0,255,136,0.18); }
.wb-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--electric-blue), transparent); opacity: 0.45; }
.wb-card::after  { content: ''; position: absolute; top: 8px; left: 5px; right: 5px; height: 3px; background: rgba(255, 255, 255, 0.08); border-radius: 1px; }

/* ============================================================
   AI APPS & INTEGRATIONS PAGE — AI COMMAND CENTER PANEL
============================================================ */
.ai-flow {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 8, 20, 0.55);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.ai-flow-node {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.afn-input   { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.4); color: var(--neon-green); animation: aiNodeGlowGreen 2s ease-in-out infinite; }
.afn-process { background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.4); color: var(--electric-blue); animation: aiNodeGlowBlue 2s ease-in-out infinite 0.6s; }
.afn-output  { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.4); color: var(--neon-green); animation: aiNodeGlowGreen 2s ease-in-out infinite 1.2s; }
@keyframes aiNodeGlowGreen {
  0%, 100% { box-shadow: 0 0 6px rgba(0,255,136,0.18); }
  50%       { box-shadow: 0 0 18px rgba(0,255,136,0.5); transform: scale(1.06); }
}
@keyframes aiNodeGlowBlue {
  0%, 100% { box-shadow: 0 0 6px rgba(0,212,255,0.18); }
  50%       { box-shadow: 0 0 18px rgba(0,212,255,0.5); transform: scale(1.06); }
}

.ai-flow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,255,136,0.4), rgba(0,212,255,0.4));
  position: relative;
  animation: aiLinePulse 2.5s ease-in-out infinite;
}
.ai-flow-line::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  top: -2.5px; left: 0;
  background: var(--neon-green);
  box-shadow: 0 0 5px var(--neon-green);
  animation: aiPacket 2s linear infinite;
}
.ai-flow-line:nth-child(4)::after { background: var(--electric-blue); box-shadow: 0 0 5px var(--electric-blue); animation-delay: 1s; }
@keyframes aiPacket {
  0%   { left: 0;    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes aiLinePulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.ai-chat {
  height: 135px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 5, 16, 0.52);
  border-bottom: 1px solid rgba(0, 255, 136, 0.06);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}

.ai-msg { display: flex; align-items: flex-end; gap: 6px; font-size: 0.62rem; line-height: 1.35; letter-spacing: 0.03em; }
.ai-msg-user { align-self: flex-end; justify-content: flex-end; }
.ai-msg-user > span {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: 10px 10px 2px 10px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
}
.ai-msg-bot { align-self: flex-start; }
.ai-bot-icon {
  width: 18px; height: 18px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.48rem;
  color: var(--electric-blue);
  animation: aiNodeGlowBlue 2s ease-in-out infinite;
}
.ai-bot-text {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 10px 10px 10px 2px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.72);
  display: block;
}

/* ============================================================
   DIGITAL MARKETING PAGE — SEO COMMAND CENTER PANEL
============================================================ */
.seo-rankings {
  height: 165px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 6, 18, 0.55);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0,255,136,0.12);
  background: linear-gradient(180deg, rgba(0,255,136,0.03), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 24px rgba(0,255,136,0.04);
}

.seo-rankings::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,212,255,0.08), transparent 40%);
  pointer-events: none;
}

.seo-rank-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.05);
  font-size: 0.64rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.seo-rank-row:last-of-type { border-bottom: none; }
.seo-rank-row:nth-child(even) { background: rgba(0, 255, 136, 0.018); }
.seo-rank-row:hover { background: rgba(255,255,255,0.03); transform: translateX(6px); }

.srr-keyword { flex: 1; color: rgba(255, 255, 255, 0.62); letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font-display); }
.srr-pos { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; text-shadow: 0 0 12px currentColor; }
.seo-pos-green { background: rgba(0, 255, 136, 0.1); color: var(--neon-green); border: 1px solid rgba(0, 255, 136, 0.25); }
.seo-pos-blue  { background: rgba(0, 212, 255, 0.1); color: var(--electric-blue); border: 1px solid rgba(0, 212, 255, 0.22); }
.srr-trend { flex-shrink: 0; width: 14px; text-align: center; font-size: 0.55rem; }
.seo-up      { color: var(--neon-green); filter: drop-shadow(0 0 3px var(--neon-green)); }
.seo-neutral { color: rgba(255, 255, 255, 0.25); }

/* ============================================================
   CONTENT WRITING PAGE — EDITORIAL PIPELINE PANEL
============================================================ */
.content-pipeline {
  height: 165px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 6, 18, 0.55);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0,255,136,0.12);
  background: linear-gradient(180deg, rgba(0,255,136,0.03), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 24px rgba(0,255,136,0.04);
}

.content-pipeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,212,255,0.08), transparent 40%);
  pointer-events: none;
}

.cp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.05);
  font-size: 0.64rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cp-row:last-of-type { border-bottom: none; }
.cp-row:nth-child(even) { background: rgba(0, 255, 136, 0.018); }
.cp-row:hover { background: rgba(255,255,255,0.03); transform: translateX(6px); }

.cpr-icon { font-size: 0.7rem; color: var(--neon-green); width: 16px; text-align: center; flex-shrink: 0; filter: drop-shadow(0 0 3px rgba(0, 255, 136, 0.5)); }
.cpr-title { flex: 1; color: rgba(255, 255, 255, 0.62); letter-spacing: 0.03em; font-family: var(--font-display); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cpr-badge { font-size: 0.54rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; box-shadow: 0 0 14px rgba(0,255,136,0.16); }
.cpb-live   { background: rgba(0, 255, 136, 0.12); color: var(--neon-green); border: 1px solid rgba(0, 255, 136, 0.28); animation: rowPulse 2s ease-in-out infinite; }
.cpb-review { background: rgba(0, 212, 255, 0.1); color: var(--electric-blue); border: 1px solid rgba(0, 212, 255, 0.24); }
.cpb-done   { background: rgba(0, 255, 136, 0.06); color: rgba(0, 255, 136, 0.6); border: 1px solid rgba(0, 255, 136, 0.14); }
.cpb-draft  { background: rgba(255, 255, 255, 0.04); color: rgba(255, 255, 255, 0.28); border: 1px solid rgba(255, 255, 255, 0.08); }

/* ============================================================
   PRICING PAGE STYLES
============================================================ */
.pricing-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(0,85,238,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(0,255,136,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 85% 20%, rgba(0,212,255,0.06) 0%, transparent 55%);
}
.pricing-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.pricing-sticky-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.pricing-pnav-inner {
  display: flex;
  gap: 2px;
  padding: 10px 28px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1180px;
  margin: 0 auto;
}
.pricing-pnav-inner::-webkit-scrollbar { display: none; }
.pnav-link {
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--trans);
  flex-shrink: 0;
}
.pnav-link:hover { color: var(--neon-green); background: var(--neon-green-dim); }

.pricing-category {
  padding: var(--sec-pad) 0;
  position: relative;
  scroll-margin-top: 130px;
}
.pricing-category:nth-child(odd)  { background: radial-gradient(ellipse 50% 40% at 80% 30%, rgba(0,85,238,0.06) 0%, transparent 65%); }
.pricing-category:nth-child(even) { background: radial-gradient(ellipse 50% 40% at 20% 70%, rgba(0,255,136,0.04) 0%, transparent 65%); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.4), transparent);
  opacity: 0.55;
}
.price-card:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.4), 0 0 28px rgba(0,255,136,0.1);
}

.price-card.popular {
  border-color: rgba(0, 255, 136, 0.45);
  transform: translateY(-10px);
  background: rgba(0, 255, 136, 0.035);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 44px rgba(0,255,136,0.18);
}
.price-card.popular::before {
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--electric-blue), transparent);
  opacity: 1;
  left: 0; right: 0;
}
.price-card.popular:hover {
  transform: translateY(-16px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.55), 0 0 56px rgba(0,255,136,0.25);
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: linear-gradient(130deg, var(--neon-green) 0%, var(--electric-blue) 100%);
  color: #040408;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.popular-badge-placeholder { height: 32px; margin-bottom: 20px; }

.price-tier-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-amount-row { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
.price-dollar { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-muted); margin-top: 8px; line-height: 1; }
.price-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(130deg, var(--neon-green) 0%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-value-suffix { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-muted); align-self: flex-end; margin-bottom: 8px; -webkit-text-fill-color: var(--text-muted); }
.price-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; letter-spacing: 0.04em; }

.price-divider { height: 1px; background: var(--border-subtle); margin-bottom: 20px; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.4; }
.price-features li i { color: var(--neon-green); font-size: 0.72rem; margin-top: 3px; flex-shrink: 0; filter: drop-shadow(0 0 3px var(--neon-green)); }

.price-cta { margin-top: auto; }
.price-cta .btn { width: 100%; justify-content: center; border-radius: var(--radius-sm); padding: 13px; }

.price-starting-from { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }

.pricing-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 32px auto 0;
  padding: 14px 20px;
  background: rgba(0, 255, 136, 0.025);
  border: 1px solid rgba(0, 255, 136, 0.12);
  border-radius: var(--radius-sm);
  line-height: 1.65;
}
.pricing-disclaimer i { color: var(--neon-green); margin-right: 5px; }

/* ── "See Plans" CTA block on homepage ───────────────────── */
.services-pricing-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.services-pricing-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; }

/* ── Service page pricing CTA banner ─────────────────────── */
.sp-pricing-section { padding: 44px 0; position: relative; }

.sp-pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 40px;
  background: rgba(0, 255, 136, 0.025);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 36px rgba(0,255,136,0.07), inset 0 0 20px rgba(0,255,136,0.03);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.sp-pricing-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--electric-blue), transparent);
  opacity: 0.7;
}

.sp-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 12px;
}
.sp-pricing-cta-heading { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; letter-spacing: -0.02em; }
.sp-pricing-cta-sub { font-size: 0.85rem; color: var(--text-muted); max-width: 400px; line-height: 1.6; }
