/* ================================================
   HOME HERO V3 – SAAS ULTRA INTERACTIVE
================================================ */

/* ROOT COLORS */
:root {
  --primary-neon: #00ff72;
  --secondary-neon: #39ff14;
  --accent-gold: #ffdd00;
  --bg-dark: #00321c;
  --bg-darker: #001f11;
}

/* HERO WRAPPER */
.hero-ultra-saas-v3 {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  padding: 100px 20px;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

/* PARTICLES */
#hero-particles-v3 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* CONTENT WRAPPER (TILT) */
.tilt-wrapper-v3 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* FLEX CONTENT */
.hero-content-v3 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
}

/* INTERACTIVE CARD (CORE) */
.interactive-card {
  position: relative;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.03)) padding-box,
    radial-gradient(800px circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(0,255,140,.6), transparent 40%) border-box;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transition: transform .3s, box-shadow .3s;
  transform: translateZ(20px);
  overflow: hidden;
}

/* Hover glow */
.interactive-card:hover {
  box-shadow: 0 20px 60px rgba(0,255,140,0.1);
}

/* INNER SPACING */
.card-inner-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* LEFT CARD CONTENT */
.hero-left-v3 h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent-gold);
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
  line-height: 1.2;
  margin: 0;
}

.hero-left-v3 p {
  font-size: 17px;
  color: #e8ffe1;
  margin: 20px 0 30px;
}

/* RIGHT FORM */
.hero-right-v3 {
  flex: 0 0 400px;
  max-width: 100%;
}

.hero-form-v3 h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

.hero-form-v3 input,
.hero-form-v3 select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 14px;
  transition: .3s;
  outline: none;
}

.hero-form-v3 input:focus,
.hero-form-v3 select:focus {
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(0,255,114,.2);
}

.hero-form-v3 input::placeholder {
  color: #aaddc5;
}

/* FORM BUTTON */
.hero-form-v3 button,
.cta-btn-v3 {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 40px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
  color: #003110;
  font-weight: 700;
  border: none;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,255,140,.3);
  cursor: pointer;
  transition: .3s ease;
}

.hero-form-v3 button:hover,
.cta-btn-v3:hover {
  background: linear-gradient(45deg, #76ff03, #a6ff00);
  box-shadow: 0 10px 35px rgba(118,255,3,.5);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .hero-content-v3 { flex-direction: column; gap: 30px; }
  .hero-right-v3 { width: 100%; }
  .interactive-card { transform: translateZ(0); }
  .tilt-wrapper-v3 { transform: none !important; }
  .hero-ultra-saas-v3 { padding: 60px 20px; }
  .hero-left-v3 h1 { font-size: 36px; text-align: center; }
  .hero-left-v3 p { text-align: center; }
  .cta-btn-v3 { display: table; margin: 0 auto; }
}
