.hero-premium {
  position: relative;
  background: var(--gradient-soft);
  padding: 60px 20px;
  overflow: hidden;
}

.hero-premium-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */

.hero-premium-left {
  animation: fadeSlideLeft 0.9s ease forwards;
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-premium-left h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
}

.hero-premium-left h1 span {
  display: inline-block;
  color: var(--color-highlight);
  background: none;
  -webkit-text-fill-color: var(--color-highlight);
}

.hero-premium-left p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 520px;
}

.hero-premium-features {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  font-weight: 500;
}

.hero-premium-features li {
  margin-bottom: 12px;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.hero-premium-features li:hover {
  transform: translateX(6px);
}

.hero-primary-cta {
  margin-top: 18px;
}

.hero-main-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--gradient-accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.hero-main-btn:hover {
  background: var(--color-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(197, 155, 47, 0.34);
}

/* FORM */

.hero-premium-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-strong);
  animation: fadeSlideRight 0.9s ease forwards;
}

.hero-premium-form h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
}

.form-subtitle {
  margin-top: 6px;
  font-size: 24px;
  color: var(--color-highlight);
  margin-bottom: 20px;
}

.hero-premium-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.hero-premium-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.16);
  transform: scale(1.01);
}

.hero-premium-form button {
  width: 100%;
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-premium-form button:hover {
  background: var(--color-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(221, 142, 0, 0.28);
}

/* ================= RESPONSIVE FIXES ================= */

/* Tablets & below */
@media (max-width: 1024px) {
  .hero-premium-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-premium {
    padding: 100px 20px;
  }

  .hero-premium-left h1 {
    font-size: 40px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .hero-premium {
    padding: 80px 16px 60px;
  }

  .hero-premium-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-premium-left h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero-premium-left p {
    font-size: 15px;
  }

  .hero-premium-features li {
    font-size: 14px;
  }

  .hero-main-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .hero-premium-form {
    padding: 24px;
  }

  .hero-premium-form h2 {
    font-size: 20px;
  }

  .hero-premium-form input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .hero-premium-form button {
    font-size: 14px;
    padding: 12px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-premium-left h1 {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-premium-left p {
    font-size: 14px;
  }

  .hero-premium-form {
    padding: 20px;
  }
}

/* Ultra small devices */
@media (max-width: 360px) {
  .hero-premium-left h1 {
    font-size: 24px;
  }

  .hero-premium-form h2 {
    font-size: 18px;
  }
}

/* ANIMATIONS */

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(40px);
  }
}
