
/* #Hero  */

.hero{
  padding-bottom: 60px;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  margin-bottom: 18px;
}

.hero-logo img {
  height: 40px; /* desktop */
  width: auto;
}
.hero-inner {
  margin: 0 auto;
  text-align: center;
}

.hero-brand {
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 10px;
  font-weight: 600;
}

.hero-top-bar {
  margin-bottom: 14px; /* 👈 creates breathing room */
}

.hero h1 {
  font-size: 44px;
  line-height: 1.25;
  color: #111827;
}

.hero-sub {
  font-size: 17px;
  font-weight: 600;
}

.hero-meta {
  font-size: 15px;
  color: #4b5563;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

}

.btn-primary {
  background: #b85a1b;
  color: #fff;
  padding: 16px 34px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
}

.btn-secondary {
  font-size: 14px;
  color: #374151;
  border: 1px solid #cbd5e1;
  padding: 10px 22px;
  border-radius: 999px;
}

.hero-trust {
  font-size: 13px;
  color: #6b7280;
}

.hero h1 {
  font-size: 40px;

  font-weight: 700;
  letter-spacing: -0.3px;
}
.hero p {
  font-size: 17px;
  opacity: 0.9;
}

.badge {
  background: var(--gold);
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  margin: 25px 0;
  font-weight: 600;
}
.cta {
  background: var(--gold);
  color: #fff;
  padding: 16px 38px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.cta-primary {
  background: var(--gold);
  color: #fff;
  padding: 16px 38px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

.cta-secondary {
  margin-top: 12px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  padding: 12px 34px;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}

/* Hero logo */
.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 22px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-logo img {
  height: 44px; /* bigger = more authority */
  width: auto;
  display: block;
}