.home-container {
  min-height: 100vh;
}

.hero-section {
  background: linear-gradient(135deg, #030814 0%, #1a1a2e 100%);
  color: white;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  font-weight: 300;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto;
}

.hero-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
}

.content-section {
  padding: 4rem 0;
  background: white;
}

.about-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #030814;
  margin-bottom: 2rem;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
}

/* ===== Enhancements for new landing sections ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { opacity: 0; }
.animate-up { opacity: 0; transform: translateY(20px); }
.in-view.animate-fade-in { animation: fadeIn 700ms ease forwards; }
.in-view.animate-up { animation: fadeInUp 650ms ease forwards; }

/* Capability chips */
.capability-chips {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.8rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1;
  backdrop-filter: blur(2px);
}

/* Featured (Applisound) */
.featured-section { background: #0e1224; color: #fff; padding: 3rem 0; }
.featured-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(3, 8, 20, 0.35);
}
.featured-text h2 { margin: 0 0 0.5rem; font-size: 2rem; }
.featured-text p { color: #e6e6e6; margin-bottom: 1rem; }

/* CTAs */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #030814, #1a1a2e);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(3, 8, 20, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(3, 8, 20, 0.4); }
.cta-btn.outline { background: transparent; border: 1px solid #1a1a2e; color: #1a1a2e; }

/* Skills */
.skills-section { background: #ffffff; padding: 3.5rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; font-size: 2rem; color: #030814; }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.skill-card { background: #ffffff; border: 1px solid #eaeaea; border-radius: 2px; padding: 1.2rem 1.2rem 1rem; box-shadow: 0 10px 24px rgba(3, 8, 20, 0.06); }
.skill-card h3 { margin-top: 0; color: #030814; font-size: 1.15rem; }
.skill-card ul { margin: 0.75rem 0 0; padding-left: 1.2rem; color: #555; }
.skill-card li { margin: 0.35rem 0; }

/* Recruiter */
.recruiter-section { background: #f6f8fb; padding: 3.5rem 0; }
.recruiter-card { background: #ffffff; border: 1px solid #eaeaea; border-radius: 2px; padding: 2rem; box-shadow: 0 16px 40px rgba(3, 8, 20, 0.08); max-width: 900px; margin: 0 auto; text-align: center; }
.value-points { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1rem 0 1.25rem; }
.point { border: 1px solid #e4e7ef; background: #fff; color: #0f172a; border-radius: 2px; padding: 0.4rem 0.8rem; font-size: 0.9rem; }
.cta-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .skills-grid { grid-template-columns: 1fr; }
}