﻿/* Design System Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-size: 14px; /* Design system body font size */
  font-family: 'Arial', sans-serif; /* Design system font family */
  line-height: 1.6; /* Design system body line height */
  color: #333; /* Design system text primary */
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Navigation Header - Matching Design System */
.nav-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  max-width: 1200px;
  width: calc(100% - 40px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-name:hover {
  color: #4a90e2;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  font-size: 16px;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.1);
  transform: translateY(-1px);
}

/* Hero Section - Enhanced */
.hero-section {
  width: 100%;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-top: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 60px;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated Floating Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  animation: floatShapes 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatShapes {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Mesh Grid Overlay */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  opacity: 0.5;
}

/* Hero Background Image - Removed */
.hero-background-image {
  display: none;
}

.hero-background {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

/* Mobile Mockups in Hero Background - More Dynamic */
.mobile-mockup {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transform-origin: center;
  transition: all 0.3s ease;
  opacity: 0.8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animated floating effect for mobile mockups */
.mobile-mockup:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
}

.mobile-mockup:nth-child(even) {
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(var(--rotation)); }
  50% { transform: translateY(-20px) rotate(var(--rotation)); }
}

/* More dynamic positioning with CSS custom properties for rotation */
.mockup-1 {
  left: 5%;
  top: 10%;
  width: 90px;
  height: 180px;
  --rotation: -25deg;
  background-image: url("../images/v61_69.png");
  animation-delay: 0s;
}

.mockup-2 {
  left: 15%;
  top: 60%;
  width: 85px;
  height: 170px;
  --rotation: 20deg;
  background-image: url("../images/v61_72.png");
  animation-delay: 1s;
}

.mockup-3 {
  left: 25%;
  top: 15%;
  width: 90px;
  height: 180px;
  --rotation: -15deg;
  background-image: url("../images/v61_75.png");
  animation-delay: 2s;
}

.mockup-4 {
  left: 35%;
  top: 70%;
  width: 85px;
  height: 170px;
  --rotation: 30deg;
  background-image: url("../images/v61_78.png");
  animation-delay: 0.5s;
}

.mockup-5 {
  left: 45%;
  top: 5%;
  width: 90px;
  height: 180px;
  --rotation: -20deg;
  background-image: url("../images/v61_81.png");
  animation-delay: 1.5s;
}

.mockup-6 {
  left: 55%;
  top: 75%;
  width: 85px;
  height: 170px;
  --rotation: 25deg;
  background-image: url("../images/v61_90.png");
  animation-delay: 3s;
}

.mockup-7 {
  left: 65%;
  top: 20%;
  width: 90px;
  height: 180px;
  --rotation: -30deg;
  background-image: url("../images/v61_93.png");
  animation-delay: 2.5s;
}

.mockup-8 {
  left: 75%;
  top: 65%;
  width: 85px;
  height: 170px;
  --rotation: 15deg;
  background-image: url("../images/v61_96.png");
  animation-delay: 4s;
}

.mockup-9 {
  left: 85%;
  top: 25%;
  width: 90px;
  height: 180px;
  --rotation: -35deg;
  background-image: url("../images/v64_175.png");
  animation-delay: 1.2s;
}

.mockup-10 { display: none; }

.mockup-11 { display: none; }

.mockup-12 { display: none; }

/* Hero Content - Enhanced */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 40px;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-text {
  position: relative;
  text-align: left;
  animation: titleFadeIn 1.5s ease-out 0.6s both;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Dashboard Image Container */
.hero-dashboard {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  animation: dashboardSlideUp 1.5s ease-out 0.3s both;
}

@keyframes dashboardSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dashboard-wrapper {
  flex: 1;
  min-width: 0;
  position: relative;
}

.hero-dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-dashboard-image:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 80px rgba(102, 126, 234, 0.5);
}

/* Tablet Mockup on Right Side */
.hero-phone-mockup {
  flex-shrink: 0;
  z-index: 15;
  animation: tabletFloat 4s ease-in-out infinite, tabletSlideIn 1.8s ease-out 0.6s both;
}

@keyframes tabletSlideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tabletFloat {
  0%, 100% { 
    transform: translateY(0) rotate(1deg);
  }
  50% { 
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* Tablet Frame (iPad Style) */
.phone-frame {
  width: 420px;
  height: 560px;
  background: linear-gradient(145deg, #2d3748, #1a202c);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(102, 126, 234, 0.4);
  position: relative;
  transition: all 0.4s ease;
}

.phone-frame:hover {
  transform: scale(1.03);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.7),
    inset 0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(102, 126, 234, 0.6);
}

/* Tablet Camera */
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-notch::before {
  display: none;
}

.phone-notch::after {
  display: none;
}

/* Tablet Screen */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Tablet Home Button */
.phone-frame::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .phone-frame {
    width: 360px;
    height: 480px;
  }
  
  .hero-dashboard {
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .hero-dashboard {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
    padding: 0 20px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero-text {
    padding: 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-date {
    font-size: 16px;
    padding: 16px 36px;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 90px;
  font-weight: 800;
  color: white;
  text-shadow: 
    0 0 40px rgba(255, 255, 255, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0 0 30px 0;
  line-height: 1;
  letter-spacing: -2px;
  animation: titleFloat 8s ease-in-out infinite;
}

@keyframes titleFloat {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-5px);
  }
}

.hero-date {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
  
  /* Glass Bubble Effect */
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  padding: 20px 50px;
  border-radius: 60px;
  
  /* Glass Border */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 20px rgba(118, 75, 162, 0.3);
  
  /* Subtle Animation */
  animation: bubbleFloat 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hero-date:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.35), rgba(118, 75, 162, 0.35));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 12px 40px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 30px rgba(118, 75, 162, 0.5);
  transform: translateY(-2px);
}

@keyframes bubbleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes dateSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes datePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.3);
  }
}

.hero-phone {
  width: 220px;
  height: 440px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  animation: phoneFloat 4s ease-in-out infinite;
  position: relative;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

.hero-phone:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.hero-phone::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
  border-radius: 32px;
  z-index: -1;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Description */
.hero-description {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  text-align: center;
}

.hero-description p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  animation: fadeInUp 1s ease-out 1s both;
  position: relative;
}

.hero-description p::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #4a90e2;
  animation: blinkCursor 1s infinite 2s;
}

@keyframes blinkCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Try Design Button */
.try-design-container {
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 40px;
}

.try-design-button {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  animation: scaleIn 0.8s ease-out 1.5s both;
  position: relative;
  overflow: hidden;
}

.try-design-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.try-design-button:hover::before {
  left: 100%;
}

.try-design-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(118, 75, 162, 0.5);
  background: linear-gradient(135deg, #764ba2, #667eea);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Showcase Section */
.mobile-showcase {
  background: rgba(89, 153, 205, 0.1);
  padding: 80px 40px;
  margin: 40px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.showcase-phone {
  width: 200px;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.showcase-phone:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Content Sections */
.content-section {
  padding: 80px 60px;
  border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  position: relative;
  animation: sectionTitleFadeIn 0.8s ease-out, sectionTitleGlow 6s ease-in-out 2s infinite;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  animation: underlineGrow 1s ease-out 0.5s both;
}

@keyframes sectionTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionTitleGlow {
  0%, 100% { 
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
  }
  50% { 
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

.subsection-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 30px 0 15px 0;
  animation: subsectionFadeIn 0.6s ease-out;
  position: relative;
}

.subsection-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  animation: subsectionUnderline 0.8s ease-out 0.3s both;
}

@keyframes subsectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subsectionUnderline {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  animation: textSlideIn 0.8s ease-out;
  opacity: 0;
  animation-fill-mode: both;
}

.section-text:nth-child(2) { animation-delay: 0.2s; }
.section-text:nth-child(3) { animation-delay: 0.4s; }
.section-text:nth-child(4) { animation-delay: 0.6s; }
.section-text:nth-child(5) { animation-delay: 0.8s; }

.section-text:last-child {
  margin-bottom: 0;
}

@keyframes textSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Survey Content */
.survey-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin: 40px 0;
}

.survey-image {
  background: rgba(89, 153, 205, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.survey-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Testing Section */
.testing-section {
  background: rgba(89, 153, 205, 0.05);
  padding: 80px 60px;
  border-radius: 20px;
  margin: 40px 0;
}

/* UI Section */
.ui-section {
  background: rgba(89, 153, 205, 0.05);
  padding: 80px 60px;
  border-radius: 20px;
  margin: 40px 0;
}

.ui-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}

.ui-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
  background: rgba(119, 172, 214, 0.2);
  padding: 40px;
  border-radius: 15px;
}

.ui-phone {
  width: 100%;
  max-width: 200px;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.ui-phone:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ui-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Learning Section */
.learning-section {
  background: rgba(89, 153, 205, 0.1);
  padding: 80px 60px;
  border-radius: 20px;
  margin: 40px 0;
}

/* Footer */
.footer {
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 40px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-info {
  background: rgba(255,255,255,0.68);
  color: #333;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.contact-info a {
  color: #667eea;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4a90e2;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1024px) {
  .nav-header {
    width: calc(100% - 30px);
    padding: 12px 25px;
  }
  
  .nav-name {
    font-size: 17px;
  }
  
  .nav-links {
    gap: 25px;
  }
  
  .nav-item {
    font-size: 15px;
    padding: 7px 14px;
  }

  .hero-section {
    height: 550px;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-date {
    font-size: 22px;
  }

  .hero-phone {
    width: 200px;
    height: 400px;
  }

  .main-content {
    padding: 0 30px;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .survey-findings-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .affinity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-header {
    top: 10px;
    padding: 15px 20px;
    width: calc(100% - 20px);
    flex-direction: column;
    gap: 15px;
    border-radius: 12px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-name {
    font-size: 16px;
    text-align: center;
    margin-bottom: 5px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-item {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
  }

  .hero-section {
    height: 500px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
    justify-content: center;
  }

  .hero-phone {
    width: 150px;
    height: 300px;
  }

  .mobile-mockup {
    display: none;
  }

  .hero-description {
    padding: 0 20px;
  }

  .hero-description p {
    font-size: 16px;
  }

  .mobile-showcase {
    padding: 40px 20px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .showcase-phone {
    width: 150px;
    height: 300px;
  }

  .main-content {
    padding: 0 20px;
  }

  .content-section {
    padding: 50px 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
  }

  .survey-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ui-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ui-showcase {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .ui-phone {
    height: 280px;
  }

  .testing-section, .ui-section, .learning-section {
    padding: 50px 30px;
    margin: 20px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer h3 {
    font-size: 28px;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-header {
    top: 5px;
    padding: 12px 15px;
    width: calc(100% - 10px);
    gap: 12px;
  }
  
  .nav-name {
    font-size: 15px;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .nav-item {
    font-size: 13px;
    padding: 6px 12px;
  }

  .hero-phone {
    width: 150px;
    height: 300px;
  }
}

@media (max-width: 360px) {
  .nav-header {
    padding: 10px 12px;
    gap: 10px;
  }
  
  .nav-name {
    font-size: 14px;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-item {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-phone {
    width: 130px;
    height: 260px;
  }
}

@media (min-width: 1200px) {
  .main-content {
    max-width: 1400px;
  }

  .hero-content {
    max-width: 1400px;
  }

  .showcase-grid {
    max-width: 1400px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Survey Overview Grid */
.survey-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 40px;
}

.survey-stat-card {
  background: rgba(74, 144, 226, 0.06);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.survey-stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.survey-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.survey-stat-sub {
  font-size: 13px;
  color: #777;
}

/* Survey Findings Grid */
.survey-findings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 24px 0 40px;
}

.finding-card {
  background: rgba(74, 144, 226, 0.05);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.finding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.15);
}

.finding-percent {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.finding-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Interview Insights */
.interview-insights {
  background: rgba(74, 144, 226, 0.05);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: 16px;
  padding: 28px;
  margin: 24px 0 40px;
}

.insights-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insights-list li {
  font-size: 15px;
  color: #444;
  padding: 10px 16px;
  background: white;
  border-radius: 8px;
  border-left: 4px solid #4a90e2;
}

/* Takeaways Grid */
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.takeaway-card {
  background: rgba(74, 144, 226, 0.07);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  border-left: 4px solid #4a90e2;
  transition: all 0.3s ease;
}

.takeaway-card:hover {
  background: rgba(74, 144, 226, 0.12);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .survey-overview-grid { grid-template-columns: 1fr; }
  .survey-findings-grid { grid-template-columns: repeat(2, 1fr); }
  .takeaways-grid { grid-template-columns: 1fr; }
}

/* Detailed Personas */
.detailed-personas {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.detailed-persona-card {
  background: rgba(74, 144, 226, 0.04);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
}

.detailed-persona-card:hover {
  box-shadow: 0 12px 35px rgba(74, 144, 226, 0.12);
  transform: translateY(-3px);
}

.dp-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.15);
}

.dp-avatar {
  font-size: 40px;
}

.dp-name {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.dp-meta {
  font-size: 14px;
  color: #777;
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.dp-block {
  padding: 16px;
  border-radius: 12px;
}

.dp-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.dp-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dp-block ul li {
  font-size: 13px;
  color: #555;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dp-block ul li:last-child {
  border-bottom: none;
}

.dp-block.goals { background: rgba(40, 167, 69, 0.07); }
.dp-block.frustrations { background: rgba(255, 99, 99, 0.07); }
.dp-block.behaviors { background: rgba(255, 193, 7, 0.07); }
.dp-block.needs { background: rgba(74, 144, 226, 0.07); }

.dp-quote {
  font-size: 16px;
  font-style: italic;
  color: #4a90e2;
  padding: 16px 20px;
  background: rgba(74, 144, 226, 0.06);
  border-left: 4px solid #4a90e2;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
  .dp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detailed-persona-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .dp-grid {
    grid-template-columns: 1fr;
  }
}

/* Personas Grid */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.persona-card {
  background: rgba(74, 144, 226, 0.06);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
  background: rgba(74, 144, 226, 0.1);
}

.persona-avatar {
  font-size: 48px;
  margin-bottom: 16px;
}

.persona-name {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.persona-role {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

@media (max-width: 768px) {
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Affinity Mapping Grid */
.affinity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.affinity-card {
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.affinity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.affinity-card.pain {
  background: rgba(255, 99, 99, 0.07);
  border: 1px solid rgba(255, 99, 99, 0.25);
}

.affinity-card.behavioral {
  background: rgba(255, 193, 7, 0.07);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.affinity-card.desire {
  background: rgba(40, 167, 69, 0.07);
  border: 1px solid rgba(40, 167, 69, 0.25);
}

.affinity-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.affinity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.affinity-list li {
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  color: #444;
}

.pain .affinity-list li {
  background: rgba(255, 99, 99, 0.12);
  color: #c0392b;
}

.behavioral .affinity-list li {
  background: rgba(255, 193, 7, 0.15);
  color: #856404;
}

.desire .affinity-list li {
  background: rgba(40, 167, 69, 0.12);
  color: #1a6b30;
}

@media (max-width: 768px) {
  .affinity-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Hover Effects */
.showcase-phone:hover,
.ui-phone:hover {
  transform: translateY(-10px) scale(1.02);
}

.mobile-mockup:hover {
  opacity: 1;
  transform: scale(1.1) !important;
}

/* ═══════════════════════════════════════════════════════════════
   WORKFLOW SECTION - MODERN STEP CARDS WITH CONNECTORS
   ═══════════════════════════════════════════════════════════════ */

/* Workflow Cards Container */
.workflow-cards-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 30px;
}

.workflow-cards-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Individual Workflow Card - Horizontal Layout */
.workflow-card {
  position: relative;
  background: white;
  padding: 32px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  border-left: 6px solid #4a90e2;
  overflow: hidden;
}

/* Alternating Layout - Left/Right */
.workflow-card:nth-child(even) {
  flex-direction: row-reverse;
  border-left: none;
  border-right: 6px solid #4a90e2;
}

/* Different Border Colors */
.workflow-card:nth-child(1) { border-left-color: #667eea; }
.workflow-card:nth-child(2) { border-right-color: #4facfe; }
.workflow-card:nth-child(3) { border-left-color: #43e97b; }
.workflow-card:nth-child(4) { border-right-color: #fa709a; }
.workflow-card:nth-child(5) { border-left-color: #30cfd0; }
.workflow-card:nth-child(6) { border-right-color: #a8edea; }
.workflow-card:nth-child(7) { border-left-color: #f093fb; }

/* Hover Effect */
.workflow-card:hover {
  transform: translateX(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.workflow-card:nth-child(even):hover {
  transform: translateX(-12px);
}

/* Card Number Badge - Left Side */
.workflow-card-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  position: relative;
  z-index: 2;
}

/* Different Gradient Colors for Numbers */
.workflow-card:nth-child(1) .workflow-card-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.workflow-card:nth-child(2) .workflow-card-number {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.workflow-card:nth-child(3) .workflow-card-number {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.workflow-card:nth-child(4) .workflow-card-number {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.workflow-card:nth-child(5) .workflow-card-number {
  background: linear-gradient(135deg, #30cfd0, #330867);
}

.workflow-card:nth-child(6) .workflow-card-number {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.workflow-card:nth-child(7) .workflow-card-number {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Connector Line Between Cards */
.workflow-card::before {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -24px;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #4a90e2, transparent);
  z-index: 1;
}

.workflow-card:nth-child(even)::before {
  left: auto;
  right: 35px;
}

.workflow-card:last-child::before {
  display: none;
}

/* Card Content */
.workflow-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* Card Header */
.workflow-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Card Icon */
.workflow-card-icon {
  font-size: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  flex-shrink: 0;
}

/* Card Title */
.workflow-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

/* Card Features List */
.workflow-card-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-card-features li {
  font-size: 14px;
  color: #475569;
  padding: 10px 16px;
  background: #f8fafc;
  border-radius: 8px;
  line-height: 1.6;
  border-left: 3px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 40px;
}

.workflow-card-features li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a90e2;
  font-weight: bold;
  font-size: 16px;
}

.workflow-card-features li:hover {
  background: #f1f5f9;
  border-left-color: #4a90e2;
  padding-left: 44px;
}

/* Future Card Special Styling */
.workflow-card.future {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left-color: #f59e0b;
}

.workflow-card.future .workflow-card-features li {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .workflow-cards-container {
    padding: 40px 30px;
  }
  
  .workflow-card {
    padding: 28px 32px;
    gap: 24px;
  }
  
  .workflow-card-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .workflow-cards-container {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  .workflow-card {
    flex-direction: column !important;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-left: 6px solid #4a90e2 !important;
    border-right: none !important;
  }
  
  .workflow-card::before {
    left: 30px !important;
    right: auto !important;
  }
  
  .workflow-card:hover {
    transform: translateY(-8px) !important;
  }
  
  .workflow-card-number {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
  
  .workflow-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .workflow-card-icon {
    font-size: 40px;
  }
  
  .workflow-card-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .workflow-cards-container {
    padding: 30px 15px;
    margin: 60px auto;
  }
  
  .workflow-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .workflow-card-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .workflow-card-icon {
    font-size: 36px;
  }
  
  .workflow-card-title {
    font-size: 18px;
  }
  
  .workflow-card-features li {
    font-size: 13px;
    padding: 8px 12px 8px 36px;
  }
  
  .workflow-card-features li::before {
    left: 12px;
    font-size: 14px;
  }
}

/* Footer Copyright */
.footer-copyright {
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright-content p {
  margin: 0;
  font-size: 14px;
}

/* ── OVERFLOW FIX ── */
html, body { max-width: 100%; overflow-x: hidden; }

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Custom Cursor Effect */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23667eea" opacity="0.5"/></svg>'), auto;
}

a, button {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23764ba2" opacity="0.7"/></svg>'), pointer;
}

/* Parallax Background Orbs */
.parallax-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Content Wrapper with Relative Position */
.main-content,
.hero-section,
.content-section {
  position: relative;
  z-index: 1;
}

/* Glassmorphism Cards */
.content-section {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
  padding: 80px 60px;
  transition: all 0.4s ease;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
  .content-section {
    padding: 40px 24px;
    margin: 20px 0;
    border-radius: 16px;
  }
  .testing-section,
  .ui-section,
  .learning-section {
    padding: 40px 24px !important;
    margin: 20px 0 !important;
  }
  .main-content {
    padding: 0 16px !important;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 28px 16px;
  }
}

/* Animated Section Numbers - REMOVED */
/* .section-title::before removed as per user request */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Floating Action Button */
.fab-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.fab:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 32px rgba(118, 75, 162, 0.5);
}

/* Tooltip */
.fab::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fab:hover::before {
  opacity: 1;
}

/* Micro-interactions for Text */
.section-text {
  transition: all 0.3s ease;
}

.section-text:hover {
  transform: translateX(5px);
  color: #667eea;
}

/* Animated Underline Links */
a:not(.nav-item):not(.try-design-button):not(.fab) {
  position: relative;
  text-decoration: none;
  background: linear-gradient(to right, #667eea, #764ba2);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

a:not(.nav-item):not(.try-design-button):not(.fab):hover {
  background-size: 100% 2px;
}

/* Stagger Animation for Lists */
.workflow-card {
  animation: slideInStagger 0.6s ease-out backwards;
}

.workflow-card:nth-child(1) { animation-delay: 0.1s; }
.workflow-card:nth-child(2) { animation-delay: 0.2s; }
.workflow-card:nth-child(3) { animation-delay: 0.3s; }
.workflow-card:nth-child(4) { animation-delay: 0.4s; }
.workflow-card:nth-child(5) { animation-delay: 0.5s; }
.workflow-card:nth-child(6) { animation-delay: 0.6s; }
.workflow-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInStagger {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Exploration Image Styling */
.exploration-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.exploration-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  animation: imageSlideUp 1s ease-out;
}

.exploration-image:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

@keyframes imageSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Screenshots Slideshow */
.screenshots-slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 30px auto;
  padding: 0 20px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #1a1d29;
}

/* Sliding Images Container */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .screenshots-slideshow {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .screenshots-slideshow {
    margin: 20px auto;
    padding: 0 10px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .screenshots-slideshow {
    aspect-ratio: 16 / 10;
  }
}

/* UI Section Slideshow (Smaller Version) */
.ui-content-with-slideshow {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}

.ui-text-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ui-screenshots-slideshow {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #1a1d29;
}

.ui-slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ui-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.ui-slide.active {
  opacity: 1;
  z-index: 2;
}

.ui-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 1024px) {
  .ui-content-with-slideshow {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .ui-content-with-slideshow {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ui-screenshots-slideshow {
    max-width: 100%;
  }
}