/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

/* Background Gradient */
.bg-gradient {
  background: linear-gradient(to bottom, #f7c244, #f0a829);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Hero Section */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-large {
  width: 4rem;
  height: 4rem;
  color: #111827;
}

.icon-small {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0rem;
  margin-top: 4rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-install {
  background-color: #111827;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-install:hover {
  background-color: #1f2937;
  transform: scale(1.05);
}

/* Features Section */
.features-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.features-content {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-image {
  aspect-ratio: 16 / 9;
  background-color: #f3f4f6;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

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

/* Footer */
.footer {
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  background-color: rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(4px);
}

.footer-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-text {
  color: #1f2937;
  font-size: 0.875rem;
}

.footer-link {
  color: #1f2937;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

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

/* Responsive Design - Tablet and larger */
@media (min-width: 768px) {
  .hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.875rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

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

  .footer-content {
    flex-direction: row;
  }
}
