/* KEVNIX Technology Core Styling System - Premium Light Glassmorphic Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@400;500;700&display=swap');

:root {
  color-scheme: light;
  /* High-end Glassmorphic Color Palette */
  --bg-dark: #0f172a;
  --bg-darker: transparent;
  --card-bg: rgba(255, 255, 255, 0.7);
  --card-bg-hover: rgba(255, 255, 255, 0.95);
  --border-color: rgba(15, 23, 42, 0.06);
  --border-color-hover: rgba(37, 99, 235, 0.35);

  /* Brand Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #0b1329 100%);
  --gradient-glow: linear-gradient(90deg, #2563eb, #06b6d4, #2563eb);

  /* Accent Colors */
  --color-cyan: #06b6d4;
  --color-purple: #2563eb;
  --color-blue: #2563eb;
  --text-white: #0f172a;
  --text-primary: #1e293b;
  --text-muted: #64748b;

  --font-family: 'Inter', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 10px 30px rgba(37, 99, 235, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  background-color: #f8fafc;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Grain overlay */
.grain-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1000;
  pointer-events: none;
  opacity: .04;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

/* Glassmorphism utility */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}
.glass:hover {
  border-color: var(--border-color-hover);
  background: var(--card-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.06);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.gradient-text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Section Common Styling */
section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

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

.section-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-cyan);
  background: rgba(6, 182, 212, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Custom Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  opacity: 0.95;
}

.btn-secondary {
  background: rgba(37, 99, 235, 0.06);
  color: var(--text-primary);
  font-weight: 550;
  padding: 13px 29px;
  border-radius: 8px;
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

/* Ambient Glow */
.ambient-glow-1 {
  position: absolute;
  top: 10%; left: -5%;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
  max-width: 50vw;
}
.ambient-glow-2 {
  position: absolute;
  bottom: 20%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
  max-width: 50vw;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

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

.animate-float { animation: float 6s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* Grid Helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* app-wrapper */
.app-wrapper {
  position: relative;
  min-height: 100vh;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1001;
  padding: 24px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 16px 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 22px;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 1px;
}
.logo-subtext {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--color-cyan);
  margin-top: 3px;
  text-transform: uppercase;
}
.footer-logo .logo-text {
  color: var(--text-primary);
}
.logo-icon {
  color: var(--color-cyan);
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}
.logo-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.logo-accent { color: var(--color-cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: var(--transition-smooth);
}
.nav-link:hover { color: var(--text-white); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  border-radius: 4px;
}
.nav-link:hover::after { width: 100%; }
.btn-nav {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-white);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-nav:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}
.mobile-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-white);
  cursor: pointer;
  z-index: 1002;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.mobile-toggle:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: -15px 0 50px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  overflow: hidden;
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.mobile-close {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}
.mobile-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
  transform: rotate(90deg);
}
.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
}
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  background: transparent;
  transition: var(--transition-smooth);
}
.mobile-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.mobile-link-text {
  flex-grow: 1;
}
.mobile-link-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition-smooth);
  color: var(--color-blue);
  font-weight: 700;
}
.mobile-link:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-blue);
}
.mobile-link:hover .mobile-link-icon {
  background: var(--gradient-primary);
  color: #ffffff;
}
.mobile-link:hover .mobile-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.mobile-drawer-cta {
  margin-top: 24px;
  margin-bottom: 24px;
}
.btn-mobile-nav {
  background: var(--gradient-primary);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transition: var(--transition-smooth);
}
.btn-mobile-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}
.mobile-drawer-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 20px;
}
.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.mobile-info-item:hover {
  color: var(--color-blue);
}
.mobile-info-item svg {
  color: var(--color-blue);
  flex-shrink: 0;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ===================== HERO ===================== */
.hero-section {
  min-height: 100vh;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
}
.hero-container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.badge-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.1), transparent);
  transform: translateX(-100%);
  animation: shine 4s infinite;
}
@keyframes shine { 100% { transform: translateX(100%); } }
.badge-icon-svg { color: var(--color-cyan); display: flex; }
.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero-description {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual-circle { position: absolute; border-radius: 50%; }
.main-circle {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(127, 0, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.blur-circle {
  width: 250px; height: 250px;
  background: rgba(0, 242, 254, 0.15);
  filter: blur(80px);
  z-index: -1;
}
.hero-card {
  width: 340px;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  transform: rotate(-3deg);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}
.card-header {
  background: rgba(15, 23, 42, 0.03);
  padding: 12px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.card-body {
  padding: 24px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  text-align: left;
}
.code-keyword { color: #2563eb; font-weight: bold; }
.code-variable { color: #0f172a; }
.code-class { color: #0d9488; }
.code-method { color: #2563eb; }
.code-string { color: #b45309; }
.float-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  position: absolute;
  z-index: 20;
  font-size: 14px;
  width: 200px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}
.float-badge h4 { margin: 0; font-weight: 700; font-size: 13px; color: var(--text-white); }
.float-badge p { margin: 0; font-size: 11px; color: var(--text-muted); }
.badge-icon-box {
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon-box.cyan { background: rgba(0, 242, 254, 0.1); color: var(--color-cyan); }
.badge-icon-box.purple { background: rgba(192, 132, 252, 0.1); color: var(--color-purple); }
.item-1 { top: 15%; right: -5%; animation: float 5s ease-in-out infinite; }
.item-2 { bottom: 15%; left: -5%; animation: float 7s ease-in-out infinite; }

/* ===================== STATS ===================== */
.stats-section {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 30;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  position: relative;
}
.stat-icon-wrapper {
  color: var(--color-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-wrapper svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.stat-info h3 {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat-info p { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.divider {
  position: absolute;
  right: 0; top: 15%;
  height: 70%; width: 1px;
  background: rgba(15, 23, 42, 0.08);
}

/* ===================== ABOUT ===================== */
.about-section { background: var(--bg-darker); position: relative; }
.about-visual {
  height: 480px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.about-text { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; }
.values-grid { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon-wrapper {
  color: var(--color-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon-wrapper svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.value-item h4 { font-size: 16px; color: var(--text-primary); margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--text-muted); }

/* About Canvas */
.about-3d-wrap { width: 100%; height: 100%; position: relative; display: flex; justify-content: center; align-items: center; }
#about-canvas { display: block; width: 100%; height: 100%; }

/* ===================== SERVICES ===================== */
.services-section { background: transparent; }
.services-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 50px;
  max-width: 900px;
  width: fit-content;
  margin: 0 auto 50px auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  flex-wrap: nowrap;
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}
.tab-btn:hover { color: var(--text-primary); background: rgba(37, 99, 235, 0.05); }
.tab-btn.active { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25); }
.tab-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.services-grid-container { min-height: 400px; }
.services-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.check-icon-wrapper { color: var(--color-cyan); filter: drop-shadow(0 0 4px rgba(0, 242, 254, 0.3)); }
.check-icon-wrapper svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.product-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-purple);
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.2);
  padding: 4px 10px;
  border-radius: 50px;
}
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.service-link {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
  transition: var(--transition-smooth);
}
.service-card:hover .service-link { transform: translateX(4px); color: var(--text-white); }
.service-panel { display: none; }
.service-panel.active { display: block; }

/* ===================== INDUSTRIES ===================== */
.industries-section { background: var(--bg-darker); }
.industries-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.industries-tabs-list {
  background: rgba(15, 23, 42, 0.04);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 6px;
}
.ind-tab-item {
  background: transparent;
  border: 1.5px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: var(--transition-smooth);
  width: 100%;
}
.ind-tab-item:hover { color: var(--text-primary); background: rgba(37, 99, 235, 0.05); border-color: rgba(37, 99, 235, 0.1); }
.ind-tab-item.active { background: rgba(37, 99, 235, 0.08); color: var(--color-blue); border: 1.5px solid rgba(37, 99, 235, 0.2); font-weight: 700; }
.ind-tab-icon { display: flex; align-items: center; justify-content: center; }
.ind-tab-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.industry-content-panel {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
}
.industry-panel { display: none; }
.industry-panel.active { display: block; }
.industry-panel-title { font-size: 28px; font-weight: 900; margin-bottom: 16px; line-height: 1.3; letter-spacing: -0.3px; color: var(--text-primary); }
.industry-panel-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
.industry-bullets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bullet-item { display: flex; align-items: flex-start; gap: 12px; }
.bullet-check { color: var(--color-blue); margin-top: 2px; flex-shrink: 0; }
.bullet-check svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.bullet-item span { font-size: 14px; color: var(--text-primary); line-height: 1.5; }

/* ===================== TECHSTACK ===================== */
.techstack-section { background: var(--bg-darker); }
.tech-groups-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tech-group-card { padding: 36px; border-radius: 16px; text-align: left; }
.tech-group-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
  border-left: 3px solid var(--color-blue);
  padding-left: 14px;
}
.tech-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.tech-logo-box {
  width: 56px; height: 56px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.tech-logo-box img { width: 32px; height: 32px; object-fit: contain; }
.tech-logo-box svg { width: 32px; height: 32px; }
.tech-item-wrapper span { font-size: 12px; font-weight: 600; color: var(--text-muted); transition: var(--transition-smooth); text-align: center; }
.tech-item-wrapper:hover { transform: translateY(-4px); }
.tech-item-wrapper:hover .tech-logo-box { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.25); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1); }
.tech-item-wrapper:hover span { color: var(--text-primary); }

/* ===================== WHY CHOOSE US ===================== */
.why-section { background: var(--bg-darker); }
.why-card {
  padding: 35px;
  border-radius: 14px;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(15,23,42,0.05);
  transition: var(--transition-smooth);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.15); }
.why-icon-box {
  color: var(--color-blue);
  background: rgba(37, 99, 235, 0.08);
  width: 54px; height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-icon-box svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
.why-card h3 { font-size: 19px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: transparent; }
.testimonial-wrapper { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-card {
  padding: 50px;
  border-radius: 20px;
  position: relative;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(15, 23, 42, 0.06);
}
.quote-icon {
  position: absolute;
  top: 30px; right: 40px;
  color: rgba(0, 242, 254, 0.05);
}
.quote-icon svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 2; }
.testimonial-text { font-size: 18px; line-height: 1.8; color: var(--text-primary); margin-bottom: 30px; font-style: italic; }
.testimonial-user-info h4 { font-size: 16px; font-weight: 700; color: var(--color-cyan); margin-bottom: 4px; }
.testimonial-user-info p { font-size: 13px; color: var(--text-muted); }
.slider-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding: 0 10px; }
.control-btn {
  background: rgba(37, 99, 235, 0.06);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  color: var(--text-primary);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.control-btn:hover { background: var(--gradient-primary); color: #ffffff; border-color: transparent; transform: scale(1.05); }
.control-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.slider-indicators { display: flex; gap: 8px; }
.dot-indicator { width: 8px; height: 8px; border-radius: 50%; background: rgba(15, 23, 42, 0.15); cursor: pointer; transition: var(--transition-smooth); }
.dot-indicator.active { width: 24px; border-radius: 4px; background: var(--color-blue); box-shadow: 0 0 8px rgba(37, 99, 235, 0.4); }

/* ===================== FAQ ===================== */
.faq-section { background: transparent; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  border-radius: 14px;
  padding: 24px 30px;
  cursor: pointer;
  border: 1.5px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 12px rgba(15,23,42,0.03);
}
.faq-item:hover { border-color: rgba(37, 99, 235, 0.2); box-shadow: 0 6px 24px rgba(37,99,235,0.06); }
.faq-item.open { border-color: rgba(37, 99, 235, 0.3); background: rgba(255, 255, 255, 0.95); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-question h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 0; }
.faq-toggle-icon { color: var(--color-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-toggle-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; }
.faq-item.open .faq-answer { max-height: 200px; margin-top: 16px; opacity: 1; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===================== CONTACT ===================== */
.contact-section { background: var(--bg-darker); }
.contact-grid { align-items: stretch; }
.contact-info-card { padding: 40px; border-radius: 16px; text-align: left; display: flex; flex-direction: column; }
.contact-info-card h3 { font-size: 24px; color: var(--text-primary); margin-bottom: 12px; }
.info-intro { font-size: 14px; color: var(--text-muted); margin-bottom: 35px; }
.info-items { display: flex; flex-direction: column; gap: 28px; flex-grow: 1; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.info-item h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.info-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.info-item a { color: inherit; transition: var(--transition-smooth); }
.info-item a:hover { color: var(--color-blue); }
.business-hours { margin-top: 32px; padding: 20px; border-radius: 10px; background: rgba(37, 99, 235, 0.04); border: 1px solid var(--border-color); }
.business-hours h4 { color: var(--color-blue); font-size: 14px; margin-bottom: 10px; }
.business-hours p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.contact-form-card { padding: 40px; border-radius: 16px; text-align: left; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { margin-bottom: 0; }
.input-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.input-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
}
.input-group input::placeholder,
.input-group textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.input-group select option { background-color: #ffffff; color: var(--text-primary); }
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--color-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.input-group textarea { resize: vertical; min-height: 120px; }
.form-submit-btn { align-self: flex-start; width: auto; justify-content: center; }
.form-submit-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.form-status-banner.error {
  background-color: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.15);
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.form-status-pane.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 350px;
  gap: 20px;
}
.status-icon { color: #16a34a; }
.form-status-pane.success h3 { font-size: 22px; color: var(--text-primary); }
.form-status-pane.success p { font-size: 15px; color: var(--text-muted); max-width: 320px; margin-bottom: 10px; line-height: 1.5; }
.form-area { display: block; }

/* ===================== FOOTER ===================== */
.footer {
  background: rgba(15, 23, 42, 0.03);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0 0;
  position: relative;
  z-index: 10;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-col { display: flex; flex-direction: column; text-align: left; }
.footer-col h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.brand-col { gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; color: var(--text-primary); letter-spacing: 1.5px; text-decoration: none; }
.footer-logo .logo-accent { color: var(--color-blue); }
.brand-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.social-links a:hover { background: var(--gradient-primary); color: #fff; border-color: transparent; transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--color-blue); padding-left: 4px; }
.contact-links { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-links li { display: flex; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-links a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
.contact-links a:hover { color: var(--color-blue); }
.contact-icon { color: var(--color-blue); flex-shrink: 0; margin-top: 2px; }
.contact-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.phones { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 24px 0; background: rgba(15, 23, 42, 0.02); }
.bottom-container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.scroll-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}
.scroll-btn:hover { border-color: var(--color-blue); color: var(--text-primary); background: rgba(37, 99, 235, 0.05); }
.scroll-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===================== WHATSAPP BUTTON ===================== */
.wa-wrapper {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.wa-wrapper.wa-visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.wa-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55); }
.wa-btn:active { transform: scale(0.96); }
.wa-icon { width: 34px; height: 34px; position: relative; z-index: 2; }
.wa-dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 3;
  animation: wa-dot-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wa-dot-pop { from { transform: scale(0); } to { transform: scale(1); } }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse-ring 2.5s ease-out infinite;
}
.wa-pulse-2 { animation-delay: 1.2s; }
@keyframes wa-pulse-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.8); opacity: 0; } }
.wa-notif {
  background: #ffffff;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0,0,0,0.08);
  padding: 14px 16px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 240px;
  position: relative;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}
.wa-notif.wa-notif-show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-notif-tail {
  position: absolute;
  bottom: -8px; right: 28px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid #ffffff;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.06));
}
.wa-notif-avatar { flex-shrink: 0; border-radius: 50%; overflow: hidden; width: 36px; height: 36px; }
.wa-notif-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wa-notif-name { font-size: 13px; font-weight: 700; color: #128C7E; font-family: 'Inter', sans-serif; white-space: nowrap; }
.wa-notif-msg { font-size: 14px; font-weight: 600; color: #111827; font-family: 'Inter', sans-serif; }
.wa-notif-sub { font-size: 11px; color: #9ca3af; font-family: 'Inter', sans-serif; }
.wa-notif-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none; border: none;
  font-size: 18px; color: #9ca3af;
  cursor: pointer; line-height: 1;
  padding: 2px 4px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.wa-notif-close:hover { color: #374151; background: #f3f4f6; }

/* ===================== VIDEO SHOWROOM & STORIES (COMET STYLE) ===================== */
.video-showroom-section {
  padding: 70px 0 80px 0;
  position: relative;
}
.showroom-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.showroom-divider-line {
  width: 60px;
  height: 4px;
  background: var(--color-blue);
  border-radius: 2px;
  margin-bottom: 16px;
}
.showroom-subtitle-italic {
  font-family: var(--font-family);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.2px;
}

.story-cards-grid-wrap {
  overflow-x: auto;
  padding: 10px 4px 20px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.story-cards-grid-wrap::-webkit-scrollbar { display: none; }
.story-cards-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 990px) {
  .story-cards-grid { justify-content: flex-start; }
}

.story-item-col {
  flex-shrink: 0;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-item-col:hover {
  transform: translateY(-8px);
}

.story-card-box {
  width: 100%;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.story-canvas-video {
  display: none !important;
}
.story-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.story-thumb-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background: #ffffff;
  z-index: 5;
}
.story-thumb-badge img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.story-sound-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.story-sound-btn:hover {
  transform: scale(1.1);
  background: rgba(37, 99, 235, 0.9);
  border-color: #ffffff;
}
.story-sound-btn.sound-active {
  background: #2563eb;
  border-color: #ffffff;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.7);
}

.story-card-label {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

/* Full-Screen Vertical Reels Player Modal */
.reel-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.reel-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.reel-modal-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 90vh;
  max-height: 720px;
  border-radius: 28px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reel-modal-overlay.open .reel-modal-container {
  transform: scale(1);
}
.reel-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.reel-modal-close:hover { background: rgba(239, 68, 68, 0.8); }

.reel-player-wrapper {
  width: 100%; height: 100%;
  position: relative;
}
.reel-full-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-overlay-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 20px 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}
.reel-modal-tag {
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  text-transform: uppercase;
}
.reel-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}
.reel-modal-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 10px;
}
.reel-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 18px;
  font-size: 14.5px;
}

/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .hero-title { font-size: 44px; }
}

@media (max-width: 900px) {
  .industries-container { grid-template-columns: 1fr; }
  .industries-tabs-list {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
    gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .industries-tabs-list::-webkit-scrollbar { display: none; }
  .ind-tab-item { flex-shrink: 0; padding: 10px 16px; font-size: 14px; width: auto; }
  .industry-content-panel { padding: 28px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 65px 0; }
  .section-title { font-size: 30px; letter-spacing: -0.4px; }
  .section-header { margin-bottom: 40px; }
  
  /* Navbar */
  .nav-links { display: none; }
  .mobile-toggle { display: flex !important; }
  .nav-logo { font-size: 20px; }
  .navbar { padding: 16px 0; }

  /* Hero Section */
  .hero-section { padding-top: 105px; padding-bottom: 50px; }
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: 32px; letter-spacing: -0.5px; line-height: 1.2; }
  .hero-description { max-width: 100%; font-size: 15px; margin-bottom: 30px; }
  .hero-actions { width: 100%; flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  
  .hero-visual { display: flex !important; margin-top: 35px; width: 100%; justify-content: center; }
  .visual-wrapper { height: 320px; width: 100%; max-width: 330px; }
  .main-circle { width: 250px; height: 250px; }
  .blur-circle { width: 200px; height: 200px; }
  .hero-card { width: 270px; transform: rotate(-2deg); }
  .card-body { padding: 16px; font-size: 12px; }
  .float-badge { width: 155px; padding: 8px 10px; }
  .float-badge h4 { font-size: 11px; }
  .float-badge p { font-size: 10px; }
  .item-1 { top: 4%; right: -5px; }
  .item-2 { bottom: 4%; left: -5px; }

  /* Stats Section */
  .stats-section { margin-top: 0; padding: 25px 0; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 14px;
    gap: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  }
  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  }
  .stat-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
  }
  .stat-icon-wrapper {
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stat-icon-wrapper svg { width: 20px; height: 20px; }
  .stat-info h3 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-info p { font-size: 12px; font-weight: 600; color: var(--text-muted); line-height: 1.3; }
  .divider { display: none; }

  /* About Section */
  .about-visual { height: 420px; margin-bottom: 30px; }
  .about-text { font-size: 14px; line-height: 1.6; }
  .values-grid { gap: 16px; margin-top: 24px; }
  .value-item { gap: 14px; }
  .value-icon-wrapper { padding: 10px; border-radius: 10px; }
  .value-item h4 { font-size: 15px; }
  .value-item p { font-size: 13px; }

  /* Services Section */
  .services-tabs {
    border-radius: 16px;
    padding: 6px;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 35px;
  }
  .services-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 10px 16px; font-size: 13px; flex-shrink: 0; }
  .services-cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 24px 20px; border-radius: 16px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 14px; margin-bottom: 20px; }

  /* Industries Section */
  .industry-content-panel { padding: 24px 18px; }
  .industry-panel-title { font-size: 22px; margin-bottom: 12px; }
  .industry-panel-desc { font-size: 14px; margin-bottom: 20px; }
  .industry-bullets-grid { grid-template-columns: 1fr; gap: 14px; }

  /* TechStack Section */
  .tech-groups-container { grid-template-columns: 1fr; gap: 18px; }
  .tech-group-card { padding: 24px 18px; border-radius: 16px; }
  .tech-group-card h3 { font-size: 17px; margin-bottom: 20px; }
  .tech-logo-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  /* Why Choose Us Section */
  .why-card { padding: 24px 20px; border-radius: 16px; }
  .why-icon-box { width: 48px; height: 48px; margin-bottom: 18px; }
  .why-card h3 { font-size: 18px; }
  .why-card p { font-size: 14px; }

  /* Testimonials Section */
  .testimonial-card { padding: 28px 20px; border-radius: 18px; }
  .testimonial-text { font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
  .quote-icon { width: 36px; height: 36px; top: 20px; right: 20px; }

  /* FAQ Section */
  .faq-list { gap: 12px; }
  .faq-item { padding: 18px 20px; border-radius: 14px; }
  .faq-question h3 { font-size: 15px; }
  .faq-answer p { font-size: 14px; }

  /* Contact Section */
  .contact-info-card, .contact-form-card { padding: 24px 20px; border-radius: 18px; }
  .contact-info-card h3 { font-size: 22px; }
  .info-intro { margin-bottom: 25px; }
  .info-items { gap: 20px; }
  .business-hours { margin-top: 24px; padding: 16px; }
  .form-submit-btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 55px 0 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 35px; }
  .bottom-container { flex-direction: column; gap: 16px; text-align: center; }
  .scroll-btn { margin: 0 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 50px 0; }
  .section-title { font-size: 25px; letter-spacing: -0.3px; }
  .section-subtitle { font-size: 13.5px; }
  .section-header { margin-bottom: 30px; }
  .section-badge { font-size: 10.5px; padding: 5px 14px; }
  
  .hero-title { font-size: 27px; }
  .hero-description { font-size: 14px; }
  
  .stats-grid { padding: 14px 10px; gap: 10px; }
  .stat-card { padding: 14px 8px; }
  .stat-info h3 { font-size: 22px; }
  .stat-info p { font-size: 11px; }

  .tech-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .input-group input, .input-group select, .input-group textarea { font-size: 16px; padding: 12px 14px; }
  
  .wa-wrapper { bottom: 20px; right: 16px; }
  .wa-btn { width: 54px; height: 54px; }
  .wa-icon { width: 30px; height: 30px; }
  .wa-notif { width: 210px; }
}

/* Mobile Quick Action Bar */
.mobile-quick-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-quick-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9980;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    padding: 8px 12px;
    gap: 10px;
  }
  .quick-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .quick-bar-btn:active {
    transform: scale(0.97);
  }
  .quick-bar-btn.call-btn {
    background: var(--color-blue);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  }
  .quick-bar-btn.wa-btn-bar {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  }
  .footer { padding-bottom: 70px; }
  .wa-wrapper { bottom: 75px !important; }
}
