/* ── Hero ── */
.hero-wrapper {
  padding: 90px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-align: start;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, #a78bfa 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: start;
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 90px 0 64px;
  }

  .hero-headline {
    line-height: 1.5;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .proof {
    margin-right: 0 !important;
  }

  .btn-mobile {
    min-width: 350px !important;
    ;
  }
}

/* ── Dropzone Upload Icon ── */
.upload-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: uploadFloat 3s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.upload-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #a78bfa, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes uploadFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.dropzone:hover .upload-icon-wrap,
.dropzone.dz-drag-hover .upload-icon-wrap {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.25);
}

.dz-message {
  width: 100%;
  padding: 24px 16px;
}

/* ── Product Tour Console ── */
.tour-console {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.08);
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.console-header {
  background: rgba(18, 18, 26, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.console-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dot-red {
  background: #ef4444;
}

.dot-yellow {
  background: #eab308;
}

.dot-green {
  background: #22c55e;
}

.tour-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.tour-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-sans);
}

.tour-tab-btn:hover {
  color: #fff;
}

.tour-tab-btn.active {
  color: #ffffff;
}

.tour-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--edyou-violet), var(--edyou-teal));
  border-radius: 2px;
}

.tour-pane {
  display: none;
  min-height: 300px;
}

.tour-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

/* ── Flip Card ── */
.interactive-card-scene {
  width: 100%;
  height: 200px;
  perspective: 900px;
  cursor: pointer;
}

.interactive-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-card.is-flipped {
  transform: rotateY(180deg);
}

.interactive-card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.card-face-front {
  background: rgba(139, 92, 246, 0.05);
}

.card-face-back {
  background: rgba(20, 184, 166, 0.05);
  transform: rotateY(180deg);
}

/* ── Quiz Option ── */
.quiz-option {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 13px 20px;
  color: #e2e8f0;
  text-align: left;
  width: 100%;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
}

.quiz-option.correct {
  background: rgba(20, 184, 166, 0.12);
  border-color: var(--edyou-teal);
  color: var(--edyou-teal-light);
}

.quiz-option.incorrect {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ── Feature Cards ── */
.feature-grid-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition-smooth);
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.feature-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.1);
}

.feature-grid-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.icon-violet {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--edyou-violet-light);
}

.icon-teal {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: var(--edyou-teal-light);
}

.icon-amber {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

/* ── Stats ── */
.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.03);
  transform: translateY(-3px);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #a78bfa, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section helper ── */
.section-gap {
  padding: 15px 0;
}

.extra-gap-btm {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .section-gap {
    padding: 64px 0;
  }

  .extra-gap-btm {
    padding-bottom: 5px;
  }
}

/* ── Hero 3D canvas area ── */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}