/* Home Page Styles */
.home-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.brand-highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.8;
}

.hero-actions .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Feature Preview */
.feature-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-window {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  width: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.window-header {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.window-title {
  font-weight: 600;
  color: white;
}

.window-content {
  padding: 20px;
}

.code-preview {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.code-line {
  display: block;
  margin-bottom: 5px;
}

.keyword { color: #ff79c6; }
.function { color: #50fa7b; }
.string { color: #f1fa8c; }

/* Features Section */
.features-section {
  padding: 100px 0;
  background: white;
}

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b0c0d;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #242528;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Categories */
.feature-category {
  margin-bottom: 80px;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
}

.category-header h3 {
  font-size: 2rem;
  font-weight: 600;
}

.category-header p {
  font-size: 1.1rem;
  color: #718096;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.feature-card p {
  color: #718096;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: #4a5568;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: rgb(8, 8, 8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.8;
  color: rgb(8, 8, 8);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Quick Access Section */
.quick-access-section {
  padding: 100px 0;
  background: #f7fafc;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.quick-access-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quick-access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-decoration: none;
  color: inherit;
}

.quick-access-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
}

.quick-access-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.quick-access-card p {
  color: #718096;
  margin-bottom: 0;
}

.card-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #cbd5e0;
  transition: all 0.3s ease;
}

.quick-access-card:hover .card-arrow {
  color: #667eea;
  transform: translateX(5px);
}

/* Footer */
.home-footer {
  background: #2d3748;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #a0aec0;
  margin-bottom: 0;
}

.footer-links h6,
.footer-info h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-info ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-info li {
  color: #a0aec0;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #a0aec0;
  margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-content h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 30px;
}

.why-choose-content h3:first-child {
  margin-top: 0;
}

.why-choose-content p {
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* How-To Section */
.howto-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.howto-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.howto-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.howto-card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.howto-steps p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.howto-steps strong {
  color: #ffd700;
}

/* Use Cases Section */
.use-cases-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fbffff 0%, #f4f6f8 100%);
  color: rgb(1, 0, 0);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.use-case-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.use-case-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #3498db;
}

.use-case-item h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: rgb(12, 12, 12);
}

.use-case-item p {
  line-height: 1.6;
  opacity: 0.9;
  color: #081114;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .feature-categories {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quick-access-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .howto-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .why-choose-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
