/*
Theme Name: Appulence Tech
Theme URI: http://appulencegroup.co.za/
Author: Appulence Group
Author URI: http://appulencegroup.co.za/
Description: Premium Corporate Theme for Appulence Tech.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: appulence
*/

/* ===================================================
   APPULENCE TECH — Premium Corporate Website
   Division of Appulence Group
   =================================================== */

/* ---------- Google Font Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --clr-primary: #E8820C;
  --clr-primary-light: #F5A623;
  --clr-primary-dark: #C06A00;
  --clr-accent: #FF9F1C;
  --clr-accent-glow: rgba(232, 130, 12, 0.35);

  /* Dark Theme */
  --clr-bg-deep: #0A0A0F;
  --clr-bg: #101018;
  --clr-bg-card: #16161F;
  --clr-bg-card-hover: #1E1E2A;
  --clr-surface: #1A1A26;
  --clr-surface-elevated: #222230;

  /* Text */
  --clr-text: #F0F0F5;
  --clr-text-secondary: #A0A0B8;
  --clr-text-muted: #6B6B82;

  /* Borders & Glass */
  --clr-border: rgba(255, 255, 255, 0.06);
  --clr-border-glow: rgba(232, 130, 12, 0.2);
  --glass-bg: rgba(16, 16, 24, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #E8820C 0%, #F5A623 50%, #FF9F1C 100%);
  --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #101018 100%);
  --gradient-card: linear-gradient(145deg, rgba(232, 130, 12, 0.05) 0%, rgba(16, 16, 24, 0.8) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.85) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Sizing */
  --section-padding: 120px 0;
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.4s var(--ease-smooth);
  --transition-slow: 0.7s var(--ease-smooth);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(232, 130, 12, 0.15);
  --shadow-glow-strong: 0 0 80px rgba(232, 130, 12, 0.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg-deep);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--clr-primary);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-accent);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Animations (Scroll Reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.4s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

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

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--clr-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--clr-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-text);
  background: rgba(232, 130, 12, 0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 4px 20px rgba(232, 130, 12, 0.3);
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232, 130, 12, 0.4) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s linear;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 2;
}

/* Animated grid pattern on hero */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(232, 130, 12, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 130, 12, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 130, 12, 0.1);
  border: 1px solid rgba(232, 130, 12, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-primary-light);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--ease-smooth) 0.2s both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero h1 .line {
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--clr-text-secondary);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.8s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(232, 130, 12, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(232, 130, 12, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--clr-primary);
  background: rgba(232, 130, 12, 0.08);
  color: var(--clr-primary-light);
  transform: translateY(-3px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Hero Slider Navigation */
.hero-slider-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-slider-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  padding: 0;
}

.hero-slider-dot.active {
  background: var(--clr-primary);
  width: 60px;
  box-shadow: 0 0 16px rgba(232, 130, 12, 0.4);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: fadeInUp 0.8s var(--ease-smooth) 1.2s both;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--clr-primary), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Mascot Floating */
.hero-mascot {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 6;
  width: 280px;
  animation: float 6s ease-in-out infinite, fadeInRight 1s var(--ease-smooth) 1s both;
}

.hero-mascot img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 60px rgba(232, 130, 12, 0.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  75% { transform: translateY(10px) rotate(-1deg); }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.stats-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--clr-border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-glow);
  pointer-events: none;
}

/* Floating accent badge on about image */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-strong);
  text-align: center;
}

.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232, 130, 12, 0.1);
  border: 1px solid rgba(232, 130, 12, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-feature h4 {
  margin-bottom: 4px;
  font-weight: 600;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
}

/* =========================================
   VISION & MISSION
   ========================================= */
.vision-mission {
  padding: var(--section-padding);
  position: relative;
  background: var(--clr-bg);
}

.vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.vm-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.vm-card:hover {
  border-color: var(--clr-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px 3px 0 0;
}

.vm-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 130, 12, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.vm-card h3 {
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--clr-text-secondary);
  line-height: 1.8;
}

/* =========================================
   SERVICES / PILLARS
   ========================================= */
.services {
  padding: var(--section-padding);
  position: relative;
  background: var(--clr-bg-deep);
}

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

.services-header .section-subtitle {
  margin: 0 auto;
}

.pillar-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pillar-tab {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pillar-tab:hover {
  border-color: var(--clr-border-glow);
  color: var(--clr-text);
}

.pillar-tab.active {
  background: rgba(232, 130, 12, 0.12);
  border-color: var(--clr-primary);
  color: var(--clr-primary-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 130, 12, 0.04), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: var(--clr-border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  background: var(--clr-bg-card-hover);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(232, 130, 12, 0.08);
  border: 1px solid rgba(232, 130, 12, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(232, 130, 12, 0.15);
  box-shadow: 0 0 24px rgba(232, 130, 12, 0.15);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--clr-text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-primary-light);
  background: rgba(232, 130, 12, 0.08);
  border: 1px solid rgba(232, 130, 12, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
}

/* =========================================
   ORG CHART / STRUCTURE
   ========================================= */
.org-structure {
  padding: var(--section-padding);
  background: var(--clr-bg);
  position: relative;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 64px;
}

.org-root {
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  padding: 20px 40px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-glow-strong);
  position: relative;
}

.org-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-primary), var(--clr-border));
  position: relative;
}

.org-connector::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 600px;
  height: 2px;
  background: var(--clr-border);
}

.org-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin-top: 0;
  position: relative;
}

.org-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: var(--clr-border);
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.org-branch::before {
  content: '';
  width: 2px;
  height: 32px;
  background: var(--clr-border);
}

.org-branch-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  width: 100%;
  transition: all var(--transition-base);
}

.org-branch-card:hover {
  border-color: var(--clr-border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.org-branch-card h4 {
  color: var(--clr-primary-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.org-branch-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.org-branch-card li {
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.org-branch-card li::before {
  content: '›';
  color: var(--clr-primary);
  font-weight: 700;
}

/* =========================================
   HOSTING / PRICING TIERS
   ========================================= */
.hosting {
  padding: var(--section-padding);
  background: var(--clr-bg-deep);
  position: relative;
}

.hosting-header {
  text-align: center;
  margin-bottom: 64px;
}

.hosting-header .section-subtitle {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--clr-border-glow);
}

.pricing-card.featured {
  padding-top: 64px;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(232, 130, 12, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-target {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--clr-primary-light);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--clr-text-secondary);
}

.pricing-feature .check {
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* =========================================
   ACADEMY
   ========================================= */
.academy {
  padding: var(--section-padding);
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.academy-visual {
  position: relative;
}

.academy-visual-card {
  background: var(--gradient-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.academy-visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 130, 12, 0.08) 0%, transparent 70%);
  animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.academy-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  position: relative;
  z-index: 1;
}

.academy-code .line {
  display: block;
  padding: 4px 0;
  opacity: 0;
  animation: typeLine 0.5s var(--ease-smooth) forwards;
}

.academy-code .keyword { color: #FF79C6; }
.academy-code .function { color: #50FA7B; }
.academy-code .string { color: var(--clr-primary-light); }
.academy-code .comment { color: var(--clr-text-muted); }
.academy-code .variable { color: #8BE9FD; }
.academy-code .number { color: #BD93F9; }

.academy-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.academy-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.academy-pillar:hover {
  border-color: var(--clr-border-glow);
  transform: translateX(8px);
  box-shadow: var(--shadow-glow);
}

.academy-pillar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232, 130, 12, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.academy-pillar h4 {
  margin-bottom: 6px;
  font-weight: 600;
}

.academy-pillar p {
  font-size: 0.88rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* =========================================
   FREE APPS INITIATIVE
   ========================================= */
.free-apps {
  padding: var(--section-padding);
  background: var(--clr-bg-deep);
  position: relative;
  overflow: hidden;
}

.free-apps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right center, rgba(232, 130, 12, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.free-apps-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.free-apps .section-subtitle {
  margin-bottom: 32px;
}

.free-apps-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.free-apps-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--clr-text);
  background: var(--clr-bg-card);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.free-apps-features .check {
  color: var(--clr-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.free-apps-form-wrapper {
  background: var(--gradient-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.free-apps-form-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(232, 130, 12, 0.4), transparent 50%, rgba(245, 166, 35, 0.2));
  z-index: -1;
  border-radius: calc(var(--radius-xl) + 2px);
}

.free-apps-form h3 {
  margin-bottom: 32px;
  font-size: 1.6rem;
  text-align: center;
  color: var(--clr-text);
  font-family: var(--font-heading);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.free-apps-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.free-apps-form input[type="text"],
.free-apps-form input[type="email"],
.free-apps-form input[type="tel"],
.free-apps-form input[type="number"],
.free-apps-form select,
.free-apps-form textarea {
  width: 100%;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.free-apps-form input:focus,
.free-apps-form select:focus,
.free-apps-form textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232, 130, 12, 0.15);
  background: rgba(16, 16, 24, 0.8);
}

.free-apps-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A0A0B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.free-apps-form select option {
  background: var(--clr-bg-deep);
  color: var(--clr-text);
}

.free-apps-form textarea {
  resize: vertical;
  min-height: 80px;
}

.checkboxes-group {
  margin-top: 10px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--clr-text);
  margin-bottom: 0;
  cursor: pointer;
}

.checkbox-grid input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  background: rgba(10, 10, 15, 0.6);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-grid input[type="checkbox"]:checked {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.checkbox-grid input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn {
  width: 100%;
  margin-top: 24px;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us {
  padding: var(--section-padding);
  background: var(--clr-bg-deep);
  position: relative;
}

.why-us-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-glow);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(232, 130, 12, 0.08);
  border: 1px solid rgba(232, 130, 12, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  background: rgba(232, 130, 12, 0.15);
  transform: scale(1.08) rotate(3deg);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: var(--gradient-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 130, 12, 0.12) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes ctaGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -40px); }
}

.cta h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.cta p {
  position: relative;
  z-index: 1;
  color: var(--clr-text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-text-secondary);
  transition: all var(--transition-fast);
}

.footer-social:hover {
  background: rgba(232, 130, 12, 0.12);
  border-color: var(--clr-primary);
  color: var(--clr-primary-light);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--clr-text);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--clr-primary-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-bottom a {
  color: var(--clr-primary-light);
}

/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Typing effect for academy */
.academy-code .line:nth-child(1) { animation-delay: 0.2s; }
.academy-code .line:nth-child(2) { animation-delay: 0.4s; }
.academy-code .line:nth-child(3) { animation-delay: 0.6s; }
.academy-code .line:nth-child(4) { animation-delay: 0.8s; }
.academy-code .line:nth-child(5) { animation-delay: 1s; }
.academy-code .line:nth-child(6) { animation-delay: 1.2s; }
.academy-code .line:nth-child(7) { animation-delay: 1.4s; }
.academy-code .line:nth-child(8) { animation-delay: 1.6s; }
.academy-code .line:nth-child(9) { animation-delay: 1.8s; }

@keyframes typeLine {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(232, 130, 12, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232, 130, 12, 0.4);
}

/* =========================================
   LOADING SCREEN
   ========================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--clr-surface);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: loaderProgress 1.2s ease-in-out infinite;
}

@keyframes loaderProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* =========================================
   CURSOR GLOW
   ========================================= */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 130, 12, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid,
  .academy-grid,
  .free-apps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid,
  .pricing-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mascot {
    display: none;
  }

  .org-branches {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .org-branches::before {
    display: none;
  }

  .vm-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px;
    gap: 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .services-grid,
  .pricing-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll {
    display: none;
  }

  .hero-slider-nav {
    bottom: 24px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .pillar-tabs {
    flex-direction: column;
    align-items: stretch;
  }
}

