/* ==========================================================================
   DixisWeb.com - Futuristic Cyber & High-Conversion Design System (2026)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #07090e;
  --bg-surface: #0e131f;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(26, 36, 56, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);
  
  --neon-cyan: #00f2fe;
  --neon-cyan-glow: rgba(0, 242, 254, 0.35);
  --neon-indigo: #6366f1;
  --neon-indigo-glow: rgba(99, 102, 241, 0.35);
  --neon-purple: #a855f7;
  --neon-purple-glow: rgba(168, 85, 247, 0.35);
  
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.3);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.25);
  --border-cyan: rgba(0, 242, 254, 0.35);
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-neon: 0 0 25px rgba(99, 102, 241, 0.25);
  --shadow-cyan: 0 0 30px rgba(0, 242, 254, 0.3);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  /* Fonts */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Gradients & Cyber Grid */
.cyber-bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0, 242, 254, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #07090e 0%, #0a0e17 100%);
}

.cyber-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--neon-cyan) 65%, var(--neon-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fff 20%, var(--accent-gold) 70%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted { color: var(--text-muted); }
.text-cyan { color: var(--neon-cyan); }
.text-green { color: var(--accent-green); }

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-indigo) 0%, #4f46e5 50%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--neon-indigo-glow), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, #06b6d4 100%);
  color: #06111f;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--neon-cyan-glow);
}

.btn-cyan:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 242, 254, 0.6);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-green-glow);
}

.btn-emerald:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-glow-pulse::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shine-sweep 4s infinite linear;
}

@keyframes shine-sweep {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* Glassmorphism Card Component */
.cyber-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

.cyber-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), var(--shadow-neon);
}

.cyber-card.featured {
  border-color: var(--neon-indigo);
  box-shadow: 0 20px 45px -10px rgba(99, 102, 241, 0.35);
  background: linear-gradient(180deg, rgba(30, 41, 69, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-cyan {
  background: rgba(0, 242, 254, 0.1);
  color: var(--neon-cyan);
  border: 1px solid var(--border-cyan);
}

.badge-indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid var(--border-glow);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* Header & Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 9, 14, 0.7);
}

.main-nav.scrolled {
  padding: 12px 0;
  background: rgba(7, 9, 14, 0.92);
  border-bottom-color: rgba(99, 102, 241, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.brand-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25), inset 0 0 12px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.brand-logo:hover .logo-icon {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.5), inset 0 0 16px rgba(0, 242, 254, 0.3);
  transform: scale(1.06);
}

.scroll-animated-logo {
  width: 32px;
  height: 32px;
  display: block;
  overflow: visible;
  transition: filter 0.3s ease;
}

.scroll-animated-logo .logo-orbit-outer,
.scroll-animated-logo .logo-orbit-inner,
.scroll-animated-logo .logo-core-pulse {
  will-change: transform;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Hero Section */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge-wrapper {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-sub);
  max-width: 720px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  max-width: 700px;
  margin: 0 auto;
}

.metric-item .metric-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.metric-item .metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header .section-tag {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Before / After Interactive Visual Comparison */
.comparison-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.slider-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.side-before {
  background: #1e1e24;
  color: #a1a1aa;
  z-index: 1;
}

.side-after {
  background: linear-gradient(135deg, #090e1a 0%, #151d30 100%);
  color: #ffffff;
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--neon-cyan);
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 0 15px var(--neon-cyan);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--neon-cyan);
  color: #000;
  font-weight: 800;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-top: 40px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pricing-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-price-box {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-market-strike {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: line-through;
  margin-top: 6px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-sub);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--neon-cyan);
}

/* Interactive Calculator */
.calculator-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 60px 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.calc-control {
  margin-bottom: 28px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.calc-chip.active {
  background: rgba(99, 102, 241, 0.18);
  border-color: var(--neon-indigo);
  color: #fff;
}

.calc-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-neon);
}

.calc-total-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--neon-cyan);
  line-height: 1;
  margin: 16px 0;
}

/* Workflow Step Cards */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  position: relative;
  margin-top: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}

.step-badge-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--neon-cyan);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-sub);
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--neon-cyan);
}

/* Footer */
.main-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
  background: #040609;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ONBOARDING FORM / WIZARD STYLING (Multi-Step Form)
   ========================================================================== */
.onboarding-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.wizard-main-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

/* Step Progress Indicator */
.wizard-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #1e293b;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-indigo), var(--neon-cyan));
  box-shadow: 0 0 10px var(--neon-cyan);
  transition: width 0.4s ease;
}

.step-node {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid #334155;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.step-node.active {
  border-color: var(--neon-cyan);
  background: #0f172a;
  color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.step-node.completed {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #000;
}

/* Wizard Steps Display */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.step-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* Form Groups & Inputs */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-label .required {
  color: #f43f5e;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
  background: rgba(15, 23, 42, 1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Visual Option Choice Cards */
.choice-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.choice-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  user-select: none;
}

.choice-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.choice-card.selected {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--neon-indigo);
  box-shadow: 0 0 20px var(--neon-indigo-glow);
}

.choice-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.choice-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.choice-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Color Palette Selector */
.color-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.color-option-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-option-card.selected {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
}

.color-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Wizard Sidebar Order Summary */
.wizard-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-neon);
}

.summary-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-sub);
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.summary-total-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

/* Wizard Navigation Buttons */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

/* Floating WhatsApp Concierge Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .wizard-layout {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .slider-wrapper {
    height: 360px;
  }
  .wizard-main-card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   Parallax Decorators & Depth System
   ========================================================================== */
.cyber-parallax-obj {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: transform 0.12s cubic-bezier(0.1, 0.9, 0.2, 1);
  will-change: transform;
}

.parallax-cube {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(0, 242, 254, 0.45);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.08), rgba(99, 102, 241, 0.12));
  border-radius: 12px;
  transform: rotate(45deg);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
  animation: float-cube 9s ease-in-out infinite alternate;
}

.parallax-orb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(168, 85, 247, 0.12) 60%, transparent 70%);
  filter: blur(12px);
  animation: pulse-orb 7s ease-in-out infinite alternate;
}

.parallax-ring {
  width: 76px;
  height: 76px;
  border: 2px dashed rgba(168, 85, 247, 0.45);
  border-radius: 50%;
  animation: rotate-ring 16s linear infinite;
}

.parallax-cross {
  width: 32px;
  height: 32px;
  position: relative;
}
.parallax-cross::before, .parallax-cross::after {
  content: '';
  position: absolute;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}
.parallax-cross::before { top: 14px; left: 0; width: 32px; height: 4px; border-radius: 2px; }
.parallax-cross::after { top: 0; left: 14px; width: 4px; height: 32px; border-radius: 2px; }

@keyframes float-cube {
  0% { transform: rotate(45deg) translateY(0); }
  100% { transform: rotate(55deg) translateY(-20px); }
}

@keyframes pulse-orb {
  0% { transform: scale(0.9); opacity: 0.35; }
  100% { transform: scale(1.25); opacity: 0.75; }
}

@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Portfolio Section & Interactive Animated Mockups
   ========================================================================== */
.portfolio-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.portfolio-card {
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.portfolio-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 30px 65px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.3);
  transform: translateY(-8px);
}

/* Browser Window Header */
.browser-mockup-header {
  background: #0b1120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.traffic-dots {
  display: flex;
  gap: 6px;
}

.traffic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.traffic-dot.red { background: #ff5f56; }
.traffic-dot.yellow { background: #ffbd2e; }
.traffic-dot.green { background: #27c93f; }

.browser-address-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: monospace;
  font-size: 0.74rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-address-bar .ssl-icon {
  color: #10b981;
  font-size: 0.78rem;
}

.browser-ext-link {
  color: #64748b;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.portfolio-card:hover .browser-ext-link {
  color: var(--neon-cyan);
}

/* Mockup Viewport & Smooth Auto-Scroll Canvas */
.mockup-viewport {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: #090d16;
}

.mockup-scroll-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.mockup-thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

.portfolio-card:hover .mockup-scroll-page {
  transform: translateY(calc(-100% + 290px));
  transition: transform 5.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover Action Button Overlay */
.mockup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.portfolio-card:hover .mockup-overlay {
  opacity: 1;
  pointer-events: auto;
}

.btn-visit-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.95);
  color: #06111f;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.65);
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .btn-visit-site {
  transform: translateY(0);
}

.btn-visit-site:hover {
  background: #ffffff;
  transform: scale(1.05);
}

/* Portfolio Card Info Area */
.portfolio-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 23, 0.98) 100%);
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.portfolio-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.portfolio-category {
  font-size: 0.82rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

.portfolio-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}

.portfolio-status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.portfolio-desc {
  font-size: 0.86rem;
  color: var(--text-sub);
  line-height: 1.45;
}

.portfolio-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.meta-tag {
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  padding: 3px 8px;
  color: #cbd5e1;
}

.meta-tag.highlight {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.1);
  font-weight: 600;
}

.portfolio-link-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.portfolio-link-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--neon-indigo);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

/* ==========================================================================
   Realistic Rendered Mini-Pages Inside Mockups
   ========================================================================== */
.preview-page {
  background: #0a0f1d;
  color: #e2e8f0;
  font-size: 11px;
}

.preview-nav {
  padding: 9px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.preview-nav-logo {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.preview-nav-cta {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
}

.preview-hero {
  padding: 22px 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-hero-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.preview-hero-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #ffffff;
}

.preview-hero-desc {
  font-size: 10px;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 12px;
}

.preview-hero-buttons {
  display: flex;
  gap: 6px;
}

.preview-btn {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.preview-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.25);
}

.preview-feat-card {
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-feat-icon {
  font-size: 14px;
  margin-bottom: 4px;
}

.preview-feat-title {
  font-weight: 700;
  font-size: 10px;
  margin-bottom: 2px;
  color: #f1f5f9;
}

.preview-feat-text {
  font-size: 8.5px;
  color: #94a3b8;
  line-height: 1.3;
}

.preview-metrics-strip {
  display: flex;
  justify-content: space-around;
  padding: 12px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-metric-box {
  text-align: center;
}

.preview-metric-val {
  font-size: 12px;
  font-weight: 800;
}

.preview-metric-lbl {
  font-size: 8px;
  color: #94a3b8;
}

.preview-footer-mock {
  padding: 12px 14px;
  text-align: center;
  font-size: 8.5px;
  color: #64748b;
  background: #070a12;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section Styles */
.contact-section {
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  padding: 36px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-form-card {
  padding: 36px;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
}

.form-row {
  display: flex;
  gap: 16px;
}

.contact-alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.contact-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.contact-alert.error {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fb7185;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-info-card, .contact-form-card {
    padding: 24px;
  }
}

