/* Base styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brand-text {
  font-size: 20px;
  font-weight: 600;
  color: #1f2328;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #656d76;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: #1f2328;
}

/* Hero Section */
.hero {
  padding: 160px 20px 80px;
  text-align: center;
  background-image: url("/assets/hero-background-2b29f97c.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -80px;
  padding-top: 240px;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1f2328;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 18px;
  color: #656d76;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.free-text {
  margin-top: 12px;
  font-size: 14px;
  color: #424a53;
  font-weight: 400;
  font-style: italic;
}

/* Demo Section */
.demo-section {
  padding: 40px 20px 80px;
  background: white;
}

.demo-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.app-screenshot {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-small {
  padding: 6px 12px;
  font-size: 14px;
}

.btn-large {
  padding: 12px 24px;
  font-size: 16px;
}

.btn-primary {
  background: #4d5ba6;
  color: white;
  border-color: #4d5ba6;
}

.btn-primary:hover {
  background: #3d4b86;
  border-color: #3d4b86;
}

.btn-secondary {
  background: white;
  color: #1f2328;
  border: 1px solid #e1e7ef;
}

.btn-secondary:hover {
  background: #f6f8fa;
  border-color: #d1d9e0;
}

/* Features Section */
.features {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  color: #4d5ba6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2328;
}

.section-header p {
  font-size: 18px;
  color: #656d76;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  background: #4d5ba6;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2328;
}

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

/* How it Works */
.how-it-works {
  padding: 80px 20px;
  background: white;
}

.steps-container {
  position: relative;
  margin-top: 60px;
}

.steps-line {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #e1e7ef;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #4d5ba6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2328;
}

.step p {
  color: #656d76;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 80px 20px;
  background: #293056;
  color: white;
  text-align: center;
  margin-bottom: 0;
}

.cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: #1f2328;
  border-color: white;
}

.btn-white:hover {
  background: #f6f8fa;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Footer */
.footer {
  background: #293056;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-language-switcher {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover {
  color: white;
}

/* Footer Language Switcher Styles */
.footer-language-switcher-component button {
  color: rgba(255, 255, 255, 0.7);
  border: none;
  background: transparent;
  padding: 0;
  font-size: 14px;
}

.footer-language-switcher-component button:hover {
  color: white;
  background: transparent;
}

.footer-language-switcher-component button:focus {
  box-shadow: none;
  outline: none;
  ring: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    height: 60px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-actions {
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero {
    padding-top: 180px;
    padding-bottom: 60px;
    margin-top: -60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .btn-large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-line {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

