/* deploi.me Marketing CSS Styles - Premium Design System */

:root {
  --color-primary: #8b5cf6; /* Vibrant violet */
  --color-primary-dark: #6d28d9;
  --color-primary-light: #a78bfa;
  --color-secondary: #06b6d4; /* Neon cyan */
  --color-secondary-dark: #0891b2;
  --color-accent: #f43f5e; /* Rose pink for highlights */
  --color-dark: #060415; /* Sleek rich dark bg */
  --color-dark-light: #0d0a27; /* Rich dark navy card bg */
  --color-dark-lighter: #151139; /* Glow accent card bg */
  --color-text: #f3f4f6;
  --color-text-muted: #9ca3af;
  --color-border: #272254;
  --color-border-glow: #4c3f91;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  --font-title: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Header & Navbar */
.site-header {
  background-color: rgba(6, 4, 21, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deploime-logo-container svg {
  height: 48px;
  width: auto;
  color: var(--color-text);
  --logo-accent: var(--color-primary-light);
  transition: color 0.3s ease;
}

.deploime-logo-container:hover svg {
  --logo-accent: var(--color-secondary);
}

.logo-icon {
  font-size: 28px;
  background: none;
  -webkit-text-fill-color: initial;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 8px 14px;
  color: var(--color-text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.lang-toggle:hover {
  border-color: var(--color-primary-light);
  background-color: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.lang-icon {
  font-size: 16px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: var(--color-dark-light);
  border: 1px solid var(--color-border-glow);
  border-radius: 12px;
  min-width: 150px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.05);
  z-index: 1000;
}

.language-switcher:hover .lang-dropdown,
.language-switcher:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  margin: 0;
}

.lang-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.lang-dropdown a:hover {
  background-color: rgba(139, 92, 246, 0.08);
  color: #fff;
  padding-left: 24px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5), 0 0 15px rgba(6, 182, 212, 0.3);
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: var(--color-dark-light);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-dark-lighter);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.1);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--color-primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-primary-light) 75%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* 3D Smart Gadget card effect */
.hero-interactive {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gadget-card-3d {
  width: 320px;
  height: 200px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
}

.gadget-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gadget-card-3d:hover .gadget-card-inner {
  transform: rotateY(15deg) rotateX(10deg) translateY(-8px);
}

.gadget-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: linear-gradient(135deg, rgba(21, 17, 57, 0.9) 0%, rgba(13, 10, 39, 0.95) 100%);
  border: 1px solid var(--color-border-glow);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(139, 92, 246, 0.1);
  overflow: hidden;
}

.gadget-card-front::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.card-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.card-nfc-icon {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
}

.card-qr-box {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 8px;
  padding: 5px;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  /* Pixelated QR code simulation */
  background: 
    linear-gradient(45deg, #000 25%, transparent 25%), 
    linear-gradient(-45deg, #000 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #000 75%), 
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 10px 10px;
  background-color: #fff;
}

.gadget-card-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(5px);
  pointer-events: none;
  transition: all 0.8s ease;
}

.gadget-card-3d:hover ~ .gadget-card-shadow {
  transform: scale(0.9);
  opacity: 0.4;
}

/* Profiles Showcase Section */
.profiles-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header .subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Profiles Showcase Section - Responsive Premium Carousel Styles */
.profiles-carousel-container {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
}

.profiles-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 12px 4px 24px; /* Space for hover translations & custom shadows */
}

.profiles-grid {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 32px;
  width: 100%;
  will-change: transform;
}

.profile-card {
  flex: 0 0 calc((100% - 64px) / 3); /* 3 cards visible on desktop */
  background-color: var(--color-dark-light);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Premium Glassmorphic Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(18, 18, 28, 0.7);
  border: 1px solid var(--color-border);
  color: white;
  font-size: 26px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.carousel-control:hover {
  background: var(--color-primary);
  border-color: var(--color-primary-light);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.carousel-control:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-control.prev {
  left: -26px;
}

.carousel-control.next {
  right: -26px;
}

/* Bullet Indicators styling */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.indicator:hover {
  background: var(--color-text-muted);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--color-primary);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

/* Responsive Overrides & Active Slide Highlight State */
@media (min-width: 1024px) {
  .carousel-control,
  .carousel-indicators {
    display: none !important;
  }
  .profiles-grid {
    transform: none !important; /* Lock static view on desktop */
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .profile-card {
    flex: 0 0 calc((100% - 32px) / 2); /* 2 cards visible */
  }
  .carousel-control.prev {
    left: -16px;
  }
  .carousel-control.next {
    right: -16px;
  }
}

@media (max-width: 767px) {
  .profile-card {
    flex: 0 0 100%; /* 1 card visible */
  }
  .carousel-control {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .carousel-control.prev {
    left: -10px;
  }
  .carousel-control.next {
    right: -10px;
  }
}

/* Subtle active card glow scaling when in slider mode */
.profile-card.active-slide {
  border-color: var(--color-primary-light);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15), 0 0 40px rgba(0, 0, 0, 0.3);
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.4s ease;
}

.profile-card.creative::before {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.profile-card.maker::before {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.profile-card.user-profile::before {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.profile-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.08);
}

.profile-icon {
  font-size: 40px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.profile-card h3 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.profile-desc {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.profile-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-card.creative .profile-badge {
  color: var(--color-primary-light);
  border-color: rgba(139, 92, 246, 0.3);
  background-color: rgba(139, 92, 246, 0.08);
}

.profile-card.maker .profile-badge {
  color: var(--color-secondary);
  border-color: rgba(6, 182, 212, 0.3);
  background-color: rgba(6, 182, 212, 0.08);
}

.profile-card.user-profile .profile-badge {
  color: var(--color-accent);
  border-color: rgba(244, 63, 94, 0.3);
  background-color: rgba(244, 63, 94, 0.08);
}

.profile-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.profile-features-list li {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--color-dark-light);
  position: relative;
}

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

.feature-card {
  background-color: var(--color-dark);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 800;
  margin: 0 auto 28px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.step h3 {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.step p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-image: radial-gradient(circle at center, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pricing-card {
  background-color: var(--color-dark-light);
  padding: 48px 40px;
  border-radius: 28px;
  border: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background-color: var(--color-dark-lighter);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
  transform: translateY(-8px);
}

.pricing-card:hover {
  border-color: var(--color-border-glow);
}

.pricing-card.featured:hover {
  border-color: var(--color-primary-light);
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
}

.price {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 32px;
  color: white;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 16px;
  color: var(--color-text-muted);
  font-weight: 500;
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.pricing-features li {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05) 100%);
  position: relative;
}

.cta h2 {
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background-color: var(--color-dark-light);
  padding: 80px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--color-text);
  font-weight: 700;
}

.footer-col p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-col a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }
  .profiles-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .profiles-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: translateY(0);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Single Pages Style Adjustments */
.single-page {
  padding-bottom: 100px;
}

.page-hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 50%),
              radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.05), transparent 50%);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: var(--font-title);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
}

.article-content h2 {
  font-size: 32px;
  margin: 48px 0 24px;
  font-family: var(--font-title);
  background: linear-gradient(135deg, #fff 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul {
  margin-bottom: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-content ul li {
  position: relative;
  padding-left: 32px;
  color: var(--color-text-muted);
}

.article-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.article-content strong {
  color: white;
}

/* About Grid & Cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.about-card {
  background-color: var(--color-dark-light);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.about-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

/* Horizontal Cards Layout */
.about-horizontal-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0;
}

.about-horizontal-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.7) 0%, rgba(28, 28, 35, 0.4) 100%);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-horizontal-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
}

.about-card-visual {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin-right: 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: inset 0 0 16px rgba(139, 92, 246, 0.08);
}

.about-card-icon {
  font-size: 38px;
  line-height: 1;
}

.about-card-info {
  flex-grow: 1;
}

.about-card-info h2 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: white;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-card-info p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  margin-top: 0;
}

.about-card-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.about-card-info ul li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.about-card-info ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-weight: bold;
}

@media (max-width: 768px) {
  .about-horizontal-card {
    flex-direction: column;
    padding: 32px 24px;
  }
  
  .about-card-visual {
    margin-right: 0;
    margin-bottom: 24px;
    width: 70px;
    height: 70px;
    border-radius: 16px;
  }
  
  .about-card-icon {
    font-size: 30px;
  }
  
  .about-card-info h2 {
    font-size: 20px;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.contact-item {
  text-align: center;
  padding: 48px 40px;
  background: var(--color-dark-light);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-item:hover {
  border-color: var(--color-secondary);
  transform: translateY(-5px);
}

.contact-item h3 {
  font-family: var(--font-title);
  margin-bottom: 16px;
  color: white;
  font-size: 22px;
  font-weight: 700;
}

.contact-item a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-primary-light);
}

/* High-specificity override for About page horizontal card bullet points */
.article-content .about-card-info ul li {
  list-style: none !important;
  padding-left: 28px !important;
}

.article-content .about-card-info ul li::before {
  content: '⚡' !important;
  position: absolute !important;
  left: 0 !important;
  color: var(--color-primary-light) !important;
  font-weight: bold !important;
}

/* Interactive Video Showcase Section */
.video-showcase-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  overflow: hidden;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
}

.video-tabs-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.video-tab-btn {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-tab-btn:hover {
  border-color: rgba(139, 92, 246, 0.4);
  color: white;
  transform: translateY(-2px);
}

.video-tab-btn.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(139, 92, 246, 0.5) 100%);
  border-color: var(--color-primary-light);
  color: white;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
}

.video-display-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  background: rgba(15, 15, 20, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  background: #000;
  aspect-ratio: 16/9;
}

.video-glow-effect {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
  transition: all 0.6s ease;
}

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

.video-placeholder-illustration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1b4b 0%, #0c0a0f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.video-placeholder-svg {
  width: 80px;
  height: 80px;
  opacity: 0.15;
  margin-bottom: 20px;
  color: var(--color-primary-light);
  animation: pulse 3s infinite ease-in-out;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-play-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary-light);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.video-play-btn span {
  margin-left: 6px;
}

.video-player-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--color-border);
  padding: 10px 18px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  pointer-events: none;
}

.video-overlay-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.video-info-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.video-info-badge {
  align-self: flex-start;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--color-primary-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.video-info-panel h3 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
  line-height: 1.2;
}

.video-info-panel p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.video-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: white;
}

.video-point-check {
  color: var(--color-primary-light);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 16px;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@media (max-width: 1024px) {
  .video-display-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  
  .video-info-panel {
    align-items: center;
    text-align: center;
  }
  
  .video-info-badge {
    align-self: center;
  }
}

/* Showcase Mode Switcher */
.showcase-mode-switcher {
  display: inline-flex;
  background: rgba(20, 20, 25, 0.4);
  border: 1px solid var(--color-border);
  padding: 4px;
  border-radius: 50px;
  gap: 4px;
  margin: 0 auto 32px auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  justify-content: center;
}

.mode-switch-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-switch-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.mode-switch-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Video Mode Container Styles */
.video-player-wrapper.video-mode video {
  display: block;
}

/* Custom Glassmorphic Video Controls */
.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.4) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.custom-video-controls.hidden {
  opacity: 0;
  pointer-events: none;
}

.control-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.time-display {
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: monospace;
  white-space: nowrap;
}

/* Custom Timeline Progress Bar */
.progress-bar-container {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.progress-bar-container:hover {
  height: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 3px;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-bar-handle {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 0%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-bar-container:hover .progress-bar-handle {
  opacity: 1;
}

/* Timeline Chapter Markers */
.timeline-marker {
  position: absolute;
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeline-marker::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--color-border);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.timeline-marker:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.timeline-marker:hover {
  background: var(--color-primary-light);
  width: 6px;
}

/* Volume Slider */
.volume-slider {
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

/* Premium Subtitle Panel */
.video-subtitles {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  text-align: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  z-index: 5;
  transition: all 0.3s ease;
}


/* Glassmorphic Simulation Visualizers & Dashboards */
.simulation-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(circle at center, #13111C 0%, #07060A 100%);
}

.simulation-screen.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mock-dashboard {
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dashboard-header {
  background: rgba(10, 10, 15, 0.9);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-title {
  font-family: monospace;
  font-size: 12px;
  color: var(--color-text-muted);
}

.dashboard-window-dots {
  display: flex;
  gap: 6px;
}

.dashboard-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

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

.dashboard-body {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  height: calc(100% - 37px);
}

.dashboard-sidebar {
  background: rgba(10, 10, 15, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-item {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sidebar-item.active {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-primary-light);
  border-left: 3px solid var(--color-primary-light);
  padding-left: 9px;
}

.dashboard-content {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Card Configurator Styles */
.card-configurator {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  width: 100%;
  align-items: center;
}

@media (max-width: 600px) {
  .card-configurator {
    grid-template-columns: 1fr;
  }
  .dashboard-body {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    display: none;
  }
}

.card-preview-container {
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.premium-glass-card {
  width: 220px;
  height: 130px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
}

.premium-glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.premium-glass-card:hover {
  transform: translateY(-5px) rotateY(10deg);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.premium-glass-card:hover::before {
  transform: translate(10%, 10%);
}

.card-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  color: white;
  letter-spacing: 1px;
}

.card-chip {
  width: 28px;
  height: 22px;
  background: linear-gradient(135deg, #e5c158 0%, #c29c32 100%);
  border-radius: 4px;
  opacity: 0.85;
}

.card-number {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-family: monospace;
}

.card-nfc-icon {
  font-size: 10px;
  color: var(--color-primary-light);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-controls label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.url-input-group {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  overflow: hidden;
}

.input-prefix {
  font-size: 12px;
  color: rgba(139, 92, 246, 0.7);
  font-family: monospace;
}

.url-input {
  background: transparent;
  border: none;
  color: white;
  font-size: 12px;
  font-family: monospace;
  outline: none;
  width: 100%;
  padding-left: 4px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #10b981;
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

/* Creative mesh visualizer styles */
.mesh-visualizer {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.mesh-box-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.mesh-box-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotateMesh 10s infinite linear;
}

.mesh-face {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wireframe mesh lines inside face */
.mesh-face::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(139, 92, 246, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mesh-face.front  { transform: rotateY(  0deg) translateZ(60px); }
.mesh-face.back   { transform: rotateY(180deg) translateZ(60px); }
.mesh-face.left   { transform: rotateY(-90deg) translateZ(60px); }
.mesh-face.right  { transform: rotateY( 90deg) translateZ(60px); }
.mesh-face.top    { transform: rotateX( 90deg) translateZ(60px); }
.mesh-face.bottom { transform: rotateX(-90deg) translateZ(60px); }

@keyframes rotateMesh {
  0% { transform: rotateX(15deg) rotateY(0deg); }
  100% { transform: rotateX(15deg) rotateY(360deg); }
}

.nfc-hologram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(65px);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, transparent 80%);
  border-radius: 50%;
  animation: pulseHologram 2s infinite ease-in-out;
  pointer-events: none;
  z-index: 10;
}

@keyframes pulseHologram {
  0%, 100% { transform: translate(-50%, -50%) translateZ(65px) scale(0.8); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) translateZ(65px) scale(1.2); opacity: 0.9; }
}

.mesh-analysis-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: white;
  font-family: var(--font-title);
}

.ai-brain {
  font-size: 18px;
  animation: brainWave 2.5s infinite;
}

@keyframes brainWave {
  0%, 100% { filter: drop-shadow(0 0 2px var(--color-primary-light)); }
  50% { filter: drop-shadow(0 0 10px var(--color-primary-light)); }
}

.analysis-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-item {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-item.checked {
  color: rgba(255, 255, 255, 0.9);
}

.step-item.checked::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
}

.step-item.accent-ai {
  color: var(--color-primary-light);
  font-weight: bold;
  background: rgba(139, 92, 246, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px dashed rgba(139, 92, 246, 0.3);
  margin-top: 6px;
}

.step-item.accent-ai::before {
  display: none;
}

/* Maker Printer simulation styles */
.printer-visualizer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.printer-gantry {
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 35%;
  left: 10%;
  z-index: 5;
  animation: moveGantry 4s infinite ease-in-out;
}

.nozzle {
  width: 8px;
  height: 12px;
  background: #475569;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px 2px 0 0;
  animation: moveNozzle 2s infinite ease-in-out;
}

.nozzle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 3px;
  width: 2px;
  height: 4px;
  background: var(--color-primary-light);
  box-shadow: 0 0 6px var(--color-primary-light);
}

.print-bed {
  width: 140px;
  height: 10px;
  background: #1e293b;
  border-radius: 2px;
  position: absolute;
  top: 65%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.printed-model-glass {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 35px;
  background: linear-gradient(0deg, rgba(139, 92, 246, 0.7) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 4px;
  animation: growModel 8s infinite linear;
}

@keyframes moveGantry {
  0%, 100% { top: 35%; }
  50% { top: 58%; }
}

@keyframes moveNozzle {
  0%, 100% { left: 20%; }
  50% { left: 80%; }
}

@keyframes growModel {
  0%, 100% { height: 0; opacity: 0; }
  5% { height: 2px; opacity: 1; }
  90% { height: 35px; opacity: 1; }
  95% { height: 35px; opacity: 0; }
}

.maker-details-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.job-header {
  font-weight: 700;
  color: white;
  font-size: 13px;
}

.job-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-line {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.highlight-yellow {
  color: #f59e0b;
  font-weight: 600;
}

.highlight-green {
  color: #10b981;
  font-weight: 700;
}

/* Final User folded card smartphone support utility styles */
.utility-visualizer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.utility-card-stand-mock {
  position: relative;
  width: 140px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-folded-base {
  width: 110px;
  height: 30px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.4);
  transform: skewX(-20deg);
  border-radius: 4px;
  position: absolute;
  bottom: 5px;
}

.mock-smartphone {
  width: 76px;
  height: 120px;
  background: #1e1e24;
  border: 2px solid #334155;
  border-radius: 10px;
  padding: 4px;
  transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg);
  box-shadow: -10px 10px 25px rgba(0,0,0,0.6);
  z-index: 2;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  animation: phoneHover 3s infinite ease-in-out;
}

@keyframes phoneHover {
  0%, 100% { transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(0); }
  50% { transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg) translateY(-8px); }
}

.mock-phone-screen {
  width: 100%;
  height: 100%;
  background: #09090b;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.nfc-connection-ripple {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
  0% { transform: scale(0.2); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.opened-link {
  font-family: monospace;
  font-size: 8px;
  color: var(--color-primary-light);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.utility-details-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.utility-badge {
  align-self: flex-start;
  font-size: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
}

.utility-details-panel h4 {
  font-size: 16px;
  color: white;
  margin: 0;
  font-weight: 700;
}

.utility-details-panel p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}


