@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --neon-blue: #00A8FF;
  --glow-blue: #29B6FF;
  --deep-blue: #0B1D33;
  --dark-blue: #071120;
  --black-blue: #050B14;
  --white: #FFFFFF;
  --gray: #B8C2D1;
  --card-bg: rgba(11, 29, 51, 0.6);
  --border-neon: rgba(0, 168, 255, 0.3);
  --glow-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
  --glow-shadow-strong: 0 0 40px rgba(0, 168, 255, 0.6);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black-blue);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-blue); }
::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 3px; }

/* ===== PARTICLES BACKGROUND ===== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-neon);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 12px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--neon-blue);
}

nav a:hover, nav a.active {
  color: var(--white);
}

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

nav a.active {
  color: var(--neon-blue);
}

.btn-cta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon-blue), #0077cc);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
  white-space: nowrap;
}

.btn-cta-header:hover {
  box-shadow: 0 0 35px rgba(0, 168, 255, 0.6);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.btn-cta-header::after { display: none !important; }

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  opacity: 0;
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 60%);
  mask-image: radial-gradient(ellipse at 60% 50%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 60%);
  animation: lionComeFromBackground 8s ease-out forwards;
}

@keyframes lionComeFromBackground {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black-blue) 0%, rgba(5,11,20,0.8) 40%, rgba(5,11,20,0.1) 100%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 100, 200, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0, 50, 150, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero-left {
  animation: fadeInLeft 0.8s ease forwards;
  max-width: 650px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title .highlight {
  color: var(--neon-blue);
  text-shadow: 0 0 30px rgba(0,168,255,0.5);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 80px;
}

.hero-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-icon-box:hover {
  background: rgba(0, 168, 255, 0.2);
  box-shadow: var(--glow-shadow);
  transform: translateY(-3px);
}

.hero-icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--neon-blue);
}

.hero-icon-item span {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.3;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon-blue), #0077cc);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 168, 255, 0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0, 168, 255, 0.7);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
}



/* ===== SECTION COMMONS ===== */
section {
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

/* ===== SERVICES SECTION ===== */
#services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black-blue) 0%, var(--dark-blue) 50%, var(--black-blue) 100%);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 14px;
  padding: 28px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-shadow);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(0, 168, 255, 0.2);
  box-shadow: var(--glow-shadow);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--neon-blue);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

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

/* ===== ABOUT SECTION ===== */
#about {
  padding: 100px 0;
  background: var(--black-blue);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title .highlight {
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(0,168,255,0.4);
}

.about-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}

.about-feature svg {
  width: 18px;
  height: 18px;
  color: var(--neon-blue);
  flex-shrink: 0;
}

.about-right {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 40px rgba(0,168,255,0.15);
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  border: 1px solid var(--border-neon);
  background: linear-gradient(135deg, rgba(0,168,255,0.08), rgba(0,50,150,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,168,255,0.15);
}

.about-img-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-img-icon {
  font-size: 80px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(0,168,255,0.5));
}

/* ===== METRICS SECTION ===== */
#metrics {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--black-blue) 0%, rgba(7,17,32,0.8) 100%);
}

.metrics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 14px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-shadow);
  border-color: rgba(0,168,255,0.5);
}

.metric-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon svg {
  width: 26px;
  height: 26px;
  color: var(--neon-blue);
}

.metric-info .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,168,255,0.4);
}

.metric-info .label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}

/* ===== CASES SECTION ===== */
#cases {
  padding: 100px 0;
  background: var(--black-blue);
  overflow: hidden;
}

.cases-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.cases-header {
  text-align: center;
  margin-bottom: 50px;
}

.cases-carousel-wrapper {
  position: relative;
}

.cases-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  transition: transform 0.5s ease;
}

.case-card {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,168,255,0.5);
  box-shadow: var(--glow-shadow);
}

.case-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.case-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  text-align: center;
}

.case-logo-sub {
  font-size: 9px;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.case-sector {
  font-size: 11px;
  color: var(--gray);
  margin: 8px 0 12px;
}

.case-result {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--neon-blue);
  text-shadow: 0 0 15px rgba(0,168,255,0.4);
}

.case-result-text {
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  background: rgba(0,168,255,0.1);
  border: 1px solid var(--border-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--neon-blue);
}

.carousel-btn:hover {
  background: rgba(0,168,255,0.25);
  box-shadow: var(--glow-shadow);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== BENEFITS SECTION ===== */
#benefits {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black-blue) 0%, var(--dark-blue) 100%);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 14px;
  padding: 30px 18px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,168,255,0.5);
  box-shadow: var(--glow-shadow);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  box-shadow: var(--glow-shadow);
  background: rgba(0,168,255,0.2);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--neon-blue);
}

.benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
#cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, rgba(0,50,120,0.3) 50%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,168,255,0.08) 0%, transparent 70%);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-left p {
  font-size: 14px;
  color: var(--gray);
}

.btn-cta-big {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-blue), #0066cc);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0,168,255,0.5), 0 0 60px rgba(0,168,255,0.2);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-big:hover {
  box-shadow: 0 0 50px rgba(0,168,255,0.8), 0 0 100px rgba(0,168,255,0.3);
  transform: translateY(-2px);
  color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  background: var(--black-blue);
  border-top: 1px solid var(--border-neon);
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 220px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(0,168,255,0.08);
  border: 1px solid var(--border-neon);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social a:hover {
  background: rgba(0,168,255,0.2);
  color: var(--neon-blue);
  box-shadow: var(--glow-shadow);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--neon-blue);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--neon-blue);
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover { color: var(--neon-blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(184,194,209,0.5);
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: rgba(0,168,255,0.1);
  border: 1px solid var(--border-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--neon-blue);
  text-decoration: none;
}

.back-to-top:hover {
  background: rgba(0,168,255,0.25);
  box-shadow: var(--glow-shadow);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

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

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,168,255,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,168,255,0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-carousel { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  header { padding: 14px 24px; }
  nav { display: none; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-right { display: none; }
  .cta-container { grid-template-columns: 1fr; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  header { padding: 12px 20px; }
  .hero-container { padding: 0 20px; }
  .hero-icons { gap: 12px; }
  .services-container,
  .about-container,
  .metrics-container,
  .cases-container,
  .benefits-container,
  .cta-container,
  .footer-container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .cases-carousel { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
}

@media (max-width: 900px) {
  .mobile-menu-btn { display: block; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover { color: var(--neon-blue); }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
}

/* ===== LION SVG PLACEHOLDER ===== */
.lion-svg-container {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* Neon border lines */
.neon-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  height: 1px;
  width: 100%;
  opacity: 0.4;
  animation: neon-sweep 4s linear infinite;
}

@keyframes neon-sweep {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}
