/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + var(--space-12)) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}

/* ── Background Orbs ── */
.hero-bg-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(108, 60, 225, 0.08);
  top: -200px;
  right: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.06);
  bottom: -100px;
  left: -100px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(108, 60, 225, 0.05);
  top: 50%;
  left: 40%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 40px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -30px) scale(1.15); }
}

/* ── Hero Grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: var(--space-10);
  align-items: center;
}

.hero-visual {
  transform: translateY(-18px);
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: var(--z-base);
}

.hero-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin: 0 0 var(--space-2);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(108, 60, 225, 0.08));
  color: var(--color-black);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.08);
}

.hero-mini-badge-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0284c7;
}

.hero-mini-badge strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero-title-intro {
  display: inline-block;
  font-size: clamp(0.95rem, 1.55vw, 1.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-title-intro-card {
  display: inline-block;
  padding: 0.68em 0.95em;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(243, 239, 254, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(108, 60, 225, 0.14);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.hero-title-preline {
  display: block;
  margin-top: 0.2em;
  font-size: 0.52em;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  line-height: 1.55;
  max-width: 620px;
  margin-bottom: var(--space-8);
}

/* ── Hero Flow (5-step list) ── */
.hero-flow {
  max-width: 640px;
  margin: var(--space-4) 0 var(--space-8);
  padding: var(--space-6) var(--space-6) var(--space-5);
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, rgba(243, 239, 254, 0.55) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(108, 60, 225, 0.12);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.hero-flow-title {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.hero-flow-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-flow-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--space-3);
  align-items: start;
}

.hero-flow-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(108, 60, 225, 0.14), rgba(14, 165, 233, 0.14));
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-flow-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-gray-700);
  padding-top: 4px;
}

.hero-flow-text strong {
  color: var(--color-gray-900);
  font-weight: 800;
  margin-right: 4px;
}

.hl-primary { color: var(--color-primary); font-weight: 700; }
.hl-secondary { color: var(--color-secondary); font-weight: 700; }
.hl-accent { color: var(--color-accent); font-weight: 700; }

.hero-price-highlight {
  display: inline-block;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  vertical-align: baseline;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(245, 158, 11, 0.18);
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero-corporate-btn {
  background: linear-gradient(135deg, #facc15 0%, #fb923c 100%);
  border-color: rgba(251, 146, 60, 0.28);
  color: #3f2a00;
  box-shadow: 0 10px 26px rgba(251, 146, 60, 0.22);
}

.hero-corporate-btn:hover {
  border-color: rgba(249, 115, 22, 0.42);
  color: #2f1e00;
  box-shadow: 0 14px 30px rgba(251, 146, 60, 0.28);
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1;
}

.stat-suffix {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  margin-top: var(--space-1);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-gray-200);
}

/* ── Hero Visual (Rings) ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-ring-container {
  position: relative;
  width: 760px;
  min-height: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0;
}

.hero-video-heading {
  position: relative;
  width: min(430px, 88%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  z-index: 3;
  color: var(--color-gray-800);
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(243, 239, 254, 0.78) 0%, rgba(250, 250, 250, 0.92) 100%);
  border: 1px solid rgba(209, 191, 251, 0.8);
  backdrop-filter: blur(10px);
}

.hero-video-heading span {
  display: block;
  font-size: clamp(0.92rem, 0.38vw + 0.9rem, 1.08rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-video-heading em,
.hero-video-heading strong {
  font-style: normal;
  color: var(--color-primary);
}

.hero-video-heading strong:last-child {
  color: var(--color-secondary);
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid;
  transform: translate(-50%, -50%);
}

.ring-outer {
  width: 760px;
  height: 760px;
  border-color: rgba(108, 60, 225, 0.08);
  animation: ringRotate 30s linear infinite;
}

.ring-outer::before,
.ring-outer::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
}

.ring-outer::before {
  top: 20px;
  right: 60px;
}

.ring-outer::after {
  bottom: 40px;
  left: 30px;
  background: var(--color-secondary);
  width: 6px;
  height: 6px;
}

.ring-middle {
  width: 580px;
  height: 580px;
  border-color: rgba(108, 60, 225, 0.12);
  border-style: dashed;
  animation: ringRotate 20s linear infinite reverse;
}

.ring-middle::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  top: 50%;
  right: -5px;
  box-shadow: var(--shadow-glow);
}

.ring-inner {
  width: 400px;
  height: 400px;
  border-color: rgba(108, 60, 225, 0.15);
  animation: ringRotate 15s linear infinite;
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-video-shell {
  position: relative;
  margin-top: 0;
  width: 378px;
  height: 672px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(108, 60, 225, 0.22) 0%, rgba(15, 23, 42, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-2xl);
  z-index: 2;
}

.hero-video-badge {
  max-width: min(420px, 88%);
  margin: 0;
  justify-content: center;
  text-align: center;
  padding: 12px 18px;
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.12);
}

.hero-video-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
  z-index: 3;
}

.hero-video-trigger,
.hero-video-embed {
  position: absolute;
  inset: 0;
}

.hero-video-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.hero-video-shell:hover .hero-video-trigger {
  transform: scale(1.03);
}

.hero-video-shell.is-playing .hero-video-trigger {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
}

.hero-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 25%;
  gap: var(--space-3);
  background: none;
}

.hero-video-embed {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-video-shell.is-playing .hero-video-embed {
  opacity: 1;
  pointer-events: auto;
}

.hero-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.play-button {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(108, 60, 225, 0.4);
}

.play-button svg {
  margin-left: 3px;
}

.play-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-gray-300);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient-primary);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}
