* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #0f172a;
}

/* Elton-IT Hero Section */
.Elton-it-hero {
  min-height: 58vh;
  width: 100%;
  padding: 45px 8%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.88) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.25) 72%, rgba(15, 23, 42, 0.05) 100%),
    url("background.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.Elton-it-hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(147, 197, 253, 0.38);
  color: #bfdbfe;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.Elton-it-hero h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.Elton-it-hero h2 span {
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.5;
  color: #e0f2fe;
  max-width: 500px;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-subtitle strong {
  color: #facc15;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  max-width: 500px;
}

.hero-point {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-primary-btn {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.hero-primary-btn:hover {
  background: #facc15;
  color: #111827;
  transform: translateY(-2px);
}

.hero-secondary-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-trust-note {
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 900px) {
  .Elton-it-hero {
    min-height: auto;
    padding: 50px 5%;
    background:
      linear-gradient(180deg, rgba(3, 7, 18, 0.92) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(15, 23, 42, 0.45) 100%),
      url("background.png");
    background-size: cover;
    background-position: center;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .Elton-it-hero {
    padding: 40px 5%;
  }

  .Elton-it-hero h2 {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
    letter-spacing: -0.5px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
  }
}