:root {
  --grad-start: #D947EF;
  --grad-end: #22D3EE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #101014;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;

}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.hero-title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 55px;
  width: 1100px;
 
  color: #1A366F;
  line-height: 110%;
}

.hero-sub {
  font-weight: 600;
  font-size: 26px;
    width: 700px;
  color: #1A366F;
  line-height: 110%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  width: fit-content;
  padding: 0.9em 2em;
  margin-top: 30px;
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to top, #145214 0%, #25a825 50%, #4ee84e 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.6),
    inset 0 -2px 4px rgba(0,0,0,0.25),
    0 6px 24px rgba(0,180,0,0.55),
    0 2px 6px rgba(0,0,0,0.3);
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-weight: 600;
  font-size: 29px;
  line-height: 110%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 6px 18px rgba(0,180,0,0.5);
}

.btn-icon {
  width: 14px;
  height: 30px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .hero-container {
    padding: 0 32px;
  }
  .hero-title {
     width: 100%;
    font-size: 48px;
  }
  .hero-sub {
     width: 100%;
    font-size: 22px;
  }
  .btn {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 480px;
  }
  .hero-bg {
    object-position: 65% 20%;
  }
  .hero-overlay {
    background: rgba(8,6,12,0.15);
  }
  .hero-container {
    padding: 48px 24px 0;
    align-items: flex-start;
    justify-content: center;
  }
  .hero-text {
    max-width: 100%;
    gap: 16px;
    text-align: center;
    align-items: center;
  }
  .hero-title {
     width: 100%;
    font-size: 22px;
  }
  .hero-sub {
     width: 100%;
    font-size: 16px;
  }
  .btn {
    font-size: 17px;
    padding: 0.75em 1.3em;
    margin-top: 15px;
  }
  .btn-icon {
    width: 6px;
    height: 14px;
  }
}

/* @media (max-width: 360px) {
  .hero-title { width: 100%; font-size: 20px; }
  .hero-sub {  width: 100%;font-size: 13px; }
  .btn { font-size: 14px; }
} */
