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

.home-badge {
  margin: 0 auto 18px auto;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.home-title {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.home-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}

.home-actions .btn {
  padding: 12px 18px;
}

.home-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-tiles .neu-tile {
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.home-tiles .neu-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.home-tiles .neu-tile::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0 var(--radius-lg) 0 40px;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.home-tiles .neu-tile:hover::before {
  opacity: 0.2;
  transform: scale(1.1);
}

.home-tiles .tile-k {
  font-size: 13px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.home-tiles .neu-tile:hover .tile-k {
  color: var(--primary);
}

.home-tiles .tile-v {
  font-size: 24px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.home-tiles .neu-tile:hover .tile-v {
  color: var(--primary);
  transform: scale(1.05);
}

.home-tiles .tile-hint {
  font-size: 12px;
  transition: all 0.3s ease;
}

.home-tiles .neu-tile:hover .tile-hint {
  color: var(--text-primary);
}

.home-section {
  margin-top: 24px;
}

.section-title {
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature {
  padding: 16px;
}

.feature-title {
  font-weight: 950;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step {
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover::before {
  opacity: 1;
}

.step-no {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.step:hover .step-no {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

.step-title {
  font-weight: 950;
  margin-bottom: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step:hover .step-title {
  color: var(--primary);
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.step:hover .step-desc {
  color: var(--text-primary);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.faq-item::before {
  content: '?';
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  font-weight: 950;
  color: rgba(79, 70, 229, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover::before {
  color: rgba(79, 70, 229, 0.2);
  transform: scale(1.1);
}

.faq-q {
  font-weight: 950;
  margin-bottom: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.faq-q::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
}

.faq-item:hover .faq-q {
  color: var(--primary);
}

.faq-item:hover .faq-q::before {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.4);
}

.faq-a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: all 0.3s ease;
  padding-left: 20px;
}

.faq-item:hover .faq-a {
  color: var(--text-primary);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 13px;
}

.list li {
  margin: 6px 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.status-item {
  padding: 16px;
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.status-name {
  font-weight: 950;
}

.status-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.note {
  padding: 16px;
}

.note-title {
  font-weight: 950;
  margin-bottom: 6px;
}

.note-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .note-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .home-tiles { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .home-title { font-size: 30px; }
}

