.brand {
  text-align: center;
  padding: 28px 0 24px;
}

.brand-mark {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 4px;
}
.brand-name span { color: var(--orange); }

.brand-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 340px;
  margin: 0 auto;
}

.brand-divider {
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 20px;
}

/* Category */
.category {
  margin-bottom: 8px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 8px 10px;
}

.category-accent {
  width: 4px;
  height: 20px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.category-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: auto;
}

/* Program Cards */
.program-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--navy);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.program-card:hover,
.program-card:active {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.program-card:hover .card-icon { background: var(--orange-light); }

.card-body { flex: 1; min-width: 0; }

.card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.card-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 1px;
}

.card-arrow {
  flex-shrink: 0;
  color: var(--text-secondary);
  opacity: 0.4;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.program-card:hover .card-arrow { opacity: 1; color: var(--orange); transform: translateX(2px); }
.card-arrow svg { width: 18px; height: 18px; display: block; }

.card-preschool { border-left-color: #FF6B8A; }
.card-school   { border-left-color: #4A90D9; }
.card-english  { border-left-color: #50B86C; }
.card-consult  { border-left-color: #8B5CF6; }

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0 0;
}
.footer-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.footer-text strong { color: var(--navy); font-weight: 600; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-link:hover { color: var(--orange); }

@media (max-width: 480px) {
  .brand-name { font-size: 22px; }
  .brand-mark { width: 48px; height: 48px; }
  .program-card { padding: 12px 14px; gap: 10px; }
  .card-icon { width: 40px; height: 40px; font-size: 20px; }
  .card-title { font-size: 13px; }
}
