* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #0F0D14;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(250, 30, 78, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.cta-button {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #FA1E4E 0%, #B20317 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(250, 30, 78, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250, 30, 78, 0.5);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(250, 30, 78, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(178, 3, 23, 0.15) 0%, transparent 50%);
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #FA1E4E 0%, #B20317 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-button-large {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #FA1E4E 0%, #B20317 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 32px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(250, 30, 78, 0.4);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(250, 30, 78, 0.6);
}

.hero-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(250, 30, 78, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.performance-chart {
  padding: 60px 0;
  background: #1A1621;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
}

.chart-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 24px;
  overflow: hidden;
}

.chart-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.chart-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 30, 78, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(250, 30, 78, 0.05);
  border: 1px solid rgba(250, 30, 78, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 30, 78, 0.5);
  box-shadow: 0 8px 24px rgba(250, 30, 78, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #FA1E4E 0%, #B20317 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.features {
  padding: 60px 0;
  background: #0F0D14;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: rgba(26, 22, 33, 0.6);
  border: 1px solid rgba(250, 30, 78, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 30, 78, 0.3);
  box-shadow: 0 12px 32px rgba(250, 30, 78, 0.2);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-top: 16px;
}

.benefits {
  padding: 60px 0;
  background: #1A1621;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-item {
  position: relative;
  padding: 32px 24px;
}

.benefit-number {
  font-size: 64px;
  font-weight: 800;
  color: rgba(250, 30, 78, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}

.benefit-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.benefit-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonials {
  padding: 60px 0;
  background: #0F0D14;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(26, 22, 33, 0.6);
  border: 1px solid rgba(250, 30, 78, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 30, 78, 0.3);
  box-shadow: 0 12px 32px rgba(250, 30, 78, 0.2);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(250, 30, 78, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  margin-top: 16px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.faq {
  padding: 60px 0;
  background: #1A1621;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: rgba(26, 22, 33, 0.6);
  border: 1px solid rgba(250, 30, 78, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(250, 30, 78, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #FA1E4E;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.final-cta {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, rgba(250, 30, 78, 0.2) 0%, transparent 70%),
              #0F0D14;
}

.final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.final-cta-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.footer {
  background: #1A1621;
  padding: 32px 0;
  border-top: 1px solid rgba(250, 30, 78, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.footer-link:hover {
  color: #FA1E4E;
}

.footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
}

.sticky-cta.visible {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1A1621;
  border: 1px solid rgba(250, 30, 78, 0.2);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #FA1E4E;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FA1E4E 0%, #B20317 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body ul {
  margin: 16px 0 16px 24px;
}

.modal-body li {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 64px;
  }

  .section-title {
    font-size: 48px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-button-large {
    font-size: 16px;
    padding: 14px 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-title {
    font-size: 32px;
  }

  .sticky-cta {
    bottom: 80px;
    right: 50%;
    transform: translateX(50%);
  }

  .sticky-cta.visible {
    animation: slideUp 0.3s ease;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .modal-content {
    padding: 32px 24px;
  }

  .modal-title {
    font-size: 24px;
  }
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* keeps it on the left */
}

.logo img {
  width: 140px;   /* Official width of the logo */
  height: auto;   /* Keep aspect ratio */
}
