/* =========================
   IndoBridge - Hero
========================= */

.hero {
  position: relative;
  padding: 70px 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, #99f6e4 0, transparent 32%),
    radial-gradient(circle at 80% 20%, #bae6fd 0, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  background: rgba(240, 253, 250, 0.9);
  color: #0f766e;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #0f766e;
}

.hero-text {
  font-size: 20px;
  color: #475569;
  max-width: 640px;
  margin-bottom: 34px;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s;
}

.btn-primary {
  background: #0f766e;
  color: white;
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #115e59;
}

.btn-secondary {
  background: white;
  color: #0f766e;
  border: 1px solid #ccfbf1;
}

/* Official resources */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: white;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.trust-row a:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: white;
  transform: translateY(-2px);
}
