@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #000000;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  animation: fadeIn 0.5s ease;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}
.navbar .nav-brand {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar .nav-brand:hover {
  opacity: 0.85;
}
.navbar .nav-logo {
  height: 28px;
  width: auto;
}
.navbar .nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar .nav-links a {
  color: #EBEBF5;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
  color: #FFFFFF;
}
.navbar .nav-links a.nav-cta {
  color: #000000;
  font-weight: 500;
  background: #FFFFFF;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.navbar .nav-links a.nav-cta:hover {
  background: #F0F0F0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 160px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000000;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1400px;
}
.hero .hero-content {
  animation: fadeInUp 0.8s ease;
  max-width: 900px;
  margin: 0 auto;
}
.hero .hero-badges {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.hero .profile-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
}
.hero .profile-avatars {
  display: flex;
  margin-right: 8px;
}
.hero .profile-avatars .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -8px;
}
.hero .profile-avatars .avatar:first-child {
  margin-left: 0;
}
.hero .badge-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hero .stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}
.hero .badge-text {
  color: #EBEBF5;
  font-size: 12px;
  margin: 0;
  white-space: nowrap;
}
.hero .hero-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
  color: #FFFFFF;
  letter-spacing: -2px;
}
.hero .hero-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  justify-content: center;
}
.hero .hero-image {
  animation: fadeInUp 0.8s ease 0.2s both;
  width: 100%;
  max-width: 1200px;
  position: relative;
}
.hero .hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .app-preview {
  background: #1C1C1E;
  border: 1px solid #2C2C2E;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
.hero .app-preview .preview-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 56px;
}
.btn-white {
  background: #FFFFFF;
  color: #000000;
}
.btn-white:hover {
  background: #F0F0F0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.btn-dark {
  background: #0A0A0A;
  color: #FFFFFF;
  border: 1px solid #1C1C1E;
}
.btn-dark:hover {
  background: #1C1C1E;
  transform: translateY(-2px);
}
.btn-primary {
  background: #FFFFFF;
  color: #000000;
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: #F0F0F0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}
.btn-secondary {
  background: #0A0A0A;
  color: #FFFFFF;
  border: 1px solid #1C1C1E;
}
.btn-secondary:hover {
  background: #1C1C1E;
  transform: translateY(-2px);
}
.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}
.btn .btn-icon {
  flex-shrink: 0;
}
.beta-tag {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
  margin-left: 8px;
}
.btn-dark .beta-tag,
.btn-secondary .beta-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.features {
  padding: 120px 0;
  background: #000000;
  position: relative;
}
.features .section-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease;
}
.features .section-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.features .section-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
}
/* Features Slider Styles */
.features-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.features-slider .slider-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.features-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.features-slider .feature-card {
  flex: 0 0 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.features-slider .feature-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.features-slider .feature-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.features-slider .feature-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.features-slider .feature-media-container {
  overflow: hidden;
  border-radius: 16px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.features-slider .feature-media-container img {
  max-width: 100%;
  max-height: 450px;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
}

/* Slider Navigation Buttons */
.features-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.features-slider:hover .slider-btn {
  opacity: 1;
}

.features-slider .slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.features-slider .slider-btn.prev-btn {
  left: 20px;
}

.features-slider .slider-btn.next-btn {
  right: 20px;
}

.features-slider .slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Slider Dots */
.features-slider .slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.features-slider .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.features-slider .slider-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.features-slider .slider-dot.active {
  background: #FFFFFF;
  transform: scale(1.2);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.features .feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}
.features .feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}
.features .feature-card:hover .feature-icon {
  animation: none;
}
.features .feature-card:hover .feature-media-container {
  opacity: 1;
  max-height: 600px;
}
.features .feature-icon {
  display: none;
}
.features .feature-icon svg {
  color: #FFFFFF;
  width: 24px;
  height: 24px;
}
.features .feature-media-container .media-placeholder {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 100px 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  width: 100%;
}
.features .feature-media-container video, .features .feature-media-container .gif-container {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
}

.faq-section {
  padding: 120px 0;
  background: #000000;
  position: relative;
}
.faq-section .container {
  max-width: 900px;
}
.faq-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}
.faq-question:hover {
  color: rgba(255, 255, 255, 0.8);
}
.faq-icon {
  font-size: 24px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 32px;
}
.faq-answer p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}
.faq-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
}
.faq-footer p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
}
.faq-contact-link {
  color: #007AFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.faq-contact-link:hover {
  color: #0051D5;
}

.download-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  background: #000000;
}
.download-section .download-content {
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 1;
}
.download-section .download-title {
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}
.download-section .download-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.download-section .all-platforms {
  margin-top: 40px;
  color: #98989D;
}
.download-section .all-platforms p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
.download-section .platform-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.download-section .platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0A0A0A;
  border: 1px solid #1C1C1E;
  border-radius: 8px;
  color: #EBEBF5;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.download-section .platform-link svg {
  width: 20px;
  height: 20px;
}
.download-section .platform-link:hover {
  background: #1C1C1E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: #000000;
}
.pricing-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-section .section-title {
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.pricing-section .section-description {
  font-size: 20px;
  font-weight: 300;
  color: rgba(235, 235, 245, 0.8);
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: 16px;
  font-weight: 300;
  color: rgba(235, 235, 245, 0.6);
  transition: color 0.3s ease;
}
.toggle-label.active {
  color: #FFFFFF;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-radius: 28px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}
input:checked + .toggle-slider {
  background-color: #34C759;
}
input:checked + .toggle-slider:before {
  transform: translateX(24px);
}
.save-badge {
  background: rgba(52, 199, 89, 0.2);
  color: #34C759;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn {
  margin-top: auto;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.pricing-card.premium {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  color: #000000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-name {
  font-size: 28px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.pricing-description {
  font-size: 16px;
  font-weight: 300;
  color: rgba(235, 235, 245, 0.6);
}
.pricing-price {
  text-align: center;
  margin-bottom: 32px;
}
.price-amount {
  font-size: 56px;
  font-weight: 400;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.price-period {
  font-size: 18px;
  font-weight: 300;
  color: rgba(235, 235, 245, 0.6);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(235, 235, 245, 0.9);
  margin-bottom: 16px;
}
.pricing-features li svg {
  flex-shrink: 0;
  color: #34C759;
}
.pricing-features li.disabled {
  color: rgba(235, 235, 245, 0.4);
}
.pricing-features li.disabled svg {
  color: #FF3B30;
}
.feature-note {
  font-size: 12px;
  color: rgba(235, 235, 245, 0.5);
  font-weight: 300;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

.footer {
  background: #000000;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer .footer-brand h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.footer .footer-brand p {
  color: #EBEBF5;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
.footer .footer-links {
  display: flex;
  gap: 60px;
}
.footer .footer-column h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.footer .footer-column a {
  display: block;
  color: #EBEBF5;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.footer .footer-column a:hover {
  color: #FFFFFF;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  position: relative;
  color: #98989D;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
.footer .footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%);
}

@media (max-width: 1024px) {
  .hero .hero-title {
    font-size: 56px;
  }
  .features .features-grid {
    grid-template-columns: 1fr;
  }
  .features .feature-card {
    padding: 32px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-slider .slider-btn {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .navbar .nav-links {
    gap: 20px;
  }
  .navbar .nav-links a {
    font-size: 14px;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero .hero-title {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .hero .hero-description {
    font-size: 18px;
  }
  .hero .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero .profile-badges {
    padding: 6px 16px 6px 6px;
  }
  .hero .profile-avatars .avatar {
    width: 32px;
    height: 32px;
  }
  .hero .badge-text {
    font-size: 11px;
  }
  .features {
    padding: 60px 0;
  }
  .features .section-header {
    margin-bottom: 40px;
  }
  .features .section-title {
    font-size: 36px;
  }
  .features .section-description {
    font-size: 18px;
  }
  .features .features-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  /* Features Slider Mobile Styles */
  .features-slider {
    max-width: 100%;
  }

  .features-slider .slider-btn {
    opacity: 1;
    width: 40px;
    height: 40px;
  }

  .features-slider .slider-btn.prev-btn {
    left: 10px;
  }

  .features-slider .slider-btn.next-btn {
    right: 10px;
  }

  .features-slider .feature-card {
    padding: 24px;
    min-height: 500px;
  }

  .features-slider .feature-title {
    font-size: 18px;
  }

  .features-slider .feature-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .features-slider .feature-media-container img {
    max-height: 350px;
  }

  .features-slider .slider-dot {
    width: 8px;
    height: 8px;
  }
  .download-section {
    padding: 60px 0;
  }
  .download-section .download-title {
    font-size: 36px;
  }
  .download-section .download-description {
    font-size: 18px;
  }
  .download-section .platform-links {
    flex-direction: column;
    align-items: center;
  }
  .download-section .platform-links .platform-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-section .section-title {
    font-size: 36px;
  }
  .footer .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .navbar .container {
    padding: 16px;
  }
  .navbar .nav-brand {
    font-size: 18px;
  }
  .navbar .nav-logo {
    height: 24px;
  }
  .hero .hero-title {
    font-size: 36px;
  }
  .hero .hero-description {
    font-size: 16px;
  }
  .hero .profile-avatars .avatar {
    width: 28px;
    height: 28px;
  }
  .features .section-title {
    font-size: 32px;
  }
  .features .feature-card {
    padding: 24px;
  }

  /* Features Slider Extra Small Screen Styles */
  .features-slider .feature-card {
    padding: 20px;
    min-height: 450px;
  }

  .features-slider .feature-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .features-slider .feature-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .features-slider .feature-media-container img {
    max-height: 300px;
  }

  .features-slider .slider-btn {
    width: 36px;
    height: 36px;
  }

  .features-slider .slider-btn svg {
    width: 18px;
    height: 18px;
  }
  .download-section .download-title {
    font-size: 32px;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pricing-section .section-title {
    font-size: 36px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  .price-amount {
    font-size: 48px;
  }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Image Zoom Lightbox */
.image-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 40px;
}

.image-zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.image-zoom-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.image-zoom-overlay.active img {
  transform: scale(1);
}

.image-zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.image-zoom-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.image-zoom-close svg {
  color: #FFFFFF;
  width: 24px;
  height: 24px;
}

.feature-preview-image {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.feature-preview-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .image-zoom-overlay {
    padding: 20px;
  }
  .image-zoom-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* Help Center Styles */
.help-center-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 70px;
  background: #000000;
}

/* Sidebar Styles */
.help-sidebar {
  width: 320px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  position: fixed;
  left: 0;
  top: 70px;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
}

.sidebar-header {
  padding: 0 24px 24px;
}

.sidebar-search {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.sidebar-search::placeholder {
  color: rgba(235, 235, 245, 0.4);
}

.sidebar-search:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
}

.sidebar-section {
  margin-bottom: 4px;
}

.sidebar-section-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-section-title:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-chevron {
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.sidebar-section-title.active .sidebar-chevron {
  transform: rotate(0deg);
}

.sidebar-section-title:not(.active) .sidebar-chevron {
  transform: rotate(-90deg);
}

.sidebar-links {
  display: none;
  flex-direction: column;
  padding: 4px 0;
}

.sidebar-links.active {
  display: flex;
}

.sidebar-link {
  display: block;
  padding: 10px 24px 10px 48px;
  color: rgba(235, 235, 245, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.sidebar-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #FFFFFF;
  font-weight: 400;
}

/* Main Content Styles */
.help-content {
  flex: 1;
  margin-left: 320px;
  padding: 48px 64px;
  max-width: 1000px;
}

.help-article-content {
  animation: fadeInUp 0.5s ease;
}

.content-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.content-section {
  margin-bottom: 48px;
}

.content-section:not(.active) {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.content-heading {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.content-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(235, 235, 245, 0.9);
  margin-bottom: 16px;
}

.content-list {
  margin: 16px 0;
  padding-left: 24px;
}

.content-list li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(235, 235, 245, 0.9);
  margin-bottom: 8px;
}

.content-link {
  color: #007AFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.content-link:hover {
  color: #0051D5;
  text-decoration: underline;
}

.inline-code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 3px 6px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #FFFFFF;
}

.content-tip {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #007AFF;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}

.tip-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.content-tip strong {
  color: #FFFFFF;
  font-weight: 500;
}

.content-warning {
  display: flex;
  gap: 16px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-left: 3px solid #FF3B30;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}

.content-warning strong {
  color: #FFFFFF;
  font-weight: 500;
}

.content-image-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 80px 40px;
  margin: 24px 0;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-placeholder p {
  color: rgba(235, 235, 245, 0.5);
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

/* Help Center Image Styles */
.help-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
  padding: 0;
}

.help-content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-content-image:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .help-image-container {
    margin: 24px 0;
  }

  .help-content-image {
    border-radius: 8px;
  }
}

.nav-active {
  color: #FFFFFF !important;
  font-weight: 400 !important;
}

.download-page .nav-active {
  color: #000000 !important;
}

.contact-page .nav-cta {
  color: #000000 !important;
}

/* Scrollbar Styles */
.help-sidebar::-webkit-scrollbar {
  width: 6px;
}

.help-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.help-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.help-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Mobile Toggle Button */
.mobile-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: all 0.3s ease;
}

.mobile-sidebar-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.mobile-sidebar-toggle svg {
  color: #000000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .help-sidebar {
    width: 280px;
  }

  .help-content {
    margin-left: 280px;
    padding: 32px 40px;
  }

  .content-title {
    font-size: 36px;
  }

  .content-heading {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .help-sidebar {
    position: fixed;
    left: -320px;
    width: 320px;
    transition: left 0.3s ease;
    z-index: 1001;
  }

  .help-sidebar.mobile-open {
    left: 0;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.5);
  }

  .help-content {
    margin-left: 0;
    padding: 24px;
  }

  .content-title {
    font-size: 32px;
  }

  .content-heading {
    font-size: 22px;
  }

  .content-text,
  .content-list li {
    font-size: 15px;
  }

  .mobile-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*# sourceMappingURL=styles.css.map */
