.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-bg img,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(7, 5, 53, 0.97),
    rgba(7, 5, 53, 0.83) 55%,
    rgba(7, 5, 53, 0.62)
  );
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 118px;
  content: "";
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1198px;
  padding: 80px 0 115px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(62, 137, 247, 0.45);
  border-radius: 999px;
  background: rgba(62, 137, 247, 0.2);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.pill {
  padding: 8px 16px;
  margin-bottom: 30px;
}

.pill svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.3vw, 64px);
  font-weight: 800;
  line-height: 0.94;
}

.hero h1 span,
.about h2 span {
  color: var(--primary);
}

.hero p {
  max-width: 700px;
  margin: 0 0 39px;
  color: var(--white-soft);
  font-size: 20px;
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 5;
  min-width: 224px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--foreground);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f1f5fc;
}

.dropdown-menu svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.section {
  padding: 98px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 567px);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about h2,
.section-heading h2,
.hub-head h2,
.contact h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
}

.about-copy p,
.section-heading p,
.solution-copy p,
.hub-head p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.about-copy p {
  max-width: 620px;
  margin: 24px 0 28px;
}

.metrics {
  display: flex;
  align-items: center;
  gap: 30px;
}

.metrics div {
  min-width: 130px;
  text-align: center;
}

.metrics div + div {
  border-left: 1px solid var(--border);
  padding-left: 30px;
}

.metrics strong {
  display: block;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  min-height: 213px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8faff;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-box {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(62, 137, 247, 0.1);
  color: var(--primary);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3,
.dark-cards h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}

.feature-card p,
.dark-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
