/* ==============================================================================
   Pushpit Technologies (pushpit.in) - Master Stylesheet
   Modern Enterprise DevOps & Cloud Engineering Theme
   ============================================================================== */

:root {
  --bg-dark: #060a12;
  --bg-surface: #0a1122;
  --bg-card: #0e172e;
  --border-dim: #1e293b;
  --border-glow: rgba(0, 242, 254, 0.3);
  
  --primary: #00f2fe;
  --primary-glow: rgba(0, 242, 254, 0.4);
  --accent: #38bdf8;
  --indigo: #818cf8;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  
  --text-main: #f8fafc;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(0, 242, 254, 0.15);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(129, 140, 248, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-dim);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}

code, pre {
  font-family: var(--font-mono);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.brand-tag {
  font-size: 0.68rem;
  color: var(--primary);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* Navigation Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  list-style: none;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -10px;
  min-width: 320px;
  background: #090f1e;
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 12px;
  padding: 0.6rem 0.5rem;
  list-style: none;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 242, 254, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 150;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.15s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(0, 242, 254, 0.08);
  color: #fff;
  padding-left: 1.1rem;
}

.dropdown-item.directory-link {
  color: var(--primary);
  font-weight: 700;
  background: rgba(0, 242, 254, 0.05);
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.4rem 0.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta-btn {
  font-size: 0.88rem;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
}

/* Perfectly Centered & Sized Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(14, 23, 46, 0.8);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  color: var(--text-main);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--primary);
}

.hamburger-box {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.mobile-menu-btn.active .line-1 {
  transform: translateY(6px) rotate(45deg);
  background-color: var(--primary);
}

.mobile-menu-btn.active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .line-3 {
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Slide-down Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 10, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  z-index: 99;
  padding: 1.5rem 0 2.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.mobile-nav-link span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary);
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  background: rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.2);
  color: var(--primary);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-mobile-cta {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  text-align: center;
}

.mobile-contact-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

body.menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #030712;
  box-shadow: 0 4px 18px rgba(0, 242, 254, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--border-dim);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 7rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span.gradient {
  background: linear-gradient(135deg, #00f2fe 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dim);
}

.metric-item .val {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
}

.metric-item .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Interactive Pipeline Simulator (Hero Graphic) */
.pipeline-card {
  background: rgba(14, 23, 46, 0.9);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
}

.pipeline-header {
  background: #090f1f;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mac-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.pipeline-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pipeline-body {
  padding: 1.5rem;
}

.pipeline-stages {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.pipeline-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #080d1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  transition: all 0.3s;
}

.stage-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stage-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.status-passed { background: rgba(16, 185, 129, 0.2); color: var(--emerald); border: 1px solid var(--emerald); }
.status-running { background: rgba(0, 242, 254, 0.2); color: var(--primary); border: 1px solid var(--primary); animation: pulse 1.5s infinite; }
.status-pending { background: rgba(100, 116, 139, 0.2); color: var(--text-muted); border: 1px solid #334155; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.terminal-logs {
  background: #04070e;
  border: 1px solid #131d33;
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #38bdf8;
  height: 90px;
  overflow-y: auto;
  line-height: 1.5;
}

.terminal-logs .log-time { color: var(--text-muted); }
.terminal-logs .log-ok { color: var(--emerald); }

.pipeline-trigger {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.btn-trigger {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-trigger:hover {
  background: var(--primary);
  color: #030712;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  outline: none;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 242, 254, 0.14), 0 0 0 1px rgba(0, 242, 254, 0.2);
}

.service-card:active {
  transform: translateY(-2px);
}

.service-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.4);
}

.service-card:hover .service-icon {
  background: rgba(0, 242, 254, 0.2);
  border-color: var(--primary);
  transform: scale(1.05);
}

.service-card:hover .service-details-link {
  gap: 0.8rem;
  color: #fff;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-dim);
  padding-top: 1.25rem;
}

.feature-bullets li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-bullets li::before {
  content: "▹";
  color: var(--primary);
  font-weight: bold;
}

/* Interactive ROI & Cloud Cost Calculator */
.calc-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.calc-val-badge {
  color: var(--primary);
  font-family: var(--font-mono);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.provider-pills {
  display: flex;
  gap: 0.75rem;
}

.pill-btn {
  flex: 1;
  background: #090f1f;
  border: 1px solid var(--border-dim);
  color: var(--text-dim);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

.pill-btn.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.calc-output {
  background: #080d1a;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
}

.calc-metric {
  margin-bottom: 1.75rem;
}

.calc-metric .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-mono);
  line-height: 1.1;
}

.calc-metric .amount-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.calc-breakdown {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-dim);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.sub-metric strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
  font-family: var(--font-mono);
}

.sub-metric span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Toolchain / Stack Matrix */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.stack-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.2s;
}

.stack-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  background: var(--bg-card);
}

.stack-item .tool-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.stack-item .tool-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-family: var(--font-mono);
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.case-client {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.case-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.case-card .challenge-box {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--border-dim);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  border-top: 1px solid var(--border-dim);
  padding-top: 1.25rem;
}

.results-list li {
  font-size: 0.85rem;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
}

.results-list li::before {
  content: "✔";
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact / Consultation Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-dim);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}

.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.info-card strong {
  display: block;
  font-size: 0.95rem;
}

.info-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
}

.form-group input, .form-group select, .form-group textarea {
  background: #080d1a;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.15);
}

.form-alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-alert.success { background: rgba(16, 185, 129, 0.15); border: 1px solid var(--emerald); color: #6ee7b7; }
.form-alert.error { background: rgba(239, 68, 68, 0.15); border: 1px solid var(--rose); color: #fca5a5; }

/* Footer */
.site-footer {
  background: #03060c;
  border-top: 1px solid var(--border-dim);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==============================================================================
   Comprehensive Multi-Device Responsive Architecture
   Tailored for Desktops, Laptops, Tablets, Large Mobiles, and Small Phones
   ============================================================================== */

/* 1. Large Monitors & Desktops (min-width: 1440px) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  .hero-content h1 {
    font-size: 3.8rem;
  }
  .services-grid {
    gap: 2rem;
  }
  .calc-box {
    padding: 3.5rem;
  }
}

/* 2. Laptops & Compact Desktops (1025px to 1280px) */
@media (max-width: 1280px) {
  .container {
    max-width: 1060px;
    padding: 0 1.5rem;
  }
  .hero-grid {
    gap: 2.5rem;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-content h1 {
    font-size: 2.85rem;
  }
  .hero-lede {
    font-size: 1.1rem;
  }
  .hero-metrics {
    gap: 1rem;
  }
  .services-grid {
    gap: 1.35rem;
  }
  .service-card {
    padding: 1.75rem;
  }
  .calc-grid {
    gap: 2rem;
  }
  .calc-box {
    padding: 2.25rem;
  }
  .case-studies-grid, .testimonials-grid {
    gap: 1.35rem;
  }
  .contact-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr 1.2fr;
  }
}

/* 3. Tablets - Landscape & Portrait (769px to 1024px) */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .nav-inner {
    height: 70px;
  }
  .mobile-nav-overlay {
    top: 70px;
  }
  .section {
    padding: 4.5rem 0;
  }
  .section-head {
    margin-bottom: 2.75rem;
  }
  .hero-section {
    padding: 3.5rem 0 5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 740px;
    margin: 0 auto;
  }
  .hero-content h1 {
    font-size: 2.45rem;
  }
  .hero-lede {
    font-size: 1.1rem;
  }
  .hero-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .metric-item .val {
    font-size: 1.75rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card {
    padding: 1.75rem;
  }
  .service-icon {
    width: 44px;
    height: 44px;
  }
  .service-icon svg {
    width: 22px;
    height: 22px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .calc-box {
    padding: 2rem;
  }
  .provider-pills {
    flex-wrap: wrap;
  }
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 4. Large Mobile & Phablets (481px to 768px) */
@media (max-width: 768px) {
  .nav-inner {
    height: 68px;
  }
  .mobile-nav-overlay {
    top: 68px;
  }
  .brand-logo-img {
    width: 34px;
    height: 34px;
  }
  .brand-name {
    font-size: 1.25rem;
  }
  .brand-tag {
    font-size: 0.62rem;
  }
  .nav-cta-btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
  .section {
    padding: 3.75rem 0;
  }
  .section-head {
    margin-bottom: 2.25rem;
  }
  .hero-section {
    padding: 3rem 0 4rem;
  }
  .hero-content h1 {
    font-size: 2.15rem;
  }
  .hero-lede {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }
  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    flex: 1;
  }
  /* Executive 2x2 grid for metrics on mobile instead of giant 1-col */
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    padding-top: 1.75rem;
  }
  .metric-item .val {
    font-size: 1.65rem;
  }
  .metric-item .lbl {
    font-size: 0.78rem;
  }
  .pipeline-card {
    border-radius: var(--radius-md);
  }
  .pipeline-body {
    padding: 1.25rem;
  }
  .pipeline-stage {
    font-size: 0.78rem;
    padding: 0.65rem 0.85rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-icon {
    width: 44px;
    height: 44px;
  }
  .service-icon svg {
    width: 22px;
    height: 22px;
  }
  .calc-box {
    padding: 1.75rem;
    border-radius: var(--radius-md);
  }
  .provider-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .calc-output {
    padding: 1.75rem;
  }
  .calc-metric .amount {
    font-size: 2.3rem;
  }
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .case-card {
    padding: 1.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .contact-form-box {
    padding: 1.75rem;
    border-radius: var(--radius-md);
  }
  .form-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* 5. Mobile Devices (320px to 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .nav-inner {
    height: 64px;
  }
  .mobile-nav-overlay {
    top: 64px;
    padding: 1rem 0 2rem;
  }
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }
  .brand-name {
    font-size: 1.18rem;
  }
  .brand-tag {
    display: none; /* Hide secondary tagline on small phones to ensure perfect single-row header */
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-cta-btn {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
  }
  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .hamburger-box {
    width: 18px;
    height: 13px;
  }
  .mobile-nav-link {
    font-size: 0.98rem;
    padding: 0.75rem 0.85rem;
  }
  .section {
    padding: 2.75rem 0;
  }
  .section-head {
    margin-bottom: 2rem;
  }
  .section-kicker {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }
  .hero-section {
    padding: 2.25rem 0 3.5rem;
  }
  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-lede {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
    padding-top: 1.25rem;
  }
  .metric-item .val {
    font-size: 1.4rem;
  }
  .metric-item .lbl {
    font-size: 0.72rem;
  }
  .pipeline-header {
    padding: 0.75rem 1rem;
  }
  .pipeline-title {
    font-size: 0.72rem;
  }
  .pipeline-body {
    padding: 1rem;
  }
  .pipeline-stages {
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .pipeline-stage {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }
  .stage-left {
    width: 100%;
    gap: 0.5rem;
    font-size: 0.75rem;
  }
  .stage-indicator {
    width: 16px;
    height: 16px;
    font-size: 0.58rem;
    flex-shrink: 0;
  }
  .terminal-logs {
    height: 75px;
    font-size: 0.72rem;
    padding: 0.65rem;
  }
  .btn-trigger {
    width: 100%;
    padding: 0.55rem;
    text-align: center;
  }
  .service-card {
    padding: 1.25rem;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .service-icon svg {
    width: 20px;
    height: 20px;
  }
  .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
  .service-card p {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }
  .feature-bullets {
    padding-top: 1rem;
    gap: 0.4rem;
  }
  .feature-bullets li {
    font-size: 0.8rem;
  }
  .calc-box {
    padding: 1.25rem;
  }
  .provider-pills {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .pill-btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.35rem;
  }
  .calc-group label {
    font-size: 0.82rem;
  }
  .calc-val-badge {
    font-size: 0.78rem;
  }
  .calc-output {
    padding: 1.25rem;
  }
  .calc-metric .amount {
    font-size: 1.95rem;
  }
  .calc-metric .amount-label {
    font-size: 0.75rem;
  }
  .calc-breakdown {
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-bottom: 1.25rem;
  }
  .sub-metric strong {
    font-size: 1.1rem;
  }
  #btnApplyCalculator {
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
  }
  .case-card {
    padding: 1.25rem;
  }
  .case-card h3 {
    font-size: 1.15rem;
  }
  .challenge-box {
    font-size: 0.82rem;
    padding: 0.65rem 0.75rem;
  }
  .testimonial-card {
    padding: 1.25rem;
  }
  .testimonial-text {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }
  .contact-info h3 {
    font-size: 1.45rem;
  }
  .contact-info p {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }
  .info-cards {
    gap: 0.85rem;
  }
  .info-card {
    padding: 0.85rem 1rem;
  }
  .info-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .info-card strong {
    font-size: 0.88rem;
  }
  .info-card span {
    font-size: 0.78rem;
  }
  .contact-form-box {
    padding: 1.25rem;
  }
  .contact-form-box h4 {
    font-size: 1.2rem;
  }
  .form-group label {
    font-size: 0.82rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px; /* Prevents auto-zooming on mobile iOS Safari */
    padding: 0.75rem 0.85rem;
  }
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-top {
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1.5rem;
  }
}

/* 6. Ultra-Compact Phones (< 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .nav-cta-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.74rem;
  }
  .hero-content h1 {
    font-size: 1.55rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ==============================================================================
   7. Dedicated Service Landing Pages & Capabilities Styles
   ============================================================================== */

.service-landing-hero {
  padding: 3.5rem 0 5rem;
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.service-breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.service-hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.service-hero-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.kicker-icon {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
}

.kicker-icon svg {
  width: 18px;
  height: 18px;
}

/* Service Blueprint Card */
.service-blueprint-card {
  background: rgba(14, 23, 46, 0.95);
  border: 1px solid rgba(0, 242, 254, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 242, 254, 0.1);
}

.blueprint-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.blueprint-bullets li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.check-icon {
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

.blueprint-sla-box {
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
}

.sla-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.12);
}

.cap-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--primary);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.cap-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cap-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cap-deliverables {
  margin-top: auto;
  border-top: 1px solid var(--border-dim);
  padding-top: 1rem;
}

.cap-deliverables-title {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.cap-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cap-bullet-list li {
  font-size: 0.84rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.cap-bullet-list li::before {
  content: "▹";
  color: var(--primary);
  flex-shrink: 0;
}

/* Process Steps Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(0, 242, 254, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-phase {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.process-step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.process-step-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.step-deliverable {
  margin-top: auto;
  border-top: 1px solid var(--border-dim);
  padding-top: 0.85rem;
  font-size: 0.82rem;
}

.deliverable-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.step-deliverable strong {
  color: #fff;
  font-size: 0.82rem;
}

/* Tech Stack Grid */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.tech-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.tech-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.tech-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.tech-highlight {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Business Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
}

.benefit-metric-box {
  margin-bottom: 1rem;
}

.benefit-metric {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  font-family: var(--font-mono);
}

.benefit-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Target Use Cases Grid */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.target-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.target-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.target-pain {
  background: rgba(244, 63, 94, 0.08);
  border-left: 3px solid var(--rose);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #fecdd3;
  margin-bottom: 1rem;
}

.target-outcome {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--emerald);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #a7f3d0;
}

/* Featured Case Box */
.featured-case-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.case-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.case-verified-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.case-challenge-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.case-challenge-solution-grid h5 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.case-challenge-solution-grid p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.case-results-bar h5 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--primary);
  margin-left: 1rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.faq-item:not(.active) .faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Consultation Grid */
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hl-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-hl-item strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-hl-item span {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.consultation-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.consultation-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

/* Link on service card */
.service-details-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  padding-top: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-details-link:hover {
  gap: 0.8rem;
  color: #fff;
}

/* All Services Directory Page */
.services-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-directory-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-directory-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.12);
}

.dir-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.dir-card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--primary);
  display: block;
}

.dir-card-title-wrap h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.dir-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.dir-card-highlights {
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border-dim);
  padding-top: 1rem;
}

.dir-hl-label {
  font-size: 0.74rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dir-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dir-bullets li {
  font-size: 0.84rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dir-bullets li::before {
  content: "▹";
  color: var(--primary);
}

.dir-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
  margin-bottom: 1.25rem;
  background: rgba(0, 242, 254, 0.04);
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.dir-stat-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.dir-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Responsive adjustments for service pages */
@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .capabilities-grid,
  .services-directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps-grid,
  .tech-stack-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .target-grid {
    grid-template-columns: 1fr;
  }
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Client Consultation Booking & Tabs */
.booking-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.5rem;
  gap: 4px;
}

.booking-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.booking-tab-btn.active {
  background: var(--bg-card);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 242, 254, 0.3);
}

.booking-tab-btn:hover:not(.active) {
  color: var(--primary);
}

/* Time Slots Grid */
.slots-container {
  margin-top: 0.5rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.slot-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.55rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.slot-btn:hover:not(.disabled) {
  border-color: var(--primary);
  color: #fff;
  background: rgba(0, 242, 254, 0.08);
}

.slot-btn.active {
  background: rgba(0, 242, 254, 0.18);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.2);
}

.slot-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.2);
  text-decoration: line-through;
}

/* Meeting Platform Selector */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0.4rem;
}

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

.platform-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 0.65rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.platform-card input[type="radio"] {
  display: none;
}

.platform-card .platform-icon {
  font-size: 1.25rem;
  display: block;
}

.platform-card .platform-name {
  font-size: 0.78rem;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
  color: var(--text-dim);
}

.platform-card:hover {
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.04);
}

.platform-card.selected {
  border-color: var(--primary);
  background: rgba(0, 242, 254, 0.12);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.platform-card.selected .platform-name {
  color: #fff;
}

/* Service Subnav (Sticky page navigation for landing pages) */
.service-subnav {
  position: sticky;
  top: 74px;
  z-index: 90;
  background: rgba(6, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0;
  transition: top 0.2s ease;
}

.subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.subnav-inner::-webkit-scrollbar {
  display: none;
}

.subnav-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subnav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.subnav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.subnav-link:hover,
.subnav-link.active {
  color: var(--primary);
  background: rgba(0, 242, 254, 0.08);
}

.subnav-cta {
  font-size: 0.78rem !important;
  padding: 0.35rem 0.85rem !important;
  white-space: nowrap;
}

/* Mobile sub-menu styles */
.mobile-nav-group {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 1.75rem;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

.mobile-sublink {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s ease;
}

.mobile-sublink:hover {
  color: var(--primary);
}

.btn-sm {
  padding: 0.4rem 0.85rem !important;
  font-size: 0.8rem !important;
}

@media (max-width: 768px) {
  .capabilities-grid,
  .services-directory-grid,
  .process-steps-grid,
  .tech-stack-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .case-challenge-solution-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .consultation-form-card {
    padding: 1.5rem;
  }
}
