/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primary-bg: #0a0a0a;
  --secondary-bg: #111111;
  --accent-bg: #1a1a1a;
  --primary-text: #ffffff;
  --secondary-text: #a0a0a0;
  --accent-text: #666666;
  --highlight-color: #00ffff;
  --highlight-secondary: #ff6b35;
  --grid-color: rgba(255, 255, 255, 0.1);
  --glow-color: rgba(0, 255, 255, 0.3);
  --glow-secondary: rgba(255, 107, 53, 0.3);

  /* Spacing */
  --container-padding: 2rem;
  --section-padding: 8rem 0;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: var(--font-secondary);
  background: var(--primary-bg);
  color: var(--primary-text) !important;
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grid Background */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.4;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.grid-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 30s linear infinite reverse;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* Lighting Effects */
.lighting-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.light-beam {
  position: absolute;
  background: linear-gradient(45deg, transparent, var(--glow-color), transparent);
  filter: blur(2px);
  animation: lightBeamMove 12s ease-in-out infinite;
  opacity: 0.6;
}

.light-beam-1 {
  width: 200px;
  height: 2px;
  top: 20%;
  left: -100px;
  animation-delay: 0s;
}

.light-beam-2 {
  width: 150px;
  height: 1px;
  top: 60%;
  right: -75px;
  background: linear-gradient(45deg, transparent, var(--glow-secondary), transparent);
  animation-delay: 2s;
}

.light-beam-3 {
  width: 300px;
  height: 1px;
  top: 80%;
  left: -150px;
  animation-delay: 4s;
}

@keyframes lightBeamMove {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }

  50% {
    transform: translateX(100vw) rotate(5deg);
    opacity: 1;
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  animation: orbFloat 10s ease-in-out infinite;
  opacity: 0.4;
}

.glow-orb-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--glow-color), transparent);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--glow-secondary), transparent);
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
  margin-top: 76px;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--highlight-color);
  border-radius: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.badge-text {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--highlight-color);
  position: relative;
  z-index: 2;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glow-color), transparent);
  animation: badgeGlow 6s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes badgeGlow {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600 !important;
  line-height: 0.9 !important;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  position: relative;
}

.title-line.highlight {
  color: var(--highlight-color);
  text-shadow: 0 0 20px var(--glow-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--highlight-color);
  display: block;
  text-shadow: 0 0 10px var(--glow-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

.cta-button {
  position: relative;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--highlight-color), #0099cc);
  color: var(--primary-bg);
  border: 1px solid var(--highlight-color);
}

.cta-button.secondary {
  background: transparent;
  color: var(--primary-text);
  border: 1px solid var(--secondary-text);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button.primary:hover {
  box-shadow: 0 10px 30px var(--glow-color);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-smooth);
}

.cta-button:hover .button-glow {
  left: 100%;
}

/* Hero Image */
.hero-image {
  position: absolute;
  top: -40%;
  /* Moved up by 20% */
  right: -10%;
  width: 75%;
  /* Increased by 50% (50% * 1.5 = 75%) */
  height: 130vh;
  /* Increased by 30% */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lights Container */
.lights-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  overflow: hidden;
}

.lights-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Hanging Lights Image */
.hanging-lights-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  filter: grayscale(100%) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  transition: all 0s ease;
  animation: lightSway 8s ease-in, imageColorTransition 1s ease-in-out 2s forwards;
  opacity: 1;
}

@keyframes lightSway {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(0.5deg) scale(1.01);
  }

  75% {
    transform: rotate(-0.5deg) scale(0.99);
  }
}

@keyframes imageColorTransition {
  0% {
    filter: grayscale(100%) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }

  100% {
    filter: grayscale(0%) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
}

@keyframes delayedGlow {
  0%,
  100% {
    filter: grayscale(0%) drop-shadow(0 0 8px rgba(255, 200, 100, 0.3)) drop-shadow(0 0 2px rgba(255, 139, 107, 0.2)) drop-shadow(0 0 6px rgba(255, 100, 0, 0.1));
  }

  50% {
    filter: grayscale(0%) drop-shadow(0 0 12px rgba(255, 200, 100, 0.4)) drop-shadow(0 0 4px rgba(255, 139, 107, 0.3)) drop-shadow(0 0 8px rgba(255, 100, 0, 0.15));
  }
}

/* Innovation Section */
.innovation-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-badge span {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--highlight-color);
}

.badge-line {
  width: 60px;
  height: 1px;
  background: var(--highlight-color);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500 !important;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.title-word {
  display: inline-block;
  margin-right: 1rem;
}

.title-word.highlight {
  color: var(--highlight-color);
  text-shadow: 0 0 20px var(--glow-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Shopping Comparison */
.shopping-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

.comparison-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  min-height: 500px;
}

.offline-card {
  border-color: rgba(255, 107, 53, 0.3);
}

.offline-card:hover {
  border-color: var(--highlight-secondary);
}

.online-card {
  border-color: rgba(0, 255, 255, 0.3);
}

.online-card:hover {
  border-color: var(--highlight-color);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--glow-color), transparent, var(--glow-secondary));
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--highlight-color);
  border-radius: 0.5rem;
  color: var(--highlight-color);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--glow-color);
  border-radius: 0.5rem;
  opacity: 0.2;
  filter: blur(10px);
}

.card-header h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500 !important;
  color: var(--primary-text);
  flex: 1;
  letter-spacing: 0.01em;
}

/* Comparison-specific styles */
.comparison-card .card-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.comparison-card .card-header .card-icon {
  align-self: flex-start;
}

.experience-badge {
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-badge.offline {
  background: rgba(255, 107, 53, 0.2);
  color: var(--highlight-secondary);
  border: 1px solid var(--highlight-secondary);
}

.experience-badge.online {
  background: rgba(0, 255, 255, 0.2);
  color: var(--highlight-color);
  border: 1px solid var(--highlight-color);
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--secondary-text);
  font-weight: 500;
}

/* VS Divider */
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

.vs-line {
  width: 1px;
  height: 1px;
  background: linear-gradient(180deg, transparent, var(--highlight-color), transparent);
}

.vs-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  color: var(--highlight-color);
  text-shadow: 0 0 10px var(--glow-color);
  padding: 1rem;
  border: 2px solid var(--highlight-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  animation: vsGlow 3s ease-in-out infinite;
}

@keyframes vsGlow {
  0%,
  100% {
    box-shadow: 0 0 10px var(--glow-color);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px var(--glow-color);
    transform: scale(1.1);
  }
}

/* UX Solutions Section */
.ux-solutions-section {
  margin-top: 6rem;
  margin-bottom: 5rem;
}

.ux-solutions-section .section-header {
  margin-bottom: 4rem;
}

.ux-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--accent-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-10px);
  border-color: var(--highlight-color);
}

.solution-card:hover .icon-glow {
  opacity: 0.3;
}

.solution-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--highlight-color);
  border-radius: 50%;
  color: var(--highlight-color);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
  z-index: 2;
  position: relative;
}

.solution-icon .icon-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--highlight-color);
  border-radius: 50%;
  opacity: 0;
  filter: blur(1px);
  transition: var(--transition-smooth);
}

.solution-card h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 500 !important;
  color: var(--primary-text);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.solution-card p {
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-highlight {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--highlight-color);
  border-radius: 1rem;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--highlight-color);
}

/* Different highlight colors for each solution */
.solution-card:nth-child(1) .solution-highlight {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--highlight-secondary);
  color: var(--highlight-secondary);
}

.solution-card:nth-child(1) .solution-icon {
  border-color: var(--highlight-secondary);
  color: var(--highlight-secondary);
}

.solution-card:nth-child(1) .solution-icon .icon-glow {
  background: var(--highlight-secondary);
}

.solution-card:nth-child(1):hover {
  border-color: var(--highlight-secondary);
}

.solution-card:nth-child(3) .solution-highlight {
  background: rgba(138, 43, 226, 0.1);
  border-color: #8a2be2;
  color: #8a2be2;
}

.solution-card:nth-child(3) .solution-icon {
  border-color: #8a2be2;
  color: #8a2be2;
}

.solution-card:nth-child(3) .solution-icon .icon-glow {
  background: #8a2be2;
}

.solution-card:nth-child(3):hover {
  border-color: #8a2be2;
}

.solution-card:nth-child(4) .solution-highlight {
  background: rgba(50, 205, 50, 0.1);
  border-color: #32cd32;
  color: #32cd32;
}

.solution-card:nth-child(4) .solution-icon {
  border-color: #32cd32;
  color: #32cd32;
}

.solution-card:nth-child(4) .solution-icon .icon-glow {
  background: #32cd32;
}

.solution-card:nth-child(4):hover {
  border-color: #32cd32;
}

/* Navigation Showcase Section */
.navigation-showcase {
  margin: 8rem 0;
  padding: 0;
  overflow: hidden;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.showcase-text {
  position: relative;
  z-index: 2;
}

.showcase-badge {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--highlight-color);
  border-radius: 2rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight-color);
  margin-bottom: 2rem;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.showcase-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.title-line {
  display: block;
  position: relative;
}

.title-line.highlight {
  color: var(--highlight-color);
  text-shadow: 0 0 30px var(--glow-color);
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-bullet {
  width: 12px;
  height: 12px;
  background: var(--highlight-color);
  border-radius: 50%;
  margin-top: 0.5rem;
  box-shadow: 0 0 15px var(--glow-color);
  animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px var(--glow-color);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--glow-color);
  }
}

.feature-point p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin: 0;
}

/* Laptop Mockup Showcase */
.showcase-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.laptop-container {
  position: relative;
}

/* Laptop Base */
.laptop-base {
  position: relative;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 0 0 20px 20px;
  transform: rotateX(75deg) translateZ(-20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.laptop-base-front {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 2px;
}

.laptop-base-shadow {
  display: none;
}

/* Laptop Screen */
.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 12px;
  padding: 12px;
}

.screen-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.website-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.screen-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.camera-dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* User Research Flow */
.user-research-flow {
  margin: 8rem 0;
  padding: 0;
}

.flow-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.research-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.research-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  transition: var(--transition-smooth);
}

/* User Journey Flow */
.user-journey-flow {
  margin: 10rem 0;
  padding: 0;
}

.flow-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.flow-header {
  text-align: center;
  margin-bottom: 6rem;
  padding: 0 2rem;
}

.flow-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500 !important;
  line-height: 1.2;
  color: var(--primary-text);
  max-width: 1000px;
  letter-spacing: -0.01em;
  margin: 0 auto;
}

.flow-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.flow-image {
  width: 100%;
  height: auto;
  max-width: none;
  /* Always full width */
  transition: var(--transition-smooth);
  display: block;
}

.card-content p {
  color: var(--secondary-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card-metrics {
  display: flex;
  gap: 2rem;
}

.metric {
  text-align: center;
}

.metric-value {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--highlight-color);
  display: block;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Timeline */
.innovation-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--highlight-color), var(--highlight-secondary));
  transform: translateY(-50%);
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--highlight-color);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--glow-color);
  margin-bottom: 1rem;
  animation: timelinePulse 3s ease-in-out infinite;
}

.timeline-item:nth-child(even) .timeline-dot {
  animation-delay: 1.5s;
}

@keyframes timelinePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

.timeline-year {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 0.9rem;
  color: var(--secondary-text);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 60vh;
    order: 2;
  }

  .hanging-lights-scene {
    padding-top: 1rem;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .light-fixture {
    transform: scale(0.8);
  }

  .light-cord {
    height: 60px;
  }

  .light-cord.short {
    height: 30px;
  }

  .hero-content {
    order: 1;
  }

  .hero-stats {
    justify-content: center;
  }

  .shopping-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vs-divider {
    order: 2;
    flex-direction: column;
    padding: 1rem 0;
  }

  .vs-line {
    width: 6px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
  }

  .offline-card {
    order: 1;
  }

  .online-card {
    order: 3;
  }

  .ux-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .showcase-text {
    order: 2;
  }

  .showcase-image {
    order: 1;
  }

  .research-image {
    max-width: 600px;
  }

  .user-journey-flow {
    margin: 8rem 0;
  }

  .flow-header {
    margin-bottom: 4rem;
  }

  .flow-image {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 4rem 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .hero-image {
    height: 50vh;
  }

  .hanging-lights-scene {
    padding-top: 0.5rem;
  }

  .light-fixture {
    transform: scale(0.7);
  }

  .light-cord {
    height: 40px;
  }

  .light-cord.short {
    height: 20px;
  }

  .chandelier {
    width: 60px;
    height: 60px;
  }

  .chandelier-arms {
    width: 60px;
    height: 60px;
  }

  .experience-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .comparison-card {
    padding: 2rem;
    min-height: auto;
  }

  .ux-solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .navigation-showcase {
    margin: 4rem 0;
  }

  .showcase-content {
    gap: 3rem;
    padding: 0 1rem;
  }

  .showcase-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 2rem;
  }

  .showcase-features {
    gap: 1.5rem;
  }

  .feature-point {
    gap: 1rem;
  }

  .laptop-mockup {
    max-width: 500px;
  }

  .laptop-screen {
    padding: 8px;
  }

  .user-research-flow {
    margin: 4rem 0;
  }

  .research-image {
    max-width: 500px;
    border-radius: 1.5rem;
  }

  .user-journey-flow {
    margin: 6rem 0;
  }

  .flow-header {
    margin-bottom: 3rem;
  }

  .flow-image {
    width: 100%;
    max-width: none;
  }

  .timeline-items {
    flex-direction: column;
    gap: 3rem;
  }

  .timeline-line {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--highlight-color), var(--highlight-secondary));
  }
}

@media (max-width: 480px) {
  .comparison-card {
    padding: 1.5rem;
  }

  .experience-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .feature-item {
    padding: 0.6rem;
  }

  .vs-text {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .vs-line {
    height: 40px;
  }

  .solution-card {
    padding: 1.2rem;
  }

  .solution-icon {
    width: 50px;
    height: 50px;
  }

  .solution-icon svg {
    width: 24px;
    height: 24px;
  }

  .showcase-badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
  }

  .showcase-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .feature-point p {
    font-size: 1rem;
  }

  .laptop-mockup {
    max-width: 400px;
  }

  .laptop-screen {
    padding: 6px;
  }

  .laptop-base {
    height: 30px;
  }

  .research-image {
    max-width: 400px;
    border-radius: 1rem;
  }

  .flow-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

/* Simple Design Showcase Section */
.design-showcase-section {
  padding: 8rem 0;
  background: var(--primary-bg);
  position: relative;
}

/* Full Width Laptop Showcase */
.laptop-showcase {
  margin: 4rem 0;
  position: relative;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
}

/* Laptop Base */
.laptop-base {
  position: relative;
  width: 100%;
  height: 40px;
  margin-bottom: -10px;
  z-index: 1;
}

.base-surface {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: 0 0 20px 20px;
  transform: rotateX(75deg) translateZ(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.base-front {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: linear-gradient(135deg, #333, #222);
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.base-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  filter: blur(10px);
}

/* Laptop Screen */
.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);

  padding: 15px;
  transform: rotateX(1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.screen-bezel {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 8px;
  padding: 2px;
  position: relative;
  overflow: hidden;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.scrolling-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 1s ease-out;
}

/* Content Steps */
.content-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.step-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--highlight-color);
  transform: translateY(-5px);
}

.step-item .step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid var(--highlight-color);
  border-radius: 50%;
  color: var(--highlight-color);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-item h3 {
  font-size: 1.5rem;
  font-weight: 500 !important;
  color: var(--primary-text);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.step-item p {
  color: var(--secondary-text);
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .design-showcase-section {
    padding: 4rem 0;
  }

  .laptop-mockup {
    max-width: 600px;
  }

  .content-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }

  .step-item {
    padding: 1.5rem;
  }

  .step-item h3 {
    font-size: 1.3rem;
  }

  .step-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .laptop-mockup {
    max-width: 400px;
  }

  .laptop-screen {
    padding: 10px;
  }

  .step-item {
    padding: 1rem;
  }

  .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-item h3 {
    font-size: 1.2rem;
  }
}

/* Use Case Section */
.use-case-section {
  padding: 6rem 0;
  background: var(--secondary-bg);
}

.use-case-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.use-case-entry.alt {
  grid-template-columns: 1fr 1fr;
}

.use-case-entry.alt .use-case-text {
  order: -1;
}

.use-case-text {
  max-width: 500px;
}

.use-case-text h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 500 !important;
  color: var(--highlight-color);
  margin-bottom: 1.5rem;
}

.use-case-text p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .use-case-entry,
  .use-case-entry.alt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .use-case-text h3 {
    font-size: 1.5rem;
  }

  .use-case-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .use-case-entry,
  .use-case-entry.alt {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .use-case-image {
    margin-bottom: 2rem;
  }

  .use-case-text h3 {
    font-size: 1.5rem;
  }

  .use-case-text p {
    font-size: 0.9rem;
  }
}
