
: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); }

/* =================== NAVBAR =================== */
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-text {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.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%; }
.nav-links a.active { color: var(--cyan); }
.nav-links a.active::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);
}

.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));
}

/* 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-column {
  display: grid;
  gap: 0.75rem;
}

.dropdown-column h4 {
  margin: 0 0 0.8rem;
  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);
}

.btn-secondary {
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 194, 212, 0.1);
}

/* Mobile Menu Button */
.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; }

/* =================== INDUSTRY HERO - DIAGONAL SPLIT =================== */
#industry-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 5% 80px;
}
@media (min-width:2560px) {
    #industry-hero {
        min-height:60vh;
    }
}

.industry-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.industry-hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 194, 212, 0.03) 40%, rgba(0, 194, 212, 0.08) 60%, transparent 60%);
  transform: rotate(-15deg);
}

.industry-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(0, 194, 212, 0.1), transparent),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(0, 194, 212, 0.05), transparent);
}

#industry-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.industry-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  z-index: 2;
}

.industry-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.industry-hero-left {
  max-width: 600px;
}

.industry-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.industry-breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.industry-breadcrumb a:hover { color: var(--cyan); }

.industry-breadcrumb span { color: var(--gray-dark); font-size: 0.7rem; }
.industry-breadcrumb .current { color: var(--cyan); font-weight: 600; }

.industry-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.industry-hero-label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
}

.industry-hero-label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.industry-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.industry-hero-title .line {
  display: block;
  overflow: hidden;
}

.industry-hero-title .line span { display: inline-block; }

.industry-hero-title .gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Right - Service Preview Cards */
.industry-hero-right {
  position: relative;
  height: 500px;
}

.hero-service-card {
  position: absolute;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-service-card:hover {
  border-color: rgba(0, 194, 212, 0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 194, 212, 0.15);
}

.hero-service-card-1 {
  top: 0;
  left: 0;
  width: 280px;
  animation: heroCardFloat1 6s ease-in-out infinite;
}

.hero-service-card-2 {
  top: 30%;
  right: 0;
  width: 260px;
  animation: heroCardFloat2 7s ease-in-out infinite;
}

.hero-service-card-3 {
  bottom: 0;
  left: 15%;
  width: 300px;
  animation: heroCardFloat3 5s ease-in-out infinite;
}

@keyframes heroCardFloat1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes heroCardFloat2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes heroCardFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hero-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.hero-card-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-card-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
}

.hero-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =================== SERVICES SHOWCASE - INTERACTIVE =================== */
#services-showcase {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C2D4' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-header-left {
  max-width: 600px;
}

.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(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-title .highlight { color: var(--cyan); }

.services-nav {
  display: flex;
  gap: 1rem;
}

.services-nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(0, 194, 212, 0.1);
  border: 1px solid rgba(0, 194, 212, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.services-nav-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.services-nav-btn:hover svg { stroke: var(--black); }

.services-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  stroke-width: 2;
  fill: none;
}

.services-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Services Slider */
.services-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.services-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 1rem;
}

.service-slide-image {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black-lighter);
}

.service-slide-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.service-slide-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.2), rgba(0, 194, 212, 0.05));
  border: 2px dashed rgba(0, 194, 212, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-image-placeholder::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(0, 194, 212, 0.15);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.service-image-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

@keyframes rotate { to { transform: rotate(360deg); } }

/* Service Image Stats */
.service-image-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.service-image-stat {
  flex: 1;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.service-image-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}

.service-image-stat-label {
  font-size: 0.6rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Service Content */
.service-slide-content {
  padding: 2rem 0;
}

.service-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 194, 212, 0.08);
  line-height: 1;
  margin-bottom: -2rem;
  position: relative;
  z-index: 0;
}

.service-slide-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-slide-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 194, 212, 0.05);
  border: 1px solid rgba(0, 194, 212, 0.1);
  border-radius: 10px;
  transition: all 0.3s;
}

.service-feature:hover {
  background: rgba(0, 194, 212, 0.1);
  transform: translateX(5px);
}

.service-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--cyan);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--black);
  stroke-width: 2.5;
}

.service-feature span {
  font-size: 0.85rem;
  font-weight: 600;
}

.service-slide-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Industry Sections */
.industry-section {
  padding: 5rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.industry-section:nth-child(even) {
  background: linear-gradient(180deg, rgba(0,194,212,0.02) 0%, transparent 100%);
}

.industry-container {
  max-width: 1400px;
  margin: 0 auto;
}

.industry-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.industry-content-alt {
  grid-template-columns: 1.2fr 1fr;
}

.industry-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(0,194,212,0.1), rgba(0,194,212,0.02));
  border-radius: 24px;
  border: 1px solid rgba(0,194,212,0.15);
  position: relative;
  overflow: hidden;
}

.industry-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,194,212,0.15), transparent 70%);
  z-index: 0;
}

.industry-icon {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(0,194,212,0.2), rgba(0,194,212,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(0,194,212,0.3);
}

.industry-icon::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(0,194,212,0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.industry-icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.industry-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s ease;
}

.industry-visual:hover .industry-image {
  transform: scale(1.05);
}

.industry-info {
  padding: 1rem 0;
}

.industry-number {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0,194,212,0.35);
  line-height: 1;
  margin-bottom: -2rem;
  position: relative;
  z-index: 0;
}

.industry-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.industry-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.industry-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.industry-cta {
  display: flex;
  gap: 1rem;
}

/* Service Pagination */
.services-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.services-pagination-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.services-pagination-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: scale(1.2);
}

.services-pagination-dot:hover:not(.active) {
  background: rgba(0, 194, 212, 0.3);
}

.services-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
}

.services-progress-bar {
  width: 100px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.services-progress-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 0.3s;
}

.services-progress-text {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
}

/* =================== ALL SERVICES GRID =================== */
#all-services {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.all-services-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 194, 212, 0.06) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.all-services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.all-services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.all-services-header p {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 1rem;
}

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.all-service-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.all-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.all-service-card:hover::before { transform: scaleX(1); }

.all-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 194, 212, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.all-service-card:hover::after { opacity: 1; }

.all-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 194, 212, 0.3);
  box-shadow: 0 25px 60px rgba(0, 194, 212, 0.1);
}

.all-service-card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 194, 212, 0.06);
  line-height: 1;
}

.all-service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.15), rgba(0, 194, 212, 0.05));
  border: 1px solid rgba(0, 194, 212, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.all-service-card:hover .all-service-card-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  transform: scale(1.1) rotate(5deg);
}

.all-service-card:hover .all-service-card-icon svg { stroke: var(--black); }

.all-service-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.all-service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.all-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  transition: gap 0.3s;
}

.all-service-card:hover .all-service-card-link { gap: 0.8rem; }

/* =================== INDUSTRIES WE SERVE =================== */
#industries-served {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.industries-container {
  max-width: 1400px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.industries-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.industry-tab {
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.industry-tab:hover {
  border-color: rgba(0, 194, 212, 0.3);
  color: var(--white);
}

.industry-tab.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
}

.industries-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.industry-visual {
  position: relative;
  height: 450px;
  background: var(--black-lighter);
  border-radius: 24px;
  overflow: hidden;
}

.industry-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.05), transparent);
}

.industry-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon-large {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(0, 194, 212, 0.2), rgba(0, 194, 212, 0.05));
  border: 2px solid rgba(0, 194, 212, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon-large svg {
  width: 60px;
  height: 60px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.industry-stats-floating {
  position: absolute;
  z-index: 10;
}

.industry-stats-floating-1 {
  top: 15%;
  right: 10%;
  animation: floatIndustry1 5s ease-in-out infinite;
}

.industry-stats-floating-2 {
  bottom: 20%;
  left: 8%;
  animation: floatIndustry2 6s ease-in-out infinite;
}

@keyframes floatIndustry1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatIndustry2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.industry-stat-card {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.industry-stat-card-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
}

.industry-stat-card-label {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.industry-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.industry-info > p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.industry-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 194, 212, 0.05);
  border-radius: 12px;
  transition: all 0.3s;
}

.industry-benefit:hover {
  background: rgba(0, 194, 212, 0.1);
  transform: translateX(10px);
}

.industry-benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
}

.industry-benefit-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.industry-benefit-content p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* =================== COMPARISON TABLE =================== */
#comparison {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.comparison-container {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.comparison-table {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row:not(.comparison-header-row):hover {
  background: rgba(0, 194, 212, 0.03);
}

.comparison-header-row {
  background: rgba(0, 194, 212, 0.05);
}

.comparison-cell {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.comparison-cell:not(:first-child) {
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.05);
}

.comparison-header-row .comparison-cell {
  font-weight: 700;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.comparison-feature {
  color: var(--gray-light);
}

.comparison-check {
  width: 24px;
  height: 24px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--black);
  stroke-width: 3;
}

.comparison-x {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-x svg {
  width: 12px;
  height: 12px;
  stroke: var(--gray);
  stroke-width: 2;
}

/* =================== FAQ SECTION =================== */
#faq {
  padding: clamp(80px, 15vw, 150px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 194, 212, 0.2);
}

.faq-item.active {
  border-color: rgba(0, 194, 212, 0.4);
  box-shadow: 0 10px 40px rgba(0, 194, 212, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  padding-right: 1rem;
}

.faq-icon {
  width: 36px;
  height: 36px;
  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;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.active .faq-icon {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  stroke-width: 2;
  transition: stroke 0.3s;
}

.faq-item.active .faq-icon svg { stroke: var(--black); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* =================== CTA SECTION =================== */
#industry-cta {
  padding: clamp(100px, 18vw, 180px) clamp(1rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.industry-cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(0, 194, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0, 194, 212, 0.08), transparent);
}

.industry-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.industry-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.industry-cta-content h2 .highlight { color: var(--cyan); }

.industry-cta-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-cta-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.industry-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-cta-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
}

.industry-cta-feature span {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.industry-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* CTA Form */
.industry-cta-form {
  background: var(--black-lighter);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
}

.industry-cta-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  border-radius: 0 0 3px 3px;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  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); }

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300C2D4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

select.form-input option {
  background: var(--black);
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 1rem 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.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--cyan-glow);
}

/* =================== 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: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  min-height: 32px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--cyan);
  width: 20px;
  height: 20px;
  overflow: visible;
  min-width: 20px;
  min-height: 20px;
}

.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); }

/* =================== RESPONSIVE =================== */

@media (min-width: 2560px) {
  html { font-size: 18px; }
  nav { padding: 1rem 5rem; height: 70px; }
}

@media (max-width: 1400px) {
  nav { padding: 0.75rem 2rem; }
  .industry-hero-content { gap: 2rem; }
}

@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; }
  
  .industry-hero-content { grid-template-columns: 1fr; }
  .industry-hero-left { max-width: 100%; text-align: center; }
  .industry-hero-label { justify-content: center; }
  .industry-hero-buttons { justify-content: center; }
  .industry-breadcrumb { justify-content: center; }
  
  .industry-hero-right { 
    height: 350px;
    margin-top: 2rem;
  }
  
  .hero-service-card-1 { left: 5%; top: 10%; }
  .hero-service-card-2 { right: 5%; top: 40%; }
  .hero-service-card-3 { left: 25%; bottom: 5%; }
  
  .service-slide { grid-template-columns: 1fr; gap: 2rem; }
  .service-slide-image { height: 350px; }
  
  .industries-content { grid-template-columns: 1fr; }
  .industry-visual { height: 350px; margin-bottom: 2rem; }
  
  .industry-content,
  .industry-content-alt { grid-template-columns: 1fr; gap: 2rem; }
  .industry-visual { min-height: 300px; }
  .industry-number { font-size: 4rem; }
  .industry-section { padding: 3rem 1.5rem; }
  
  .industry-cta-container { grid-template-columns: 1fr; max-width: 600px; }
  .industry-cta-content { text-align: center; }
  .industry-cta-features { justify-content: center; }
  .industry-cta-buttons { justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .all-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@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-service-card { padding: 1rem; }
  .hero-service-card-1, .hero-service-card-2, .hero-service-card-3 { width: 220px; }
  
  .service-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0.5rem 1rem; height: 50px; }
  nav.scrolled { height: 46px; }
  
  .nav-logo-text { font-size: 0.75rem; }
  .btn-primary { padding: 0.5rem 1rem; font-size: 0.65rem; }
  
  #industry-hero { padding: 80px 1.25rem 60px; }
  
  .industry-hero-right { display: none; }
  
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-nav { display: none; }
  
  .service-slide-image { height: 280px; }
  .service-image-stats { flex-direction: column; gap: 0.5rem; }
  
  .all-services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  
  .industries-tabs { gap: 0.5rem; }
  .industry-tab { padding: 0.6rem 1rem; font-size: 0.7rem; }
  
  .industry-section { padding: 2.5rem 1rem; }
  .industry-visual { min-height: 250px; }
  .industry-icon { width: 100px; height: 100px; }
  .industry-icon svg { width: 40px; height: 40px; }
  .industry-number { font-size: 3rem; margin-bottom: -1rem; }
  .industry-features { grid-template-columns: 1fr; }
  
  .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .comparison-cell { padding: 1rem; font-size: 0.8rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
    .service-image-stats{display: none;}
}

@media (max-width: 480px) {
  nav { padding: 0.4rem 0.75rem; height: 48px; }
  nav.scrolled { height: 44px; }
  
  .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; }
  
  .industry-hero-buttons { flex-direction: column; align-items: center; }
  .industry-hero-buttons .btn-primary,
  .industry-hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  
  .service-slide-content { padding: 1rem 0; }
  .service-number { font-size: 3rem; margin-bottom: -1rem; }
  
  .services-pagination { flex-direction: column; gap: 1rem; }
  .services-progress { margin-left: 0; }
  
  .form-row { grid-template-columns: 1fr; }
  .industry-cta-form { padding: 1.5rem; }
  
  .industry-cta-features { flex-direction: column; gap: 1rem; align-items: center; }
  
  .industry-cta-buttons { flex-direction: column; align-items: center; }
  .industry-cta-buttons .btn-primary,
  .industry-cta-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  
  .industry-section { padding: 2rem 0.75rem; }
  .industry-visual { min-height: 200px; border-radius: 16px; }
  .industry-icon { width: 80px; height: 80px; }
  .industry-icon svg { width: 32px; height: 32px; }
  .industry-number { font-size: 2.5rem; }
  .industry-feature { padding: 0.6rem 1rem; font-size: 0.8rem; }
  
  .service-image-stats{display: none;}
}

@media (max-width: 360px) {
  .industry-hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .nav-logo-text img { width: 130px; }
}

