/* Hero Section */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

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

    .hero-gradient {
      position: absolute;
      inset: 0;
      background:
              radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 166, 81, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 210, 106, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse 100% 100% at 50% 100%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
              linear-gradient(rgba(0, 166, 81, 0.03) 1px, transparent 1px),
              linear-gradient(90deg, rgba(0, 166, 81, 0.03) 1px, transparent 1px);
      background-size: 100px 100px;
      transform: perspective(500px) rotateX(60deg);
      transform-origin: center top;
      opacity: 0.5;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      background: var(--primary);
      border-radius: 50%;
      opacity: 0.6;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-text {
      padding-top: 80px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      font-size: 0.85rem;
      color: var(--primary-light);
      margin-bottom: 30px;
      backdrop-filter: blur(10px);
    }

    .hero-badge i {
      font-size: 0.7rem;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 30px;
      letter-spacing: -3px;
    }

    .hero-title .line {
      display: block;
      overflow: hidden;
    }

    .hero-title .word {
      display: inline-block;
      transform: translateY(100%);
    }

    .hero-title .highlight {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      max-width: 550px;
      margin-bottom: 50px;
    }

    .hero-stats {
      display: flex;
      gap: 50px;
      margin-bottom: 50px;
    }

    .hero-stat {
      text-align: left;
    }

    .hero-stat-value {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .hero-stat-value span {
      color: var(--primary);
    }

    .hero-stat-label {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      margin-top: 8px;
    }

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

    /* Hero Visual */
    .hero-visual {
      position: relative;
      height: 600px;
    }

    .hero-map-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-map {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 0 60px rgba(0, 166, 81, 0.3));
    }

    .hero-map path {
      fill: rgba(0, 166, 81, 0.15);
      stroke: var(--primary);
      stroke-width: 1.5;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .hero-map path:hover {
      fill: rgba(0, 166, 81, 0.4);
      filter: drop-shadow(0 0 30px rgba(0, 166, 81, 0.6));
    }

    .hero-map path.active {
      fill: rgba(0, 210, 106, 0.5);
      stroke: var(--primary-light);
      stroke-width: 2;
    }

    /* Map Tooltip */
    .map-tooltip {
      position: absolute;
      background: rgba(6, 18, 9, 0.95);
      border: 1px solid var(--primary);
      border-radius: 16px;
      padding: 20px 25px;
      pointer-events: none;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 100;
      min-width: 280px;
      backdrop-filter: blur(20px);
    }

    .map-tooltip.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .map-tooltip h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--white);
    }

    .map-tooltip-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .map-tooltip-stat {
      text-align: center;
      padding: 10px;
      background: var(--glass);
      border-radius: 10px;
    }

    .map-tooltip-stat-value {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }

    .map-tooltip-stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }

    /* Floating Elements */
    .floating-card {
      position: absolute;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 20px;
      backdrop-filter: blur(20px);
    }

    .floating-card-1 {
      top: 10%;
      right: -30px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .floating-card-1 .icon {
      width: 50px;
      height: 50px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .floating-card-1 .text h5 {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .floating-card-1 .text p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
    }

    .floating-card-2 {
      bottom: 15%;
      left: -50px;
      text-align: center;
    }

    .floating-card-2 .value {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
    }

    .floating-card-2 p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.5);
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .scroll-indicator .mouse {
      width: 26px;
      height: 40px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 20px;
      position: relative;
    }

    .scroll-indicator .wheel {
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 8px;
      background: var(--primary);
      border-radius: 4px;
      animation: scroll 2s infinite;
    }

    @keyframes scroll {
      0% { opacity: 1; top: 8px; }
      100% { opacity: 0; top: 24px; }
    }
