/**
 * Welcome Hero & Inspiring Onboarding Section
 * Styled for DZVEST Luxury Dark-Neon Tech Venture
 */
.welcome-hero {
  min-height: 560px;
  max-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 40px;
  position: relative;
  background: radial-gradient(circle at 80% 40%, rgba(0, 208, 132, 0.14) 0%, transparent 60%),
              radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.12) 0%, transparent 55%);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  text-align: right;
}
@media (max-width: 980px) {
  .hero-split-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text-col { display: flex; flex-direction: column; align-items: center; }
  .hero-cta-group { justify-content: center; }
}

.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 208, 132, 0.08);
  border: 1px solid rgba(0, 208, 132, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(0, 208, 132, 0.15);
}
.hero-brand-badge img { height: 24px; width: auto; object-fit: contain; }
.hero-badge-text { font-size: 0.88rem; font-weight: 800; color: #00d084; }

.welcome-title {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.welcome-title .accent-glow {
  background: linear-gradient(135deg, #00d084 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-desc {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00d084 0%, #06b6d4 100%);
  color: #021721 !important;
  font-weight: 900;
  font-size: 1.02rem;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 30px rgba(0, 208, 132, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 208, 132, 0.75); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}
@media (max-width: 600px) {
  .welcome-title { font-size: 2rem; }
  .trust-pillars-grid { grid-template-columns: 1fr; }
}

.trust-pillar-card {
  background: rgba(14, 22, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: right;
  backdrop-filter: blur(16px);
  transition: all 0.25s ease;
}
.trust-pillar-card:hover { border-color: rgba(0, 208, 132, 0.4); transform: translateY(-2px); }
.trust-pillar-icon { font-size: 1.4rem; margin-bottom: 6px; display: inline-block; }
.trust-pillar-title { font-size: 0.95rem; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.trust-pillar-desc { font-size: 0.78rem; color: #94a3b8; line-height: 1.5; }

/* 3D Isolated Transparent Smartphone Column */
.hero-phone-col { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-phone-col::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.3) 0%, rgba(6, 182, 212, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.hero-phone-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 35px rgba(0, 208, 132, 0.35));
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section-divider-title { text-align: center; padding: 50px 0 24px; }
.section-divider-title h2 { font-size: 2.1rem; font-weight: 900; color: #ffffff; margin-bottom: 8px; }
.section-divider-title p { font-size: 0.98rem; color: #94a3b8; }
