/* ==========================================================================
   COMPONENTS & WIDGETS - BETTER STACK SIGNATURE UI
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.35);
}

.btn-betterstack-gradient {
  background: linear-gradient(135deg, #2B82C9 0%, #1864AB 100%);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(24, 100, 171, 0.45);
}

.btn-betterstack-gradient:hover {
  background: linear-gradient(135deg, #38bdf8 0%, #1c74c5 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(56, 189, 248, 0.6);
}

.btn-emerald {
  background: var(--emerald-500);
  color: #022c22;
  font-weight: 700;
  border-color: var(--emerald-400);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
}

.btn-emerald:hover {
  background: var(--emerald-400);
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-medium);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-bright);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 26px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   HERO 5-SLIDER CAROUSEL TRACK (BETTER STACK STYLE)
   ========================================================================== */
.hero-section {
  padding: 30px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-full-slide {
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.2;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-full-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-left-content {
  text-align: left;
}

.hero-full-slide.active .hero-left-content {
  animation: slideInRight 0.5s ease-out;
}

.hero-full-slide.active .hero-preview-stage {
  animation: fadeInScale 0.6s ease-out;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge-pill.ideas-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan-400);
}

.hero-badge-pill.app-badge {
  background: rgba(124, 135, 247, 0.1);
  border: 1px solid rgba(124, 135, 247, 0.25);
  color: #7C87F7;
}

.hero-badge-pill.web-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-400);
}

.hero-badge-pill.ai-badge {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--purple-400);
}

.hero-badge-pill.growth-badge {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: var(--amber-400);
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.hero-main-title .text-cyan {
  background: linear-gradient(135deg, #38bdf8 20%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-main-title .text-emerald {
  background: linear-gradient(135deg, #34d399 20%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-main-title .text-amber {
  background: linear-gradient(135deg, #fbbf24 20%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-main-title .text-purple {
  background: linear-gradient(135deg, #c084fc 20%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 26px;
  max-width: 580px;
}

/* Better Stack Form */
.hero-betterstack-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 490px;
  width: 100%;
  margin-bottom: 18px;
}

@media (max-width: 560px) {
  .hero-betterstack-form {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-work-email-input {
  flex: 1;
  height: 50px;
  padding: 0 18px;
  background: rgba(114, 125, 161, 0.12);
  border: 1px solid rgba(114, 125, 161, 0.25);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 14.5px;
  font-family: var(--font-sans);
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}
  font-family: var(--font-sans);
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.hero-work-email-input::placeholder {
  color: #94a3b8;
}

.hero-work-email-input:focus {
  border-color: #7C87F7;
  background: rgba(114, 125, 161, 0.2);
  box-shadow: 0 0 15px rgba(124, 135, 247, 0.25);
}

.hero-submit-btn {
  height: 50px;
  padding: 0 24px;
  font-size: 14.5px;
  white-space: nowrap;
}

.hero-guarantee {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  max-width: 480px;
}

.hero-guarantee a {
  color: #cbd5e1;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

.hero-guarantee a:hover {
  color: #ffffff;
}

/* ==========================================================================
   3D ISOMETRIC HERO VISUAL STAGE
   ========================================================================== */
.hero-preview-stage {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  box-shadow: var(--shadow-glow-card), 0 30px 60px -12px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.dashboard-chrome {
  height: 40px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 2;
  flex-wrap: wrap;
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.chrome-dot.red { background: #ef4444; }
.chrome-dot.yellow { background: #f59e0b; }
.chrome-dot.green { background: #10b981; }

.chrome-title-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chrome-status-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-3d-visual-wrap {
  position: relative;
  width: 100%;
  height: clamp(260px, 30vw, 440px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #0d101a 0%, #06070a 100%);
}

.hero-3d-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-full-slide.active .hero-3d-image {
  transform: scale(1.02);
}

.hero-3d-overlay-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, transparent 60%, rgba(6, 7, 10, 0.4) 100%);
  pointer-events: none;
}

.hero-floating-pill-badge {
  position: absolute;
  bottom: clamp(10px, 2.5vw, 20px);
  left: clamp(10px, 2.5vw, 20px);
  padding: clamp(5px, 1.5vw, 8px) clamp(10px, 2vw, 16px);
  background: rgba(11, 13, 19, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(10px, 2vw, 11.5px);
  color: #f8fafc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   UNIFIED 5-SLIDER HERO CONTROLLER BAR
   ========================================================================== */
.hero-unified-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  gap: 8px;
}

.hero-slider-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-unified-nav-bar {
    border-radius: var(--radius-lg);
    padding: 6px 8px;
    overflow: hidden;
  }
  
  .hero-slider-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    gap: 4px;
  }

  .hero-slider-tabs::-webkit-scrollbar {
    display: none;
  }
}

.hero-tab-pill {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-tab-pill {
    font-size: 11px;
    padding: 7px 11px;
  }
}

.hero-tab-pill:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.hero-tab-pill.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-bright);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.hero-slider-arrows {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.hero-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 14px;
}

.hero-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--border-bright);
}

.hero-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--border-bright);
}

/* ==========================================================================
   SERVICES & CAPABILITIES 6-CARD GRID (ENHANCED BETTER STACK STYLE)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Mouse-follow spotlight glow overlay */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(56, 189, 248, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

/* Top border beam glow */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.service-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.85), 0 0 30px rgba(24, 100, 171, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.service-card-top {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.service-pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-pillar-badge.web { background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.3); color: #34d399; }
.service-pillar-badge.mobile { background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.3); color: #38bdf8; }
.service-pillar-badge.custom { background: rgba(124, 135, 247, 0.1); border: 1px solid rgba(124, 135, 247, 0.3); color: #818cf8; }
.service-pillar-badge.design { background: rgba(244, 114, 182, 0.1); border: 1px solid rgba(244, 114, 182, 0.3); color: #f472b6; }
.service-pillar-badge.devops { background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.3); color: #fbbf24; }
.service-pillar-badge.ai { background: rgba(192, 132, 252, 0.1); border: 1px solid rgba(192, 132, 252, 0.3); color: #c084fc; }
.service-pillar-badge.streaming { background: rgba(244, 63, 94, 0.1); border: 1px solid rgba(244, 63, 94, 0.3); color: #f43f5e; }
.service-pillar-badge.security { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); color: #f59e0b; }
.service-pillar-badge.growth { background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.3); color: #06b6d4; }
.service-pillar-badge.team { background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.3); color: #8b5cf6; }
.service-pillar-badge.api { background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.3); color: #14b8a6; }
.service-pillar-badge.data { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); color: #3b82f6; }

.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* Micro-Visual Interactive Stage */
.service-micro-visual {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-micro-visual {
  border-color: rgba(56, 189, 248, 0.25);
  background: rgba(0, 0, 0, 0.7);
}

.service-micro-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.service-micro-metric {
  color: #94a3b8;
  font-size: 11px;
}

.service-highlights-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #cbd5e1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.service-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tech-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
}

.service-card:hover .service-tech-pill {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.service-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all var(--transition-fast);
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-explore-btn .arrow-icon {
  transition: transform var(--transition-fast);
  color: var(--cyan-400);
}

.service-explore-btn:hover {
  background: rgba(24, 100, 171, 0.25);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.service-explore-btn:hover .arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BENTO GRID & OTHER SECTIONS
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-400);
  margin-bottom: 12px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bento-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.bento-visual {
  width: 100%;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.pipeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pipeline-node {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.pipeline-node.active {
  border-color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.pipeline-arrow {
  color: var(--text-muted);
  font-weight: bold;
}

/* Code Sandbox */
.code-sandbox-card {
  background: #090b10;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.code-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  height: 48px;
}

.code-tab-btn-group {
  display: flex;
  gap: 6px;
}

.code-tab-btn {
  padding: 6px 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.code-tab-btn.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.code-copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.code-copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.code-pre-block {
  padding: 24px;
  margin: 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: #e2e8f0;
}

.tok-kw { color: #f43f5e; font-weight: 600; }
.tok-fn { color: #60a5fa; }
.tok-str { color: #34d399; }
.tok-num { color: #fbbf24; }
.tok-cmt { color: #64748b; font-style: italic; }
.tok-typ { color: #c084fc; }

/* Marquee & Reviews */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.client-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 28px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.65;
  transition: all var(--transition-fast);
}

.client-logo-item:hover {
  color: var(--text-primary);
  opacity: 1;
}

/* ==========================================================================
   09 — CLIENT PROOF STAGE & IMPACT TELEMETRY (NON-CARD SPOTLIGHT)
   ========================================================================== */
.client-story-stage {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.8) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.85), 0 0 50px rgba(24, 100, 171, 0.2);
  position: relative;
  backdrop-filter: blur(20px);
}

.client-story-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.client-tab-btn {
  background: none;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.client-tab-btn:last-child {
  border-right: none;
}

.client-tab-btn .tab-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: 2px;
}

.client-tab-btn .tab-author-name {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.client-tab-btn .tab-company-tag {
  font-size: 12px;
  color: var(--text-muted);
}

.client-tab-btn:hover {
  background: rgba(255, 255, 255, 0.025);
}

.client-tab-btn:hover .tab-author-name {
  color: #ffffff;
}

.client-tab-btn.active {
  background: rgba(56, 189, 248, 0.06);
}

.client-tab-btn.active .tab-author-name {
  color: #ffffff;
}

.client-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan-400);
  box-shadow: 0 0 10px var(--cyan-400);
}

.client-stories-viewport {
  position: relative;
  min-height: 380px;
}

.client-story-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-story-slide.active {
  display: block;
  opacity: 1;
}

.client-story-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  padding: 48px 40px;
  align-items: center;
}

.client-voice-pane {
  display: flex;
  flex-direction: column;
}

.voice-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gold-stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
}

.verified-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 3px 9px;
  border-radius: 9999px;
}

.quote-glyph-mark {
  font-family: serif;
  font-size: 60px;
  line-height: 1;
  color: var(--cyan-400);
  opacity: 0.35;
  margin-bottom: -16px;
}

.client-large-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.55;
  margin: 0 0 28px 0;
  font-style: normal;
}

.client-large-quote mark.text-highlight {
  background: rgba(56, 189, 248, 0.18);
  color: var(--cyan-400);
  padding: 2px 6px;
  border-radius: 4px;
}

.client-profile-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.client-meta-details .client-name {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px 0;
}

.client-meta-details .client-role {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.client-impact-pane {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.impact-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}

.impact-badge-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-400);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

.impact-status-dot {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.impact-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.impact-metric-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.impact-metric-row:last-child {
  border-bottom: none;
}

.impact-metric-val {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  min-width: 120px;
  line-height: 1;
}

.impact-metric-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.impact-metric-info strong {
  font-size: 13.5px;
  color: #f1f5f9;
}

.impact-metric-info span {
  font-size: 12px;
  color: var(--text-secondary);
}

.impact-footer-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1200px) {
  .client-story-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .client-story-split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

@media (max-width: 860px) {
  .client-story-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px;
    gap: 8px;
  }
  .client-story-tabs::-webkit-scrollbar {
    display: none;
  }
  .client-tab-btn {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    min-width: 135px;
    padding: 10px 14px;
  }
  .impact-metric-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.estimator-card {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 18, 27, 0.8) 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 900px) {
  .estimator-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(20px, 4vw, 32px);
  }
}

.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-medium);
  outline: none;
  accent-color: var(--emerald-400);
}

/* ==========================================================================
   03 — FEATURED PROJECTS / WORK (FUTURISTIC VISUAL CARDS)
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.project-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.75) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

/* Mouse-following Spotlight Layer */
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 189, 248, 0.12), transparent 75%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(24, 100, 171, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Glow Beam Line */
.project-card-glow-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #38bdf8 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card-glow-beam {
  opacity: 1;
}

/* Project Cover Image Mockup Container */
.project-image-cover-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 9;
  background: #060b19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6);
}

.project-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-cover-img {
  transform: scale(1.06);
}

.project-image-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.project-pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan-400);
  background: rgba(6, 11, 25, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.project-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(6, 11, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Card Content & Typography */
.project-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.project-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.project-date-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
}

.project-client-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--cyan-400);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.project-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.project-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.project-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(24, 100, 171, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.project-pill:hover {
  background: rgba(24, 100, 171, 0.25);
  border-color: rgba(56, 189, 248, 0.4);
}

.project-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-explore-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--cyan-400);
  box-shadow: 0 4px 16px rgba(24, 100, 171, 0.25);
}

.explore-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-explore-btn:hover .explore-arrow {
  transform: translateX(6px);
}

/* ==========================================================================
   04 — WHY CODECURIOUS (SPLIT MANIFESTO & DELIVERY COCKPIT)
   ========================================================================== */
.why-split-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.why-split-left {
  display: flex;
  flex-direction: column;
}

.why-split-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 12px 0 16px;
}

.why-split-subtext {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

/* Connected Principles Flow (No Cards, Pure Editorial Stream) */
.why-principles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-principle-item {
  display: flex;
  gap: 20px;
  padding: 12px 16px 12px 0;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-principle-item:hover {
  transform: translateX(6px);
}

.principle-number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.principle-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(24, 100, 171, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--cyan-400);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
  transition: all 0.3s ease;
}

.why-principle-item:hover .principle-num {
  background: var(--cyan-400);
  color: #060b19;
  border-color: var(--cyan-400);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.6);
}

.principle-track-line {
  width: 2px;
  flex-grow: 1;
  min-height: 32px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
  margin-top: 8px;
}

.principle-content-col {
  display: flex;
  flex-direction: column;
}

.principle-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.why-principle-item:hover .principle-title {
  color: var(--cyan-400);
}

.principle-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.principle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.principle-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Right Column: High-Tech Delivery Cockpit */
.why-split-right {
  position: sticky;
  top: 100px;
}

.why-cockpit-stage {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.85) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(24, 100, 171, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.why-cockpit-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #34d399);
}

.cockpit-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.cockpit-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cockpit-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cockpit-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--emerald-400);
}

/* Real-Time Metrics Matrix */
.cockpit-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.cockpit-metric-cell {
  background: rgba(6, 11, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.c-metric-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.c-metric-lbl {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.c-metric-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Terminal Log Stream */
.cockpit-terminal-log {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.log-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

.log-tag {
  color: var(--cyan-400);
}

.log-stream {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #cbd5e1;
  letter-spacing: -0.15px;
}

.log-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.log-ok {
  color: var(--emerald-400);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Guarantee Box */
.cockpit-guarantee-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(24, 100, 171, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.guarantee-icon {
  font-size: 24px;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  font-size: 12.5px;
  color: #e2e8f0;
}

.guarantee-text strong {
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 2px;
}

.guarantee-text span {
  color: var(--text-muted);
  font-size: 11px;
}

@media (max-width: 1024px) {
  .why-split-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-split-right {
    position: static;
  }
}

/* ==========================================================================
   05 — OUR PROCESS (3-PHASE MILESTONE ROADMAP)
   ========================================================================== */
.roadmap-phases-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.roadmap-phase-col {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.7) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.roadmap-phase-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.roadmap-phase-col:hover::before {
  opacity: 1;
}

.roadmap-phase-col:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.85), 0 0 30px rgba(24, 100, 171, 0.2);
}

.phase-col-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.phase-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-400);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.phase-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.phase-steps-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.phase-step-card {
  background: rgba(6, 11, 25, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.phase-step-card:hover {
  background: rgba(24, 100, 171, 0.1);
  border-color: rgba(56, 189, 248, 0.25);
}

.p-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.p-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(24, 100, 171, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.p-step-meta {
  display: flex;
  flex-direction: column;
}

.p-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: var(--cyan-400);
}

.p-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.p-step-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.p-deliverable-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #cbd5e1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: 6px;
  line-height: 1.35;
}

.p-deliverable-chip strong {
  color: var(--cyan-400);
}

.phase-connector-arrow {
  text-align: center;
  font-size: 16px;
  color: rgba(56, 189, 248, 0.5);
  line-height: 1;
  padding: 2px 0;
}

/* Transparency Ribbon */
.pipeline-trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #e2e8f0;
}

.ribbon-icon {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .roadmap-phases-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pipeline-trust-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pipeline-trust-ribbon {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   06 — INDUSTRIES (ASYMMETRIC GLOWING BENTO MATRIX)
   ========================================================================== */
.industries-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-bento-tile {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.7) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 255px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}

.industry-bento-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.05), transparent 75%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.industry-bento-tile:hover {
  transform: translateY(-6px);
}

.industry-bento-tile:hover::before {
  opacity: 1;
}

.tile-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.industry-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  flex-shrink: 0;
}

.industry-bento-tile:hover .industry-icon-box {
  transform: scale(1.1) rotate(4deg);
}

.industry-tag-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

.industry-bento-title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.industry-bento-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.industry-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.ind-sol-tag {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
  transition: all var(--transition-fast);
}

/* --- Theme Accents for All 11 Industries --- */

/* Emerald / Healthcare */
.theme-emerald .industry-icon-box {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.theme-emerald .industry-tag-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
}
.theme-emerald:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.2);
}
.theme-emerald:hover .ind-sol-tag {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
}

/* Cyan / Fintech */
.theme-cyan .industry-icon-box {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
}
.theme-cyan .industry-tag-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
}
.theme-cyan:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.2);
}
.theme-cyan:hover .ind-sol-tag {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

/* Rose / Live Streaming */
.theme-rose .industry-icon-box {
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.theme-rose .industry-tag-badge {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: #f43f5e;
}
.theme-rose:hover {
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(244, 63, 94, 0.2);
}
.theme-rose:hover .ind-sol-tag {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.35);
  color: #fb7185;
}

/* Purple / EdTech */
.theme-purple .industry-icon-box {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.theme-purple .industry-tag-badge {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #a855f7;
}
.theme-purple:hover {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(168, 85, 247, 0.2);
}
.theme-purple:hover .ind-sol-tag {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
  color: #c084fc;
}

/* Amber / E-Commerce */
.theme-amber .industry-icon-box {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
}
.theme-amber .industry-tag-badge {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
}
.theme-amber:hover {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(251, 191, 36, 0.2);
}
.theme-amber:hover .ind-sol-tag {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde047;
}

/* Blue / Real Estate */
.theme-blue .industry-icon-box {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.theme-blue .industry-tag-badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #3b82f6;
}
.theme-blue:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(59, 130, 246, 0.2);
}
.theme-blue:hover .ind-sol-tag {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #60a5fa;
}

/* Sky / Logistics */
.theme-sky .industry-icon-box {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
}
.theme-sky .industry-tag-badge {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #0ea5e9;
}
.theme-sky:hover {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(14, 165, 233, 0.2);
}
.theme-sky:hover .ind-sol-tag {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
  color: #38bdf8;
}

/* Orange / Restaurants */
.theme-orange .industry-icon-box {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.theme-orange .industry-tag-badge {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #f97316;
}
.theme-orange:hover {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(249, 115, 22, 0.2);
}
.theme-orange:hover .ind-sol-tag {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
  color: #fb923c;
}

/* Indigo / Social Media */
.theme-indigo .industry-icon-box {
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.theme-indigo .industry-tag-badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #818cf8;
}
.theme-indigo:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.2);
}
.theme-indigo:hover .ind-sol-tag {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.35);
  color: #a5b4fc;
}

/* Teal / CRM */
.theme-teal .industry-icon-box {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.theme-teal .industry-tag-badge {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: #14b8a6;
}
.theme-teal:hover {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(20, 184, 166, 0.2);
}
.theme-teal:hover .ind-sol-tag {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.35);
  color: #2dd4bf;
}

/* Violet / ERP */
.theme-violet .industry-icon-box {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.theme-violet .industry-tag-badge {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #a78bfa;
}
.theme-violet:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.2);
}
.theme-violet:hover .ind-sol-tag {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
}

/* ==========================================================================
   07 — TECHNOLOGY STACK (CATEGORICAL DISPLAY)
   ========================================================================== */
.tech-stack-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-stack-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease;
}

.tech-stack-category-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.tech-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tech-cat-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

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

.tech-item-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
}

.tech-item-badge:hover {
  background: rgba(24, 100, 171, 0.2);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

/* ==========================================================================
   08 — STATS COCKPIT (ENGINEERING PROVENANCE GRID)
   ========================================================================== */
.stats-cockpit-wrapper {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.75) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(24, 100, 171, 0.15);
  position: relative;
  backdrop-filter: blur(20px);
}

.stats-cockpit-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan-400) 50%, transparent 100%);
}

.stats-cockpit-header {
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cockpit-live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cockpit-live-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e2e8f0;
}

.cockpit-live-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-glass-card {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-glass-card:last-child {
  border-right: none;
}

.stat-glass-card:hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.stat-glass-card:hover .stat-card-icon {
  transform: scale(1.1) rotate(6deg);
}

.stat-trend-chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid;
  letter-spacing: 0.02em;
}

.stat-main-number {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.8vw, 50px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-main-label {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-main-subtext {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .stats-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-glass-card:nth-child(3) {
    border-right: none;
  }
  .stat-glass-card:nth-child(4),
  .stat-glass-card:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  .stats-cards-grid {
    grid-template-columns: 1fr;
  }
  .stat-glass-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .stat-glass-card:last-child {
    border-bottom: none;
  }
  .stats-cockpit-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   10 — FAQ ACCORDION (FULL-WIDTH 2-COLUMN GRID)
   ========================================================================== */
.faq-accordion-wrap {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
}

.faq-item {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.7) 0%, rgba(11, 15, 25, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
}

.faq-item.active {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(24, 100, 171, 0.2);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.faq-chevron {
  font-size: 14px;
  color: var(--cyan-400);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: rgba(56, 189, 248, 0.25);
  color: #ffffff;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer-panel {
  max-height: 350px;
  padding: 0 26px 24px;
}

.faq-answer-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .faq-accordion-wrap {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FINAL POWERFUL GRAND LAUNCHPAD CTA (COMPACT & BALANCED)
   ========================================================================== */
.final-cta-card {
  background: radial-gradient(ellipse 90% 65% at 50% -10%, rgba(56, 189, 248, 0.22) 0%, rgba(129, 140, 248, 0.08) 40%, rgba(11, 15, 25, 0.98) 75%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(24, 100, 171, 0.2);
  backdrop-filter: blur(24px);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan-400) 50%, transparent 100%);
  box-shadow: 0 0 15px var(--cyan-400);
}

.final-cta-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.12);
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.final-cta-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 20px;
}

.final-cta-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto 24px;
}

.trust-seal-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 13px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  transition: all var(--transition-fast);
}

.trust-seal-item:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.trust-seal-item .seal-icon {
  font-size: 13px;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.final-cta-btns .btn-lg {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-cta-btns .btn-arrow {
  transition: transform 0.25s ease;
}

.final-cta-btns .btn-lg:hover .btn-arrow {
  transform: translateX(4px);
}

.final-cta-micro-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.section:has(.final-cta-card),
section:has(.final-cta-card) {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

@media (max-width: 768px) {
  .final-cta-card {
    padding: 32px 18px 24px;
  }
  .final-cta-title {
    font-size: 22px;
  }
  .final-cta-desc {
    font-size: 13.5px;
  }
  .final-cta-trust-bar {
    gap: 6px;
  }
  .trust-seal-item {
    font-size: 11px;
    padding: 5px 10px;
  }
  .final-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR ALL SCREENS & DEVICES
   ========================================================================== */

/* Laptops & Standard Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .hero-grid-layout {
    gap: 32px;
  }
  .industries-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets Landscape & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .projects-grid,
  .tech-stack-section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .industries-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .code-workbench-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-split-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-split-right {
    position: static;
  }
  .roadmap-phases-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats-grid-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Tablets Portrait & Large Mobiles (<= 768px) */
@media (max-width: 768px) {
  .services-grid,
  .projects-grid,
  .tech-stack-section-grid,
  .industries-bento-grid,
  .faq-accordion-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-glass-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 16px;
  }
  .stat-glass-card:last-child {
    border-bottom: none;
  }
  
  .stats-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .final-cta-card {
    padding: clamp(28px, 6vw, 40px) 20px 24px;
  }
  .final-cta-title {
    font-size: clamp(22px, 5vw, 28px);
  }
  .final-cta-desc {
    font-size: 13.5px;
  }
  .final-cta-trust-bar {
    gap: 6px;
  }
  .trust-seal-item {
    font-size: 11px;
    padding: 5px 10px;
  }
  .final-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile Screens (<= 520px) */
@media (max-width: 520px) {
  .stats-cards-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid-wrap {
    grid-template-columns: 1fr;
  }
  .hero-betterstack-form {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-work-email-input,
  .hero-submit-btn {
    width: 100%;
    height: 48px;
  }
  .service-card,
  .project-card,
  .industry-bento-tile {
    padding: 20px 16px;
  }
}

/* Touch Device Interactions */
@media (hover: none) {
  .service-card:hover,
  .project-card:hover,
  .industry-bento-tile:hover,
  .reason-card:hover {
    transform: none !important;
  }
}

/* ==========================================================================
   CALENDLY-STYLE 15-MIN STRATEGY CALL BOOKING MODAL (PREMIUM BETTERSTACK THEME)
   ========================================================================== */
.cc-booking-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 18, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.cc-booking-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cc-booking-modal {
  background: #090e1a;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 24px;
  width: 100%;
  max-width: 1040px;
  min-height: 560px;
  max-height: 88vh;
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(56, 189, 248, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(0.95) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cc-booking-backdrop.is-open .cc-booking-modal {
  transform: scale(1) translateY(0);
}

[data-theme="light"] .cc-booking-modal {
  background: #ffffff;
  border-color: rgba(0, 102, 204, 0.2);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12), 0 0 35px rgba(0, 102, 204, 0.08);
}

/* Close Button */
.cc-booking-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .cc-booking-close-btn {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #475569;
}

.cc-booking-close-btn:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.45);
  color: #ef4444;
  transform: rotate(90deg) scale(1.05);
}

/* Left Sidebar: Host & Meeting Overview */
.cc-booking-sidebar {
  width: 340px;
  min-width: 340px;
  background: rgba(13, 20, 36, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

[data-theme="light"] .cc-booking-sidebar {
  background: #f8fafc;
  border-right-color: #e2e8f0;
}

.cc-booking-host {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cc-host-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #1864ab 100%);
  border: 2px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.cc-host-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #090e1a;
  box-shadow: 0 0 8px #10b981;
}

[data-theme="light"] .cc-host-online-dot {
  border-color: #fff;
}

.cc-host-meta h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.cc-host-meta p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--cyan-400);
  font-weight: 600;
}

.cc-booking-event-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cc-booking-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-booking-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.cc-booking-badge-item .badge-icon {
  font-size: 15px;
  color: var(--cyan-400);
  width: 20px;
  text-align: center;
}

.cc-booking-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-tertiary, #94a3b8);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .cc-booking-desc {
  border-top-color: #e2e8f0;
  color: #64748b;
}

.cc-booking-topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-booking-topics-list li {
  font-size: 12.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.cc-booking-topics-list li::before {
  content: "✓";
  color: var(--cyan-400);
  font-weight: 800;
  flex-shrink: 0;
}

/* Timezone selector */
.cc-booking-tz-select-wrap {
  margin-top: auto;
  padding-top: 14px;
}

.cc-booking-tz-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
}

.cc-booking-tz-select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

[data-theme="light"] .cc-booking-tz-select {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* Right Content Area */
.cc-booking-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 30px 34px 34px;
  position: relative;
}

.cc-step-title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 48px; /* prevents overlapping close button */
}

.cc-slot-duration-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-400);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Step 1: DateTime Grid */
.cc-datetime-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 32px;
  flex: 1;
  align-items: start;
}

@media (max-width: 840px) {
  .cc-datetime-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Calendar Card */
.cc-calendar-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cc-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px;
}

.cc-calendar-month-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.cc-calendar-nav-btns {
  display: flex;
  gap: 8px;
}

.cc-cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="light"] .cc-cal-nav-btn {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.cc-cal-nav-btn:hover:not(:disabled) {
  background: var(--cyan-400);
  color: #000;
  border-color: var(--cyan-400);
  transform: translateY(-1px);
}

.cc-cal-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.cc-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  text-align: center;
}

.cc-cal-day-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 4px 0;
}

.cc-cal-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cc-cal-day-cell.available {
  background: rgba(56, 189, 248, 0.06);
  border-color: rgba(56, 189, 248, 0.2);
  color: var(--cyan-400);
  font-weight: 700;
}

[data-theme="light"] .cc-cal-day-cell.available {
  background: rgba(2, 132, 199, 0.07);
  border-color: rgba(2, 132, 199, 0.22);
  color: #0284c7;
}

.cc-cal-day-cell.available:hover {
  background: var(--cyan-400);
  color: #000000;
  border-color: var(--cyan-400);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.5);
}

.cc-cal-day-cell.selected {
  background: linear-gradient(135deg, #38bdf8 0%, #1864ab 100%) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  font-weight: 800;
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35), 0 6px 18px rgba(56, 189, 248, 0.45);
}

.cc-cal-day-cell.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  color: var(--text-secondary);
}

.cc-cal-day-cell.empty {
  cursor: default;
  background: transparent;
}

.cc-cal-day-cell.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #10b981;
}

/* Time Slots Column */
.cc-timeslots-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-slots-header {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
}

.cc-slots-count-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-400);
  background: rgba(56, 189, 248, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.cc-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 310px;
  overflow-y: auto;
  padding-right: 6px;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.3) rgba(255, 255, 255, 0.02);
}

.cc-slots-list::-webkit-scrollbar {
  width: 5px;
}
.cc-slots-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}
.cc-slots-list::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.25);
  border-radius: 6px;
}
.cc-slots-list::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-400);
}

.cc-slot-card {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.cc-slot-btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan-400);
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[data-theme="light"] .cc-slot-btn {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0284c7;
}

.cc-slot-btn:hover {
  border-color: var(--cyan-400);
  background: rgba(56, 189, 248, 0.12);
  transform: translateX(2px);
}

.cc-slot-card.is-selected .cc-slot-btn {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--cyan-400);
  color: #ffffff;
  font-weight: 800;
}

.cc-slot-confirm-btn {
  display: none;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  animation: ccFadeInRight 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(24, 100, 171, 0.4);
}

.cc-slot-confirm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.5);
}

.cc-slot-card.is-selected .cc-slot-confirm-btn {
  display: block;
}

@keyframes ccFadeInRight {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Step 2: Guest Form */
.cc-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.cc-back-btn:hover {
  transform: translateX(-3px);
}

.cc-selected-slot-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cc-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 640px) {
  .cc-form-row {
    grid-template-columns: 1fr;
  }
}

.cc-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc-form-input,
.cc-form-textarea,
.cc-form-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-size: 13.5px;
  font-family: inherit;
  transition: all 0.2s ease;
  outline: none;
}

[data-theme="light"] .cc-form-input,
[data-theme="light"] .cc-form-textarea,
[data-theme="light"] .cc-form-select {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

.cc-form-input:focus,
.cc-form-textarea:focus,
.cc-form-select:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.cc-form-input.error,
.cc-form-textarea.error,
.cc-form-select.error {
  border-color: #f43f5e !important;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.25) !important;
  background: rgba(244, 63, 94, 0.06) !important;
}

.field-error-hint {
  font-size: 11.5px;
  color: #f43f5e;
  display: none;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.cc-project-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-type-pill {
  padding: 7px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="light"] .cc-type-pill {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.cc-type-pill:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-400);
}

.cc-type-pill.is-active {
  background: rgba(56, 189, 248, 0.18);
  border-color: var(--cyan-400);
  color: var(--cyan-400);
  font-weight: 700;
}

.cc-schedule-submit-btn {
  margin-top: 10px;
  padding: 13px 24px;
  border-radius: 12px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(24, 100, 171, 0.45);
}

.cc-schedule-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.55);
}

.cc-schedule-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Step 3: Success Confirmed */
.cc-confirmed-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  gap: 18px;
  flex: 1;
}

.cc-success-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #10b981;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
  animation: ccPopCheck 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes ccPopCheck {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

.cc-confirmed-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.cc-confirmed-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 440px;
}

.cc-confirmed-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-theme="light"] .cc-confirmed-card {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.cc-confirmed-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-primary);
}

.cc-confirmed-row span:first-child {
  font-size: 16px;
  color: var(--cyan-400);
}

.cc-confirmed-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cc-cal-add-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

[data-theme="light"] .cc-cal-add-btn {
  background: #ffffff;
  border-color: #cbd5e1;
}

.cc-cal-add-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--cyan-400);
  color: var(--cyan-400);
}

/* Responsive Breakpoints for Modal */
@media (max-width: 860px) {
  .cc-booking-modal {
    flex-direction: column;
    max-height: 94vh;
  }
  .cc-booking-sidebar {
    width: 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
  }
  .cc-booking-desc, .cc-booking-topics-list {
    display: none;
  }
  .cc-booking-content {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   ENTERPRISE SECURITY & COMPLIANCE SHOWCASE (HIGH-END OBSIDIAN COCKPIT)
   ========================================================================== */
.security-showcase-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.7) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(6, 7, 10, 0.9) 100%);
  padding: 80px 0;
}

[data-theme="light"] .security-showcase-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top-color: #e2e8f0;
}

/* 4-KPI Telemetry Ribbon */
.sec-telemetry-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(13, 20, 36, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 32px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .sec-telemetry-ribbon {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .sec-telemetry-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .sec-telemetry-ribbon {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.sec-telemetry-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-status-dot {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--emerald-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.kpi-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.kpi-label {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* 3-Card Security Bento Grid */
.sec-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 960px) {
  .sec-bento-grid {
    grid-template-columns: 1fr;
  }
}

.sec-bento-card {
  background: rgba(13, 20, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.sec-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 30px -5px rgba(56, 189, 248, 0.15);
}

.sec-bento-card.sec-featured-card {
  background: linear-gradient(180deg, rgba(16, 26, 48, 0.85) 0%, rgba(11, 18, 33, 0.95) 100%);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.1);
}

[data-theme="light"] .sec-bento-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .sec-bento-card.sec-featured-card {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.1);
}

.sec-bento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sec-bento-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sec-bento-pill {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.sec-bento-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.sec-bento-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.sec-bento-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.sec-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

[data-theme="light"] .sec-chip {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

/* Security Cockpit Action Footer */
.sec-cockpit-footer-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 15, 29, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 35px -5px rgba(56, 189, 248, 0.12);
  position: relative;
  overflow: hidden;
}

.sec-cockpit-footer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-400), var(--cyan-400), transparent);
}

[data-theme="light"] .sec-cockpit-footer-banner {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.sec-cockpit-left {
  max-width: 620px;
}

.sec-cockpit-signal-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.sec-cockpit-status-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.sec-cockpit-subtext {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.sec-cockpit-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================
   READING PROGRESS BAR
   ========================================== */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px !important;
  max-height: 3px !important;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
  z-index: 99999;
  transition: width 0.1s linear;
  pointer-events: none !important;
}

/* ==========================================
   CMD + K SPOTLIGHT SEARCH MODAL
   ========================================== */
.spotlight-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99990;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
}

.spotlight-modal.active {
  display: flex;
}

.spotlight-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}

.spotlight-dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(56, 189, 248, 0.15);
  overflow: hidden;
  animation: slideDownFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.spotlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.spotlight-search-icon {
  font-size: 18px;
  opacity: 0.7;
}

.spotlight-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--font-sans, inherit);
}

.spotlight-input::placeholder {
  color: #64748b;
}

.spotlight-kbd {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
}

.spotlight-body {
  max-height: 380px;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.spotlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #e2e8f0;
  transition: all 0.15s ease;
  cursor: pointer;
}

.spotlight-item:hover,
.spotlight-item.selected {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #ffffff;
  transform: translateX(4px);
}

.spotlight-item-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.spotlight-item-text {
  flex-grow: 1;
  min-width: 0;
}

.spotlight-item-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.spotlight-item-badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.spotlight-item-desc {
  font-size: 12.5px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-item-arrow {
  color: #38bdf8;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.spotlight-item.selected .spotlight-item-arrow,
.spotlight-item:hover .spotlight-item-arrow {
  opacity: 1;
}

.spotlight-empty {
  padding: 40px 20px;
  text-align: center;
  color: #94a3b8;
}

.spotlight-empty span {
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  display: block;
  margin-bottom: 6px;
}

.spotlight-empty p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  color: #64748b;
}

.spotlight-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   DIGITAL MARKETING & GROWTH ENGINE (CARDLESS EDITORIAL COCKPIT)
   ========================================================================== */
.digital-growth-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at 50% 10%, rgba(251, 191, 36, 0.05) 0%, transparent 60%), var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.growth-pillar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.growth-gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-break {
  display: inline;
}

@media (max-width: 768px) {
  .desktop-break {
    display: none;
  }
}

/* Cockpit Layout (Cardless Fluid Grid) */
.growth-cockpit-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 1024px) {
  .growth-cockpit-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Left Column: Editorial Connected Timeline Track */
.growth-pipeline-col {
  display: flex;
  flex-direction: column;
}

.growth-pipeline-header {
  margin-bottom: 28px;
}

.growth-subheading-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-400);
  display: block;
  margin-bottom: 6px;
}

.growth-column-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.growth-timeline-track {
  display: flex;
  flex-direction: column;
  position: relative;
}

.growth-step-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  cursor: pointer;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  position: relative;
}

.growth-step-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.growth-step-row.active {
  background: rgba(251, 191, 36, 0.05);
  border-left: 2px solid var(--amber-400);
}

.growth-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.growth-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  transition: all 0.25s ease;
  z-index: 2;
}

.growth-step-row.active .growth-step-circle {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  border-color: #fbbf24;
  color: #020617;
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.5);
  transform: scale(1.08);
}

.growth-step-line {
  position: absolute;
  top: 42px;
  bottom: -20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.growth-step-row.active .growth-step-line {
  background: linear-gradient(to bottom, rgba(251, 191, 36, 0.6), rgba(255, 255, 255, 0.1));
}

.growth-step-body {
  display: flex;
  flex-direction: column;
}

.growth-step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.growth-cat-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
}

.growth-cat-badge.seo {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.growth-cat-badge.paid {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.growth-cat-badge.cro {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.growth-cat-badge.authority {
  background: rgba(192, 132, 252, 0.12);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.25);
}

.growth-impact-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--amber-400);
}

.growth-step-heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.growth-step-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 12px;
}

.growth-deliverables-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.deliverable-pill {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

/* Right Column: High-Tech Telemetry Cockpit (Unified Glass Panel) */
.growth-telemetry-col {
  position: sticky;
  top: 100px;
}

.growth-telemetry-panel {
  background: rgba(11, 13, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 35px -5px rgba(251, 191, 36, 0.12);
  overflow: hidden;
}

.growth-telemetry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-terminal-dots {
  display: flex;
  gap: 6px;
}

.growth-terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.growth-terminal-dots .dot.red { background: #ff5f56; }
.growth-terminal-dots .dot.yellow { background: #ffbd2e; }
.growth-terminal-dots .dot.green { background: #27c93f; }

.growth-terminal-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.growth-live-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: #10b981;
}

/* Channel Switcher Tabs */
.growth-channel-switcher {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.growth-channel-switcher::-webkit-scrollbar {
  display: none;
}

.growth-channel-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.growth-channel-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.growth-channel-btn.active {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fbbf24;
}

/* Telemetry Screen */
.growth-telemetry-screen {
  padding: 24px;
}

/* Live KPI Metric HUD */
.growth-kpi-hud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.kpi-hud-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.kpi-hud-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}

.kpi-hud-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}

.kpi-hud-value.text-emerald { color: #34d399; }
.kpi-hud-value.text-amber { color: #fbbf24; }
.kpi-hud-value.text-cyan { color: #38bdf8; }
.kpi-hud-value.text-purple { color: #c084fc; }

.kpi-hud-sub {
  font-size: 11.5px;
  color: #94a3b8;
}

/* Growth Stream Logs Terminal */
.growth-stream-terminal {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}

.stream-terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-tab-label {
  color: #94a3b8;
}

.stream-code-tag {
  color: var(--amber-400);
}

.stream-logs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stream-log-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stream-log-entry:last-child {
  border-bottom: none;
}

.log-badge {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.log-badge.done {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.log-badge.active {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.log-badge.next {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}

.log-title {
  flex-grow: 1;
  color: #e2e8f0;
  font-weight: 500;
}

.log-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #64748b;
  white-space: nowrap;
}

/* Impact Summary Banner */
.growth-impact-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-sm);
}

.impact-banner-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.impact-banner-content strong {
  display: block;
  font-size: 12.5px;
  color: #ffffff;
  margin-bottom: 2px;
}

.impact-banner-content p {
  font-size: 11.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

/* Telemetry Actions */
.growth-telemetry-actions {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-action-btn {
  flex: 1;
  font-size: 13px;
  padding: 10px 16px;
  text-align: center;
}

/* Bottom Credentials Strip */
.growth-credentials-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

@media (max-width: 860px) {
  .growth-credentials-strip {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .credential-separator {
    display: none;
  }
}

.growth-credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.credential-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.credential-text strong {
  display: block;
  font-size: 14.5px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2px;
}

.credential-text span {
  font-size: 12px;
  color: #94a3b8;
}

.credential-separator {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}
