/* Global Styles & Variables */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', var(--font-sans);
  --font-mono: 'Fira Code', monospace;

  /* Colors */
  --bg-main: #070a13;
  --bg-card: rgba(15, 22, 42, 0.65);
  --bg-card-hover: rgba(23, 33, 61, 0.8);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(255, 255, 255, 0.15);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-bright: #ffffff;
  
  /* Accent HSL Colors */
  --color-iam-hsl: 190, 100%, 50%; /* Cyan */
  --color-iam: hsl(var(--color-iam-hsl));
  
  --color-clm-hsl: 145, 80%, 48%; /* Emerald */
  --color-clm: hsl(var(--color-clm-hsl));
  
  --color-kube-hsl: 275, 100%, 65%; /* Purple */
  --color-kube: hsl(var(--color-kube-hsl));
  
  --color-neutral-glow: rgba(99, 102, 241, 0.15);
  
  /* Gradients */
  --grad-hero: linear-gradient(135deg, hsl(220, 80%, 15%) 0%, hsl(260, 60%, 10%) 100%);
  --grad-text: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  --grad-iam: linear-gradient(135deg, hsl(190, 100%, 50%) 0%, hsl(210, 100%, 45%) 100%);
  --grad-clm: linear-gradient(135deg, hsl(145, 80%, 48%) 0%, hsl(165, 80%, 40%) 100%);
  --grad-kube: linear-gradient(135deg, hsl(275, 100%, 65%) 0%, hsl(250, 100%, 60%) 100%);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-backdrop: blur(12px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #374151;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-bright);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-color);
  backdrop-filter: var(--glass-backdrop);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-color-glow);
  transform: translateY(-2px);
  color: #fff;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.w-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 10, 19, 0.75);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}

/* Logo image sizing for site header/footer */
.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  background: var(--grad-kube);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(7, 10, 19, 0.95);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
  color: #fff;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: hsl(260, 100%, 50%);
  top: -100px;
  right: -50px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: hsl(190, 100%, 50%);
  bottom: 0px;
  left: -100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  gap: 10px;
}

.badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3b82f6;
}

.badge-line {
  width: 1px;
  height: 12px;
  background: var(--border-color);
}

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

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  width: 100%;
}

.hero-trust p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.trust-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 3D Rotating Cube Graphic & Panels */
.hero-graphic {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-canvas-box {
  perspective: 1000px;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-container {
  width: 160px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 16s infinite linear;
}

.cube-face {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(15, 23, 42, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: visible;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.cube-front  { transform: rotateY(  0deg) translateZ(80px); border-color: var(--color-iam); }
.cube-back   { transform: rotateY(180deg) translateZ(80px); border-color: var(--color-kube); }
.cube-right  { transform: rotateY( 90deg) translateZ(80px); border-color: var(--color-clm); }
.cube-left   { transform: rotateY(-90deg) translateZ(80px); border-color: rgba(99, 102, 241, 0.8); }
.cube-top    { transform: rotateX( 90deg) translateZ(80px); background: rgba(15, 23, 42, 0.4); }
.cube-bottom { transform: rotateX(-90deg) translateZ(80px); background: rgba(15, 23, 42, 0.4); }

.face-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cube-icon {
  width: 36px;
  height: 36px;
}

.face-content span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

@keyframes rotateCube {
  0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(720deg) rotateZ(360deg); }
}

/* Floating UI Panels overlay */
.floating-panel {
  position: absolute;
  background: rgba(15, 22, 42, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  width: 220px;
  backdrop-filter: var(--glass-backdrop);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.panel-iam {
  top: 10%;
  left: -5%;
  border-left: 3px solid var(--color-iam);
}

.panel-kube {
  bottom: 10%;
  right: -5%;
  border-left: 3px solid var(--color-kube);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

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

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

.panel-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: auto;
}

.panel-body {
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bar-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.bar {
  background: var(--grad-kube);
  height: 100%;
}

.pulse-indicator-green {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.animate-float-1 {
  animation: floatPanel1 6s ease-in-out infinite alternate;
}

.animate-float-2 {
  animation: floatPanel2 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatPanel1 {
  0% { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatPanel2 {
  0% { transform: translateY(0px) rotate(1deg); }
  100% { transform: translateY(15px) rotate(-1deg); }
}

/* Sections General */
section {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3b82f6;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 0;
}

.product-card:hover .card-glow {
  opacity: 0.15;
}

.card-iam .card-glow { background: radial-gradient(circle at 50% 0%, var(--color-iam) 0%, transparent 65%); }
.card-clm .card-glow { background: radial-gradient(circle at 50% 0%, var(--color-clm) 0%, transparent 65%); }
.card-kube .card-glow { background: radial-gradient(circle at 50% 0%, var(--color-kube) 0%, transparent 65%); }

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 28px;
  height: 28px;
}

.card-iam .card-icon-wrapper { background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.2); color: var(--color-iam); }
.card-clm .card-icon-wrapper { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: var(--color-clm); }
.card-kube .card-icon-wrapper { background: rgba(167, 139, 250, 0.1); border: 1px solid rgba(167, 139, 250, 0.2); color: var(--color-kube); }

.product-name {
  font-size: 1.6rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.feature-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.card-iam .product-btn { color: var(--color-iam); }
.card-clm .product-btn { color: var(--color-clm); }
.card-kube .product-btn { color: var(--color-kube); }

.product-btn i {
  transition: var(--transition-smooth);
}

.product-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================
   Technical Specifications Detailed Tabs
   ========================================== */
.specs-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: rgba(10, 15, 30, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.specs-sidebar {
  border-right: 1px solid var(--border-color);
  background: rgba(15, 23, 42, 0.3);
  padding: 24px;
}

.specs-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: 1px solid transparent;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 8px;
}

.specs-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
}

#specs-tab-iam.active { background: rgba(6, 182, 212, 0.08); border-color: rgba(6, 182, 212, 0.2); }
#specs-tab-clm.active { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); }
#specs-tab-kube.active { background: rgba(167, 139, 250, 0.08); border-color: rgba(167, 139, 250, 0.2); }

#specs-tab-iam.active .tab-icon { color: var(--color-iam); }
#specs-tab-clm.active .tab-icon { color: var(--color-clm); }
#specs-tab-kube.active .tab-icon { color: var(--color-kube); }

.specs-tab.active .tab-title {
  color: #fff;
}

.specs-display {
  background: rgba(15, 23, 42, 0.15);
  position: relative;
  min-height: 520px;
}

.specs-content {
  display: none;
  height: 100%;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.specs-content.active {
  display: block;
}

.specs-inner {
  padding: 40px;
}

.specs-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.specs-heading {
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.specs-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.specs-feature-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.specs-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specs-feature-row h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-bright);
}

.specs-feature-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Technical Detail Sheet Table */
.specs-technical-sheet {
  background: #05070c;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: fit-content;
}

.specs-technical-sheet h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
  width: 100%;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, 
.specs-table td {
  padding: 12px 0;
  font-size: 0.85rem;
  vertical-align: top;
}

.specs-table th {
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  width: 40%;
}

.specs-table td {
  color: var(--text-main);
  text-align: left;
  padding-left: 12px;
}

.specs-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Solutions Feature Blocks */
.solutions-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.sol-feature-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.sol-feature-block.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.sol-feature-block.reverse .sol-info {
  grid-column: 2;
}
.sol-feature-block.reverse .sol-visual {
  grid-column: 1;
  grid-row: 1;
}

.sol-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.sol-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.sol-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sol-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sol-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.sol-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
}

.sol-visual {
  display: flex;
  justify-content: center;
}

.flow-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.flow-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 10px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.glow-border-iam {
  border-color: var(--color-iam);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #fff;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--text-muted);
}

.clm-stats-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Developers Operator Showcase Section */
.dev-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
}

.dev-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.dev-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-kube);
  margin-bottom: 16px;
}

.inline-icon {
  width: 16px;
  height: 16px;
}

.dev-info h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.dev-info p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.dev-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 16px;
}

.benefit i {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.benefit h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.dev-code {
  background: #05070c;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 10px;
}

.terminal-body {
  padding: 24px;
  margin: 0;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.code-keyword {
  color: #f472b6;
}

/* Contact / Lead Form Section */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(100px);
  bottom: -200px;
  right: -100px;
  z-index: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: var(--glass-backdrop);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #090d16;
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.25);
}

.form-success-message {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 20px;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.success-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
  flex-shrink: 0;
}

.form-success-message h4 {
  color: #10b981;
  font-size: 1rem;
  margin-bottom: 4px;
}

.form-success-message p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hidden {
  display: none !important;
}

/* Footer Section */
.footer {
  background: #04060b;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-color-glow);
  color: #fff;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  background: #090d16;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 50px 12px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  border-color: #3b82f6;
  outline: none;
}

.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #3b82f6;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background: #1d4ed8;
}

.newsletter-status {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #10b981;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Color definitions */
.font-iam { color: var(--color-iam); }
.font-clm { color: var(--color-clm); }
.font-kube { color: var(--color-kube); }
.color-iam { color: var(--color-iam); }
.color-clm { color: var(--color-clm); }
.color-kube { color: var(--color-kube); }

/* Utility Alignment Classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.h-36 { height: 144px; }
.font-sans { font-family: var(--font-sans); }
.font-medium { font-weight: 500; }
.mt-4 { margin-top: 16px; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container,
  .sol-feature-block,
  .sol-feature-block.reverse,
  .dev-grid,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sol-feature-block.reverse .sol-info,
  .sol-feature-block.reverse .sol-visual {
    grid-column: auto;
    grid-row: auto;
  }
  
  .hero-graphic {
    order: -1;
    height: 350px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .specs-wrapper {
    grid-template-columns: 1fr;
  }
  
  .specs-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .specs-sidebar .sidebar-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .specs-tab {
    flex-shrink: 0;
    width: auto;
    margin-bottom: 0;
  }
  
  .specs-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .nav-menu,
  .nav-btn-hide {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
