@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
  color: #e5e5e5;
  min-height: 100vh;
  line-height: 1.5;
  font-weight: 400;
}

.landing-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
}

.landing-header {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.landing-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.company-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: #f8f9fa;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 2rem;               
  width: 100%;             
}

.nav-link {
  display: inline-block;
  text-align: center;
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-section {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.privacy-container {
  background: rgba(15, 15, 15, 0.95); 
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;   
  width: 100%;
  text-align: left;   
}

.privacy-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.privacy-updated {
  color: #a1a1aa;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-container h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: #f8f9fa;
}

.privacy-container p, 
.privacy-container li {
  color: #d4d4d8;
  font-size: 1rem;
  line-height: 1.6;
}

.privacy-container ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-container li {
  margin-bottom: 0.75rem;
}
    
.dashboard-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e5e5;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

.user-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-dropdown {
  position: relative;
}

.user-profile-btn {
  background: none;   
  border: none;       
  padding: 0;         
  cursor: pointer;    
}

.user-profile-btn:hover {
  transform: translateY(-1px);
}

.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #e5e5e5;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}

.logout-item {
  color: #ef4444;
}

.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  place-items: start center; 
  gap: 1.7rem;
  padding: 6rem 3rem; 
  max-width: 1400px;
  margin: 0 auto;
  min-height: 60vh; 
  text-align: center;
}


.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center; 
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: #f8f9fa;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center; 
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button.primary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e5e5;
}

.cta-button.primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e5e5;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.cta-button.large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.section-header {
  text-align: center;
  margin-bottom: 7rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8f9fa;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e5e5;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.feature-description {
  color: #a1a1aa;
  line-height: 1.6;
}

.pricing-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

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

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e5e5;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #f8f9fa;
}

.price-currency {
  font-size: 1.25rem;
  color: #a1a1aa;
  font-weight: 500;
}

.pricing-period {
  color: #71717a;
  font-size: 0.875rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  color: #a1a1aa;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.pricing-cta {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e5e5;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.pricing-cta.featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e5e5e5;
}

.pricing-cta.featured:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.about-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-description {
  color: #a1a1aa;
  line-height: 1.7;
  font-size: 1.125rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #e5e5e5;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #71717a;
  font-size: 0.875rem;
  font-weight: 500;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between; /* left/right alignment */
  align-items: center;
  flex-wrap: nowrap; 
  padding-top: 0.6rem; 
  padding-bottom: 0.6rem; 
}

.footer-legal {
  display: flex;
  gap: 1rem; 
}

.footer-link {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #555555;
}

.footer-copyright {
  color: #ffffff;
  font-size: 0.875rem; 
  margin: 0;
}

.landing-footer {
  background: rgba(10, 10, 10, 0.98);
  padding: 0.5rem 2rem; 
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-legal-compact {
  display: flex;
  gap: 1rem; 
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
}

.footer-link:hover {
  color: #9b9b9b;
}

.landing-footer {
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8f9fa;
  margin-bottom: 0.5rem;
}

.footer-brand-tagline {
  color: #a1a1aa;
  font-size: 0.875rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-link-title {
  color: #f8f9fa;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  color: #a1a1aa;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #e5e5e5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-copyright {
  color: #71717a;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .hero-section {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center; 
    gap: 3rem;
    padding: 4rem 2rem;
    min-height: 80vh; 
    text-align: center; 
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 1rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .about-stats {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .user-actions {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem;
    text-align: center; 
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    text-align: center; 
  }

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

  .cta-button {
    width: 100%;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
    text-align: center; 
  }

  .features-section,
  .pricing-section,
  .about-section,
  .cta-section {
    padding: 4rem 1rem;
    text-align: center; 
  }

}
