/* ═══════════════════════════════════════════════════
   HELPYY SECTION — 3D Interactive Section
   ═══════════════════════════════════════════════════ */

.helpyy-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #041b10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spline iframe background */
.helpyy-spline-bg {
  position: absolute;
  /* Oversized to hide the Spline watermark & fullscreen btn at corners */
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  z-index: 0;
  overflow: hidden;
}
.helpyy-spline-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: auto;
}

/* Gradient fades top & bottom */
.helpyy-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #041b10, transparent);
  z-index: 1;
  pointer-events: none;
}
.helpyy-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #041b10, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Content overlay */
.helpyy-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  margin: 0 auto;
  min-height: 100vh;
  width: 100%;
  max-width: 1100px;
  pointer-events: none;
}
.helpyy-content > * {
  pointer-events: auto;
}

/* Badge */
.helpyy-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.helpyy-badge-dot {
  position: relative;
  width: 12px; height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.helpyy-badge-solid {
  width: 12px; height: 12px;
  background: var(--lana-medium, #2ecc71);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.helpyy-badge-ping {
  position: absolute;
  inset: 0;
  background: var(--lana-medium, #2ecc71);
  border-radius: 999px;
  animation: helpyy-ping 2s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes helpyy-ping {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
.helpyy-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: rgba(130, 224, 170, 0.85);
  font-family: 'Cairo', sans-serif;
}

/* Title */
.helpyy-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: #e8f8f5;
  text-align: right;
  line-height: 1.25;
  margin-bottom: 1rem;
  font-family: 'Cairo', sans-serif;
  animation: helpyy-glow 3s ease-in-out infinite;
  align-self: flex-start;
}
@keyframes helpyy-glow {
  0%, 100% { text-shadow: 0 0 12px rgba(46,204,113,0.4), 0 0 40px rgba(46,204,113,0.12); }
  50%      { text-shadow: 0 0 24px rgba(46,204,113,0.65), 0 0 60px rgba(46,204,113,0.2); }
}

/* Subtitle */
.helpyy-subtitle {
  max-width: 500px;
  text-align: right;
  font-size: 1.05rem;
  color: rgba(232, 248, 245, 0.7);
  line-height: 1.85;
  margin-bottom: 4rem;
  font-family: 'Cairo', sans-serif;
  align-self: flex-start;
}
.helpyy-highlight {
  color: var(--lana-medium, #2ecc71);
  font-weight: 700;
}

.helpyy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1050px;
}

/* Glassmorphism card */
.helpyy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-radius: 1.25rem;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              box-shadow 0.35s cubic-bezier(.4,0,.2,1),
              border-color 0.35s ease;
}
.helpyy-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(46,204,113,0.16);
  border-color: rgba(46,204,113,0.35);
}

.helpyy-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.helpyy-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #e8f8f5;
  margin-bottom: 0.5rem;
  font-family: 'Cairo', sans-serif;
}
.helpyy-card-desc {
  font-size: 0.9rem;
  color: rgba(232,248,245,0.55);
  line-height: 1.7;
  flex: 1;
  font-family: 'Cairo', sans-serif;
}
.helpyy-card-line {
  margin-top: 1.2rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, rgba(46,204,113,0.35), rgba(46,204,113,0.1), transparent);
}

/* Scroll reveal animations */
@keyframes helpyy-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.helpyy-animate {
  opacity: 0;
  transform: translateY(32px);
}
.helpyy-animate.helpyy-visible {
  animation: helpyy-fade-up 0.7s ease-out forwards;
}
.helpyy-delay-1.helpyy-visible { animation-delay: 0.12s; }
.helpyy-delay-2.helpyy-visible { animation-delay: 0.24s; }
.helpyy-delay-3.helpyy-visible { animation-delay: 0.36s; }

/* Responsive — Helpyy Section */
@media (max-width: 900px) {
  .helpyy-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .helpyy-content {
    padding: 5rem 1rem 3rem;
  }
  
  .helpyy-title {
    font-size: clamp(1.8rem, 5vw + 0.5rem, 2.5rem);
    text-align: center;
    align-self: center;
  }
  
  .helpyy-subtitle {
    text-align: center;
    align-self: center;
    margin-bottom: 2rem;
  }
  
  .helpyy-badge {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .helpyy-content {
    padding: 4rem 1rem 2rem;
  }
  
  .helpyy-card {
    padding: 1.5rem 1.2rem;
  }
}
