/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #0b1a3e 0%, #1a3a7a 40%, #1a73e8 100%);
  color: #fff;
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #fff;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 60%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
  animation: fadeInDown 0.6s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(90deg, #64b5f6, #e1bee7, #ffcc80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.hero-actions .btn-primary {
  background: #fff;
  color: #1a73e8;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-actions .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: -2.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  border-radius: 16px;
  position: relative;
  z-index: 10;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  background: #e8f0fe;
  color: var(--primary);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Feature Cards ===== */
.features .feature-card {
  text-align: left;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: none;
  transition: all 0.3s;
}

.features .feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  transform: translateY(-6px);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon-wrap .feature-icon {
  font-size: 1.6rem;
}

.feature-icon-wrap.blue { background: #e8f0fe; }
.feature-icon-wrap.green { background: #e6f4ea; }
.feature-icon-wrap.purple { background: #f3e8fd; }
.feature-icon-wrap.orange { background: #fef3e0; }

.features .feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.features .feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Today's Schedule ===== */
.today-schedule {
  background: linear-gradient(180deg, var(--bg) 0%, #eef2f7 100%);
  border-radius: 0;
}

.today-schedule .schedule-item {
  border-left: 4px solid var(--primary);
  transition: all 0.2s;
}

.today-schedule .schedule-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ===== Quick Actions ===== */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.quick-actions .action-card {
  text-align: left;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  gap: 0.25rem;
}

.quick-actions .action-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.1);
  transform: translateY(-4px);
}

.action-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.action-icon-wrap .action-icon {
  font-size: 1.3rem;
}

.action-icon-wrap.blue { background: #e8f0fe; }
.action-icon-wrap.green { background: #e6f4ea; }
.action-icon-wrap.purple { background: #f3e8fd; }
.action-icon-wrap.orange { background: #fef3e0; }

.action-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.action-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ===== Footer ===== */
.footer {
  background: #0b1a3e;
  border-top: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer p {
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-inner { flex-wrap: wrap; gap: 1.25rem; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
