/* =========================================================================
   Enki Tech | Corporate Website Styles
   ========================================================================= */

/* --- Variables & Theming --- */
:root {
  /* Color Palette */
  --deep-blue: #1a2a6c;
  --deep-blue-dark: #0d163b;
  --steel-gray: #4a4a4a;
  --steel-gray-light: #6b6b6b;
  --bright-cyan: #00d4ff;
  --bright-cyan-glow: rgba(0, 212, 255, 0.4);
  --concrete-beige: #d9cba3;
  --accent-orange: #f36f21;
  --accent-orange-hover: #e05a0c;

  /* Neutral Colors / Dark Mode Base */
  --bg-dark: #0a0f1c;
  --bg-surface: #141c2f;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Glassmorphism & Effects */
  --glass-bg: rgba(13, 22, 59, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(0, 212, 255, 0.3);

  /* Layout */
  --nav-height: 100px;
  --container-width: 1280px;
  --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--bright-cyan);
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

.highlight {
  color: var(--bright-cyan);
}

.bg-cyan {
  background-color: var(--bright-cyan);
}

.bg-orange {
  background-color: var(--accent-orange);
}

.bg-gray {
  background-color: var(--steel-gray);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-orange-hover)
  );
  color: #fff;
  box-shadow: 0 4px 15px rgba(243, 111, 33, 0.3);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(243, 111, 33, 0.5);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-border);
  border-color: var(--text-light);
  color: #fff;
  transform: scale(1.02);
}

.btn-secondary:active {
  transform: scale(0.95);
}

.btn-outline {
  background: transparent;
  color: var(--bright-cyan);
  border: 2px solid var(--bright-cyan);
}

.btn-outline:hover {
  background: var(--bright-cyan);
  color: #fff;
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.btn-outline:active {
  transform: scale(0.95);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 5rem;
}

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

.subtitle {
  display: inline-block;
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.line {
  height: 4px;
  width: 60px;
  background: var(--bright-cyan);
  margin-top: 1rem;
  border-radius: 2px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: transparent;
  z-index: 1000;
  transition: all var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 100;
  color: #fff;
  height: var(--nav-height);
  overflow: hidden;
}

.logo-img {
  height: 300px;
  width: auto;
  object-fit: contain;
  margin-top: -15px;
  transform: none;
  transition: all var(--transition-fast);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo .logo-img {
  height: 300px;
  margin-top: -60px;
  margin-bottom: -60px;
  margin-left: -50px;
  transform: none;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--bright-cyan);
  transition: width var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--bright-cyan);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    var(--deep-blue-dark) 100%
  );
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url("../src/hero_bg.png") center/cover;
  opacity: 0.15;
  animation: kenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(3)
    translateZ(0);
  animation: gridMove 20s linear infinite;
  will-change: transform;
  opacity: 0.5;
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0) scale(3)
      translateZ(0);
  }

  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px) scale(3)
      translateZ(0);
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
}

.orb-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--bright-cyan);
}

.orb-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--deep-blue);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

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

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 181, 226, 0.1);
  color: var(--bright-cyan);
  border: 1px solid rgba(0, 181, 226, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.glass-card {
  display: none;
}

.hero-3d-model {
  width: 100%;
  max-width: 600px;
  height: 450px;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  border-radius: 12px;
  outline: none;
  --poster-color: transparent;
  background-color: transparent;
}

.hologram-effect {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
}

.hologram-effect i {
  font-size: 6rem;
  color: var(--bright-cyan);
  filter: drop-shadow(0 0 15px rgba(0, 181, 226, 0.8));
  animation: float 4s ease-in-out infinite;
}

.hero-robot-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  border: none;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8))
    drop-shadow(0 0 60px rgba(0, 212, 255, 0.4));
  animation: robotFloat 4s ease-in-out infinite;
  object-fit: contain;
}

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

.robot-head {
  width: 220px;
  height: 280px;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
  animation: robotFloat 4s ease-in-out infinite;
}

.robot-head .glow-ring {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.1;
    stroke-width: 8px;
  }
  50% {
    opacity: 0.4;
    stroke-width: 12px;
  }
}

.blueprint-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 0 15px rgba(0, 181, 226, 0.4));
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.scan-line {
  display: none;
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  text-align: center;
}

.hero-quote .quote-mark {
  color: var(--bright-cyan);
  font-size: 1.5rem;
  opacity: 0.5;
}

.hero-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.hero-quote .ai-icon {
  color: var(--accent-orange);
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(243, 111, 33, 0.4));
}

/* --- Video Separator --- */
.video-separator {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.separator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 15, 28, 0.4) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-separator {
    height: 40vh;
  }
}

/* --- Digital Transformation Section --- */
.transformation {
  background-color: var(--bg-dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.transformation::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.transformation-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.transformation-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--bright-cyan);
  line-height: 1.3;
}

.transformation-lead {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.transformation-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .transformation {
    padding: 4rem 0;
  }

  .transformation::before {
    width: 300px;
    height: 300px;
    top: -20%;
    right: -5%;
  }

  .transformation-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .transformation-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .transformation-body {
    font-size: 0.95rem;
  }
}

/* --- Services --- */
/* --- Services Grid Section --- */
.services-grid-section {
  position: relative;
  background-color: var(--bg-dark);
  padding: 8rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.orb-3 {
  position: absolute;
  top: 10%;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.orb-4 {
  position: absolute;
  bottom: 10%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.03) 0%, transparent 70%);
}

.services-grid-section .container {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.5rem;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(20, 28, 47, 0.45) 0%, rgba(13, 22, 59, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5), 
    0 0 30px rgba(0, 212, 255, 0.1);
}

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

.service-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bright-cyan);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 2rem;
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.service-card:hover .service-icon-box {
  background: var(--bright-cyan);
  color: #0b0f19;
  border-color: var(--bright-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- Featured Card (Smart Buildings) --- */
.service-card-featured {
  grid-column: span 3;
}

.service-card-featured::before {
  background: linear-gradient(135deg, rgba(243, 111, 33, 0.1), transparent 60%);
}

.service-card-featured:hover {
  border-color: rgba(243, 111, 33, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5), 
    0 0 30px rgba(243, 111, 33, 0.1);
}

.service-card-featured .service-icon-box {
  color: var(--accent-orange);
  background: rgba(243, 111, 33, 0.06);
  border-color: rgba(243, 111, 33, 0.15);
  box-shadow: inset 0 0 10px rgba(243, 111, 33, 0.1);
}

.service-card-featured:hover .service-icon-box {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(243, 111, 33, 0.4);
}

/* Responsive grid layouts */
@media (min-width: 992px) {
  .service-card-featured .service-card-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .service-card-featured .service-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
    border-radius: 18px;
  }
}

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

  .service-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .services-grid-section {
    padding: 6rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-featured {
    grid-column: span 1;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }
}

/* --- About (Tabbed & Premium) --- */
.about {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

/* Background Glowing Orbs specifically for About Section */
.about::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-header {
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-top: 0.5rem;
}

/* Tab Navigation Styling */
.about-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(20, 28, 47, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.tab-btn i {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.tab-btn:hover {
  color: var(--bright-cyan);
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(20, 28, 47, 0.7);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

.tab-btn:hover i {
  transform: scale(1.1);
}

.tab-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(13, 22, 59, 0.6) 100%);
  border-color: var(--bright-cyan);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
  transform: translateY(-2px) scale(1.02);
}

.tab-btn.active i {
  color: var(--bright-cyan);
  filter: drop-shadow(0 0 5px var(--bright-cyan));
}

/* Tab Panes */
.about-tabs-content {
  min-height: 400px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.tab-pane-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.tab-text-side h3 {
  font-size: 1.8rem;
  color: var(--bright-cyan);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.tab-text-side p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.tab-text-side p.lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--concrete-beige);
  border-inline-start: 3px solid var(--accent-orange);
  padding-inline-start: 1.5rem;
  margin-bottom: 2rem;
}

/* Visual Glow Cards */
.glass-glow-card {
  background: linear-gradient(135deg, rgba(20, 28, 47, 0.65) 0%, rgba(13, 22, 59, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.glass-glow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.glass-glow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
}

.icon-pulse {
  width: 70px;
  height: 70px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bright-cyan);
  margin-bottom: 2rem;
  position: relative;
}

.icon-pulse::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.3);
  animation: pulseOut 2.5s infinite;
}

@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.glass-glow-card h4 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.glass-glow-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bright-cyan);
}

/* Leadership Profile Visual Card */
.leadership-card {
  align-items: stretch;
  text-align: start;
}

.leadership-card::before {
  background: radial-gradient(circle at 50% 0%, rgba(243, 111, 33, 0.12) 0%, transparent 60%);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.5rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  background: rgba(243, 111, 33, 0.1);
  border: 1px solid rgba(243, 111, 33, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-orange);
}

.profile-header h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.profile-header p {
  font-size: 0.85rem;
  color: var(--accent-orange);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.profile-tag i {
  color: var(--bright-cyan);
  width: 20px;
}

/* Why Enki Tech Card overrides */
.why-us-card::before {
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
}

.floating-shield {
  font-size: 3rem;
  color: var(--bright-cyan);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
  animation: float 5s ease-in-out infinite;
}

.why-us-card .btn {
  margin-top: 1rem;
  width: 100%;
}

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

.bento-item {
  background: linear-gradient(135deg, rgba(20, 28, 47, 0.5) 0%, rgba(13, 22, 59, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 212, 255, 0.05);
}

.bento-item.span-full {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(20, 28, 47, 0.6) 0%, rgba(13, 22, 59, 0.4) 100%);
}

.bento-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bright-cyan);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.bento-item:hover .bento-icon {
  background: rgba(0, 212, 255, 0.15);
  color: #fff;
  border-color: var(--bright-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

.bento-item h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.bento-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-muted);
}

.tab-section-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* RTL Layout adjustments for tabs */
.rtl .tab-text-side p.lead {
  border-inline-start: none;
  border-inline-end: 3px solid var(--accent-orange);
  padding-inline-start: 0;
  padding-inline-end: 1.5rem;
}

.rtl .leadership-card {
  text-align: start;
}

.rtl .profile-tag i {
  margin-inline-end: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .tab-pane-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .tab-visual-side {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 6rem 0;
  }
  
  .about-tabs-nav {
    gap: 0.75rem;
  }
  
  .tab-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .capabilities-bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-item.span-full {
    grid-column: auto;
  }
  
  .bento-item {
    padding: 2rem;
  }
}

.lead {
  font-size: 1.2rem;
  color: var(--concrete-beige);
  font-weight: 600;
}

.feature-list {
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.feature-list i {
  color: var(--bright-cyan);
  background: rgba(0, 181, 226, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* --- Projects --- */
.projects {
  background-color: var(--bg-surface);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
  }

  .projects-grid .project-card:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .projects-grid .project-card:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .projects-grid .project-card:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.project-card {
  background: var(--bg-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 212, 255, 0.4);
}

.project-img {
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(10, 15, 28, 0.8));
}

.project-img i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: transform var(--transition-fast);
}

.project-card:hover .project-img i {
  transform: scale(1.1);
}

.project-info {
  padding: 2rem;
}

.project-category {
  font-size: 0.8rem;
  color: var(--bright-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.project-info h3 {
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--bright-cyan);
  padding-bottom: 2px;
}

.read-more:hover {
  color: #fff;
  border-color: #fff;
}

/* --- Testimonials --- */
.testimonials {
  background-color: var(--bg-dark);
  background-image: radial-gradient(
    circle at 50% 50%,
    var(--deep-blue-dark) 0%,
    transparent 70%
  );
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 12px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--bright-cyan);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 181, 226, 0.4);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background: var(--steel-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.client-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.client-info span {
  font-size: 0.8rem;
  color: var(--concrete-beige);
}

/* --- Contact --- */
.contact {
  background-color: var(--bg-surface);
}

.contact-container {
  display: flex;
  gap: 4rem;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 3rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 181, 226, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--bright-cyan);
}

.contact-form-wrapper {
  flex: 1;
  background: var(--bg-dark);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group textarea {
  resize: none;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  color: var(--text-muted);
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-light);
}

.select-icon {
  position: absolute;
  right: 0;
  top: 15px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  pointer-events: none;
  font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--bright-cyan);
  background: rgba(0, 212, 255, 0.01);
}

.form-group select:focus ~ .select-icon {
  color: var(--bright-cyan);
  transform: rotate(180deg);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -20px;
  font-size: 0.8rem;
  color: var(--bright-cyan);
  font-weight: 600;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bright-cyan), var(--accent-orange));
  transition: width var(--transition-fast);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border,
.form-group select:focus ~ .focus-border {
  width: 100%;
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  transition: all var(--transition-fast);
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding-top: 5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all var(--transition-fast);
  animation: countUp 0.8s ease-out forwards;
}

.stat-card:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bright-cyan);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Parallax Background */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@supports not (background-attachment: fixed) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.8) 0%,
    rgba(13, 22, 59, 0.9) 100%
  );
  z-index: 1;
}

/* --- Footer --- */

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.brand-col p {
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
}

.social-links a:hover {
  background: var(--bright-cyan);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--accent-orange);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

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

.footer-col ul li a:hover {
  color: var(--bright-cyan);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  color: #fff;
  border-radius: 4px 0 0 4px;
  outline: none;
  flex: 1;
}

.newsletter-form button {
  background: var(--bright-cyan);
  color: #fff;
  border: none;
  padding: 0 1.2rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--accent-orange);
}

.footer-bottom {
  background: #050810;
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

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

.legal-links a:hover {
  color: var(--text-light);
}

/* --- Animations & Utilities --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: all var(--transition-slow);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: all var(--transition-slow);
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
  opacity: 1;
  transform: translate(0);
}

.animate-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 992px) {
  section {
    padding-top: 4rem;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
  }

  .logo-img {
    height: 180px;
    margin-top: -15px;
    transform: none;
  }

  .footer-logo {
    height: 120px;
  }

  .footer-logo .logo-img {
    height: 300px;
    margin-top: -70px;
    transform: none;
  }

  section {
    padding: 4rem 0;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: left var(--transition-fast);
  }

  .nav-links.nav-active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* --- Enki-CM Coming Soon Teaser Page --- */
.enkicm-page-main {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
}

.enkicm-teaser {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  overflow: hidden;
  background-color: var(--bg-dark);
}

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

.orb-teaser-1 {
  position: absolute;
  top: -10%;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: -1;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.orb-teaser-2 {
  position: absolute;
  bottom: -10%;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: -1;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.05) 0%, transparent 70%);
}

.teaser-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
}

.teaser-card {
  background: linear-gradient(135deg, rgba(20, 28, 47, 0.5) 0%, rgba(13, 22, 59, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 5rem 4rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6), 
    inset 0 0 20px rgba(0, 212, 255, 0.03);
  text-align: center;
}

.teaser-status-badge {
  display: inline-block;
  background: rgba(243, 111, 33, 0.1);
  border: 1px solid rgba(243, 111, 33, 0.25);
  color: var(--accent-orange);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(243, 111, 33, 0.1);
}

.teaser-subtitle {
  display: block;
  color: var(--bright-cyan);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  margin-top: 2rem;
  text-transform: uppercase;
}

.teaser-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

/* Futuristic Teaser Graphic */
.teaser-illustration {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.teaser-illustration .glow-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.05);
  animation: spin 20s linear infinite;
}

.floating-cube {
  font-size: 4.5rem;
  color: var(--bright-cyan);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}

.floating-wires {
  position: absolute;
  font-size: 2.5rem;
  color: var(--accent-orange);
  opacity: 0.65;
  filter: drop-shadow(0 0 15px rgba(243, 111, 33, 0.4));
  transform: translate(65px, -35px);
  animation: floatInverse 5s ease-in-out infinite;
  z-index: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatInverse {
  0%, 100% {
    transform: translate(65px, -35px) translateY(0);
  }
  50% {
    transform: translate(65px, -35px) translateY(12px);
  }
}

.teaser-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

/* Waitlist Styling */
.waitlist-wrapper {
  max-width: 520px;
  margin: 0 auto 3.5rem auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
  transition: all 0.4s ease;
}

.waitlist-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.3px;
}

.waitlist-form {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.waitlist-btn {
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-size: 0.95rem;
}

.waitlist-success-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--bright-cyan);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.waitlist-success-msg i {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 5px var(--bright-cyan));
}

.teaser-actions {
  display: flex;
  justify-content: center;
}

.teaser-actions .btn {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .teaser-card {
    padding: 3.5rem 2rem;
    border-radius: 16px;
  }

  .waitlist-wrapper {
    padding: 1.75rem 1.5rem;
  }

  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .waitlist-btn {
    width: 100%;
    justify-content: center;
  }

  .floating-cube {
    font-size: 3.8rem;
  }

  .floating-wires {
    font-size: 2.2rem;
  }

  .teaser-illustration {
    height: 140px;
    margin-bottom: 2rem;
  }

  .teaser-illustration .glow-ring {
    width: 110px;
    height: 110px;
  }
}
