/* ============================================
   星光漫界 STARLITREALM - Landing Page
   精确还原自原始页面
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FDFDFE;
  color: #4B5563;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Container === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === Glass Effect === */
.glass {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(167,143,250, 0.2);
  border-radius: 24px;
}

/* === Animations === */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes blurReveal {
  0% { opacity: 0; filter: blur(10px); }
  100% { opacity: 1; filter: blur(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(109,40,217, 0.4); }
  50% { box-shadow: 0 0 40px rgba(109,40,217, 0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes panelGlow {
  0% { opacity: 0; filter: blur(4px); transform: scale(0.95); }
  50% { opacity: 0.8; filter: blur(0); }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

@keyframes characterAppear {
  0% { opacity: 0; transform: translateY(20px) scale(0.9); }
  60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dialogPop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes progressPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@keyframes generatingFlash {
  0%, 100% { border-color: rgba(109,40,217, 0.3); }
  50% { border-color: rgba(109,40,217, 0.6); }
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === Animation Classes === */
.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.blur-reveal {
  animation: blurReveal 0.8s ease-out forwards;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.panel-glow {
  animation: panelGlow 0.6s ease-out forwards;
}

.character-appear {
  animation: characterAppear 0.8s ease-out forwards;
}

.dialog-pop {
  animation: dialogPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.progress-pulse {
  animation: progressPulse 1.5s ease-in-out infinite;
}

.generating-flash {
  animation: generatingFlash 0.8s ease-in-out infinite;
}

/* Scroll animation */
.scroll-animate {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(40px);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Buttons === */
.btn-premium {
  background: linear-gradient(135deg, #6D28D9, #302A68);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(109,40,217, 0.3);
}

.btn-premium::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(109,40,217, 0.4);
}

.btn-premium:active {
  transform: scale(0.96);
}

.btn-secondary {
  color: #302A68;
  cursor: pointer;
  background: transparent;
  border: 2px solid rgba(109,40,217, 0.3);
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(109,40,217, 0.1);
  border-color: rgba(109,40,217, 0.5);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-secondary-white {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* === Card Hover === */
.card-hover {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

/* === Core Card === */
.core-card {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(109,40,217, 0.35), 0 0 48px rgba(109,40,217, 0.2);
  border-color: rgba(109,40,217, 0.6) !important;
}

.core-card:hover .core-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(109,40,217, 0.6), 0 0 36px rgba(167,143,250, 0.4);
}

.core-card:hover .core-glow {
  opacity: 1;
  filter: blur(12px);
}

.core-card:hover .shimmer-effect {
  left: 100%;
}

/* === Gradient Text === */
.gradient-text {
  background: linear-gradient(135deg, #6D28D9, #302A68, #FBBF24);
  color: transparent;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientFlow 3s ease infinite;
}

/* === Number Animate === */
.number-animate {
  color: #FBBF24;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

/* === Section Divider === */
.section-divider {
  background: linear-gradient(90deg, transparent, rgba(167,143,250, 0.3), transparent);
  max-width: 800px;
  height: 1px;
  margin: 0 auto;
}

/* === Section Title Wrapper === */
.section-title-wrapper {
  padding-bottom: 24px;
  position: relative;
}

.section-title-wrapper::after {
  content: '';
  background: linear-gradient(135deg, #6D28D9, #FBBF24);
  border-radius: 2px;
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* === Gallery Grid === */
.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: #FDFDFE;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(167,143,250, 0.2);
  transition: all 0.2s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  object-fit: contain;
}

.nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-pill {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-pill-purple {
  color: #A78BFA;
  background: rgba(167,143,250, 0.15);
  border: 1px solid rgba(167,143,250, 0.4);
}

.nav-pill-purple:hover {
  background: rgba(167,143,250, 0.25);
}

.nav-pill-orange {
  color: #F97316;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.nav-pill-orange:hover {
  background: rgba(249, 115, 22, 0.25);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(109,40,217, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title-dark {
  color: #302A68;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #4B5563;
  margin-bottom: 48px;
  opacity: 0.8;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-label {
  color: #4B5563;
  opacity: 0.7;
}

/* === Hero Right - Workbench Panel === */
.hero-right {
  position: relative;
  height: 520px;
  border-radius: 24px;
  background: linear-gradient(135deg, #F9FAFB, #E8E8F0);
  border: 2px solid rgba(109, 40, 217, 0.2);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(109, 40, 217, 0.15), 0 0 60px rgba(109, 40, 217, 0.08);
}

.workbench-inner {
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(109, 40, 217, 0.1);
}

.workbench-header {
  height: 48px;
  background: rgba(109, 40, 217, 0.08);
  border-bottom: 1px solid rgba(109, 40, 217, 0.15);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.window-dot { width: 12px; height: 12px; border-radius: 50%; }
.window-dot-red { background: #EF4444; }
.window-dot-yellow { background: #FBBF24; }
.window-dot-green { background: #22C55E; }

.workbench-title {
  color: #302A68;
  font-size: 12px;
  margin-left: 16px;
  font-weight: 600;
}

.workbench-sidebar {
  position: absolute;
  left: 16px;
  top: 64px;
  width: 180px;
  bottom: 16px;
  border-radius: 12px;
  background: rgba(109, 40, 217, 0.06);
  border: 1px solid rgba(109, 40, 217, 0.15);
  padding: 16px;
}

.sidebar-label {
  color: #6B7280;
  font-size: 11px;
  margin-bottom: 16px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.flow-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6D28D9, #302A68);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-icon.dim {
  background: rgba(109, 40, 217, 0.1);
}

.flow-step-content { flex: 1; }
.flow-step-title { color: #302A68; font-size: 13px; font-weight: 400; }
.flow-step-title.active { font-weight: 600; }
.flow-step-desc { color: #6B7280; font-size: 10px; }
.flow-step.dim .flow-step-title { color: #9CA3AF; }

.workbench-main {
  position: absolute;
  inset: 64px 16px 16px 216px;
  border-radius: 12px;
  background: linear-gradient(#F9FAFB 0%, #E5E5F0 100%);
  border: 2px solid rgba(109, 40, 217, 0.15);
  overflow: hidden;
}

.workbench-main-inner {
  position: absolute;
  inset: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.063), transparent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workbench-panel-large {
  height: 45%;
  border-radius: 8px;
  background: linear-gradient(rgba(196, 181, 253, 0.082) 0%, rgba(109, 40, 217, 0.08) 100%);
  border: 2px solid rgba(109, 40, 217, 0.2);
  position: relative;
  overflow: hidden;
}

.workbench-panel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(#F0E8E0, #E0D8D0);
}

.workbench-character {
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 80px;
  height: 120px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(rgba(196, 181, 253, 0.5), transparent);
  box-shadow: 0 0 20px rgba(167,143,250, 0.3);
}

.workbench-character-head {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4B5FD, #A78BFA);
}

.workbench-dialog {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 60%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.workbench-dialog-title {
  font-size: 10px;
  font-weight: 600;
  color: #302A68;
  margin-bottom: 4px;
}

.workbench-dialog-subtitle {
  font-size: 8px;
  color: #6D28D9;
}

.workbench-dialog-tail {
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 16px;
  height: 8px;
  background: rgba(255, 255, 255, 0.95);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.workbench-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(109, 40, 217, 0.8);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
}

.workbench-panels-row {
  height: 35%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.workbench-panel-small {
  border-radius: 8px;
  border: 2px solid rgba(109, 40, 217, 0.15);
  position: relative;
  overflow: hidden;
}

.workbench-panel-small.purple {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(167,143,250, 0.05));
}

.workbench-panel-small.gold {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(247, 158, 0, 0.05));
  border-color: rgba(251, 191, 36, 0.15);
}

.workbench-panel-small-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
  border-radius: 8px;
  background: linear-gradient(rgba(196, 181, 253, 0.19), transparent);
}

.workbench-dialog-small {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 8px 12px;
  max-width: 80%;
}

.workbench-dialog-small-text {
  font-size: 8px;
  color: #4B5563;
  font-weight: 500;
}

.workbench-tag-small {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(251, 191, 36, 0.8);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 8px;
}

.workbench-tag-small.purple {
  background: rgba(109, 40, 217, 0.8);
  left: 4px;
  right: auto;
}

.workbench-bottom-bar {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.workbench-generate-btn {
  background: rgba(109, 40, 217, 0.9);
  border: 1px solid rgba(109, 40, 217, 0.5);
  border-radius: 6px;
  padding: 6px 12px;
  color: white;
  font-size: 11px;
  font-weight: 600;
}

.workbench-progress {
  position: absolute;
  bottom: 12px;
  left: 20px;
  right: 20px;
  height: 4px;
  border-radius: 2px;
  background: rgba(109, 40, 217, 0.1);
  overflow: hidden;
}

.workbench-progress-fill {
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, #6D28D9, #FBBF24);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ============================================
   Gallery Section
   ============================================ */
#gallery {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.gallery-item {
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: #1A1A2E;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #E2E8F0;
  min-height: 120px;
  object-position: center;
  border-radius: 6px;
}

/* ============================================
   Features Section
   ============================================ */
#features {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  border-radius: 32px;
  padding: 40px;
  min-height: 220px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card-dark {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(26, 26, 46, 0.95));
  box-shadow: 0 16px 48px rgba(109,40,217, 0.2), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  border: 2px solid rgba(109,40,217, 0.3);
}

.feature-card-dark h3 { color: white; }
.feature-card-dark p { color: rgba(255, 255, 255, 0.7); }

.feature-card-light {
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-light h3 { color: #302A68; }
.feature-card-light p { color: #4B5563; opacity: 0.7; }

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(109,40,217, 0.5), 0 0 24px rgba(109,40,217, 0.3);
}

.feature-card-light .feature-icon {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon.purple { background: linear-gradient(135deg, #6D28D9, #302A68); }
.feature-icon.orange { background: linear-gradient(135deg, #F97316, #FBBF24); }
.feature-icon.pink { background: linear-gradient(135deg, #EC4899, #F472B6); }
.feature-icon.cyan { background: linear-gradient(135deg, #06B6D4, #22D3EE); }
.feature-icon.violet { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.feature-icon.indigo { background: linear-gradient(135deg, #302A68, #6D28D9); }

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  opacity: 1;
  line-height: 1.75;
}

.feature-badge {
  margin-left: 8px;
  background: linear-gradient(135deg, #FBBF24, #F97316);
  color: #0A0A0F;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  vertical-align: middle;
}

.shimmer-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.core-glow {
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(109,40,217, 0.5), rgba(167,143,250, 0.3));
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* ============================================
   Process / Efficiency Section
   ============================================ */
#process {
  padding: 120px 0;
  background: #050508;
  position: relative;
  z-index: 1;
}

.compare-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  cursor: ew-resize;
  margin-bottom: 60px;
  touch-action: none;
}

.compare-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A2E, #2A2A3E);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.compare-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A15, #1A1A2E);
  clip-path: inset(0 0 0 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.compare-label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.compare-label.red { color: rgba(255, 255, 255, 0.5); }
.compare-label.gold { color: #FBBF24; }

.compare-value {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.compare-value.red { color: #EF4444; }
.compare-value.gold { color: #FBBF24; }

.compare-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.compare-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
}

.compare-step.red {
  background: rgba(255, 255, 255, 0.05);
}

.compare-step.red .compare-step-num { color: #EF4444; }
.compare-step.red .compare-step-text { color: rgba(255, 255, 255, 0.7); }
.compare-step.red .compare-step-time { color: rgba(255, 255, 255, 0.5); }

.compare-step.gold {
  background: rgba(109,40,217, 0.2);
  border: 1px solid rgba(109,40,217, 0.3);
}

.compare-step.gold .compare-step-num { color: #6D28D9; }
.compare-step.gold .compare-step-text { color: rgba(255, 255, 255, 0.9); }
.compare-step.gold .compare-step-time { color: #FBBF24; }

.compare-step-num { font-weight: 600; }
.compare-step-text { font-size: 14px; }
.compare-step-time { font-size: 12px; margin-left: auto; }

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FBBF24;
  transform: translateX(-50%);
  z-index: 10;
}

.compare-divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FBBF24;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.compare-divider-handle span {
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.compare-divider-handle .drag-icon { font-size: 18px; }
.compare-divider-handle .drag-text { font-size: 14px; font-weight: 600; margin-top: 2px; }

.compare-result {
  text-align: center;
  padding: 40px;
  border-radius: 32px;
  background: rgba(167,143,250, 0.1);
  border: 1px solid rgba(167,143,250, 0.2);
}

.compare-result-value {
  font-size: 4rem;
  font-weight: 800;
  color: #FBBF24;
  margin-bottom: 12px;
}

.compare-result-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
}

/* ============================================
   Styles Section
   ============================================ */
#styles {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.style-card {
  border-radius: 24px;
  height: 280px;
  background: #1A1A2E;
  position: relative;
  overflow: hidden;
}

.style-card-img {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E2E8F0;
  background-size: cover;
  background-position: center;
  right: 0;
  height: 66.67%;
  background-size: cover;
  background-position: center top;
}

.style-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33.33%;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.style-card-info.purple { background: linear-gradient(to top, rgba(167,143,250, 0.25), rgba(167,143,250, 0.063)); }
.style-card-info.blue { background: linear-gradient(to top, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.063)); }
.style-card-info.orange { background: linear-gradient(to top, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.063)); }
.style-card-info.cyan { background: linear-gradient(to top, rgba(6, 182, 212, 0.25), rgba(6, 182, 212, 0.063)); }
.style-card-info.pink { background: linear-gradient(to top, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.063)); }
.style-card-info.indigo { background: linear-gradient(to top, rgba(48, 42, 104, 0.25), rgba(48, 42, 104, 0.063)); }

.style-card-info h3 {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.style-card-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.style-card-stars { color: #FBBF24; font-weight: 700; }
.style-card-users { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }

/* ============================================
   Testimonials Section
   ============================================ */
#testimonials {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  border-radius: 32px;
  padding: 40px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #E2E8F0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.testimonial-role {
  color: #4B5563;
  opacity: 0.6;
  font-size: 0.875rem;
}

.testimonial-video {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  background: #1A1A2E;
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.4);
}

.video-mute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.testimonial-video:hover .video-mute-btn,
.testimonial-video.playing .video-mute-btn {
  opacity: 1;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.testimonial-text {
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-badge {
  background: #FBBF24;
  color: #050508;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.testimonial-stars { color: #FBBF24; }

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(109,40,217, 0.05), rgba(167,143,250, 0.02));
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.stat-icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #FBBF24;
  margin-bottom: 8px;
  text-align: center;
}

.stat-label {
  color: #4B5563;
  opacity: 0.7;
  font-size: 0.875rem;
  text-align: center;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #050508, #6D28D9);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-bg-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(109,40,217, 0.3) 0%, transparent 50%);
}

.cta-bg-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(167,143,250, 0.2) 0%, transparent 50%);
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
}

.cta-title-gold { color: #FBBF24; }

.cta-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(167,143,250, 0.2);
  text-align: center;
  background: #302A68;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
  line-height: 1.8;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* ============================================
   Hamburger Menu (Mobile)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #302A68;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Mobile Menu Overlay
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #FDFDFE;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(167,143,250, 0.15);
  background: #FDFDFE;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-header .nav-logo img {
  height: 36px;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #302A68;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 20px;
  overflow-y: auto;
}

.mobile-menu-item {
  display: block;
  padding: 18px 24px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(167,143,250, 0.15);
  color: #302A68;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mobile-menu-item:hover {
  background: rgba(167,143,250, 0.06);
  border-color: rgba(167,143,250, 0.35);
}

.mobile-menu-item-primary {
  background: linear-gradient(135deg, #6D28D9, #302A68);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  box-shadow: 0 8px 32px rgba(109,40,217, 0.3);
}

.mobile-menu-item-primary:hover {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(109,40,217, 0.4);
}

/* ============================================
   Floating Button
   ============================================ */
.floating-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6D28D9, #302A68);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(109,40,217, 0.4);
  cursor: pointer;
  text-decoration: none;
}

/* ============================================
   Responsive - Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* Tablet: still show desktop nav buttons, hide hamburger */
  .nav-buttons {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-right {
    height: 360px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Compare slider adjustments */
  .compare-value {
    font-size: 4rem;
  }

  .compare-step {
    padding: 8px 12px;
  }

  .compare-step-text {
    font-size: 12px;
  }
}

/* ============================================
   Responsive - Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-divider {
    max-width: 300px;
  }

  /* === Navbar === */
  .navbar {
    padding: 12px 16px;
  }

  .navbar .container {
    padding: 0;
  }

  .nav-logo img {
    height: 32px;
  }

  /* Hide desktop nav buttons, show hamburger */
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-pill {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 30px;
  }

  .btn-premium {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 40px;
  }

  /* === Hero Section === */
  .hero-section {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-actions .btn-premium,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-right {
    height: 280px;
    max-width: 100%;
  }

  .hero-stat-label {
    font-size: 0.8rem;
  }

  .number-animate {
    font-size: 2.5rem;
  }

  /* Workbench mobile adjustments */
  .workbench-inner {
    inset: 10px;
    border-radius: 12px;
  }

  .workbench-header {
    height: 36px;
    padding: 0 10px;
    gap: 6px;
  }

  .workbench-title {
    font-size: 10px;
    margin-left: 8px;
  }

  .window-dot {
    width: 8px;
    height: 8px;
  }

  .workbench-sidebar {
    left: 10px;
    top: 48px;
    width: 110px;
    bottom: 10px;
    border-radius: 8px;
    padding: 10px;
  }

  .sidebar-label {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .flow-step {
    gap: 8px;
    margin-bottom: 10px;
  }

  .flow-step-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  .flow-step-icon svg {
    width: 12px;
    height: 12px;
  }

  .flow-step-title {
    font-size: 10px;
  }

  .flow-step-desc {
    font-size: 8px;
  }

  .workbench-main {
    inset: 48px 10px 10px 132px;
    border-radius: 8px;
  }

  .workbench-main-inner {
    inset: 8px;
    gap: 4px;
  }

  .workbench-panel-large {
    height: 42%;
    border-radius: 6px;
  }

  .workbench-character {
    width: 50px;
    height: 80px;
    left: 25%;
    bottom: 18%;
  }

  .workbench-character-head {
    top: 6px;
    left: 12px;
    width: 26px;
    height: 26px;
  }

  .workbench-dialog {
    top: 12px;
    right: 10px;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .workbench-dialog-title {
    font-size: 8px;
  }

  .workbench-dialog-subtitle {
    font-size: 7px;
  }

  .workbench-tag {
    font-size: 8px;
    padding: 2px 8px;
    bottom: 4px;
    left: 4px;
  }

  .workbench-panels-row {
    height: 30%;
    gap: 4px;
  }

  .workbench-panel-small {
    border-radius: 6px;
  }

  .workbench-panel-small-inner {
    width: 50%;
    height: 60%;
  }

  .workbench-dialog-small {
    padding: 4px 8px;
    border-radius: 6px;
  }

  .workbench-dialog-small-text {
    font-size: 7px;
  }

  .workbench-tag-small {
    font-size: 6px;
    padding: 1px 5px;
    border-radius: 3px;
  }

  .workbench-bottom-bar {
    height: 8%;
  }

  .workbench-generate-btn {
    font-size: 9px;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .workbench-progress {
    bottom: 6px;
    left: 10px;
    right: 10px;
    height: 3px;
  }

  /* === Section headings === */
  #gallery h2,
  #features h2,
  #styles h2,
  #testimonials h2,
  #process h2 {
    font-size: 2rem !important;
  }

  #gallery p,
  #features p,
  #styles p,
  #testimonials p,
  #process p {
    font-size: 1rem !important;
  }

  #gallery,
  #features,
  #styles,
  #testimonials,
  #process {
    padding: 64px 0;
  }

  /* === Gallery === */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    height: 150px;
    border-radius: 8px;
  }

  .gallery-item img {
    border-radius: 8px;
  }

  /* === Features === */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 24px;
    border-radius: 24px;
    min-height: auto;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .feature-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-left: 6px;
  }

  /* === Efficiency / Compare === */
  .compare-container {
    height: 300px;
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .compare-label {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .compare-value {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }

  .compare-steps {
    gap: 6px;
    max-width: 200px;
  }

  .compare-step {
    padding: 6px 10px;
    gap: 8px;
    border-radius: 8px;
  }

  .compare-step-num {
    font-size: 12px;
  }

  .compare-step-text {
    font-size: 10px;
  }

  .compare-step-time {
    font-size: 10px;
  }

  .compare-divider {
    width: 3px;
  }

  .compare-divider-handle {
    width: 44px;
    height: 44px;
  }

  .compare-divider-handle .drag-icon {
    font-size: 14px;
  }

  .compare-divider-handle .drag-text {
    font-size: 11px;
  }

  .compare-result {
    padding: 24px;
    border-radius: 20px;
  }

  .compare-result-value {
    font-size: 2.5rem;
  }

  .compare-result-desc {
    font-size: 1rem;
  }

  /* === Styles === */
  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .style-card {
    height: 220px;
    border-radius: 16px;
  }

  .style-card-info {
    padding: 12px 16px;
  }

  .style-card-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .style-card-stars {
    font-size: 0.8rem;
  }

  .style-card-users {
    font-size: 0.7rem;
  }

  /* === Testimonials === */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px;
    border-radius: 24px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .testimonial-name {
    font-size: 1.2rem;
  }

  .testimonial-video {
    height: 140px;
    border-radius: 12px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .testimonial-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* === Stats === */
  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-item {
    min-height: 90px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  /* === CTA === */
  .cta-section {
    padding: 64px 0;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .cta-actions .btn-premium {
    padding: 16px 36px;
    font-size: 1.1rem;
  }

  /* === Footer === */
  footer {
    padding: 24px 0;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.75rem;
    margin: 0 4px;
  }

  /* === Floating Button === */
  .floating-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* ============================================
   Responsive - Small Phone (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 10px 12px;
  }

  .nav-logo img {
    height: 28px;
  }

  .nav-buttons {
    gap: 4px;
  }

  .nav-pill {
    padding: 5px 10px;
    font-size: 10px;
  }

  .nav-buttons .btn-premium {
    padding: 6px 12px;
    font-size: 11px;
  }

  /* Hero */
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions .btn-premium,
  .hero-actions .btn-secondary {
    max-width: 260px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-right {
    height: 240px;
  }

  .number-animate {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 16px;
  }

  /* Workbench further shrink */
  .workbench-sidebar {
    width: 90px;
    padding: 8px;
  }

  .workbench-main {
    inset: 44px 8px 8px 108px;
  }

  .flow-step-icon {
    width: 18px;
    height: 18px;
  }

  .flow-step-icon svg {
    width: 10px;
    height: 10px;
  }

  .flow-step-title {
    font-size: 9px;
  }

  .flow-step-desc {
    display: none;
  }

  .workbench-character {
    width: 40px;
    height: 60px;
    left: 20%;
  }

  .workbench-character-head {
    top: 4px;
    left: 10px;
    width: 20px;
    height: 20px;
  }

  .workbench-dialog {
    padding: 6px 8px;
    top: 8px;
    right: 6px;
  }

  .workbench-dialog-title {
    font-size: 7px;
  }

  .workbench-dialog-subtitle {
    font-size: 6px;
  }

  .workbench-tag {
    font-size: 7px;
  }

  .workbench-generate-btn {
    font-size: 8px;
    padding: 3px 8px;
  }

  /* Section headings */
  #gallery h2,
  #features h2,
  #styles h2,
  #testimonials h2,
  #process h2 {
    font-size: 1.6rem !important;
  }

  #gallery p,
  #features p,
  #styles p,
  #testimonials p,
  #process p {
    font-size: 0.9rem !important;
  }

  #gallery,
  #features,
  #styles,
  #testimonials,
  #process {
    padding: 48px 0;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-item {
    height: 200px;
  }

  /* Features */
  .feature-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* Compare */
  .compare-container {
    height: 250px;
  }

  .compare-label {
    font-size: 0.9rem;
  }

  .compare-value {
    font-size: 2rem;
  }

  .compare-steps {
    max-width: 160px;
    gap: 4px;
  }

  .compare-step {
    padding: 4px 8px;
    gap: 6px;
  }

  .compare-step-text {
    font-size: 9px;
  }

  .compare-step-time {
    font-size: 9px;
  }

  .compare-divider-handle {
    width: 36px;
    height: 36px;
  }

  .compare-divider-handle .drag-icon {
    font-size: 12px;
  }

  .compare-divider-handle .drag-text {
    font-size: 9px;
  }

  .compare-result {
    padding: 20px;
  }

  .compare-result-value {
    font-size: 2rem;
  }

  .compare-result-desc {
    font-size: 0.9rem;
  }

  /* Styles */
  .styles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .style-card {
    height: 200px;
  }

  .style-card-info h3 {
    font-size: 0.95rem;
  }

  .style-card-stars {
    font-size: 0.75rem;
  }

  .style-card-users {
    font-size: 0.65rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px;
    border-radius: 20px;
  }

  .testimonial-name {
    font-size: 1.1rem;
  }

  .testimonial-video {
    height: 120px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* CTA */
  .cta-title {
    font-size: 1.6rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-actions .btn-premium {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Floating btn */
  .floating-btn {
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ============================================
   Skeleton Loading
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, rgba(200, 200, 200, 0.1) 25%, rgba(200, 200, 200, 0.2) 50%, rgba(200, 200, 200, 0.1) 75%) 0 0 / 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton-dark {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%) 0 0 / 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}
