/* Architecture Page Styles - Kong HQ Inspired */

* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  will-change: scroll-position;
}

/* GPU Acceleration for smoother animations */
section,
.circular-architecture,
.pipeline-stage,
.laptop-carousel {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Hero Section */
.arch-hero {
  background: linear-gradient(
    135deg,
    #000814 0%,
    #001d3d 25%,
    #003566 50%,
    #001d3d 75%,
    #000814 100%
  );
  position: relative;
  overflow: hidden;
  color: white;
  padding: 140px 0 120px;
}

.arch-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 191, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(138, 180, 248, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(100, 200, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.arch-hero .section-container {
  position: relative;
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

.hero-text-content {
  max-width: 600px;
}

.arch-hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  color: white;
  letter-spacing: -0.02em;
}

.arch-hero-title .title-word {
  display: inline-block;
  margin-right: 0.3em;
}

.arch-hero-title .word-1 {
  /* No animation delay - static */
}

.arch-hero-title .word-2 {
  /* No animation delay - static */
}

.arch-hero-title .word-3 {
  /* No animation delay - static */
}

/* Si-Mo-Ob syllable highlighting animations */
.si-highlight,
.mo-highlight,
.ob-highlight {
  display: inline-block;
  position: relative;
  animation: syllableGlow 3s ease-in-out infinite;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b35 0%, #ff9068 50%, #00bfff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.si-highlight {
  animation-delay: 0s;
}

.mo-highlight {
  animation-delay: 1s;
}

.ob-highlight {
  animation-delay: 2s;
}

@keyframes syllableGlow {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
    opacity: 1;
    background-position: 0% 50%;
  }
  50% {
    transform: scale(1.15);
    filter: brightness(1.5) drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    opacity: 1;
    background-position: 100% 50%;
  }
}

.si-highlight:hover,
.mo-highlight:hover,
.ob-highlight:hover {
  animation: syllablePulse 0.5s ease-in-out;
  cursor: pointer;
}

@keyframes syllablePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.arch-hero-title .highlight {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9068 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.arch-hero-desc {
  font-size: 20px;
  max-width: 550px;
  opacity: 0.9;
  line-height: 1.7;
  font-weight: 400;
  color: #e2e8f0;
  margin-bottom: 32px;
}

/* Hero CTA Button */
.hero-cta {
  margin-top: 32px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: white;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary i {
  font-size: 16px;
}

/* Si-Mo-Ob Brand Name Styling */
.brand-name {
  display: inline-block;
  font-weight: 700;
  position: relative;
}

.brand-si,
.brand-mo,
.brand-ob {
  display: inline-block;
  animation: brandPulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
  font-weight: 700;
}

.brand-si {
  color: #ff6b35;
  animation-delay: 0s;
}

.brand-mo {
  color: #00bfff;
  animation-delay: 0.3s;
}

.brand-ob {
  color: #ff9068;
  animation-delay: 0.6s;
}

.brand-si:hover,
.brand-mo:hover,
.brand-ob:hover {
  transform: scale(1.2) translateY(-3px);
  text-shadow: 0 0 20px currentColor;
  cursor: default;
}

@keyframes brandPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-screens-display {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

.hero-screens-display .screen-card {
  position: absolute;
  width: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #1a1f36;
}

/* Screen card entrance animation */
.hero-screens-display .screen-card.animate-in {
  animation: screenSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateX(100px) translateY(50px) rotate(10deg) scale(0.8);
}

@keyframes screenSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(50px) rotate(10deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

.hero-screens-display .screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-screens-display .screen-card:hover {
  box-shadow: 0 30px 60px rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.4);
  z-index: 10 !important;
}

/* Stacked card layout in hero */
.hero-screens-display .screen-1 {
  top: 0;
  left: 0;
  z-index: 4;
  animation-delay: 0.2s;
}

.hero-screens-display .screen-1.animate-in {
  transform: translateX(100px) translateY(50px) rotate(-2deg) scale(0.8);
}

.hero-screens-display .screen-2 {
  top: 60px;
  left: 80px;
  z-index: 3;
  opacity: 0.95;
  animation-delay: 0.4s;
}

.hero-screens-display .screen-2.animate-in {
  transform: translateX(100px) translateY(50px) rotate(1deg) scale(0.8);
}

.hero-screens-display .screen-3 {
  top: 120px;
  left: 160px;
  z-index: 2;
  opacity: 0.9;
  animation-delay: 0.6s;
}

.hero-screens-display .screen-3.animate-in {
  transform: translateX(100px) translateY(50px) rotate(-1deg) scale(0.8);
}

.hero-screens-display .screen-4 {
  top: 180px;
  left: 240px;
  z-index: 1;
  opacity: 0.85;
  animation-delay: 0.8s;
}

.hero-screens-display .screen-4.animate-in {
  transform: translateX(100px) translateY(50px) rotate(2deg) scale(0.8);
}

/* Hover states maintain rotation */
.hero-screens-display .screen-1:hover {
  transform: translateY(-10px) rotate(-2deg) scale(1.02);
}

.hero-screens-display .screen-2:hover {
  transform: translateY(-10px) rotate(1deg) scale(1.02);
}

.hero-screens-display .screen-3:hover {
  transform: translateY(-10px) rotate(-1deg) scale(1.02);
}

.hero-screens-display .screen-4:hover {
  transform: translateY(-10px) rotate(2deg) scale(1.02);
}

@media (max-width: 1200px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-text-content {
    max-width: 100%;
  }

  .arch-hero-desc {
    margin: 0 auto;
  }

  .hero-screens-display {
    height: 450px;
    margin: 0 auto;
  }

  .hero-screens-display .screen-card {
    width: 360px;
  }

  .hero-screens-display .screen-2 {
    left: 60px;
  }

  .hero-screens-display .screen-3 {
    left: 120px;
  }

  .hero-screens-display .screen-4 {
    left: 180px;
  }
}

@media (max-width: 768px) {
  .arch-hero {
    padding: 100px 0 80px;
  }

  .arch-hero-title {
    font-size: 42px;
  }

  .arch-hero-desc {
    font-size: 18px;
  }

  .hero-screens-display {
    height: 350px;
  }

  .hero-screens-display .screen-card {
    width: 260px;
  }

  .hero-screens-display .screen-2 {
    left: 40px;
    top: 50px;
  }

  .hero-screens-display .screen-3 {
    left: 80px;
    top: 100px;
  }

  .hero-screens-display .screen-4 {
    left: 120px;
    top: 150px;
  }
}

/* Dark Section */
.section-dark {
  background: linear-gradient(180deg, #0a0e1a 0%, #141925 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 191, 255, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
}

/* Circular Architecture Diagram */
.diagram-title-center {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  color: white;
  letter-spacing: -0.02em;
}

.diagram-subtitle {
  text-align: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 80px;
  font-weight: 400;
}

.circular-architecture {
  width: 800px;
  height: 800px;
  margin: 0 auto 100px;
  position: relative;
}

/* Center Circle */
.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #00bfff 0%, #0ea5e9 50%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(0, 191, 255, 0.4), 0 0 120px rgba(139, 92, 246, 0.3);
  z-index: 3;
}

.circle-center i {
  font-size: 72px;
  color: white;
  margin-bottom: 16px;
}

.center-title {
  font-size: 36px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
}

.center-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Middle Ring */
.middle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  z-index: 2;
}

.middle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 50px;
  margin-left: -80px;
  margin-top: -25px;
  transform-origin: center;
  transform: rotate(var(--rotation)) translateY(-240px)
    rotate(calc(-1 * var(--rotation)));
  background: rgba(20, 25, 37, 0.95);
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  line-height: 1.2;
}

/* Outer Ring Segments */
.circle-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.outer-segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

.outer-segment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0, 191, 255, 0.3));
  transform: translateX(-50%);
}

.segment-1 {
  transform: translate(-50%, -50%) rotate(0deg);
}

.segment-2 {
  transform: translate(-50%, -50%) rotate(90deg);
}

.segment-3 {
  transform: translate(-50%, -50%) rotate(180deg);
}

.segment-4 {
  transform: translate(-50%, -50%) rotate(270deg);
}

.segment-content {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  text-align: center;
  transform-origin: center;
}

.segment-1 .segment-content {
  transform: translateX(-50%) rotate(0deg);
}

.segment-2 .segment-content {
  transform: translateX(-50%) rotate(-90deg);
}

.segment-3 .segment-content {
  transform: translateX(-50%) rotate(-180deg);
}

.segment-4 .segment-content {
  transform: translateX(-50%) rotate(-270deg);
}

.segment-label {
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.segment-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-weight: 500;
}

/* Monitoring Dashboard */
.dashboard-mockup {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
  background: linear-gradient(135deg, #1a1f36 0%, #0f1419 100%);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.dashboard-title i {
  color: #00bfff;
  font-size: 24px;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
}

.dash-btn {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-btn:hover {
  background: rgba(0, 191, 255, 0.2);
  border-color: rgba(0, 191, 255, 0.5);
}

.dash-btn i {
  font-size: 14px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
  background: #f8fafc;
}

.dash-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dash-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #00bfff;
}

.dash-card-wide {
  grid-column: span 2;
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-card-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.dash-card-header i {
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.dash-card-header i:hover {
  color: #00bfff;
}

.chart-container {
  position: relative;
  height: 200px;
  flex: 1;
}

.chart-donut {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-chart {
  width: 100% !important;
  height: 100% !important;
}

.chart-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* Monitoring Architecture Section with Gradient Background */
.section-light {
  background: linear-gradient(135deg, #1a1f36 0%, #0f1419 50%, #1a1f36 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 127, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 159, 64, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.section-light .section-header {
  position: relative;
  z-index: 2;
}

.section-light .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-light .section-title {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-light .section-description {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Compact Monitoring Architecture */
.monitoring-architecture {
  max-width: 700px;
  margin: 60px auto;
  position: relative;
}

.monitor-circle-container {
  width: 600px;
  height: 600px;
  margin: 0 auto;
  position: relative;
}

/* Center: Simoob Logo */
.monitor-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #ff7f00, #ff9f40);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255, 127, 0, 0.4), 0 0 80px rgba(255, 127, 0, 0.2);
  z-index: 5;
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(255, 127, 0, 0.4), 0 0 80px rgba(255, 127, 0, 0.2);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 127, 0, 0.6),
      0 0 100px rgba(255, 127, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.simoob-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.simoob-logo i {
  font-size: 42px;
  color: white;
}

.simoob-logo span {
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
}

.monitor-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Outer Ring: Monitored Services (Just Logos) */
.monitor-outer-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.monitor-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--monitor-angle)) translateY(-280px)
    rotate(calc(-1 * var(--monitor-angle)));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.monitor-logo {
  width: 72px;
  height: 72px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  animation: logoFloat 3s ease-in-out infinite;
}

.monitor-logo:hover {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 8px 20px rgba(255, 127, 0, 0.4));
}

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

.monitor-label {
  background: rgba(255, 255, 255, 0.98);
  color: #0f1419;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid rgba(255, 127, 0, 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

/* Animated Connection Lines (SVG) */
.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Legacy 3-Tier Architecture (keeping for compatibility) */
.three-tier-architecture {
  max-width: 1400px;
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.architecture-tier {
  padding: 40px;
  border-radius: 24px;
  position: relative;
}

.tier-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

/* Client Tier */
.client-tier {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.05),
    rgba(59, 130, 246, 0.05)
  );
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.client-device {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: white;
  padding: 32px 48px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  border-left: 4px solid #8b5cf6;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.device-icon {
  width: 80px;
  height: 80px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.device-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: #0f1419;
  margin-bottom: 4px;
}

.device-info p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.request-pulse {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: requestPulse 2s ease-in-out infinite;
}

@keyframes requestPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(139, 92, 246, 0);
  }
}

/* Flow Lines */
.flow-line {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.flow-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 127, 0, 0.2),
    rgba(255, 127, 0, 0.6),
    rgba(255, 127, 0, 0.2)
  );
}

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.flow-label {
  background: rgba(255, 127, 0, 0.1);
  color: #ff7f00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 127, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.animated-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff7f00;
  border-radius: 50%;
  animation: flowDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.6);
}

.dot:nth-child(1) {
  animation-delay: 0s;
}
.dot:nth-child(2) {
  animation-delay: 0.3s;
}
.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes flowDot {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.response-flow .flow-arrow {
  transform: rotate(180deg);
}

.response-flow .flow-label {
  transform: rotate(180deg);
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

.response-flow .dot {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* Application Tier */
.app-tier {
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border: 2px solid rgba(0, 191, 255, 0.2);
  padding: 48px 40px;
}

.cloud-infrastructure {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
  border-top: 4px solid #00bfff;
}

.cloud-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cloud-icon {
  width: 48px;
  height: 48px;
  animation: cloudFloat 4s ease-in-out infinite;
}

@keyframes cloudFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

.cloud-header h3 {
  font-size: 28px;
  font-weight: 900;
  color: #0f1419;
  letter-spacing: -0.01em;
}

.server-badge {
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  color: #00bfff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Courier New", monospace;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.simoob-api-container {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid #e2e8f0;
}

.api-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.api-header i {
  font-size: 32px;
  color: #00bfff;
  animation: codeRotate 3s linear infinite;
}

@keyframes codeRotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.api-header h4 {
  font-size: 24px;
  font-weight: 900;
  color: #0f1419;
  letter-spacing: -0.01em;
}

.endpoint-count {
  background: linear-gradient(
    135deg,
    rgba(255, 127, 0, 0.15),
    rgba(255, 165, 0, 0.1)
  );
  color: #ff7f00;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 127, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.api-routers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.router-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-left: 4px solid var(--router-color);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.router-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--router-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.router-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--router-color);
}

.router-card:hover::before {
  opacity: 0.05;
}

.router-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.router-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.router-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f1419;
  font-family: "Courier New", monospace;
  margin-bottom: 8px;
}

.router-count {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 127, 0, 0.1),
    rgba(255, 165, 0, 0.05)
  );
  color: var(--router-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(255, 127, 0, 0.2);
}

/* Data Tier */
.data-tier {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(6, 182, 212, 0.05)
  );
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.database-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: white;
  padding: 40px 48px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  border-left: 4px solid #10b981;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.db-icon {
  width: 96px;
  height: 96px;
  animation: dbPulse 2s ease-in-out infinite;
}

@keyframes dbPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
  }
}

.db-info h4 {
  font-size: 24px;
  font-weight: 900;
  color: #0f1419;
  margin-bottom: 6px;
}

.db-info p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 16px;
}

.db-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.db-feature {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(6, 182, 212, 0.05)
  );
  color: #10b981;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.storage-pulse {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: storagePulse 2s ease-in-out infinite;
}

@keyframes storagePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
  }
}

/* Legacy Circular API Diagram (keeping for compatibility) */
.api-circular-diagram {
  max-width: 900px;
  margin: 80px auto;
  position: relative;
}

.api-circle-container {
  width: 700px;
  height: 700px;
  margin: 0 auto;
  position: relative;
}

/* API Center Circle */
.api-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #00bfff, #8b5cf6);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(0, 191, 255, 0.5), 0 0 100px rgba(139, 92, 246, 0.3);
  z-index: 5;
}

.api-center i {
  font-size: 48px;
  color: white;
  margin-bottom: 12px;
}

.api-center-title {
  font-size: 24px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
}

.api-center-count {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.api-center-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* API Middle Ring */
.api-middle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  z-index: 1;
  pointer-events: none;
}

.api-ring-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  margin-left: -50px;
  margin-top: -20px;
  transform-origin: center;
  transform: rotate(var(--api-rotation)) translateY(-210px)
    rotate(calc(-1 * var(--api-rotation)));
  pointer-events: auto;
}

.ring-badge {
  background: rgba(20, 25, 37, 0.98);
  border: 2px solid rgba(255, 127, 0, 0.5);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #00d4ff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(255, 127, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.ring-badge:hover {
  border-color: rgba(255, 127, 0, 0.8);
  box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* API Outer Ring Segments */
.api-outer-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.api-segment {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--segment-angle));
  width: 100%;
  height: 100%;
}

.api-segment-content {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(calc(-1 * var(--segment-angle)));
  background: white;
  border: 2px solid #e2e8f0;
  border-left: 4px solid rgba(255, 127, 0, 0.6);
  border-radius: 16px;
  padding: 20px;
  width: 140px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.api-segment-content:hover {
  transform: translateX(-50%) rotate(calc(-1 * var(--segment-angle)))
    translateY(-8px);
  box-shadow: 0 12px 24px rgba(255, 127, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 127, 0, 0.8);
  border-left-width: 4px;
}

.api-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.api-segment-content:hover .api-logo {
  transform: scale(1.1);
}

.api-segment-content i {
  font-size: 32px;
  color: var(--segment-color);
  margin-bottom: 8px;
}

.api-segment-content h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1a202c;
  margin: 8px 0;
  font-family: "Courier New", monospace;
}

.api-segment-content .api-count {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 127, 0, 0.15),
    rgba(255, 165, 0, 0.1)
  );
  color: var(--segment-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  margin: 8px 0;
  border: 1px solid rgba(255, 127, 0, 0.3);
}

.api-segment-content p {
  font-size: 11px;
  color: #64748b;
  margin: 8px 0 0 0;
  font-weight: 600;
}

/* Laptop Carousel */
.laptop-carousel {
  position: relative;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 80px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.carousel-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.laptop-showcase {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 24px;
}

/* Laptop Device */
.laptop-device {
  flex: 1;
  max-width: 700px;
}

.laptop-lid {
  background: #0f1419;
  border-radius: 16px 16px 0 0;
  padding: 16px 16px 0 16px;
  border: 3px solid #2d3748;
  border-bottom: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.laptop-lid::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #1a202c;
  border-radius: 3px;
}

.laptop-lid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.3);
}

.laptop-keyboard {
  width: 105%;
  height: 20px;
  background: linear-gradient(to bottom, #2d3748, #1a202c);
  border-radius: 0 0 12px 12px;
  margin: 0 -2.5%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
}

.laptop-keyboard::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #0f1419;
  border-radius: 2px;
}

/* Slide Info */
.slide-info {
  flex: 1;
}

.slide-info h3 {
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00bfff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-info p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-weight: 400;
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-tag {
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.3);
  color: #00d4ff;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-tag i {
  font-size: 12px;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 191, 255, 0.15);
  border: 2px solid rgba(0, 191, 255, 0.3);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-btn i {
  font-size: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.2);
  border: 2px solid rgba(0, 191, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #00bfff;
  border-color: #00bfff;
  width: 36px;
  border-radius: 6px;
}

.indicator:hover {
  background: rgba(0, 191, 255, 0.4);
}

/* Monitoring Dashboard Responsive */
@media (max-width: 1400px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .dashboard-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .dash-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .dash-card-wide {
    grid-column: span 1;
  }

  .chart-container {
    height: 180px;
  }
}

/* Building Blocks */
.building-blocks {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blocks-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 60px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.block-category {
  background: rgba(20, 25, 37, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.block-category:hover {
  border-color: rgba(0, 191, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.block-header i {
  font-size: 28px;
  color: #00d4ff;
}

.block-header span {
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.block-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.block-item:hover {
  background: rgba(0, 191, 255, 0.1);
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateX(8px);
}

.block-item i {
  font-size: 18px;
  color: #00d4ff;
}

.block-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* API Grid */
.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.api-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.api-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bfff, #0ea5e9, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.api-card:hover::before {
  transform: scaleX(1);
}

.api-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 191, 255, 0.2);
  border-color: #00bfff;
}

.api-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00bfff, #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.3);
}

.api-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f1419;
  margin-bottom: 16px;
  font-family: "Courier New", monospace;
  letter-spacing: -0.01em;
}

.api-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.endpoint-count {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  color: #0ea5e9;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(0, 191, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animated Pipeline */
.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  gap: 0;
  position: relative;
  overflow: visible;
}

.pipeline-stage {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  min-width: 200px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
}

.pipeline-stage:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 127, 0, 0.3);
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #ff7f00, #ff9f40, #ff6b35) border-box;
}

.stage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bfff, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.3);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
  padding: 12px;
}

.stage-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stage-icon i {
  font-size: 32px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(0, 191, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.5);
  }
}

.stage-content {
  text-align: center;
}

.stage-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f1419;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.stage-content p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 12px;
}

.stage-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 127, 0, 0.1),
    rgba(255, 165, 0, 0.05)
  );
  color: #ff7f00;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 127, 0, 0.3);
}

/* Data Particles Animation */
.data-particles {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ff7f00;
  border-radius: 50%;
  opacity: 0;
  animation: particleFlow 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 127, 0, 0.6);
}

.particle:nth-child(1) {
  animation-delay: 0s;
}

.particle:nth-child(2) {
  animation-delay: 1s;
}

.particle:nth-child(3) {
  animation-delay: 2s;
}

@keyframes particleFlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translate(30px, -5px) scale(0.8);
    opacity: 0.8;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translate(60px, 0) scale(0.5);
    opacity: 0;
  }
}

/* Pipeline Connector */
.pipeline-connector {
  width: 80px;
  height: 4px;
  position: relative;
  flex-shrink: 0;
  margin: 0 -10px;
  z-index: 1;
}

.connector-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #e2e8f0 0%,
    rgba(255, 127, 0, 0.2) 50%,
    #e2e8f0 100%
  );
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.flow-pulse {
  position: absolute;
  top: 0;
  left: -100%;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff7f00, transparent);
  animation: flowPulse 2s linear infinite;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.6);
}

@keyframes flowPulse {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Product UI Showcase Section (Kong-style) */
.product-ui-showcase {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f36 50%, #0f1419 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.product-ui-showcase::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 100, 200, 0.1), transparent);
  pointer-events: none;
}

.ui-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.ui-text-content {
  color: white;
  z-index: 2;
  position: relative;
}

.ui-showcase-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  letter-spacing: -0.02em;
}

.ui-showcase-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
}

.ui-screens-display {
  position: relative;
  height: 600px;
  perspective: 1000px;
}

.screen-card {
  position: absolute;
  width: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #1a1f36;
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.4);
  z-index: 10;
}

/* Stacked card layout */
.screen-1 {
  top: 0;
  left: 0;
  z-index: 4;
  transform: rotate(-2deg);
}

.screen-2 {
  top: 60px;
  left: 80px;
  z-index: 3;
  transform: rotate(1deg);
  opacity: 0.95;
}

.screen-3 {
  top: 120px;
  left: 160px;
  z-index: 2;
  transform: rotate(-1deg);
  opacity: 0.9;
}

.screen-4 {
  top: 180px;
  left: 240px;
  z-index: 1;
  transform: rotate(2deg);
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1200px) {
  .ui-showcase-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ui-screens-display {
    height: 500px;
    margin: 0 auto;
  }

  .screen-card {
    width: 380px;
  }

  .screen-2 {
    left: 60px;
  }

  .screen-3 {
    left: 120px;
  }

  .screen-4 {
    left: 180px;
  }
}

@media (max-width: 768px) {
  .product-ui-showcase {
    padding: 80px 0;
  }

  .ui-showcase-title {
    font-size: 36px;
  }

  .ui-showcase-desc {
    font-size: 16px;
  }

  .ui-screens-display {
    height: 400px;
  }

  .screen-card {
    width: 280px;
  }

  .screen-2 {
    left: 40px;
    top: 50px;
  }

  .screen-3 {
    left: 80px;
    top: 100px;
  }

  .screen-4 {
    left: 120px;
    top: 150px;
  }
}

/* Data Flow (Legacy - keep for compatibility) */
.data-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  gap: 24px;
  flex-wrap: wrap;
}

.flow-step {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  position: relative;
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: #00bfff;
}

.flow-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #00bfff, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.3);
}

.flow-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f1419;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.flow-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  font-weight: 500;
}

.flow-arrow {
  font-size: 48px;
  color: #00bfff;
  font-weight: 300;
}

/* Laptop Mockups */
.laptop-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  margin-top: 80px;
}

.laptop-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 550px;
  perspective: 1000px;
  transition: transform 0.3s ease;
}

.laptop-mockup:hover .laptop-frame {
  transform: translateY(-8px);
}

.laptop-screen {
  background: #0f1419;
  border-radius: 12px 12px 0 0;
  padding: 12px 12px 0 12px;
  border: 2px solid #2d3748;
  border-bottom: none;
  position: relative;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.laptop-screen::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #1a202c;
  border-radius: 2px;
}

.laptop-screen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.laptop-base {
  width: 110%;
  height: 16px;
  background: linear-gradient(to bottom, #2d3748, #1a202c);
  border-radius: 0 0 8px 8px;
  position: relative;
  left: -5%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.laptop-base::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0f1419;
  border-radius: 2px 2px 0 0;
}

.laptop-notch {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #0f1419;
  border-radius: 0 0 4px 4px;
  z-index: 1;
}

.laptop-caption {
  margin-top: 32px;
  text-align: center;
  max-width: 500px;
}

.laptop-caption h4 {
  font-size: 24px;
  font-weight: 800;
  color: #0f1419;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.laptop-caption p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  font-weight: 500;
}

/* Tech Stack */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.tech-category h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f1419;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #00bfff, #8b5cf6) 1;
  letter-spacing: -0.01em;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-badge {
  background: white;
  border: 2px solid #e2e8f0;
  padding: 12px 24px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #0f1419;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-badge:hover {
  background: linear-gradient(135deg, #00bfff, #8b5cf6);
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 191, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .circular-architecture {
    width: 700px;
    height: 700px;
  }

  .circle-center {
    width: 240px;
    height: 240px;
  }

  .circle-center i {
    font-size: 56px;
  }

  .center-title {
    font-size: 28px;
  }

  .middle-ring {
    width: 460px;
    height: 460px;
  }

  .middle-item {
    width: 150px;
    margin-left: -75px;
    transform: rotate(var(--rotation)) translateY(-210px)
      rotate(calc(-1 * var(--rotation)));
  }

  .blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .arch-hero-title {
    font-size: 56px;
  }

  .laptop-gallery {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* API Circular Diagram Responsive */
  .api-circle-container {
    width: 600px;
    height: 600px;
  }

  .api-center {
    width: 160px;
    height: 160px;
  }

  .api-center i {
    font-size: 40px;
  }

  .api-center-title {
    font-size: 20px;
  }

  .api-center-count {
    font-size: 28px;
  }

  .api-middle-ring {
    width: 380px;
    height: 380px;
  }

  .api-ring-item {
    transform: rotate(var(--api-rotation)) translateY(-180px)
      rotate(calc(-1 * var(--api-rotation)));
  }

  .ring-badge {
    font-size: 11px;
    padding: 8px 12px;
  }

  .api-segment-content {
    width: 120px;
    padding: 16px;
  }

  /* Carousel Responsive */
  .laptop-carousel {
    padding: 0 60px;
  }

  .laptop-showcase {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .slide-info h3 {
    font-size: 28px;
  }

  .slide-info p {
    font-size: 15px;
  }

  /* Monitoring Architecture Responsive */
  .monitor-circle-container {
    width: 500px;
    height: 500px;
  }

  .monitor-center {
    width: 150px;
    height: 150px;
  }

  .simoob-logo i {
    font-size: 32px;
  }

  .simoob-logo span {
    font-size: 22px;
  }

  .monitor-item {
    transform: rotate(var(--monitor-angle)) translateY(-220px)
      rotate(calc(-1 * var(--monitor-angle)));
  }

  .monitor-logo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .arch-hero-title {
    font-size: 42px;
  }

  .arch-hero-desc {
    font-size: 18px;
  }

  .circular-architecture {
    width: 90vw;
    height: 90vw;
    max-width: 600px;
    max-height: 600px;
  }

  .circle-center {
    width: 200px;
    height: 200px;
  }

  .circle-center i {
    font-size: 42px;
  }

  .center-title {
    font-size: 24px;
  }

  .middle-ring {
    width: 380px;
    height: 380px;
  }

  .middle-item {
    width: 130px;
    margin-left: -65px;
    font-size: 10px;
    transform: rotate(var(--rotation)) translateY(-170px)
      rotate(calc(-1 * var(--rotation)));
  }

  /* API Circular Diagram Mobile */
  .api-circle-container {
    width: 90vw;
    height: 90vw;
    max-width: 480px;
    max-height: 480px;
  }

  /* Monitoring Architecture Mobile */
  .monitor-circle-container {
    width: 90vw;
    height: 90vw;
    max-width: 420px;
    max-height: 420px;
  }

  .monitor-center {
    width: 120px;
    height: 120px;
  }

  .simoob-logo i {
    font-size: 28px;
  }

  .simoob-logo span {
    font-size: 18px;
  }

  .monitor-subtitle {
    font-size: 9px;
  }

  .monitor-item {
    transform: rotate(var(--monitor-angle)) translateY(-180px)
      rotate(calc(-1 * var(--monitor-angle)));
  }

  .monitor-logo {
    width: 48px;
    height: 48px;
  }

  .monitor-label {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* 3-Tier Architecture Responsive */
  .three-tier-architecture {
    margin: 40px auto;
  }

  .architecture-tier {
    padding: 24px;
  }

  .client-device {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .device-icon {
    width: 64px;
    height: 64px;
  }

  .device-info h4 {
    font-size: 18px;
  }

  .cloud-header {
    flex-direction: column;
    gap: 12px;
  }

  .cloud-header h3 {
    font-size: 22px;
  }

  .cloud-icon {
    width: 40px;
    height: 40px;
  }

  .simoob-api-container {
    padding: 20px;
  }

  .api-routers {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .router-card {
    padding: 16px;
  }

  .router-card img {
    width: 36px;
    height: 36px;
  }

  .database-container {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .db-icon {
    width: 72px;
    height: 72px;
  }

  .db-info h4 {
    font-size: 20px;
  }

  .db-features {
    justify-content: center;
  }

  .flow-line {
    height: 60px;
  }

  .api-center {
    width: 130px;
    height: 130px;
  }

  .api-center i {
    font-size: 32px;
  }

  .api-center-title {
    font-size: 16px;
  }

  .api-center-count {
    font-size: 22px;
  }

  .api-middle-ring {
    width: 300px;
    height: 300px;
  }

  .api-ring-item {
    transform: rotate(var(--api-rotation)) translateY(-140px)
      rotate(calc(-1 * var(--api-rotation)));
  }

  .ring-badge {
    font-size: 10px;
    padding: 6px 10px;
  }

  .api-segment-content {
    width: 100px;
    padding: 12px;
  }

  .api-logo {
    width: 36px;
    height: 36px;
  }

  .api-segment-content i {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .api-segment-content .endpoint-count {
    font-size: 20px;
  }

  .api-segment-content strong {
    font-size: 11px;
  }

  .api-segment-content p {
    font-size: 10px;
  }

  /* Carousel Mobile */
  .laptop-carousel {
    padding: 0 40px;
  }

  .laptop-showcase {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  .laptop-device {
    width: 100%;
    max-width: 400px;
  }

  .laptop-lid {
    height: 220px;
  }

  .laptop-lid img {
    width: 90%;
    height: 85%;
  }

  .laptop-keyboard {
    height: 16px;
  }

  .slide-info {
    width: 100%;
    text-align: center;
  }

  .slide-info h3 {
    font-size: 24px;
  }

  .slide-info p {
    font-size: 14px;
  }

  .feature-tags {
    justify-content: center;
  }

  /* Pipeline Responsive */
  .pipeline-container {
    flex-direction: column;
    gap: 30px;
  }

  .pipeline-stage {
    width: 100%;
    max-width: 400px;
  }

  .pipeline-connector {
    width: 4px;
    height: 60px;
    margin: 0;
  }

  .connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      #e2e8f0 0%,
      rgba(255, 127, 0, 0.2) 50%,
      #e2e8f0 100%
    );
  }

  .flow-pulse {
    width: 100%;
    height: 30px;
    left: 0;
    top: -100%;
    background: linear-gradient(180deg, transparent, #ff7f00, transparent);
    animation: flowPulseVertical 2s linear infinite;
    box-shadow: 0 0 10px rgba(255, 127, 0, 0.6);
  }

  @keyframes flowPulseVertical {
    0% {
      top: -100%;
    }
    100% {
      top: 100%;
    }
  }

  .data-particles {
    right: 50%;
    top: auto;
    bottom: -40px;
    transform: translateX(50%);
  }

  @keyframes particleFlow {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    50% {
      transform: translate(-5px, 30px) scale(0.8);
      opacity: 0.8;
    }
    80% {
      opacity: 0.5;
    }
    100% {
      transform: translate(0, 60px) scale(0.5);
      opacity: 0;
    }
  }

  .feature-tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
  }

  .carousel-btn i {
    font-size: 18px;
  }

  .segment-label {
    font-size: 22px;
  }

  .segment-desc {
    font-size: 11px;
  }

  .blocks-grid {
    grid-template-columns: 1fr;
  }

  .data-flow {
    flex-direction: column;
  }

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

  .api-grid {
    grid-template-columns: 1fr;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
  }

  .diagram-title-center {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .circular-architecture {
    width: 90vw;
    height: 90vw;
    max-width: 400px;
    max-height: 400px;
  }

  .circle-center {
    width: 140px;
    height: 140px;
  }

  .circle-center i {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .center-title {
    font-size: 18px;
  }

  .center-subtitle {
    font-size: 10px;
  }

  .middle-ring {
    width: 260px;
    height: 260px;
  }

  .middle-item {
    width: 95px;
    margin-left: -47.5px;
    height: 36px;
    font-size: 8px;
    transform: rotate(var(--rotation)) translateY(-115px)
      rotate(calc(-1 * var(--rotation)));
  }

  .segment-label {
    font-size: 18px;
  }

  .segment-desc {
    font-size: 9px;
  }

  /* Pipeline Small Mobile */
  .pipeline-stage {
    min-width: 160px;
    padding: 24px 16px;
  }

  .stage-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .stage-content h3 {
    font-size: 18px;
  }

  .stage-content p {
    font-size: 12px;
  }

  .stage-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .pipeline-connector {
    height: 50px;
  }

  /* Monitoring Architecture Small Mobile */
  .monitor-circle-container {
    width: 90vw;
    height: 90vw;
    max-width: 360px;
    max-height: 360px;
  }

  .monitor-center {
    width: 100px;
    height: 100px;
  }

  .simoob-logo i {
    font-size: 24px;
  }

  .simoob-logo span {
    font-size: 16px;
  }

  .monitor-item {
    transform: rotate(var(--monitor-angle)) translateY(-150px)
      rotate(calc(-1 * var(--monitor-angle)));
  }

  .monitor-logo {
    width: 40px;
    height: 40px;
  }

  .monitor-label {
    font-size: 9px;
    padding: 4px 8px;
  }

  /* 3-Tier Architecture Small Mobile */
  .api-routers {
    grid-template-columns: 1fr;
  }

  .router-card img {
    width: 32px;
    height: 32px;
  }

  .cloud-header h3 {
    font-size: 20px;
  }

  .api-header h4 {
    font-size: 20px;
  }

  .db-icon {
    width: 64px;
    height: 64px;
  }

  /* API Circular Diagram Small Mobile */
  .api-circle-container {
    width: 90vw;
    height: 90vw;
    max-width: 360px;
    max-height: 360px;
  }

  .api-center {
    width: 110px;
    height: 110px;
  }

  .api-center i {
    font-size: 28px;
  }

  .api-center-title {
    font-size: 14px;
  }

  .api-center-count {
    font-size: 20px;
  }

  .api-middle-ring {
    width: 240px;
    height: 240px;
  }

  .api-ring-item {
    transform: rotate(var(--api-rotation)) translateY(-110px)
      rotate(calc(-1 * var(--api-rotation)));
  }

  .ring-badge {
    font-size: 9px;
    padding: 5px 8px;
  }

  .api-segment-content {
    width: 85px;
    padding: 10px;
  }

  .api-logo {
    width: 32px;
    height: 32px;
  }

  .api-segment-content i {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .api-segment-content .endpoint-count {
    font-size: 18px;
  }

  .api-segment-content strong {
    font-size: 10px;
  }

  .api-segment-content p {
    font-size: 9px;
  }

  /* Carousel Small Mobile */
  .laptop-carousel {
    padding: 0 30px;
  }

  .laptop-showcase {
    padding: 15px;
    gap: 20px;
  }

  .laptop-device {
    max-width: 320px;
  }

  .laptop-lid {
    height: 180px;
  }

  .laptop-keyboard {
    height: 14px;
  }

  .slide-info h3 {
    font-size: 20px;
  }

  .slide-info p {
    font-size: 13px;
  }

  .feature-tag {
    font-size: 10px;
    padding: 5px 10px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-btn i {
    font-size: 16px;
  }

  .carousel-indicators {
    gap: 6px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 30px;
    height: 10px;
  }

  .blocks-title {
    font-size: 24px;
  }
}
