/* ============================================
   ROOT VARIABLES - IMC 2026 Theme
   ============================================ */
:root {
  /* IMC 2026 Colors */
  --imc-orange: #ff6b00;
  --imc-orange-light: #ff8533;
  --imc-purple: #6b21a8;
  --imc-purple-light: #9333ea;
  --imc-blue: #1e3a8a;
  --imc-gradient: linear-gradient(135deg, #ff6b00 0%, #9333ea 50%, #1e3a8a 100%);
  
  /* Dark Theme */
  --bg-dark: #0a0e1a;
  --bg-card: #111827;
  --bg-card-hover: #1f2937;
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  
  /* Accents */
  --primary: #ff6b00;
  --primary-light: #ff8533;
  --accent: #9333ea;
  --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #9333ea 100%);
  --gradient-dark: linear-gradient(180deg, #111827 0%, #0a0e1a 100%);
  
  /* UI */
  --border: rgba(148, 163, 184, 0.12);
  --border-light: rgba(148, 163, 184, 0.2);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 16px 48px rgba(255, 107, 0, 0.25);
  --radius: 16px;
  --radius-lg: 20px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ============================================
   IMC ANIMATED BACKGROUND
   ============================================ */
.bg-animation {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 25s ease-in-out infinite;
}
.orb-imc-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.4), transparent 70%);
  top: -250px;
  left: -150px;
  animation-delay: 0s;
}
.orb-imc-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.35), transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -8s;
}
.orb-imc-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.3), transparent 70%);
  top: 45%;
  right: 15%;
  animation-delay: -16s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(0.92); }
}
.imc-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 107, 0, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(147, 51, 234, 0.06) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.4;
}

.page-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 80px;
  padding-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION - IMC CENTRIC
   ============================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.imc-logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
}
.imc-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}
.ltsct-logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
}
.ltsct-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 16px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--gradient-primary);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - WELCOMING
   ============================================ */
.hero-section {
  padding: 80px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--imc-orange-light);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--imc-orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.title-line {
  display: block;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.imc-text {
  color: var(--imc-orange-light);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}
.stat-item {
  display: grid;
  gap: 4px;
}
.stat-number {
  font-size: 30px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.45);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

/* Hero Visual - IMC Profile Card */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.profile-card-imc {
  position: relative;
  width: 340px;
  height: 340px;
  transform-style: preserve-3d;
  animation: float3d 7s ease-in-out infinite;
}
@keyframes float3d {
  0%, 100% { transform: rotateY(-6deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(6deg) rotateX(-6deg) translateY(-18px); }
}
.profile-imc-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--imc-orange), var(--imc-purple), var(--imc-blue), var(--imc-orange));
  filter: blur(30px);
  opacity: 0.6;
  animation: rotate 12s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.profile-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 80px rgba(255, 107, 0, 0.4);
  background: var(--bg-card);
}
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-tech-badge {
  position: absolute;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(255, 107, 0, 0.4);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: floatBadge 4.5s ease-in-out infinite;
  z-index: 3;
  backdrop-filter: blur(8px);
}
.badge-aws {
  top: 25px;
  right: -25px;
  color: var(--imc-orange-light);
  animation-delay: 0s;
}
.badge-mqtt {
  bottom: 70px;
  right: -35px;
  color: var(--accent);
  animation-delay: -1.5s;
}
.badge-gnss {
  bottom: 25px;
  left: -25px;
  color: var(--imc-orange-light);
  animation-delay: -3s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 40px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   MODULES GRID
   ============================================ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.module-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.module-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: var(--shadow-hover);
}
.module-visual {
  position: relative;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.module-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-card-hover);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.module-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-card:hover .module-img {
  transform: scale(1.1);
}
.module-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.module-badge {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: black;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
.module-info {
  padding: 22px;
  display: grid;
  gap: 12px;
}
.module-header {
  display: grid;
  gap: 4px;
}
.module-name {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.module-chip {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
}
.module-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.module-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.feature-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s ease;
}
.feature-chip:hover {
  background: rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateX(2px);
}
.feature-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   CLOUD SOLUTIONS
   ============================================ */
.cloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.cloud-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}
.cloud-card:hover {
  transform: translateY(-6px);
  border-color: rgba(147, 51, 234, 0.3);
  box-shadow: 0 16px 48px rgba(147, 51, 234, 0.25);
}
.cloud-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.cloud-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.cloud-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cloud-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tech-badge {
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.4);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

/* ============================================
   IMC SECTION
   ============================================ */
.imc-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.imc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}
.imc-badge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.imc-badge-logo {
  height: 40px;
  width: auto;
}
.imc-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--imc-orange-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.imc-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.imc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.imc-item {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.3s ease;
}
.imc-item:hover {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-4px);
}
.imc-icon {
  font-size: 38px;
  margin-bottom: 14px;
}
.imc-item h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.imc-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.btn-imc {
  background: var(--gradient-primary);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.4);
}
.btn-imc:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.5);
}

/* ============================================
   CONNECT SECTION - INTERACTIVE
   ============================================ */
.connect-section {
  padding: 60px 0;
}
.connect-card-wrapper {
  position: relative;
}
.connect-card {
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.connect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
  pointer-events: none;
}
.connect-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.connect-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 26px;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 15px 18px;
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.contact-method::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.contact-method:hover::before {
  transform: translateX(100%);
}
.contact-method:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2);
}
.method-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.method-text {
  font-weight: 600;
  font-size: 14px;
}

/* CTA Grid */
.cta-grid {
  display: grid;
  gap: 12px;
}
.cta-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.cta-button:hover::before {
  transform: translateX(100%);
}
.cta-icon {
  font-size: 28px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.cta-button:hover .cta-icon {
  transform: scale(1.15) rotate(5deg);
}
.cta-text {
  display: grid;
  gap: 2px;
  flex-grow: 1;
}
.cta-text strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}
.cta-text small {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.cta-arrow {
  font-size: 20px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--text-primary);
}
.cta-button:hover .cta-arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* CTA Button Variants */
.cta-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}
.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(255, 107, 0, 0.5);
}

.cta-secondary {
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.35);
  color: #ffffff;
}
.cta-secondary:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.cta-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}
.cta-glass:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.25);
}

/* Connect Visual */
.connect-visual {
  display: grid;
  gap: 26px;
  align-items: center;
}
.availability-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 17px 21px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.15);
}
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
.status-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 2px;
}
.status-text small {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.quick-stats {
  display: grid;
  gap: 14px;
}
.quick-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 15px 17px;
  border-radius: 12px;
  transition: all 0.25s ease;
}
.quick-stat:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateX(4px);
}
.stat-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.imc-cta-note {
  background: rgba(255, 107, 71, 0.1);
  border: 1px solid rgba(255, 107, 71, 0.35);
  padding: 17px 21px;
  border-radius: 13px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255, 107, 71, 0.15);
}
.imc-cta-note p {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #ff6b47;
}
.imc-cta-note small {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   FOOTER - FIXED AT BOTTOM
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(11, 17, 29, 0.95);
  backdrop-filter: blur(12px);
  margin-top: 80px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo-wrap {
  height: 42px;
  display: flex;
  align-items: center;
}
.footer-imc-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.ltsct-footer-logo-wrap {
  height: 42px;
  display: flex;
  align-items: center;
}
.ltsct-footer-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-left: 4px;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-event {
  font-size: 12px;
  color: var(--imc-orange-light);
  font-weight: 600;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-event {
  font-size: 12px;
  color: var(--imc-orange-light);
  font-weight: 600;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-down {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-down.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .profile-card-imc {
    width: 280px;
    height: 280px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .connect-card {
    grid-template-columns: 1fr;
  }
  .connect-visual {
    order: -1;
  }
  .module-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
  }

  /* ============================================
   MOBILE MENU - ACTIVE STATE
   ============================================ */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(16px);
  padding: 20px;
  gap: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.active a {
  color: var(--text-primary);
  font-size: 15px;
  padding: 8px 0;
}

.nav-links.active .nav-cta {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}
}