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

/* ==========================================================================
   1. GLOBAL/RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: #090909;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

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

section {
  padding: 140px 0;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   2. NAVIGATION (.navbar)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  height: 80px;
}

.nav-logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: #4A8DFF;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: white;
}

.nav-cta {
  background: #FF6A00;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

/* ==========================================================================
   3. HERO (.hero)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.7) 50%, rgba(9, 9, 9, 0.85) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
                    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
  opacity: 0.03;
}

#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text {
  grid-column: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 141, 255, 0.1);
  border: 1px solid rgba(74, 141, 255, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: #4A8DFF;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #4A8DFF;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-size: 88px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hero-headline .gradient-text {
  background: linear-gradient(135deg, #4A8DFF, #7B61FF, #FF6A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #FF6A00;
  color: white;
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   4. HERO DASHBOARD (.hero-dashboard)
   ========================================================================== */
.hero-dashboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #22c55e;
}

.dash-status .dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.dash-value {
  font-size: 22px;
  font-weight: 700;
}

.dash-value.blue { color: #4A8DFF; }
.dash-value.orange { color: #FF6A00; }
.dash-value.green { color: #22c55e; }

.dash-change {
  font-size: 11px;
  color: #22c55e;
  margin-top: 4px;
}

.dash-map {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 140px;
  position: relative;
  overflow: hidden;
}

.dash-map-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.dash-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 80px;
}

.dash-bar {
  flex: 1;
  background: linear-gradient(to top, #4A8DFF, rgba(74, 141, 255, 0.3));
  border-radius: 3px 3px 0 0;
  animation: barGrow 1.5s ease-out;
}

/* ==========================================================================
   5. SECTION HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4A8DFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ==========================================================================
   6. NETWORK SECTION (#network)
   ========================================================================== */
.map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.map-container {
  position: relative;
}

.map-container svg {
  width: 100%;
  height: auto;
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 0.5;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  cursor: pointer;
  z-index: 2;
}

.map-pin::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #4A8DFF;
  border-radius: 50%;
  position: absolute;
  animation: mapPulse 2s infinite;
}

.map-pin::after {
  content: '';
  width: 24px;
  height: 24px;
  background: rgba(74, 141, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: -6px;
  animation: mapPulse 2s infinite;
}

.map-pin .pin-label {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: rgba(9, 9, 9, 0.9);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(74, 141, 255, 0.3);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.map-pin:hover .pin-label {
  opacity: 1;
  top: -38px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  border-color: rgba(74, 141, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.info-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.info-value {
  font-size: 28px;
  font-weight: 800;
}

/* ==========================================================================
   7. BENTO GRID (#why-us)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(74, 141, 255, 0.06), transparent 40%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.bento-card:hover {
  border-color: rgba(74, 141, 255, 0.2);
  transform: translateY(-4px);
}

.bento-card.lg {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 141, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.bento-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bento-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ==========================================================================
   8. TIMELINE (#how-it-works)
   ========================================================================== */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 141, 255, 0.3), rgba(255, 106, 0, 0.3), transparent);
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: rgba(74, 141, 255, 0.1);
  border: 2px solid rgba(74, 141, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #4A8DFF;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ==========================================================================
   9. GALLERY (#gallery)
   ========================================================================== */
.gallery-viewport {
  overflow: hidden;
  position: relative;
  margin: 0 -40px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 40px;
}

.gallery-slide {
  min-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide:hover {
  transform: scale(1.02);
}

.slide-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.gallery-slide:hover .slide-overlay {
  opacity: 1;
}

.slide-location {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.slide-stats {
  display: flex;
  gap: 16px;
}

.slide-stat {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.slide-stat span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 18px;
}

.gallery-btn:hover {
  background: rgba(74, 141, 255, 0.2);
  border-color: rgba(74, 141, 255, 0.4);
}

/* ==========================================================================
   10. DASHBOARD SECTION (#dashboard)
   ========================================================================== */
.dash-mockup {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.dash-top-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot:nth-child(1) { background: #ff5f56; }
.dash-dot:nth-child(2) { background: #ffbd2e; }
.dash-dot:nth-child(3) { background: #27c93f; }

.dash-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 500px;
}

.dash-sidebar {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.dash-nav-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-nav-item.active {
  background: rgba(74, 141, 255, 0.1);
  color: #4A8DFF;
}

.dash-nav-item:hover {
  color: white;
}

.dash-main {
  padding: 24px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-metric-value {
  font-size: 28px;
  font-weight: 800;
  margin-top: 4px;
}

.dash-chart {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 250px;
  position: relative;
}

.chart-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 180px;
  padding-top: 20px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #4A8DFF, rgba(74, 141, 255, 0.2));
  border-radius: 4px 4px 0 0;
  transition: height 1s ease-out;
}

/* ==========================================================================
   11. INDUSTRIES (#industries)
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 141, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.industry-name {
  font-size: 15px;
  font-weight: 600;
}

/* ==========================================================================
   12. STATS (#stats)
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
  border-color: rgba(74, 141, 255, 0.2);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #4A8DFF, #7B61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 36px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-weight: 500;
}

/* ==========================================================================
   13. SUCCESS STORIES (#success-stories)
   ========================================================================== */
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.success-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.success-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.success-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, 1) 0%, transparent 60%);
}

.success-body {
  padding: 28px;
}

.success-company {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4A8DFF;
  margin-bottom: 12px;
  font-weight: 600;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-metrics {
  display: flex;
  gap: 24px;
}

.success-metric {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.success-metric span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
}

/* ==========================================================================
   14. WHY OUTDOOR (#why-outdoor)
   ========================================================================== */
.outdoor-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.outdoor-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
}

.outdoor-stat {
  text-align: center;
  margin-bottom: 20px;
}

.outdoor-stat-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, #4A8DFF, #FF6A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outdoor-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.benefit-list {
  list-style: none;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(74, 141, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   15. FINAL CTA (#final-cta)
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 9, 9, 0.93) 0%, rgba(9, 9, 9, 0.8) 50%, rgba(9, 9, 9, 0.93) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 0;
}

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

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

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-logo span {
  color: #4A8DFF;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-heading {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
  color: white;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.5);
}

.social-icon:hover {
  background: rgba(74, 141, 255, 0.1);
  border-color: rgba(74, 141, 255, 0.3);
  color: #4A8DFF;
}

.footer-skyline {
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.02), transparent);
  position: relative;
  overflow: hidden;
}

.footer-skyline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 10px, transparent 10px, transparent 20px);
  clip-path: polygon(0% 100%, 0% 80%, 5% 80%, 5% 40%, 10% 40%, 10% 60%, 15% 60%, 15% 30%, 25% 30%, 25% 70%, 30% 70%, 30% 20%, 40% 20%, 40% 50%, 45% 50%, 45% 10%, 55% 10%, 55% 60%, 60% 60%, 60% 40%, 70% 40%, 70% 80%, 80% 80%, 80% 30%, 90% 30%, 90% 70%, 95% 70%, 95% 50%, 100% 50%, 100% 100%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   17. ANIMATIONS (keyframes)
   ========================================================================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes mapPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes barGrow {
  from { height: 0; }
  to { height: var(--bar-height, 100%); }
}

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

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(74, 141, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(74, 141, 255, 0.4); }
}

/* ==========================================================================
   18. SCROLL REVEAL
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   19. RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-dashboard {
    max-width: 500px;
    margin: 40px auto 0;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  section {
    padding: 80px 0;
  }
  .hero-headline {
    font-size: 48px;
  }
  .section-title {
    font-size: 36px;
  }
  .nav-links {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.lg {
    grid-column: span 1;
  }
  .timeline {
    flex-direction: column;
    gap: 40px;
  }
  .timeline::before {
    display: none;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .gallery-slide {
    min-width: 300px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .success-grid {
    grid-template-columns: 1fr;
  }
  .outdoor-split {
    grid-template-columns: 1fr;
  }
  .cta-headline {
    font-size: 42px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 48px;
  }
  .dash-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
