* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --accent: #f59e0b;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

html {
  scroll-behavior: smooth;
  overflox-x:hidden;
}


body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo span {
  color: var(--secondary);
  -webkit-text-fill-color: var(--secondary);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 6px;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 150px;
  display: none;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.lang-menu li {
  margin: 0;
}

.lang-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.lang-menu a:hover {
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary);
  padding-left: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 998;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-menu.active {
  display: block;
  max-height: 500px;
}

.mobile-nav-links {
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}

.mobile-nav-links li {
  margin: 0.5rem 0;
}

.mobile-nav-links a {
  display: block;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.mobile-nav-links .mobile-nav-btn {
  background: var(--gradient);
  color: white;
  font-weight: 600;
  margin-top: 0.5rem;
}

.mobile-nav-links .mobile-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  background: var(--dark);
  /*position: relative;*/
  overflow-x: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  /*right: -20%;*/
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
}

.hero-form {
  background: var(--dark-light);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-form p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder {
  color: var(--gray);
}

.btn-primary {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.form-note i {
  color: var(--secondary);
  margin-right: 0.5rem;
}

/* Section Styles */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About Section */
.about {
  background: var(--dark-light);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.about-card {
  position: absolute;
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.about-card.card-1 {
  top: 10%;
  right: -10%;
}

.about-card.card-2 {
  bottom: 10%;
  left: -10%;
}

.about-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.about-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.about-text > p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.about-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step1 {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Features Section */
.features {
  background: var(--dark);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--dark-light);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray);
}

/* Pricing Section */
.pricing {
  background: var(--dark-light);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: var(--dark);
  padding: 3rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-card .profit {
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: var(--secondary);
}

.btn-pricing {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-gradient {
  background: var(--gradient);
  border: none;
  color: white;
}

.btn-gradient:hover {
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Partners Section */
.partners {
  background: var(--dark);
}

.partners-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.partners-intro p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.partner-card {
  background: var(--dark-light);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 1rem;
}

.partner-logo-icon {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.partner-exclusive {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--secondary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.partner-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.partner-category {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background: var(--dark);
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--dark-light);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
}

.review-text {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-author-info h4 {
  font-size: 1rem;
}

.review-author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  background: var(--dark-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark);
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* CTA Section */
.cta {
  background: var(--dark);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient);
  padding: 4rem 3rem;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(-30deg);
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
}

.btn-cta {
  background: white;
  color: var(--primary);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background: var(--dark);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--gray);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .hero-text p {
      margin: 0 auto 2rem;
  }

  .hero-stats {
      justify-content: center;
  }

  .hero-form {
      max-width: 500px;
      margin: 0 auto;
  }

  .about-content {
      grid-template-columns: 1fr;
  }

  .about-image {
      order: -1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  /* .about-image-main {
      display: none;
  } */

  .features-grid,
  .pricing-grid,
  .reviews-grid,
  .partners-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
  }

  .pricing-card.popular {
      transform: none;
  }

  .pricing-card.popular:hover {
      transform: translateY(-10px);
  }

  .footer-content {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

  .nav-btn {
      display: none;
  }

  .mobile-menu {
      display: block;
  }

  .hero-text h1 {
      font-size: 2.5rem;
  }

  .hero-stats {
      flex-direction: column;
      gap: 1.5rem;
  }

  .stat {
      text-align: center;
  }

  .section-header h2 {
      font-size: 2rem;
  }

  .about-card {
      position: static;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      margin: 1rem auto;
      width: calc(100% - 2rem);
      max-width: 100%;
      animation: none;
  }
  
  .about-card.card-1 {
      margin-top: 1rem;
      margin-bottom: 0.5rem;
  }
  
  .about-card.card-2 {
      margin-top: 0.5rem;
      margin-bottom: 1rem;
  }

  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-social {
      justify-content: center;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-card {
  animation: float 4s ease-in-out infinite;
}

.about-card.card-2 {
  animation-delay: 1s;
}

/* AI Badge */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.ai-badge i {
  font-size: 1rem;
}


/* Live indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* About Company Section */
.about-company {
  background: var(--dark);
  padding: 6rem 5%;
}

.about-company-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.about-company-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-company-block {
  background: var(--dark-light);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
}

.about-company-block:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.about-company-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-company-block p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.about-company-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-company-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 1rem;
}

.about-company-list li i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-company-list li span {
  flex: 1;
}

.about-company-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.company-stat-card {
  background: var(--dark-light);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.company-stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-name {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Traditional Investments Section */
.traditional-investments {
  background: var(--dark-light);
  padding: 6rem 5%;
}

.traditional-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.traditional-card {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.traditional-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.traditional-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.traditional-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.traditional-card > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.traditional-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.traditional-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light);
  font-size: 0.95rem;
}

.traditional-list li i {
  color: var(--secondary);
  font-size: 1rem;
}

.traditional-note {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.traditional-note i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.traditional-note p {
  color: var(--light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-company-content {
    grid-template-columns: 1fr;
  }

  .about-company-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .traditional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-company-content {
    gap: 2rem;
  }

  .about-company-stats {
    grid-template-columns: 1fr;
  }

  .traditional-grid {
    grid-template-columns: 1fr;
  }

  .traditional-note {
    flex-direction: column;
  }

  .traditional-note i {
    font-size: 1.2rem;
  }

  /* Mobile Language Switcher */
  .language-switcher {
    gap: 0.3rem;
    margin: 0 0.5rem;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }

  .lang-menu {
    min-width: 120px;
    right: auto;
    left: 0;
  }

  nav {
    padding: 0.75rem 3%;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: none;
    gap: 1rem;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }
}

#process {
  background-color: var(--dark-light);
}

/* Responsive Image 200% Desktop / 100% Mobile */
.responsive-image-200 {
  width: 100%;
  display: block;
}

/* Desktop - 200% width */
@media (min-width: 1024px) {
  .responsive-image-200 {
    width: 220%;
  }
}

#registrationForm h3 {
  align-items: center;

  justify-content: center;
}

/* Language Detection Modal */
.language-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.language-modal-content {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

.language-modal-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.language-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-lang-yes {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-lang-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-lang-yes:active {
  transform: translateY(0);
}

.btn-lang-choose {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--primary);
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-lang-choose:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
}

.btn-lang-choose:active {
  transform: translateY(0);
}

.lang-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
  }
}

.lang-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-select:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.lang-select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.lang-select option {
  background: var(--dark-light);
  color: var(--white);
}

.btn-lang-select {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.5);
  color: var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-lang-select:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-lang-select:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .language-modal-content {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .language-modal-content h3 {
    font-size: 1.25rem;
  }

  .language-modal-content p {
    font-size: 0.9rem;
  }

  .btn-lang-yes {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-lang-choose {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }

  .lang-select-wrapper {
    padding: 0.75rem 0;
  }

  .lang-select,
  .btn-lang-select {
    font-size: 0.85rem;
    padding: 0.55rem 0.65rem;
  }
}