
/* === Premium Hero Revamp === */
.hero-premium {
  position: relative;
  border-radius: 22px;
  padding: clamp(20px, 4vw, 44px);
  background: radial-gradient(120% 120% at 10% 10%, rgba(255, 183, 77, 0.12) 0%, rgba(0,0,0,0) 35%) ,
              linear-gradient(135deg, rgba(255, 202, 88, 0.12), rgba(25, 118, 210, 0.10) 40%, rgba(12, 18, 38, 0.32) 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  margin-top: 24px;
}
.hero-premium::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.85), rgba(255, 214, 10, 0.35), rgba(255, 193, 7, 0.85));
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}
@media (max-width: 950px){
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-eyebrow {
  letter-spacing: .12em;
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 13px);
  color: #ffca2c;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  color: #eef3ff;
  margin: 8px 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  position: relative;
}
.hero-title .underline {
  position: relative;
  display: inline-block;
}
.hero-title .underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffd54f, #ffca2c, #ffd54f);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 193, 7, .35);
}
.hero-text {
  color: #cfd8ea;
  font-size: clamp(14px, 1.6vw, 17px);
  margin-bottom: 14px;
}
.hero-list { 
  margin: 0 0 22px; padding: 0; list-style: none; 
  color: #e4ecff;
}
.hero-list li {
  margin: 8px 0;
  display: flex; gap: 10px; align-items: center;
}
.hero-list li::before{
  content: "✓";
  font-weight: 900;
  opacity: .9;
  filter: drop-shadow(0 4px 10px rgba(255,193,7,.35));
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary-prem, .btn-ghost-prem {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 12px; font-weight: 700; text-decoration: none;
  transition: transform .12s ease, box-shadow .2s ease, background .3s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.btn-primary-prem {
  background: linear-gradient(135deg, #ffb300, #ffca2c);
  color: #0e1222;
  box-shadow: 0 10px 24px rgba(255,193,7,.25);
}
.btn-primary-prem:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(255,193,7,.35); }
.btn-ghost-prem {
  background: rgba(255,255,255,.05);
  color: #e8eefc;
}
.btn-ghost-prem:hover { background: rgba(255,255,255,.09); transform: translateY(-1px); }
.partner-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: inset 0 0 40px rgba(255,255,255,.05);
}
.partner-strip {
  overflow: hidden; white-space: nowrap; display: flex; gap: 28px; align-items: center;
}
.partner-strip img { 
  width: 120px; height: auto; filter: saturate(0) brightness(1.15) contrast(1.05); opacity: .9;
}
.partner-marquee { display: inline-flex; gap: 28px; animation: marquee 18s linear infinite; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.small-muted { color: #9fb0d0; font-size: 13px; margin-top: 10px; }
