/* Index Page Specific Styles */

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 0 40px;
  text-align: center;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 8px 16px;
  margin-bottom: 48px;
  font-size: 14px;
  font-weight: 500;
}

.new-label {
  background: white;
  color: #0a0a0a;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.main-heading {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 1000px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Demo Section */
.demo-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.demo-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-image {
  width: 100%;
  max-width: 900px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.8s ease-out;
}

.demo-section.visible .demo-image {
  transform: scale(1);
}

.demo-image img,
.demo-image video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(255, 255, 255, 0.05);
  background: #000;
  display: block;
}

/* Main content opacity change on scroll */
.main-content.scrolled {
  opacity: 0.3;
  transition: opacity 0.6s ease-out;
}

/* Features Section */
.features-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.features-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-container {
  max-width: 1400px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;
}

.features-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: left;
}

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  margin-bottom: 20px;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotateY(10deg);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-shortcut {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 32px;
  height: 32px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.key.arrow {
  font-size: 14px;
  padding: 6px 8px;
  min-width: 40px;
}

.key.bracket {
  font-size: 14px;
  padding: 6px 10px;
}

.feature-card:hover .key {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.plus {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.features-footer {
  margin-top: 40px;
}

.feature-highlight {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 1s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feature-highlight:hover::before {
  left: 100%;
}

.highlight-title {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section Mobile Responsive */
@media (max-width: 768px) {
  .features-container {
    padding: 60px 24px;
  }

  .features-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .features-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .feature-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .feature-shortcut {
    margin-bottom: 14px;
    gap: 6px;
  }

  .key {
    padding: 5px 10px;
    font-size: 11px;
    height: 28px;
    min-width: 28px;
  }

  .key.arrow, .key.bracket {
    font-size: 12px;
    padding: 5px 8px;
    min-width: 32px;
  }

  .feature-description {
    font-size: 13px;
  }

  .feature-highlight {
    padding: 32px 24px;
  }

  .highlight-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .highlight-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .features-container {
    padding: 40px 16px;
  }

  .features-heading {
    font-size: clamp(28px, 10vw, 40px);
  }

  .features-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .features-grid {
    gap: 20px;
    margin-bottom: 50px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .feature-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .feature-shortcut {
    margin-bottom: 12px;
    gap: 5px;
  }

  .key {
    padding: 4px 8px;
    font-size: 10px;
    height: 26px;
    min-width: 26px;
  }

  .key.arrow, .key.bracket {
    font-size: 11px;
    padding: 4px 6px;
    min-width: 28px;
  }

  .plus {
    font-size: 11px;
  }

  .feature-description {
    font-size: 12px;
  }

  .feature-highlight {
    padding: 28px 20px;
  }

  .highlight-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .highlight-description {
    font-size: 14px;
  }
}

/* Download Section */
.download-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.download-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.download-container {
  max-width: 1400px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;
}

.download-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.download-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
}

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

.download-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 255, 255, 0.1);
}

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

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin: 0 auto 24px;
  color: white;
  transition: all 0.3s ease;
}

.download-card:hover .platform-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.platform-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.platform-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.download-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 8px;
}

.version, .size {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-button {
  width: 100%;
  background: white;
  color: #0a0a0a;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-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;
}

.download-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

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

.download-button:active {
  transform: translateY(0);
}

.button-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.download-button:hover .button-icon {
  transform: translateY(2px);
}

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

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 20px;
}

.info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

.download-footer {
  text-align: center;
  margin-top: 20px;
}

.download-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.help-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.help-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.help-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.help-link:hover::after {
  width: 100%;
}

/* Download Section Mobile Responsive */
@media (max-width: 768px) {
  .download-container {
    padding: 60px 24px;
  }

  .download-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .download-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .download-content {
    gap: 50px;
  }

  .download-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .download-card {
    padding: 32px 24px;
  }

  .platform-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .platform-name {
    font-size: 20px;
  }

  .download-details {
    margin-bottom: 28px;
  }

  .download-button {
    padding: 14px 20px;
    font-size: 14px;
  }

  .info-card {
    padding: 28px 20px;
  }

  .info-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .download-container {
    padding: 40px 16px;
  }

  .download-heading {
    font-size: clamp(28px, 10vw, 40px);
  }

  .download-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .download-content {
    gap: 40px;
  }

  .download-cards {
    gap: 20px;
  }

  .download-card {
    padding: 28px 20px;
  }

  .platform-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .platform-name {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .platform-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .download-details {
    margin-bottom: 24px;
  }

  .version, .size {
    font-size: 11px;
    padding: 3px 8px;
  }

  .download-button {
    padding: 12px 16px;
    font-size: 13px;
    gap: 6px;
  }

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

  .info-card {
    padding: 24px 16px;
  }

  .info-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .info-list li {
    font-size: 13px;
  }

  .download-note {
    font-size: 13px;
  }
}

/* Pricing Section */
.pricing-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.pricing-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-container {
  max-width: 1400px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;
}

.pricing-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

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

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(255, 255, 255, 0.1);
}

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

.pricing-card.popular {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5),
              0 0 50px rgba(255, 255, 255, 0.15);
}

.savings-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.15));
  color: white;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px 24px 0 0;
  margin: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header {
  margin-bottom: 32px;
  padding-top: 20px;
}

.pack-name {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.pack-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: white;
}

.original-price {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.pack-details {
  margin-bottom: 40px;
}

.pack-credits {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.pack-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.buy-button {
  width: 100%;
  background: white;
  color: #0a0a0a;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.buy-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;
}

.buy-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

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

.buy-button:active {
  transform: translateY(0);
}

/* Pricing Section Mobile Responsive */
@media (max-width: 768px) {
  .pricing-container {
    padding: 60px 24px;
  }

  .pricing-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .pricing-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .pack-name {
    font-size: 24px;
  }

  .price {
    font-size: 40px;
  }

  .original-price {
    font-size: 18px;
  }

  .pack-credits {
    font-size: 20px;
  }

  .buy-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .pricing-container {
    padding: 40px 16px;
  }

  .pricing-heading {
    font-size: clamp(28px, 10vw, 40px);
  }

  .pricing-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .pricing-cards {
    gap: 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .savings-badge {
    padding: 10px;
    font-size: 13px;
  }

  .pricing-header {
    margin-bottom: 28px;
    padding-top: 16px;
  }

  .pack-name {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .price {
    font-size: 36px;
  }

  .original-price {
    font-size: 16px;
  }

  .pack-details {
    margin-bottom: 32px;
  }

  .pack-credits {
    font-size: 18px;
  }

  .pack-description {
    font-size: 15px;
  }

  .buy-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Referral Section */
.referral-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.referral-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.referral-container {
  max-width: 1400px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;
}

.referral-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.referral-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 80px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.referral-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.referral-rewards {
  max-width: 500px;
}

.rewards-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.rewards-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.reward-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reward-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.reward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.reward-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.reward-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-weight: 500;
}

.reward-percentage {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.reward-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.referral-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.referral-cta:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.referral-cta:hover::before {
  left: 100%;
}

.cta-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.referral-button {
  background: white;
  color: #0a0a0a;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.referral-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

/* Smooth Scrolling Enhancements */
html {
  scroll-behavior: smooth;
}

/* Enhanced footer link hover effects */
.footer-link {
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(6px);
}

/* Section scroll targets with better spacing */
.features-section,
.download-section,
.pricing-section,
.referral-section {
  scroll-margin-top: 80px;
}

/* Active section highlighting (for visual feedback) */
.section-highlight {
  position: relative;
}

.section-highlight::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  opacity: 0;
  animation: highlightFade 1s ease-out;
}

@keyframes highlightFade {
  0% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Index Page Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 0 24px;
  }

  .main-heading {
    font-size: clamp(32px, 10vw, 56px);
  }

  .subtitle {
    font-size: 16px;
  }

  .demo-container {
    padding: 0 24px;
  }

  .demo-image {
    max-width: 100%;
  }

  /* Referral Section Mobile */
  .referral-container {
    padding: 60px 24px;
  }

  .referral-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .referral-rewards {
    max-width: none;
  }

  .rewards-title {
    font-size: 28px;
  }

  .reward-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reward-card {
    padding: 24px 20px;
  }

  .referral-cta {
    padding: 36px 24px;
  }

  .referral-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 0 16px;
  }

  .new-badge {
    margin-bottom: 32px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .demo-container {
    padding: 0 16px;
  }

  /* Referral Section Extra Small Mobile */
  .referral-container {
    padding: 40px 16px;
  }

  .referral-heading {
    font-size: clamp(28px, 8vw, 40px);
  }

  .referral-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .referral-content {
    gap: 40px;
  }

  .rewards-title {
    font-size: 24px;
  }

  .rewards-description {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .reward-card {
    padding: 20px 16px;
  }

  .reward-percentage {
    font-size: 24px;
  }

  .referral-cta {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .referral-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ================================
   ENHANCED PRICING SECTION
   ================================ */

.pricing-card.competitor {
  background: rgba(255, 100, 100, 0.05);
  border-color: rgba(255, 100, 100, 0.2);
}

.pricing-card.competitor:hover {
  background: rgba(255, 100, 100, 0.08);
  border-color: rgba(255, 100, 100, 0.3);
}

.competitor-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.3), rgba(255, 100, 100, 0.2));
  color: rgba(255, 150, 150, 1);
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px 24px 0 0;
  margin: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.price-period {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.price.strikethrough {
  text-decoration: line-through;
  color: rgba(255, 100, 100, 0.7);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item.included {
  color: rgba(255, 255, 255, 0.9);
}

.feature-item.excluded {
  color: rgba(255, 150, 150, 0.8);
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #4ade80;
}

.cross-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #f87171;
}

.competitor-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 100, 100, 0.1);
  border-radius: 12px;
  margin-top: 24px;
}

.total-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.total-price {
  font-size: 24px;
  font-weight: 700;
  color: #f87171;
}

/* Savings Section */
.savings-section {
  margin-top: 80px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 24px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.savings-title {
  font-size: 28px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 16px;
}

.savings-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.savings-description strong {
  color: white;
}

/* ================================
   API COSTS SECTION
   ================================ */

.api-costs-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.api-costs-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.api-costs-container {
  max-width: 1400px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;
}

.api-costs-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.api-costs-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.api-costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.api-cost-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  text-align: left;
  transition: all 0.4s ease;
}

.api-cost-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.api-cost-card.recommended {
  border-color: rgba(74, 222, 128, 0.3);
  position: relative;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #4ade80;
  color: #0a0a0a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.api-provider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.provider-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

.provider-logo.openai {
  background: rgba(16, 163, 127, 0.2);
  color: #10a37f;
}

.provider-logo.anthropic {
  background: rgba(217, 119, 87, 0.2);
  color: #d97757;
}

.provider-logo.deepgram {
  background: rgba(251, 101, 30, 0.2);
  color: #fb651e;
}

.provider-logo.google {
  background: rgba(66, 133, 244, 0.2);
  color: #4285f4;
}

.provider-logo.openrouter {
  background: rgba(101, 99, 255, 0.2);
  color: #6563ff;
}

.provider-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.provider-use {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cost-breakdown {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-row:last-child {
  border-bottom: none;
}

.cost-row.highlight {
  background: rgba(74, 222, 128, 0.1);
  margin: 8px -12px -12px;
  padding: 12px;
  border-radius: 0 0 12px 12px;
}

.cost-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cost-value {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.cost-row.highlight .cost-value {
  color: #4ade80;
}

.cost-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin: 0;
}

.pricing-links {
  text-align: center;
}

.links-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.provider-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.provider-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.provider-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ================================
   WHY DIFFERENT SECTION
   ================================ */

.why-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.why-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-container {
  max-width: 1400px;
  width: 100%;
  padding: 80px 40px;
  text-align: center;
}

.why-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  text-align: left;
  transition: all 0.4s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.why-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.why-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ================================ */

@media (max-width: 768px) {
  /* Pricing Section Mobile */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .feature-item {
    font-size: 14px;
    padding: 10px 0;
  }

  .savings-section {
    margin-top: 60px;
    padding: 32px 24px;
  }

  .savings-title {
    font-size: 24px;
  }

  .savings-description {
    font-size: 16px;
  }

  /* API Costs Mobile */
  .api-costs-container {
    padding: 60px 24px;
  }

  .api-costs-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .api-costs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .api-cost-card {
    padding: 24px;
  }

  .provider-links {
    flex-direction: column;
    align-items: center;
  }

  /* Why Section Mobile */
  .why-container {
    padding: 60px 24px;
  }

  .why-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-card {
    padding: 24px;
  }

  .why-icon {
    font-size: 32px;
  }

  .why-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .savings-section {
    padding: 24px 20px;
  }

  .savings-title {
    font-size: 20px;
  }

  .savings-description {
    font-size: 15px;
  }

  .api-costs-container,
  .why-container {
    padding: 40px 16px;
  }

  .api-cost-card,
  .why-card {
    padding: 20px;
  }

  .provider-link {
    width: 100%;
    justify-content: center;
  }
}
