/* ================================
   HERO SECTION STYLES
================================ */

/* Page Background */
body {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f1f5f9 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Remove extra top gap */
.page-id-35248 .vc_row:first-child {
  margin-top: 0 !important;
}

/* -------------------------------
   HERO TAG (Badge)
-------------------------------- */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* -------------------------------
   HERO TITLE
-------------------------------- */
.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  max-width: 750px;
  margin-top: 10px;
  margin-bottom: 15px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------------------------------
   HERO DESCRIPTION
-------------------------------- */
.hero-desc {
  font-size: 20px;
  color: #475569;
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 650px;
}

/* -------------------------------
   HERO BUTTONS
-------------------------------- */
.hero-buttons .vc_btn3-container {
  display: inline-block;
  margin-right: 20px;
}

/* Primary Button */
.btn-primary-hero .vc_btn3 {
  background: #0f172a !important;
  color: white !important;
  padding: 16px 32px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.btn-primary-hero .vc_btn3:hover {
  background: #2563eb !important;
}

/* Secondary Button */
.btn-secondary-hero .vc_btn3 {
  background: white !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  padding: 16px 32px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.btn-secondary-hero .vc_btn3:hover {
  background: #f1f5f9 !important;
}

/* -------------------------------
   HERO GLASS CARD
-------------------------------- */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
  transition: 0.4s ease;
}

/* Glass Card Title */
.glass-title {
  color: #2563eb;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-align: center;
}

/* Glass Grid */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.glass-grid p {
  font-size: 14px;
  color: #334155;
  margin: 0;
}

/* -------------------------------
   RESPONSIVE HERO
-------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .glass-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons .vc_btn3-container {
    display: block;
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
  animation: blobMove 20s infinite alternate ease-in-out;
}

.blob-1 {
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.blob-2 {
  background: radial-gradient(circle, rgba(14,165,233,0.25) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}

@keyframes blobMove {
  from {
    transform: translate(0,0) scale(1);
  }
  to {
    transform: translate(60px,60px) scale(1.15);
  }
}

.hero-section .vc_column-inner {
  position: relative;
  z-index: 2;
}