/* ===== Hero Section ===== */
#hero {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-text {
  flex: 0 1 600px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: var(--font-size-hero);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-slogan {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-slogan::before,
.hero-slogan::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  vertical-align: middle;
  margin: 0 0.8rem;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.hero-cta:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.geo-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
