/* ==========================================================================
   JWEBSTUDIO PREMIUM DESIGN SYSTEM & BASE STYLES
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Harmonious Dark Palette */
  --bg-deep: #05050c;
  --bg-surface: rgba(13, 14, 28, 0.7);
  --bg-surface-hover: rgba(22, 23, 46, 0.85);
  --bg-card: rgba(18, 19, 38, 0.6);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);
  
  /* Vibrant Accent Colors */
  --color-primary: #8b5cf6;       /* Electric Violet */
  --color-primary-glow: rgba(139, 92, 246, 0.4);
  --color-secondary: #06b6d4;     /* Cyber Cyan */
  --color-secondary-glow: rgba(6, 182, 212, 0.4);
  --color-success: #10b981;       /* Pure Emerald */
  --color-success-glow: rgba(16, 185, 129, 0.3);
  --color-warning: #f59e0b;       /* Golden Amber */
  --color-error: #ef4444;         /* Bright Coral */
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0a5c1;
  --text-muted: #646882;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* UI Helper Variables */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glow-shadow: 0 0 25px var(--color-primary-glow);
}

/* Base Resets & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Decorative Background Glows */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.45;
}

.orb-1 {
  top: -10%;
  right: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--color-primary) 0%, rgba(0,0,0,0) 70%);
  animation: float-slow 20s infinite alternate;
}

.orb-2 {
  bottom: -10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--color-secondary) 0%, rgba(0,0,0,0) 70%);
  animation: float-slow 25s infinite alternate-reverse;
}

.orb-3 {
  top: 40%;
  left: 45%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, #ec4899 0%, rgba(0,0,0,0) 70%); /* Rose Glow */
  opacity: 0.2;
}

/* Mesh Grid Pattern Overlay */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  opacity: 0.8;
}

/* Custom Micro-Animations */
@keyframes float-slow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.1); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }
  100% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.5); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   REUSABLE GLASSMORPHIC LAYOUT COMPONENTS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-panel-glow {
  border: 1px solid var(--border-glow);
  box-shadow: var(--glow-shadow);
}

/* Buttons and Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6d28d9 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.btn-primary:hover::after {
  left: 125%;
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0891b2 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 5, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

header.scrolled {
  background: rgba(5, 5, 12, 0.95);
  padding: 10px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 10px var(--color-secondary);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

nav a:hover {
  color: var(--text-primary);
}

/* Mobile Menu Toggle Button styling */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 120;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: left center;
}

/* Hamburger toggle anim to X when active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Responsive Mobile Navigation Drawer */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-normal) cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 110;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.15rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  nav #nav-cta-btn {
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  padding: 100px 0 60px;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge-wrap {
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 span.gradient-text-1 {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span.gradient-text-2 {
  background: linear-gradient(135deg, #38bdf8 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* Value Props Ribbon */
.value-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.value-item svg {
  color: var(--color-secondary);
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   WHO WE ARE & WHAT WE DO SECTION (ABOUT)
   ========================================================================== */

.about-section {
  padding: 40px 0 80px;
}

.about-card {
  padding: 50px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .about-card {
    padding: 30px 20px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.about-left p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-capabilities-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.capability-bullet {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-capabilities-list h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.about-capabilities-list p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE WEB SHOWCASE (LIVE MOCKUPS)
   ========================================================================== */

.showcase-section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.showcase-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.showcase-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.showcase-btn.active {
  background: var(--color-primary);
  color: var(--text-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.viewport-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.viewport-btn {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.viewport-btn.active {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background: rgba(6, 182, 212, 0.1);
}

/* Device CSS Frame Wrapper */
.device-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  margin-bottom: 40px;
}

/* Desktop CSS Frame */
.device-desktop {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 4px solid #1f2937;
  background: #111827;
  transition: all var(--transition-normal);
}

.desktop-header {
  height: 36px;
  background: #1f2937;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.desktop-address-bar {
  flex-grow: 1;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 50px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Mobile CSS Frame */
.device-mobile {
  width: 320px;
  height: 560px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 12px solid #1f2937;
  background: #111827;
  position: relative;
  transition: all var(--transition-normal);
}

.mobile-notch {
  width: 130px;
  height: 18px;
  background: #1f2937;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Tablet CSS Frame */
.device-tablet {
  width: 100%;
  max-width: 600px;
  height: 800px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 8px solid #1f2937;
  background: #111827;
  position: relative;
  transition: all var(--transition-normal);
}

.device-tablet::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Dynamic Showcase content */
.device-screen {
  width: 100%;
  height: 480px;
  background: white;
  overflow-y: auto;
  color: #1e293b;
  font-family: var(--font-body);
  position: relative;
}

.device-mobile .device-screen {
  height: 100%;
}

.device-tablet .device-screen {
  height: 100%;
}

/* Styled Business Previews inside devices */
.preview-site {
  display: none;
}

.preview-site.active {
  display: block;
}

/* Styled templates styles */
.site-nav {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.site-logo {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.site-hero {
  padding: 40px 24px;
  text-align: center;
  background: #f8fafc;
}

.site-hero h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.site-hero p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 16px;
}

.site-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
}

.site-features {
  padding: 30px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: #ffffff;
}

.site-feature-card {
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.site-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.site-feature-card p {
  font-size: 0.8rem;
  color: #64748b;
}

/* Site specific color overrides */
/* 1. Cafe template */
.cafe-theme {
  --primary-site: #b45309;
}
.cafe-theme .site-logo { color: var(--primary-site); }
.cafe-theme .site-btn { background: var(--primary-site); color: #fff; }
/* 2. Plumber template */
.plumber-theme {
  --primary-site: #1d4ed8;
}
.plumber-theme .site-logo { color: var(--primary-site); }
.plumber-theme .site-btn { background: var(--primary-site); color: #fff; }
/* 3. Salon template */
.salon-theme {
  --primary-site: #be185d;
}
.salon-theme .site-logo { color: var(--primary-site); }
.salon-theme .site-btn { background: var(--primary-site); color: #fff; }

/* ==========================================================================
   NO-TECH ONBOARDING WIZARD
   ========================================================================== */

.wizard-section {
  padding: 80px 0;
  position: relative;
}

.wizard-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Wizard Header / Progress Bar */
.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.wizard-progress-bar {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.wizard-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width var(--transition-normal);
}

.wizard-step-counter {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-secondary);
}

/* Wizard Steps Wrapper */
.wizard-steps {
  position: relative;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: slide-up var(--transition-normal);
}

.wizard-step h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.wizard-step p.step-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Question Options Styling (Beautiful Interactive Checkbox Cards) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.option-card {
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.option-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.06);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.option-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.option-card.selected .option-icon {
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
}

.option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.option-card.selected .option-radio {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.option-card.selected .option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.option-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.option-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.option-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-badge {
  text-transform: lowercase !important;
  font-size: 0.7rem;
  padding: 3px 8px;
}

/* Category grid search input */
.category-input-group {
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Wizard Footer Navigation Controls */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
}

/* Final Summary Card details (inside Wizard) */
.summary-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .summary-container {
    grid-template-columns: 1fr;
  }
}

.summary-details {
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.summary-details h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.summary-item {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item span:first-child {
  color: var(--text-secondary);
}

.summary-item strong {
  text-align: right;
  display: block;
}

.summary-price-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--glow-shadow);
}

.summary-price-card h5 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.final-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.final-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Success Mock View */
.wizard-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  margin: 0 auto 30px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.wizard-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 16px;
}

.wizard-success p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 35px;
}

/* ==========================================================================
   DOMAIN IDEA GENERATOR MINI-TOOL
   ========================================================================== */

.domain-section {
  padding: 60px 0;
}

.domain-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
}

.domain-search-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .domain-search-bar {
    flex-direction: column;
  }
}

.domain-search-bar .form-input {
  flex-grow: 1;
}

.domain-results-container {
  display: none;
  animation: slide-up var(--transition-normal);
}

.domain-results-container.active {
  display: block;
}

.domain-results-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.domain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.domain-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.domain-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
}

.domain-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.domain-name span {
  color: var(--color-secondary);
}

.domain-badge-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

.domain-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-success);
}

.btn-select-domain {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 50px;
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-select-domain:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ==========================================================================
   FEATURES / SERVICES GRID
   ========================================================================== */

.features-section {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.feature-icon-wrapper.purple {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.feature-icon-wrapper.cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.feature-icon-wrapper.pink {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.feature-icon-wrapper.green {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.pricing-popular-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background: var(--color-primary);
  color: white;
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-wrap {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.price-wrap span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-feature.included svg {
  color: var(--color-success);
}

.pricing-feature.excluded svg {
  color: var(--text-muted);
}

.pricing-feature.excluded {
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-item:hover .faq-question {
  color: var(--color-secondary);
}

.faq-icon-wrapper {
  color: var(--text-muted);
  transition: transform var(--transition-normal), color var(--transition-fast);
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease;
}

.faq-item.active .faq-content {
  max-height: 250px; /* Big enough for FAQ text */
  padding: 0 24px 24px 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #030308;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 80px;
}

@media (max-width: 576px) {
  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom p {
  width: 100%;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   CREATIVE SAY HELLO SECTION
   ========================================================================== */

.creative-hello-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.hello-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 50px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hello-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 30%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hello-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
}

.hello-interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.hello-bubble {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.hello-bubble .bubble-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition-normal);
}

.hello-bubble.wa-bubble .bubble-icon { color: var(--color-success); }
.hello-bubble.email-bubble .bubble-icon { color: var(--color-primary); }
.hello-bubble.phone-bubble .bubble-icon { color: var(--color-secondary); }

.hello-bubble .bubble-text {
  display: flex;
  flex-direction: column;
}

.hello-bubble .bubble-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hello-bubble .bubble-text strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.hello-bubble:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hello-bubble.wa-bubble:hover {
  border-color: var(--color-success);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}
.hello-bubble.email-bubble:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}
.hello-bubble.phone-bubble:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.hello-bubble:hover .bubble-icon {
  transform: scale(1.1);
}

.hello-bubble.wa-bubble:hover .bubble-icon { background: rgba(16, 185, 129, 0.15); }
.hello-bubble.email-bubble:hover .bubble-icon { background: rgba(139, 92, 246, 0.15); }
.hello-bubble.phone-bubble:hover .bubble-icon { background: rgba(6, 182, 212, 0.15); }

/* Right Panel Graphic */
.hello-graphic {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hello-circle-glow {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(10px);
  position: absolute;
  animation: glow-pulse 4s infinite alternate;
}

.floating-emoji {
  position: absolute;
  font-size: 2.2rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
  user-select: none;
}

.anim-emoji-1 {
  top: 10%;
  left: 20%;
  animation: float-slow-1 6s infinite ease-in-out;
}
.anim-emoji-2 {
  top: 20%;
  right: 15%;
  animation: float-slow-2 8s infinite ease-in-out;
}
.anim-emoji-3 {
  bottom: 15%;
  left: 15%;
  animation: float-slow-3 7s infinite ease-in-out;
}
.anim-emoji-4 {
  bottom: 25%;
  right: 25%;
  animation: float-slow-4 9s infinite ease-in-out;
}

@keyframes glow-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

@keyframes float-slow-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}
@keyframes float-slow-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-15deg); }
}
@keyframes float-slow-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(12deg); }
}
@keyframes float-slow-4 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-10deg); }
}

@media (max-width: 768px) {
  .hello-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
  .hello-graphic {
    height: 150px;
  }
}

/* ==========================================================================
   ZERO-COST LAUNCH BANNER SECTION
   ========================================================================== */

.zero-cost-banner-section {
  margin-top: 60px;
  margin-bottom: 20px;
}

.zero-cost-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.zero-cost-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 75%);
  filter: blur(15px);
  pointer-events: none;
}

.zero-cost-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.zero-cost-left h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 40%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zero-cost-left p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.zero-cost-left p strong {
  color: var(--color-success);
  font-weight: 600;
}

.zero-cost-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all var(--transition-normal);
}

.benefit-row:hover {
  background: rgba(16, 185, 129, 0.03);
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateX(5px);
}

.benefit-badge {
  font-size: 1.8rem;
  line-height: 1;
}

.benefit-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .zero-cost-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   SHOWCASE OVERHAUL: MULTIPAGE TABS & BACKEND CONSOLE LOGS
   ========================================================================== */

/* Multi-page inside preview */
.inner-mock-page {
  display: none;
  animation: mock-fade-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inner-mock-page.active {
  display: block;
}

.inner-mock-nav-link {
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.inner-mock-nav-link.active {
  color: #8b5cf6 !important;
  border-bottom-color: #8b5cf6;
}

.inner-mock-nav-link:hover:not(.active) {
  color: #1e293b !important;
  opacity: 0.8;
}

/* Backend Preview custom elements */
#btn-mock-spa-book {
  background: #8b5cf6;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}

#btn-mock-spa-book:hover {
  background: #7c3aed;
  transform: translateY(-1px);
}

/* Spinner for backend scheduler simulation */
.mock-spinner {
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-top-color: #8b5cf6 !important;
  border-radius: 50%;
  animation: mock-spin 0.8s infinite linear;
}

@keyframes mock-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes mock-fade-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* scrolling logs console */
.mock-terminal-view {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#mock-terminal-logs {
  font-family: 'Courier New', Courier, monospace;
}

#mock-terminal-logs div {
  margin-bottom: 4px;
  animation: mock-fade-in 0.3s ease-in-out forwards;
}

/* Single page smooth scrolling anchors preview simulation */
.mock-single-link {
  position: relative;
  transition: color var(--transition-fast);
}

.mock-single-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #8b5cf6;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.mock-single-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

