
:root {
  --cyan: #00C2D4;
  --cyan-light: #00E5F9;
  --cyan-dark: #00A3B3;
  --cyan-glow: rgba(0, 194, 212, 0.5);
  --black: #0A0A0A;
  --black-light: #121212;
  --black-lighter: #1a1a1a;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #444444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }
::selection { background: var(--cyan); color: var(--black); }



/* =================== CURSOR =================== */
/* .cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor.active {
  width: 50px;
  height: 50px;
  background: rgba(0, 194, 212, 0.2);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}

@media (hover: none), (max-width: 1024px) {
  .cursor, .cursor-dot { display: none !important; }
} */

/* =================== NAVBAR - FIXED HEIGHT =================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  height: 60px;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  height: 55px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, var(--cyan), transparent);
  animation: rotate 3s linear infinite;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--black);
  border-radius: 50%;
}

.nav-logo-icon svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.nav-logo-text {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

/* .navlinksdiv{
  position: absolute;
  display: inline-block;
  width: 100;
  margin: 30%;
} */

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

@media (min-width: 1024px) {
  .nav-links a {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
  }
}

.nav-links li.dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links .dropdown-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-links li.dropdown:hover .dropdown-arrow,
.nav-links li.dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Only enable hover dropdown on desktop (laptop/desktop) */
@media (min-width: 1025px) {
  .nav-links li.dropdown:hover .dropdown-panel,
  .nav-links li.dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  /* left: 70%; */
  transform: translateX(-50%) translateY(10px);
  width: min(550px, calc(100vw - 3rem));
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

.dropdown-panel::before {
  content: none;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.dropdown-panel.industries-panel {
  left: 96%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
     grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dropdown-panel.services-panel {
  left: -40%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-column {
  display: grid;
  gap: 0.5rem;
}

.dropdown-column h4 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.dropdown-column a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.75;
  transition: color 0.2s;
}

.dropdown-column a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .dropdown-panel {
    display: none;
  }
}

.mobile-submenu {
  width: 100%;
  margin-top: 1rem;
  border: none;
  border-radius: 18px;
  background: transparent;
  overflow: hidden;
}

.mobile-submenu summary {
  list-style: none;
  padding: 0;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-submenu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu summary::after {
  content: '+';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.mobile-submenu[open] summary::after {
  transform: rotate(45deg);
}

.mobile-submenu-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0 1rem;
  align-items: center;
}

.mobile-submenu-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  outline: none;
  background: transparent !important;
  -webkit-tap-highlight-color: transparent;
}

.mobile-submenu-links a:focus,
.mobile-submenu-links a:active {
  outline: none;
  background: transparent !important;
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-time {
  font-size: 0.65rem;
  color: var(--gray);
  text-align: right;
  line-height: 1.3;
}

.nav-time span {
  display: block;
  color: var(--cyan);
  font-weight: 600;
}

.btn-primary {
  padding: 0.6rem 1.25rem;
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  white-space: nowrap;
}


.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cyan-glow);
}

/* Mobile Menu Button - FIXED */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  background: transparent;
  border: none;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }


/* =================== HERO =================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 3rem 60px;
}

@media (min-width:2560px) {
  #hero { min-height: 60vh; }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 194, 212, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 194, 212, 0.06), transparent);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

/* OLD hero-content hidden - using split layout */
.hero-content { display: none !important; }

/* =================== SPLIT HERO LAYOUT =================== */
/* .hero-split-layout {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  padding: 0 2rem;
  min-height: 60vh;
} */

.hero-split-layout {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0 2rem;
  min-height: 60vh;
}

/* .hero-text-left {
  text-align: left;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 6rem;
} */
.hero-text-left {
  text-align: left;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 0;
  position: relative;
  left: 110px;
}
.hero-title-left {
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}

.hero-title-left .gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 80px;
}

.hero-text-right {
  text-align: left;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 6rem;
  position:relative;
  left: 20px;
}
.hero-title-right {
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}

.hero-title-right .gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 80px;
}

/* Phone wrapper */
.hero-phone-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-phone-center {
  flex-shrink: 0;
  width: 224px;
  height: 224px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-center .hero-phone-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero-phone-center .phone-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem;
  z-index: 15;
}

.hero-float-1 { top: 18%; left: 4%; animation: float1 6s ease-in-out infinite; }
.hero-float-2 { top: 25%; right: 4%; animation: float2 7s ease-in-out infinite; }
.hero-float-3 { bottom: 15%; left: 6%; animation: float3 5s ease-in-out infinite; }
.hero-float-4 { bottom: 18%; right: 6%; animation: float1 6s ease-in-out infinite 1s; }

.float-card-icon {
  width: 45px; height: 45px;
  background: rgba(0, 194, 212, 0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}

.float-card-value {
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.1rem;
}

.float-card-label {
  font-size: 0.55rem; color: var(--gray);
  letter-spacing: 0.08em; text-transform: uppercase;
}




@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 194, 212, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(0, 194, 212, 0); }
}

/* Phone Animations */
@keyframes phone-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
.phone-animate-float { animation: phone-float 4s ease-in-out infinite; }

@keyframes phone-pulse-ring {
  0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 194, 212, 0.6); }
  50% { transform: scale(1.2); opacity: 0.4; box-shadow: 0 0 40px 15px rgba(0, 194, 212, 0.35); }
  100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 194, 212, 0.6); }
}
.phone-pulse-ring { animation: phone-pulse-ring 3s ease-in-out infinite; }

@keyframes phone-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(0, 194, 212, 0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(0, 194, 212, 1)); }
}
.phone-glow-pulse { animation: phone-glow-pulse 2s ease-in-out infinite; }

@keyframes hero-scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
/* .hero-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4; pointer-events: none; z-index: 2;
}
.hero-scanline-1 { animation: hero-scanline 4s linear infinite; animation-delay: 0s; }
.hero-scanline-2 { animation: hero-scanline 4s linear infinite; animation-delay: 2s; } */

@keyframes phone-rotate-border { to { transform: rotate(360deg); } }
.phone-rotating-border { position: relative; }
.phone-rotating-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent, var(--cyan), transparent, var(--cyan), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: phone-rotate-border 4s linear infinite;
}

.phone-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 194, 212, 0.3);
  z-index: 2;
}
.phone-ring-1 { inset: 0; animation: phone-pulse-ring 3s ease-in-out infinite; }
.phone-ring-2 { inset: 12px; border-width: 1px; border-color: rgba(0,194,212,0.2); animation: phone-pulse-ring 3s ease-in-out infinite 0.5s; }
.phone-ring-3 { inset: 24px; border-width: 1px; border-color: rgba(0,194,212,0.1); animation: phone-pulse-ring 3s ease-in-out infinite 1s; }

.phone-center {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.75);
  border-radius: 50%;
  border: 1px solid rgba(0, 194, 212, 0.4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(0, 194, 212, 0.35), inset 0 0 30px rgba(0, 194, 212, 0.08);
  transition: all 0.3s ease;
}

.hero-phone-center:hover .phone-center {
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(0, 194, 212, 0.8);
  box-shadow: 0 0 80px rgba(0, 194, 212, 0.6), inset 0 0 50px rgba(0, 194, 212, 0.2);
}

.phone-center svg { width: 80px; height: 80px; color: var(--cyan); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
}
.scroll-text { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 35px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0% { top: -50%; } 100% { top: 100%; } }

/* =================== HERO RESPONSIVE =================== */

/* Extra large desktop (> 1200px) */
@media (min-width: 1201px) {
  .hero-float-card { display: block !important; }
  .hero-annotation { display: block !important; }
}

/* Large desktop */
@media (max-width: 1200px) {
  .hero-split-layout { gap: 2rem; }
  .hero-title-left { font-size: clamp(1.8rem, 4.4vw, 3.5rem); }
  .hero-phone-wrapper { width: 280px; height: 280px; }
  .hero-phone-center { width: 176px; height: 176px; }
  .hero-float-card { display: block !important; }
  .hero-annotation { display: block !important; }
}

/* Tablet landscape 768-1024 */
@media (max-width: 1024px) and (min-width: 768px) {
  #hero { padding: 80px 2rem 60px; }
  .hero-split-layout {
    justify-content: center;
    gap: 2rem;
    min-height: 70vh;
    padding: 0 2rem;
  }
  .hero-text-left {
    padding-left: 0;
    align-items: flex-start;
  }
  .hero-text-right { display: none; }
  .hero-title-left { font-size: clamp(2.2rem, 4vw, 3.5rem); }
  .hero-phone-wrapper { width: 260px; height: 260px; }
  .hero-phone-center { width: 160px; height: 160px; }
  .hero-float-card { display: block !important; }
  .hero-annotation { display: block !important; }
}

/* Mobile - KEY FIX */
@media (max-width: 767px) {
  #hero {
    padding: 70px 1.25rem 50px;
    align-items: center;
  }

  .hero-split-layout {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.25rem;
    min-height: auto;
    width: 100%;
  }

  /* TEXT COMES FIRST on mobile */
  .hero-text-left {
    order: 1;
    text-align: center;
    align-items: center;
    padding-left: 0;
    width: 100%;
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .hero-text-right {
    display: flex;
    order: 3;
    text-align: center;
    align-items: center;
    padding-right: 0;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-title-left {
    font-size: clamp(2.8rem, 10vw, 3.5rem);
    text-align: center;
  }

  .hero-title-right {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
    text-align: center;
  }

  /* PHONE COMES SECOND on mobile */
  .hero-phone-wrapper {
    order: 2;
    width: 220px;
    height: 220px;
  }

  .hero-phone-center {
    width: 140px;
    height: 140px;
  }

  .phone-center svg { width: 55px; height: 55px; }

  .hero-annotation { display: none !important; }
  .hero-float-card { display: none !important; }
  .hero-scanline { display: none !important; }
  .scroll-indicator { display: block; }
}

/* Small mobile */
@media (max-width: 480px) {
  #hero { padding: 65px 1rem 40px; }

  .hero-title-left {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }

  .hero-phone-wrapper { width: 200px; height: 200px; }
  .hero-phone-center { width: 125px; height: 125px; }
  .phone-center svg { width: 50px; height: 50px; }
}

/* Extra small */
@media (max-width: 360px) {
  .hero-title-left { font-size: 2.2rem; }
  .hero-phone-wrapper { width: 180px; height: 180px; }
  .hero-phone-center { width: 110px; height: 110px; }
  .phone-center svg { width: 44px; height: 44px; }
}

/* =================== MARQUEE =================== */
.marquee-section {
  padding: 1.25rem 0;
  background: var(--black-light);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee-item span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:rgba(255,255,255,0.85)
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* =================== SECTION COMMON =================== */
.section-pad {
  padding: clamp(60px, 12vw, 120px) clamp(1rem, 4vw, 3rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-title .highlight { color: var(--cyan); }

.section-text {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* =================== ABOUT =================== */
#about {
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(12vw, 20vw, 25rem);
  font-weight: 900;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.3s;
}

.about-feature:hover {
  background: rgba(0, 194, 212, 0.05);
  border-color: rgba(0, 194, 212, 0.2);
  transform: translateX(8px);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.about-feature-content p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* About Dashboard */
.about-visual { position: relative; }

.about-dashboard {
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light), var(--cyan));
  border-radius: 16px 16px 0 0;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}

.dash-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  color: #22c55e;
  font-weight: 600;
}

.dash-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dash-metric {
  background: rgba(0, 194, 212, 0.05);
  border: 1px solid rgba(0, 194, 212, 0.1);
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
  transition: all 0.3s;
}

.dash-metric:hover {
  background: rgba(0, 194, 212, 0.1);
  transform: scale(1.02);
}

.dash-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 0.15rem;
}

.dash-metric-label {
  font-size: 0.55rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dash-chart {
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 1rem;
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--cyan), rgba(0, 194, 212, 0.3));
  border-radius: 3px 3px 0 0;
  min-height: 10%;
}

/* About Floating Cards */
.about-float {
  position: absolute;
  background: var(--black-lighter);
  border: 1px solid rgba(0, 194, 212, 0.25);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.about-float-1 { top: -20px; right: -15px; animation: float1 5s ease-in-out infinite; }
.about-float-2 { bottom: 60px; left: -40px; animation: float2 6s ease-in-out infinite; }
.about-float-3 { bottom: -20px; right: 15%; animation: float3 4s ease-in-out infinite; }

/* =================== INDUSTRIES - IMPROVED =================== */
#industries {
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.industries-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.industries-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 194, 212, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.industry-card:hover::before { opacity: 1; }
.industry-card:hover::after { opacity: 1; }

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 212, 0.3);
  box-shadow: 0 20px 50px rgba(0, 194, 212, 0.15);
}

.industry-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 194, 212, 0.6);
  line-height: 1;
  z-index: 0;
}

.industry-icon-wrap {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
}

.industry-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.15), rgba(0, 194, 212, 0.05));
  border: 1px solid rgba(0, 194, 212, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  position: relative;
}

.industry-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(0, 194, 212, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  transform: scale(1.1);
  box-shadow: 0 8px 25px var(--cyan-glow);
}

.industry-card:hover .industry-icon svg { stroke: var(--black); }

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.industry-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.industry-stat { text-align: center; }

.industry-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
}

.industry-stat-label {
  font-size: 0.55rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.3s;
  position: relative;
  z-index: 1;
}

.industry-link:hover { gap: 0.75rem; }

/* =================== NEW SECTION: WHY CHOOSE US =================== */
#why-us {
  position: relative;
  overflow: hidden;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: linear-gradient(180deg, rgba(0, 194, 212, 0.08) 0%, rgba(0, 194, 212, 0.02) 100%);
  border: 1px solid rgba(0, 194, 212, 0.1);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 194, 212, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::before { opacity: 1; }

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 212, 0.3);
  box-shadow: 0 15px 40px rgba(0, 194, 212, 0.1);
}

.why-card-num {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.why-card-icon {
  width: 55px;
  height: 55px;
  background: rgba(0, 194, 212, 0.1);
  border: 1px solid rgba(0, 194, 212, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.why-card:hover .why-card-icon {
  background: var(--cyan);
  transform: scale(1.1);
}

.why-card:hover .why-card-icon svg { stroke: var(--black); }

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Scroll fade-up animation */
.why-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Animation */
.counter-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 194, 212, 0.03);
  border: 1px solid rgba(0, 194, 212, 0.1);
  border-radius: 16px;
}

.counter-item {
  text-align: center;
  padding: 1rem;
}

.counter-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =================== PROCESS =================== */
#process { position: relative; }

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
  transform: translateX(-50%);
}

.process-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--cyan), var(--cyan-light));
}

.process-step {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step:nth-child(even) .process-content { text-align: right; }

.process-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--black);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s;
}

.process-step:hover .process-node {
  background: var(--cyan);
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 25px var(--cyan-glow);
}

.process-node span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyan);
  transition: color 0.3s;
}

.process-step:hover .process-node span { color: var(--black); }

.process-content { flex: 1; }

.process-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.process-visual { flex: 1; }

.process-card {
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.4s;
}

.process-step:hover .process-card {
  border-color: rgba(0, 194, 212, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 194, 212, 0.1);
}

.process-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.process-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,194,212,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card-info h4 {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.process-card-info p {
  font-size: 0.7rem;
  color: var(--gray);
}

/* =================== RESULTS =================== */
#results {
  background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.results-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 194, 212, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0, 194, 212, 0.08), transparent 40%);
  pointer-events: none;
}

.results-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.result-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.result-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.result-card:hover::before { transform: scaleX(1); }

.result-card:hover {
  background: rgba(0, 194, 212, 0.06);
  border-color: rgba(0, 194, 212, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 194, 212, 0.12);
}

.result-ring {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  position: relative;
}

.result-ring svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.result-ring circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}

.result-ring .bg { stroke: rgba(255,255,255,0.06); }
.result-ring .progress {
  stroke: url(#gradient);
  stroke-dasharray: 282;
  stroke-dashoffset: 282;
}

.result-ring .value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
}

.result-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* =================== TESTIMONIALS - INFINITE CAROUSEL =================== */
#testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.testimonials-track {
  display: flex;
  gap: 0.75rem;
  width: fit-content;
  animation: testimonialSlide 25s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes testimonialSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (420px * 5 + 0.75rem * 5))); }
}

@keyframes testimonialSlideMobile {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (300px * 5 + 0.75rem * 5))); }
}

.testimonial-card {
  flex: 0 0 420px;
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s;
}

.testimonial-card:hover {
  border-color: rgba(0, 194, 212, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 194, 212, 0.12);
}

.testimonial-video-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 420px;
  max-width: 420px;
  padding: 0;
  background: transparent;
  border: none;
}

.testimonial-video-preview {
  position: relative;
  min-height: 180px;
  border-radius: 18px;
  background-image: url('https://img.youtube.com/vi/5-pNv-g0wyo/hqdefault.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.testimonial-video-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 92%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-video-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 194, 212, 0.18);
}

.testimonial-video-link small {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

.testimonial-video-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.testimonial-video-iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  border-radius: 0;
  display: block;
}

.testimonial-video-card.video-open .testimonial-video-preview {
  display: none;
}

.testimonial-video-card.video-open .testimonial-video-iframe {
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--cyan);
}

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.25;
  margin-bottom: -0.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.testimonial-info p {
  font-size: 0.7rem;
  color: var(--gray);
}

/* =================== CTA =================== */
#cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(0, 194, 212, 0.15), transparent),
    linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 194, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 212, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 100%, black, transparent);
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content { max-width: 450px; }

.cta-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-contact-item:hover {
  border-color: rgba(0, 194, 212, 0.3);
  background: rgba(0, 194, 212, 0.05);
}

.cta-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 194, 212, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-info span {
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.1rem;
}

.cta-contact-info p,
.cta-contact-info a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

/* CTA Form */
.cta-form-container {
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}

.cta-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  border-radius: 0 0 2px 2px;
}

.form-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.form-subtitle {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-group { margin-bottom: 0.75rem; }

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0, 194, 212, 0.05);
}

.form-input::placeholder { color: var(--gray); }

textarea.form-input { resize: none; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--cyan-glow);
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.form-submit:hover::before { left: 100%; }

/* =================== FOOTER =================== */
footer {
  padding: clamp(40px, 8vw, 60px) clamp(1rem, 4vw, 3rem) clamp(25px, 4vw, 35px);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--cyan); }

/* .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 2px;
  width: 18px;
  height: 18px;
} */

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 2px;
  width: 20px;
  height: 20px;
  overflow: visible; /* Add this */
  min-width: 20px;   /* Add this */
  min-height: 20px;  /* Add this */
}

.footer-contact-item {
  display: flex;
  align-items: center; /* Changed from flex-start */
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  min-height: 32px; /* Add this to ensure space */
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.7rem; color: var(--gray); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--cyan); }

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* =================== MODAL =================== */
#modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#modal.open { display: flex; }

#modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
}

#modal-content {
  position: relative;
  z-index: 1;
  background: var(--black-lighter);
  border: 1px solid rgba(0, 194, 212, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

#modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--cyan);
  border-radius: 0 0 2px 2px;
}

.modal-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 194, 212, 0.1);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalPulse 2s ease-in-out infinite;
}

@keyframes modalPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--cyan-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.modal-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.modal-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== RESPONSIVE =================== */

/* 4K */
@media (min-width: 2560px) {
  html { font-size: 18px; }
  nav { padding: 1rem 5rem; height: 70px; }
  nav.scrolled { height: 65px; }
  .nav-logo-icon { width: 42px; height: 42px; }
  .nav-logo-text { font-size: 1rem; }
  .industries-grid, .results-grid, .why-us-grid { gap: 2rem; }
  .testimonial-card { flex: 0 0 450px; }
}

/* Large Desktop */
@media (max-width: 1400px) {
  nav { padding: 0.75rem 2rem; }
  nav.scrolled { padding: 0.5rem 2rem; }
}

/* Tablets */
@media (max-width: 1200px) {
  nav { padding: 0.6rem 1.5rem; height: 55px; }
  nav.scrolled { height: 50px; }
  .nav-links { gap: 1.5rem; }
  .nav-time { display: none; }
  
  .about-container { grid-template-columns: 1fr; }
  .about-visual { max-width: 550px; margin: 2rem auto 0; }
  
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-section { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  
  .cta-container { grid-template-columns: 1fr; max-width: 550px; }
  .cta-content { max-width: none; text-align: center; }
  .cta-content .section-label { justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta-btn { display: none !important; }
  .mobile-menu-btn { display: flex; }
  
  nav { padding: 0.5rem 1.25rem; height: 52px; }
  nav.scrolled { height: 48px; }
  
  .hero-float-card { display: none; }
  
  .process-step { flex-direction: column !important; text-align: center; padding-left: 0; }
  .process-step .process-content { text-align: center !important; }
  .process-line { display: none; }
  .process-node { position: relative; left: auto; transform: none; margin-bottom: 1.25rem; }
  .process-visual { width: 100%; max-width: 350px; margin: 1rem auto 0; }
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 0.5rem 1rem; height: 50px; }
  nav.scrolled { height: 46px; }
  
  .nav-logo-icon { width: 32px; height: 32px; }
  .nav-logo-icon svg { width: 12px; height: 12px; }
  .nav-logo-text { font-size: 0.75rem; letter-spacing: 0.08em; }
  
  .btn-primary { padding: 0.5rem 1rem; font-size: 0.65rem; }
  
  #hero { padding: 70px 1.25rem 40px; }
  
  .hero-stats { gap: 1.25rem; }
  
  .hero-scanline { display: none; }
  
  .scroll-indicator { bottom: 1rem; }
  .scroll-line { height: 25px; }
  
  .industries-grid,
  .results-grid,
  .why-us-grid,
  .counter-section { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  
  .testimonial-card { flex: 0 0 300px; padding: 1.5rem; }
  .testimonials-track { animation: testimonialSlideMobile 25s linear infinite; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .hero-annotation-svg {
    display: none;
  }
  .hero-annotation {
    display: none;
  }
}
@media (width:768px) {
  .myBtn{
    display: none;
  }
  .float-card-icon{
    width: 22px;
    height: 22px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {
  nav { padding: 0.4rem 0.75rem; height: 48px; }
  nav.scrolled { height: 44px; }
  
  .nav-logo-icon { width: 28px; height: 28px; }
  .nav-logo-text { font-size: 0.65rem; }
  
  .mobile-menu-btn { width: 35px; height: 35px; padding: 6px; }
  .mobile-menu-btn span { width: 18px; }
  
  .mobile-menu a { font-size: 1rem; }
  
  .btn-primary { padding: 0.45rem 0.85rem; font-size: 0.6rem; }
  
  #hero { padding: 60px 1rem 35px; }
  
  .hero-badge { padding: 0.4rem 0.75rem; }
  .hero-badge-text { font-size: 0.55rem; }
  
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; max-width: 250px; text-align: center; justify-content: center; }
  
  .hero-stats { flex-direction: column; gap: 1rem; }
  
  .about-float { display: none; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .cta-form-container { padding: 1.5rem; }
  
  .modal-buttons { flex-direction: column; }
  .modal-buttons .btn-primary,
  .modal-buttons .btn-secondary { width: 100%; }
  .myBtn{
    display: none;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .nav-logo-text img{width: 130px;}
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  
  .about-feature { flex-direction: column; text-align: center; }
  .about-feature-icon { margin: 0 auto; }
  
  #hero { 
    min-height: auto; 
    padding: 60px 1rem 20px; 
  }
  .hero-split-layout {
    min-height: auto;
    gap: 0.5rem;
    padding-bottom: 0;
  }

  .hero-phone-wrapper {
    width: 180px;
    height: 180px;
    margin-bottom: 0;
  }
  .hero-phone-center {
    width: 110px;
    height: 110px;
  }
  .hero-annotation {
    font-size: 0.45rem;
  }
  .hero-annotation-top-right {
    right: -10%;
    max-width: 80px;
  }
  .marquee-track{
      animation: marquee 2s linear infinite;
  }
  .hero-annotation-left {
    left: -10%;
    max-width: 70px;
  }
  .hero-annotation-right {
    right: -20%;
    max-width: 90px;
  }
  .hero-annotation-bottom {
    right: 10%;
    max-width: 60px;
  }
  .annotation-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width:450px) {
  .hero-title-right{
    position: relative;
    right: 20px;
  }
  .hero-title-left{
    position: relative;
    right: 110px;
  }
}

.video-box {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

/* thumbnail */
.video-thumb {
  position: relative;
  cursor: pointer;
  display: block;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(0,194,212,0.15), rgba(10,10,10,0.96));
  border: 1px solid rgba(0,194,212,0.18);
}

.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,194,212,0.2), transparent 24%), radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 20%);
  pointer-events: none;
}

.video-thumb-inner {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  color: var(--white);
}

.video-thumb-inner .video-label {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.video-thumb-inner .video-status {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* play button center */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 194, 212, 0.95);
  color: #050505;
  font-size: 34px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(0, 194, 212, 0.25);
  animation: videoPulse 2.2s ease-in-out infinite;
}

.video-thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0,194,212,0.28);
  opacity: 0.45;
  pointer-events: none;
}

@keyframes videoPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* iframe hidden initially */
#youtubeVideo {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: none;
  border: none;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .video-box {
    max-width: 100%;
    border-radius: 20px;
  }
  .video-thumb {
    min-height: 320px;
  }
  .video-thumb-inner {
    bottom: 22px;
    left: 22px;
  }
  .video-thumb-inner .video-label {
    font-size: 1rem;
  }
  .play-btn {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

