/* ==========================================================================
   Mobile Hero Section: App Foundry Center-Canopy Architecture
   ========================================================================== */
.app-foundry-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  padding: 110px 4% 60px;
  background-color: #030611; /* Deep Cyber Obsidian */
  color: #f8fafc;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* ==========================================================================
   1. BACKGROUND IMAGE INFINITE ZOOMING (Scanner Removed)
   ========================================================================== */
.app-matrix-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.app-circuit-texture {
  position: absolute;
  inset: -12%;
  background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: contrast(1.35) brightness(0.85);
  animation: bgInfiniteBreathingZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bgInfiniteBreathingZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.12) translate(-20px, -15px);
  }
  100% {
    transform: scale(1.22) translate(15px, 10px);
  }
}

.app-radial-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(6, 182, 212, 0.12) 0%, rgba(3, 6, 17, 0.8) 65%, #030611 100%);
}

/* Master Container */
.app-master-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ==========================================================================
   Top Center Canopy Header
   ========================================================================== */
.app-center-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.pulse-beacon {
  width: 7px;
  height: 7px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38bdf8;
  animation: beaconPulse 2s infinite;
}

@keyframes beaconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.65); }
}

.pill-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #38bdf8;
}

.pill-divider {
  color: #475569;
  font-size: 0.7rem;
}

.pill-meta {
  
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
}

.app-canopy-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.app-text-shimmer {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 40%, #34d399 75%, #38bdf8 100%);
  background-size: 260% 260%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerFlow 7s ease-in-out infinite;
}

@keyframes shimmerFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.app-canopy-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
  max-width: 720px;
}

/* ==========================================================================
   Tri-Axis Flanking Grid (Left Wing / Center Phone / Right Wing)
   ========================================================================== */
.app-tri-axis-grid {
  display: grid;
  grid-template-columns: 310px 1fr 310px;
  gap: 30px;
  align-items: center;
}

.app-flank-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flank-card-module {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.module-glass {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(56, 189, 248, 0.2);
}

.module-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.module-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.module-dot.green { background: #10b981; box-shadow: 0 0 6px #10b981; }
.module-dot.cyan { background: #06b6d4; box-shadow: 0 0 6px #06b6d4; }
.module-dot.purple { background: #a855f7; box-shadow: 0 0 6px #a855f7; }
.module-dot.orange { background: #f97316; box-shadow: 0 0 6px #f97316; }

.module-title {
  
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94a3b8;
}

/* Left Flank Components */
.platform-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.platform-entry:last-child { margin-bottom: 0; }
.entry-ico { font-size: 1.3rem; }
.platform-entry strong { display: block; font-size: 0.84rem; color: #ffffff; }
.platform-entry p { margin: 0; font-size: 0.7rem; color: #64748b; font-weight: 500; }

.security-chip-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sec-chip {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  color: #cbd5e1;
}

/* Right Flank Components */
.telemetry-gauge-matrix {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gauge-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gauge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gauge-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.gauge-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
}
.status-up { color: #34d399; }

.gauge-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  border-radius: 6px;
}
.f-99 { width: 99.8%; background: linear-gradient(90deg, #0284c7, #38bdf8); }
.f-tt { width: 92%; background: linear-gradient(90deg, #10b981, #34d399); }

.sync-data-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  
  font-size: 0.68rem;
}

.sync-row {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
}
.sync-row strong { color: #38bdf8; }

/* ==========================================================================
   2. CALIBRATED 3D DUAL-PHONE STAGE (Zero Overlap Alignment)
   ========================================================================== */
.app-center-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  width: 100%;
}

.mobile-3d-stage {
  position: relative;
  width: 100%;
  max-width: 540px; /* Generous negative space for both mockups */
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Concentric Background Discs */
.stage-rotator-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.disc-backdrop {
  width: 480px;
  height: 480px;
  border: 1.5px dashed rgba(56, 189, 248, 0.25);
  animation: discSpin 40s linear infinite, ringRadarEcho 4s ease-out infinite;
}

.disc-foreground {
  width: 360px;
  height: 360px;
  border: 1.5px solid rgba(129, 140, 248, 0.3);
  animation: discSpin 24s linear infinite reverse;
}

@keyframes discSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRadarEcho {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.45);
    border-color: rgba(56, 189, 248, 0.6);
  }
  60% {
    box-shadow: 0 0 0 24px rgba(56, 189, 248, 0);
    border-color: rgba(56, 189, 248, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* Phone Hardware Frame Dimensions */
.phone-mockup-frame {
  position: absolute;
  width: 230px;
  height: 450px;
  background: #020617;
  border-radius: 40px;
  border: 4px solid #334155;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* FOREGROUND PHONE: Anchored Left-Center with Float Animation */
.phone-foreground {
  z-index: 3;
  left: 55px;
  animation: foregroundPhoneKineticFloat 6s ease-in-out infinite alternate;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(2, 132, 199, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@keyframes foregroundPhoneKineticFloat {
  0% {
    transform: rotate(-4deg) translateY(0px);
  }
  100% {
    transform: rotate(-4deg) translateY(-14px);
  }
}

/* BACKGROUND PHONE: Anchored Right-Shoulder (Clear of Main Screen) */
.phone-background {
  z-index: 1;
  left: auto;
  right: 45px;
  border-color: #1e293b;
  opacity: 0.72;
  filter: brightness(0.9);
  animation: backgroundPhoneKineticFloat 6.5s ease-in-out infinite alternate;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

@keyframes backgroundPhoneKineticFloat {
  0% {
    transform: rotate(10deg) translateY(-10px) scale(0.9);
  }
  100% {
    transform: rotate(10deg) translateY(6px) scale(0.9);
  }
}

.phone-notch {
  height: 24px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 5;
  flex-shrink: 0;
}

.notch-speaker { width: 34px; height: 3px; background: #334155; border-radius: 3px; }
.notch-lens { width: 6px; height: 6px; background: #0284c7; border-radius: 50%; box-shadow: 0 0 6px #0284c7; }

.phone-screen-content {
  flex: 1;
  background: linear-gradient(180deg, #090e1f 0%, #030712 100%);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.screen-icons { display: flex; align-items: center; gap: 4px; }
.signal-live {
  color: #38bdf8;
  font-weight: 800;
  animation: signalBlink 2.5s infinite;
}

@keyframes signalBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.battery-icon {
  width: 14px;
  height: 7px;
  border: 1px solid #ffffff;
  border-radius: 2px;
  position: relative;
}
.battery-icon::after {
  content: '';
  position: absolute;
  top: 1px; left: 1px; bottom: 1px;
  width: 70%;
  background: #34d399;
}

.app-card-preview {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.app-icon-mini { font-size: 1.1rem; }
.app-mini-info strong { display: block; font-size: 0.74rem; color: #ffffff; }
.live-pulse-text { font-size: 0.58rem; color: #38bdf8; }

/* Interactive Waveform Bar Chart */
.app-chart-wireframe {
  height: 95px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.chart-column {
  width: 14px;
  border-radius: 4px;
  animation: chartWaveDance 3s ease-in-out infinite alternate;
}

.c1 { height: 42%; background: #0284c7; animation-delay: 0.1s; }
.c2 { height: 75%; background: #38bdf8; animation-delay: 0.3s; }
.c3 { height: 55%; background: #4f46e5; animation-delay: 0.5s; }
.c4 { height: 95%; background: #34d399; animation-delay: 0.2s; }
.c5 { height: 65%; background: #a855f7; animation-delay: 0.4s; }

@keyframes chartWaveDance {
  0% { transform: scaleY(0.85); }
  100% { transform: scaleY(1.15); }
}

.app-cta-mock {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 11px;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
}

.btn-live-sheen {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: btnSheenLoop 3.5s infinite;
}

@keyframes btnSheenLoop {
  0% { left: -100%; }
  35%, 100% { left: 140%; }
}

/* Background Phone Code Screen */
.code-screen {
  
  font-size: 0.62rem;
  color: #94a3b8;
  gap: 8px;
  padding-top: 26px;
  line-height: 1.4;
}
.c-kw { color: #f43f5e; }
.c-fn { color: #38bdf8; }
.c-main { color: #34d399; }
.code-highlight {
  background: rgba(56, 189, 248, 0.12);
  padding: 2px 4px;
  border-radius: 4px;
  color: #38bdf8;
}
.live-ms {
  color: #34d399;
  font-weight: 800;
}

.phone-glaze-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, transparent 45%);
  pointer-events: none;
}

/* ==========================================================================
   FLOATING TELEMETRY BADGES (Calibrated in Open Negative Space)
   ========================================================================== */
.stage-floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
}
.stage-floating-pill strong { display: block; font-size: 0.78rem; color: #ffffff; }
.stage-floating-pill span { font-size: 0.64rem; color: #94a3b8; }
.pill-ico { font-size: 1.05rem; }
.pill-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.pill-store { 
  top: 15px; 
  left: 10px;
  animation: pillFloatA 4.5s ease-in-out infinite alternate; 
}

.pill-fps { 
  bottom: 25px; 
  right: 15px; 
  animation: pillFloatB 5s ease-in-out infinite alternate; 
}

@keyframes pillFloatA {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes pillFloatB {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.stage-pedestal-shadow {
  position: absolute;
  bottom: -10px;
  width: 420px;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

/* ==========================================================================
   Bottom Command Rail
   ========================================================================== */
.app-bottom-command-rail {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.rail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: #cbd5e1;
}

.rail-ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.rail-meta strong { color: #38bdf8; }

.rail-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-rail-btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-rail-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.6);
}

.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}
.app-rail-btn-primary:hover .btn-shine { left: 140%; }

.app-rail-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.app-rail-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Staggered Scroll-Reveal Animations
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="down"] { transform: translateY(-25px); }
.scroll-reveal[data-dir="left"] { transform: translateX(-35px); }
.scroll-reveal[data-dir="right"] { transform: translateX(35px); }
.scroll-reveal[data-dir="scale"] { transform: scale(0.94); }
.scroll-reveal[data-dir="up"] { transform: translateY(25px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1200px) {
  .app-tri-axis-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .app-flank-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-3d-stage {
    max-width: 480px;
  }
  .phone-foreground {
    left: 40px;
  }
  .phone-background {
    right: 25px;
  }
}

@media (max-width: 768px) {
  .app-foundry-hero {
    padding: 90px 5% 50px;
  }
  .app-flank-col {
    grid-template-columns: 1fr;
  }
  .mobile-3d-stage {
    max-width: 320px;
    height: 460px;
  }
  .phone-foreground {
    left: 50%;
    transform: translateX(-50%) rotate(0deg) !important;
    animation: none;
  }
  .phone-background {
    display: none;
  }
  .pill-store { top: 0; left: 0; }
  .pill-fps { bottom: 0; right: 0; }
  .app-bottom-command-rail {
    flex-direction: column;
    align-items: flex-start;
  }
  .rail-action-group {
    width: 100%;
    flex-direction: column;
  }
  .app-rail-btn-primary, .app-rail-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}


/* Section 2 Starts  */

/* ==========================================================================
   Native Dual Platforms: Android & iOS (Default Light Theme #f8fafc)
   ========================================================================== */
.dg-mobile-dualcore-section {
  position: relative;
  width: 100%;
  padding: 110px 5% 100px;
  background-color: #f8fafc; /* Default light background */
  color: #0f172a;
  overflow: hidden;
  box-sizing: border-box;
}

/* Ambient Radial Glows */
.dual-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-emerald {
  width: 520px;
  height: 520px;
  background: rgba(16, 185, 129, 0.08);
  top: 5%;
  left: -100px;
}

.glow-sky {
  width: 520px;
  height: 520px;
  background: rgba(2, 132, 199, 0.08);
  bottom: 5%;
  right: -100px;
}

.dual-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 55px;
}

/* ==========================================================================
   Header Block
   ========================================================================== */
.dual-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dual-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  margin-bottom: 16px;
}

.badge-beacon {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: beaconPulseLight 2s infinite;
}

@keyframes beaconPulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.65); }
}

.dual-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.dual-gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #0284c7 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dual-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  max-width: 780px;
}

/* ==========================================================================
   2-Column 3D Native Platforms Matrix (Android & iOS)
   ========================================================================== */
.dual-cards-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  perspective: 1400px;
}

.framework-3d-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.framework-3d-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.card-android:hover { border-color: #3ddc84; }
.card-ios:hover { border-color: #0284c7; }

.card-glass-shell {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top Branding Ribbon */
.f-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.f-brand-tag {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-disc {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.logo-android { background: #eefdf4; border-color: #bbf7d0; }
.logo-ios { background: #f1f5f9; border-color: #cbd5e1; }

.f-brand-title {
  display: flex;
  flex-direction: column;
}

.f-version {
  
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #64748b;
}

.f-brand-title h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 2px 0 0 0;
}

.engine-status-pill {
  
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
}

.green-pill {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.blue-pill {
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

/* ==========================================================================
   Central Interactive 3D Visual Stage
   ========================================================================== */
.f-visual-stage {
  position: relative;
  height: 220px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 900px;
}

.f-orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-android {
  width: 280px;
  height: 280px;
  border: 1.5px dashed rgba(61, 220, 132, 0.4);
  animation: ringSpin 30s linear infinite;
}

.ring-ios {
  width: 280px;
  height: 280px;
  border: 1.5px dashed rgba(2, 132, 199, 0.4);
  animation: ringSpin 30s linear infinite reverse;
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Device Viewport Simulators */
.floating-device-viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.device-mini-mockup {
  position: relative;
  width: 140px;
  height: 175px;
  background: #0f172a;
  border-radius: 22px;
  border: 3.5px solid #334155;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: deviceHoverA 4s ease-in-out infinite alternate;
}

.android-device {
  transform: rotate(-4deg);
}

.ios-device {
  transform: rotate(4deg);
  border-color: #1e293b;
}

@keyframes deviceHoverA {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.mini-screen {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #020617;
}

.mini-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.52rem;
  color: #94a3b8;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot-live {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.apple-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
}

.mini-compose-ui {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compose-block {
  height: 22px;
  border-radius: 6px;
}
.b-green { width: 90%; background: linear-gradient(90deg, #10b981, #34d399); }
.b-slate { width: 70%; background: #334155; }
.b-emerald { width: 80%; background: #059669; }

.b-sky { width: 90%; background: linear-gradient(90deg, #0284c7, #38bdf8); }
.b-indigo { width: 75%; background: #4f46e5; }
.b-slate-dark { width: 60%; background: #1e293b; }

/* Floating Telemetry Micro-Chips */
.orbit-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  z-index: 3;
  pointer-events: none;
}

.chip-ico { font-size: 0.95rem; }
.chip-info { display: flex; flex-direction: column; }
.chip-info strong { font-size: 0.72rem; color: #0f172a; line-height: 1.1; }
.chip-info span { font-size: 0.58rem; color: #64748b; font-weight: 600; }

/* Positions */
.chip-compose { top: 16px; left: 16px; animation: chipLevitateA 4.5s ease-in-out infinite alternate; }
.chip-coroutines { bottom: 16px; right: 16px; animation: chipLevitateB 5s ease-in-out infinite alternate; }

.chip-swiftui { top: 16px; right: 16px; animation: chipLevitateA 4.8s ease-in-out infinite alternate; }
.chip-applepay { bottom: 16px; left: 16px; animation: chipLevitateB 5.2s ease-in-out infinite alternate; }

@keyframes chipLevitateA {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

@keyframes chipLevitateB {
  0% { transform: translateY(0); }
  100% { transform: translateY(6px); }
}

/* Bottom Text and Tag Matrix */
.f-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-summary {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.f-tags-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.f-tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  transition: all 0.25s ease;
}

.f-tag:hover {
  background: #ffffff;
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
}

/* Staggered Scroll-Reveal Base */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="left"] { transform: translateX(-40px); }
.scroll-reveal[data-dir="right"] { transform: translateX(40px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .dual-cards-matrix {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .dg-mobile-dualcore-section {
    padding: 75px 5%;
  }
  .card-glass-shell {
    padding: 22px;
  }
  .f-visual-stage {
    height: 190px;
  }
  .orbit-chip {
    display: none; /* Hide floating chips on small mobile to avoid cramped visual space */
  }
}

/* Section 2 Ends  */

/* Sectiion 3 Starts  */

/* ==========================================================================
   Mobile App Services Pill Cloud Section (Matches Image Layout Exactly)
   ========================================================================== */
.mobile-services-pill-section {
  position: relative;
  width: 100%;
  padding: 100px 5% 95px;
  background-color: #f8fafc; /* Standard clean light mode */
  color: #0f172a;
  overflow: hidden;
  box-sizing: border-box;
}

.pill-section-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Header Block */
.pill-section-header {
  max-width: 880px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #0284c7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  margin-bottom: 18px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: pillDotPulse 2s infinite;
}

@keyframes pillDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.pill-section-title {
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin: 0 0 14px 0;
}

.pill-lead-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.pill-sublead-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  max-width: 800px;
}

/* ==========================================================================
   Center-Aligned Pill Link Cloud
   ========================================================================== */
.pill-links-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
  max-width: 1260px;
  margin: 0 auto;
}

/* Exact Rounded-Rectangle Pill Link */
.service-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  user-select: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pill-link:hover {
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.12);
  background-color: #ffffff;
}

.service-pill-link:active {
  transform: translateY(0);
}

/* Staggered Scroll-Reveal Base */
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .mobile-services-pill-section {
    padding: 70px 5%;
  }

  .pill-links-cloud {
    gap: 10px;
  }

  .service-pill-link {
    padding: 9px 18px;
    font-size: 0.84rem;
  }
}

/* Section 3 Ends  */


/* Section 4 Starst  */

/* ==========================================================================
   Global Mobile Unique Services System Stylesheet
   ========================================================================== */
.mob-unique-section {
  position: relative;
  width: 100%;
  padding: 85px 5%;
  background-color: #f8fafc;
  color: #0f172a;
  box-sizing: border-box;
  border-bottom: 1px solid #e2e8f0;
}

.mu-container {
  max-width: 1260px;
  margin: 0 auto;
}

/* Reusable Kicker & Headings */
.mu-kicker {
  display: inline-block;
  
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.green-kicker   { color: #059669; }
.blue-kicker    { color: #0284c7; }
.cyan-kicker    { color: #0891b2; }
.orange-kicker  { color: #ea580c; }
.purple-kicker  { color: #7c3aed; }
.teal-kicker    { color: #0d9488; }
.emerald-kicker { color: #16a34a; }
.rose-kicker    { color: #e11d48; }
.slate-kicker   { color: #475569; }
.amber-kicker   { color: #d97706; }

.mu-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 6px 0;
  letter-spacing: -0.025em;
}

.mu-sub {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0284c7;
  margin: 0 0 14px 0;
}

.mu-desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #475569;
  margin: 0 0 24px 0;
  max-width: 680px;
}

/* ==========================================================================
   LAYOUT 01: TERMINAL CONSOLE (Android)
   ========================================================================== */
.layout-terminal { background-color: #f6fbf8; }

.terminal-shell {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.terminal-header {
  background: #0f172a;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.terminal-dots { display: flex; gap: 6px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.red { background: #ef4444; }
.t-dot.yellow { background: #f59e0b; }
.t-dot.green { background: #10b981; }

.terminal-tab {
  color: #94a3b8;
  
  font-size: 0.76rem;
  font-weight: 700;
}

.terminal-badge {
  margin-left: auto;
  
  font-size: 0.65rem;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 34px;
  gap: 40px;
}

.terminal-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mu-btn-prime {
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.mu-btn-prime:hover { transform: translateY(-2px); }
.green-btn { background: #059669; }

.terminal-stat {
  
  font-size: 0.8rem;
  color: #059669;
  font-weight: 700;
}

.mu-features-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 14px 0;
}

.feature-terminal-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.t-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   LAYOUT 02: CUPERTINO DOSSIER (iOS)
   ========================================================================== */
.layout-dossier { background-color: #f8faff; }

.dossier-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 90px 1fr;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.04);
}

.dossier-meta-rail {
  background: #0284c7;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10px;
}

.dossier-number {
  font-size: 1.8rem;
  font-weight: 900;
}

.dossier-tag-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  
  font-size: 0.72rem;
  letter-spacing: 2px;
  transform: rotate(180deg);
}

.dossier-main {
  padding: 36px 40px;
}

.dossier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.apple-badge-shield {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
}

.dossier-pill-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.d-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 700;
}

.d-pill strong { color: #0284c7; margin-right: 4px; }

/* ==========================================================================
   LAYOUT 03: BENTO ENGINE CANVAS (Flutter)
   ========================================================================== */
.layout-bento { background-color: #f0f9ff; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-box {
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.03);
}

.bento-lead {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-stat-chip {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}

.bento-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b-ico { font-size: 1.4rem; margin-bottom: 4px; }
.bento-cell strong { font-size: 0.95rem; color: #0f172a; }
.bento-cell p { margin: 0; font-size: 0.82rem; color: #64748b; line-height: 1.4; }

/* ==========================================================================
   LAYOUT 04: TRANSACTIONAL FUNNEL (E-Commerce)
   ========================================================================== */
.layout-funnel { background-color: #fffdf5; }

.funnel-wrapper {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.funnel-metrics-tag strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ea580c;
}

.funnel-metrics-tag span {
  font-size: 0.78rem;
  color: #9a3412;
  font-weight: 700;
}

.funnel-flow-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-step-node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: 12px;
  padding: 10px 16px;
}

.node-num {
  
  font-size: 0.82rem;
  font-weight: 900;
  color: #ea580c;
}

.flow-step-node strong { display: block; font-size: 0.86rem; color: #1e293b; }
.flow-step-node span { font-size: 0.72rem; color: #64748b; }
.flow-divider-arrow { text-align: center; color: #ea580c; font-weight: 900; }

/* ==========================================================================
   LAYOUT 05: EXECUTIVE DASHBOARD (Business App)
   ========================================================================== */
.layout-executive-card { background-color: #f8fafc; }

.exec-card-shell {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 38px;
}

.exec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.exec-status-led {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1e40af;
}

.led-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 6px #2563eb;
}

.exec-dashboard-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.ed-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
}

.ed-ico { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.ed-tile h4 { margin: 0 0 4px 0; font-size: 0.88rem; font-weight: 800; }
.ed-tile p { margin: 0; font-size: 0.78rem; color: #64748b; line-height: 1.4; }

/* ==========================================================================
   LAYOUT 06: TECHNICAL BLUEPRINT (Custom Mobile)
   ========================================================================== */
.layout-blueprint { background-color: #faf5ff; }

.blueprint-canvas {
  position: relative;
  background: #ffffff;
  border: 2px dashed #c084fc;
  border-radius: 24px;
  padding: 40px;
}

.blueprint-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  
  font-size: 0.7rem;
  font-weight: 900;
  color: #9333ea;
  border: 1px solid #9333ea;
  padding: 4px 10px;
  border-radius: 4px;
}

.blueprint-specs-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: #faf5ff;
  border: 1px solid #f3e8ff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
}

.spec-label {  font-weight: 800; color: #7e22ce; }
.spec-val { font-weight: 600; color: #334155; }

/* ==========================================================================
   LAYOUT 07: SCHEDULER MATRIX (Booking & Appointment)
   ========================================================================== */
.layout-scheduler { background-color: #f0fdfa; }

.scheduler-wrapper {
  background: #ffffff;
  border: 1px solid #99f6e4;
  border-radius: 24px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.feature-checklist-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f766e;
}

.scheduler-mock-matrix {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 16px;
  padding: 20px;
}

.mock-cal-head {
  display: flex;
  justify-content: space-between;
  
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cal-sync-badge { color: #0d9488; }
.mock-slot-row { display: flex; flex-direction: column; gap: 8px; }
.slot-pill {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}
.slot-pill.active { background: #14b8a6; color: #ffffff; }
.slot-pill.booked { background: #e2e8f0; color: #94a3b8; }

/* ==========================================================================
   LAYOUT 08: SENTRY RADAR TERMINAL (Maintenance)
   ========================================================================== */
.layout-sentry { background-color: #f0fdf4; }

.sentry-card {
  background: #ffffff;
  border: 1px solid #bbf7d0;
  border-radius: 24px;
  padding: 36px;
}

.sentry-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dcfce7;
  padding-bottom: 14px;
  margin-bottom: 24px;
}

.sentry-radar-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  
  font-size: 0.76rem;
  font-weight: 800;
  color: #15803d;
}

.radar-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.sentry-sla {
  
  font-size: 0.72rem;
  font-weight: 800;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 4px;
}

.sentry-content-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}

.sentry-modules-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sm-card {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   LAYOUT 09: DISPATCH RADAR (Food Delivery)
   ========================================================================== */
.layout-dispatch { background-color: #fff1f2; }

.dispatch-frame {
  background: #ffffff;
  border: 1px solid #fecdd3;
  border-radius: 24px;
  padding: 38px;
}

.dispatch-pipeline-nodes {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.dp-node {
  background: #fff1f2;
  border: 1px solid #ffe4e6;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.node-ico-bubble { font-size: 1.8rem; margin-bottom: 6px; }
.dp-node strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.dp-node span { font-size: 0.75rem; color: #64748b; }
.dp-pipe { width: 30px; height: 2px; background: #e11d48; }

/* ==========================================================================
   LAYOUT 10: PROGRESS DECK (Education App)
   ========================================================================== */
.layout-edu-deck { background-color: #f5f3ff; }

.edu-card-wrap {
  background: #ffffff;
  border: 1px solid #ddd6fe;
  border-radius: 24px;
  padding: 38px;
}

.edu-features-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.ef-pill {
  background: #f5f3ff;
  border: 1px solid #ede9fe;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4338ca;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   LAYOUT 11: FLEET RADAR TELEMETRY (Logistics)
   ========================================================================== */
.layout-logistics-radar { background-color: #f8fafc; }

.logistics-board {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 38px;
}

.lb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.gps-lock-chip {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
}

.logistics-track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.lt-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: 12px;
}

.lt-item strong { display: block; font-size: 0.84rem; margin-bottom: 4px; }
.lt-item span { font-size: 0.74rem; color: #64748b; }

/* ==========================================================================
   LAYOUT 12: BARCODE SCANNER VIEWPORT (Inventory)
   ========================================================================== */
.layout-scanner { background-color: #fffdf5; }

.scanner-shell {
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 24px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
}

.scanner-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st-chip {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.scanner-screen-preview {
  position: relative;
  height: 180px;
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: laserScanDown 2.5s ease-in-out infinite alternate;
}

@keyframes laserScanDown {
  0% { top: 10%; }
  100% { top: 90%; }
}

.scanner-meta {
  color: #ffffff;
  
  font-size: 0.7rem;
  text-align: center;
}

/* ==========================================================================
   LAYOUT 13: ZERO-TRUST VAULT (Enterprise)
   ========================================================================== */
.layout-vault { background-color: #f0fdfa; }

.vault-container {
  background: #ffffff;
  border: 1px solid #99f6e4;
  border-radius: 24px;
  padding: 38px;
}

.vault-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.v-pillar {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 16px;
  padding: 20px;
}

.v-ico { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.v-pillar strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.v-pillar p { margin: 0; font-size: 0.78rem; color: #64748b; line-height: 1.4; }

/* ==========================================================================
   LAYOUT 14: MULTI-TENANT CLOUD (SaaS)
   ========================================================================== */
.layout-saas-matrix { background-color: #f0f9ff; }

.saas-matrix-shell {
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 24px;
  padding: 38px;
}

.saas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.saas-sync-beacon {
  
  font-size: 0.7rem;
  font-weight: 800;
  background: #e0f2fe;
  color: #0369a1;
  padding: 5px 12px;
  border-radius: 20px;
}

.saas-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.s-card {
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   LAYOUT 15: TEST BENCH SUITE (QA & Testing)
   ========================================================================== */
.layout-qa-bench { background-color: #f0fdf4; }

.qa-bench-frame {
  background: #ffffff;
  border: 1px solid #bbf7d0;
  border-radius: 24px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.qa-badge-suite {
  
  font-size: 0.75rem;
  font-weight: 800;
  color: #16a34a;
}

.qa-test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.test-item-chip {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.t-pass { color: #16a34a; font-weight: 900; margin-right: 6px; }

/* ==========================================================================
   LAYOUT 16: DUAL-STORE LAUNCHPAD (Deployment)
   ========================================================================== */
.layout-deployment-pad { background-color: #faf5ff; }

.launchpad-shell {
  background: #ffffff;
  border: 1px solid #ddd6fe;
  border-radius: 24px;
  padding: 38px;
}

.launchpad-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.chk-flight-cell {
  background: #faf5ff;
  border: 1px solid #f3e8ff;
  border-radius: 14px;
  padding: 18px;
}

.flight-step {
  
  font-size: 0.65rem;
  font-weight: 900;
  color: #9333ea;
  display: block;
  margin-bottom: 4px;
}

.chk-flight-cell strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.chk-flight-cell p { margin: 0; font-size: 0.78rem; color: #64748b; line-height: 1.4; }

/* ==========================================================================
   Staggered Scroll-Reveal Classes
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="up"] { transform: translateY(30px); }
.scroll-reveal[data-dir="left"] { transform: translateX(-40px); }
.scroll-reveal[data-dir="right"] { transform: translateX(40px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1080px) {
  .terminal-grid,
  .funnel-wrapper,
  .scheduler-wrapper,
  .sentry-content-row,
  .scanner-shell,
  .qa-bench-frame {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .exec-dashboard-tiles,
  .logistics-track-grid,
  .vault-pillars,
  .saas-feature-cards,
  .edu-features-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .launchpad-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mob-unique-section {
    padding: 65px 5%;
  }

  .dossier-card {
    grid-template-columns: 1fr;
  }

  .dossier-meta-rail {
    flex-direction: row;
    padding: 14px 20px;
  }

  .dossier-tag-vertical {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .bento-grid,
  .feature-terminal-tiles,
  .feature-checklist-dual,
  .sentry-modules-list,
  .exec-dashboard-tiles,
  .logistics-track-grid,
  .vault-pillars,
  .saas-feature-cards,
  .edu-features-ribbon,
  .qa-test-grid,
  .launchpad-checklist {
    grid-template-columns: 1fr;
  }

  .dispatch-pipeline-nodes {
    grid-template-columns: 1fr;
  }

  .dp-pipe {
    width: 2px;
    height: 20px;
    margin: 0 auto;
  }
}

/* Sectioojn 4 Ends  */

/* Section 5 Starst  */

/* ==========================================================================
   Complete Mobile App Development Solutions Section (Default Light Mode)
   ========================================================================== */
.dg-lifecycle-overview-section {
  position: relative;
  width: 100%;
  padding: 100px 5% 95px;
  background-color: #f8fafc; /* Standard clean light background */
  color: #0f172a;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid #e2e8f0;
}

/* Ambient Radial Glows */
.life-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-azure {
  width: 520px;
  height: 520px;
  background: rgba(2, 132, 199, 0.08);
  top: -60px;
  left: -80px;
}

.glow-emerald {
  width: 520px;
  height: 520px;
  background: rgba(16, 185, 129, 0.08);
  bottom: -40px;
  right: -80px;
}

.life-master-container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

/* ==========================================================================
   Top Header Block
   ========================================================================== */
.life-header-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.life-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  margin-bottom: 18px;
}

.life-beacon-dot {
  width: 6px;
  height: 6px;
  background-color: #0284c7;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.8);
  animation: beaconPulseLight 2s infinite;
}

@keyframes beaconPulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.65); }
}

.life-main-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.life-gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.life-lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.life-lead-text strong {
  color: #0f172a;
}

/* ==========================================================================
   Interactive 8-Phase Lifecycle Stream Ribbon
   ========================================================================== */
.life-flow-ribbon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ribbon-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
}

.ribbon-status-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0284c7;
}

.pulse-ring-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.ribbon-metric {
  
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Track Flow Nodes */
.lifecycle-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
}

.life-stage-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 105px;
  transition: transform 0.25s ease;
}

.life-stage-node:hover {
  transform: translateY(-4px);
}

.node-badge {
  position: relative;
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.life-stage-node:hover .node-badge {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.15);
}

.node-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #0284c7;
  color: #ffffff;
  
  font-size: 0.58rem;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 10px;
}

.node-icon {
  font-size: 1.25rem;
}

.life-stage-node strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.life-stage-node span {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 600;
}

.node-highlight .node-badge {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.node-highlight .node-num {
  background: #059669;
}

.node-highlight strong {
  color: #059669;
}

.track-arrow {
  color: #cbd5e1;
  font-weight: 900;
  font-size: 1.1rem;
  user-select: none;
}

/* ==========================================================================
   Complete Capabilities Grid
   ========================================================================== */
.life-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.cap-icon {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 12px;
}

.cap-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.cap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   Bottom Conversion Dock
   ========================================================================== */
.life-action-dock {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  flex-wrap: wrap;
  gap: 20px;
}

.dock-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dock-info strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}

.dock-info span {
  font-size: 0.86rem;
  color: #64748b;
}

.dock-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.dock-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.5);
}

.cta-sheen-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.dock-cta-btn:hover .cta-sheen-sweep {
  left: 140%;
}

.dock-cta-btn svg {
  transition: transform 0.25s ease;
}

.dock-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Staggered Scroll-Reveal Animations
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal[data-dir="down"] { transform: translateY(-25px); }
.scroll-reveal[data-dir="up"]   { transform: translateY(25px); }

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1080px) {
  .life-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dg-lifecycle-overview-section {
    padding: 75px 5%;
  }

  .life-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .life-flow-ribbon-card {
    padding: 22px 18px;
  }

  .lifecycle-track {
    justify-content: flex-start;
    gap: 16px;
  }

  .track-arrow {
    display: none;
  }

  .life-action-dock {
    flex-direction: column;
    align-items: flex-start;
  }

  .dock-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section 5 Ends  */