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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Enhanced Glass Morphism Navigation */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 215, 10, 0.1);
  padding: 1.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive breakpoint for dropdown navigation */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex !important;
    background: rgba(255, 215, 10, 0.1);
    border: 1px solid rgba(255, 215, 10, 0.3);
    color: #FFD60A;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
  }
  
  .nav-toggle:hover {
    background: rgba(255, 215, 10, 0.2);
    border-color: rgba(255, 215, 10, 0.5);
    transform: scale(1.05);
  }
  
  .nav-toggle.nav-open {
    background: rgba(255, 215, 10, 0.2);
    border-color: rgba(255, 215, 10, 0.6);
  }
  
  .nav-links.nav-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 215, 10, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }
}

.glass-nav:hover {
  background: rgba(10, 10, 10, 0.25);
  border-bottom-color: rgba(255, 215, 10, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.logo-nav {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFD60A;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.5);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 10, 0.1), transparent);
  transition: left 0.5s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover {
  color: #FFD60A;
  background: rgba(255, 215, 10, 0.1);
  transform: translateY(-2px);
}

.nav-links a.active {
  color: #FFD60A;
  background: rgba(255, 215, 10, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 10, 0.2);
}

/* Hero Section with Dynamic Background */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 2rem 2rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 215, 10, 0.1), rgba(255, 159, 10, 0.1));
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 40%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(0px) rotate(180deg); }
  75% { transform: translateY(20px) rotate(270deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  z-index: 1;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-gradient {
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #FFD60A 0%, #FF9F0A 50%, #FFD60A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 214, 10, 0.3);
  margin-bottom: 1rem;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(255, 214, 10, 0.3)); }
  to { filter: drop-shadow(0 0 30px rgba(255, 214, 10, 0.5)); }
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD60A;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-showcase {
  perspective: 1000px;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 40px;
  padding: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 215, 10, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup:hover {
  transform: rotateY(-10deg) rotateX(2deg) scale(1.05);
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0px); }
  50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-10px); }
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 25px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.app-header {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD60A;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 215, 10, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 10, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #FFD60A;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* Content Sections with Glass Morphism */
.content-section {
  padding: 6rem 2rem;
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
}

.glass-card {
  background: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 4rem;
  margin-bottom: 4rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 10, 0.05), transparent);
  transition: left 0.8s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 10, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Section Headers */
.content-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #FFD60A 0%, #FF9F0A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 214, 10, 0.2);
  letter-spacing: 2px;
}

/* About Section */
.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-content p {
  font-size: 1.3rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.visual-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 215, 10, 0.1), rgba(255, 159, 10, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 10, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 10, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.image-placeholder:hover::before {
  transform: translateX(100%);
}

.image-placeholder:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 10, 0.4);
  box-shadow: 0 20px 40px rgba(255, 215, 10, 0.2);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 10, 0.3));
}

.placeholder-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFD60A;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 215, 10, 0.05);
  border: 1px solid rgba(255, 215, 10, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 10, 0.1), rgba(255, 159, 10, 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 10, 0.3);
  box-shadow: 0 20px 40px rgba(255, 215, 10, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 10, 0.3));
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD60A;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.2);
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* How It Works Workflow */
.workflow-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 215, 10, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 10, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-step:hover {
  background: rgba(255, 215, 10, 0.08);
  border-color: rgba(255, 215, 10, 0.2);
  transform: translateX(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD60A, #FF9F0A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 215, 10, 0.3);
}

.step-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFD60A;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.2);
}

.step-content p {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
}

.step-visual .image-placeholder {
  width: 200px;
  height: 200px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 215, 10, 0.05);
  border: 1px solid rgba(255, 215, 10, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 10, 0.3);
  box-shadow: 0 20px 40px rgba(255, 215, 10, 0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD60A, #FF9F0A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 215, 10, 0.3);
}

.testimonial-card blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  font-size: 1.1rem;
  color: #FFD60A;
  font-weight: 600;
}

/* Pre-order Section */
.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.preorder-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 800px;
}

.preorder-option {
  background: rgba(20, 20, 20, 0.6);
  border: 2px solid rgba(255, 215, 10, 0.2);
  border-radius: 20px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preorder-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 10, 0.1), rgba(255, 159, 10, 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.preorder-option:hover::before {
  opacity: 1;
}

.preorder-option:hover {
  border-color: #FFD60A;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 10, 0.2);
}

.preorder-option.selected {
  border-color: #FFD60A;
  background: linear-gradient(135deg, rgba(255, 215, 10, 0.15), rgba(255, 159, 10, 0.15));
  box-shadow: 0 20px 40px rgba(255, 215, 10, 0.25);
}

.option-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD60A;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.2);
}

.option-price {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD60A;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.option-savings {
  font-size: 0.9rem;
  color: #00ff88;
  font-weight: 600;
  background: rgba(0, 255, 136, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

#priceDisplay {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD60A;
  margin: 2rem 0;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
  display: block;
  width: 100%;
}

/* Primary Button */
.primary-button {
  background: linear-gradient(135deg, #FF9F0A, #FFD60A);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  color: #000;
  font-weight: 700;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 215, 10, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

.primary-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.5s;
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 10, 0.4);
}

.primary-button:active {
  transform: translateY(-1px);
}

.primary-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: linear-gradient(135deg, #666, #888);
  transform: none;
  box-shadow: none;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: rgba(255, 215, 10, 0.03);
  border: 1px solid rgba(255, 215, 10, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(255, 215, 10, 0.2);
  background: rgba(255, 215, 10, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFD60A;
  padding: 1.5rem 2rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFD60A;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  color: #cccccc;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 215, 10, 0.05);
  border: 1px solid rgba(255, 215, 10, 0.1);
  border-radius: 20px;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: rgba(255, 215, 10, 0.2);
  background: rgba(255, 215, 10, 0.08);
}

.contact-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 10, 0.3));
}

.contact-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD60A;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: #cccccc;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1.2rem;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 215, 10, 0.2);
  border-radius: 15px;
  background: rgba(20, 20, 20, 0.6);
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FFD60A;
  box-shadow: 0 0 20px rgba(255, 215, 10, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

/* Footer */
.glass-footer {
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 215, 10, 0.1);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFD60A;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

.footer-brand p {
  color: #cccccc;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #FFD60A;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 215, 10, 0.5);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  background: rgba(20, 20, 20, 0.8);
  margin: 5% auto;
  padding: 3rem;
  border-radius: 25px;
  width: 90%;
  max-width: 700px;
  color: #ffffff;
  line-height: 1.7;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content h2 {
  color: #FFD60A;
  margin-bottom: 2rem;
  text-align: center;
}

.close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #FFD60A;
  cursor: pointer;
  transition: all 0.3s;
}

.close:hover {
  transform: scale(1.2);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .workflow-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 1.5rem;
    display: none;
  }
  
  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-section {
    padding: 100px 1rem 2rem;
  }
  
  .logo-gradient {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .content-section {
    padding: 4rem 1rem;
  }
  
  .glass-card {
    padding: 2.5rem 1.5rem;
  }
  
  .content-section h2 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .preorder-buttons {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* Medium screen breakpoint for better navigation handling */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links {
    gap: 2rem;
    display: none;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling enhancements */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(20, 20, 20, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FFD60A, #FF9F0A);
  border-radius: 6px;
  border: 2px solid rgba(20, 20, 20, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF9F0A, #FFD60A);
}
