/* Practice tools page (Pencil: PracticeToolsPage) */

.practice-hero {
  padding: 96px 0;
  background: var(--color-bg-primary);
}

.practice-hero-title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  color: #18181B;
  max-width: 1200px;
  margin: 0 auto;
}

.practice-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: #71717A;
  margin-top: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-cta .btn.btn-primary {
  font-size: 18px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 14px;
}

.hero-cta .btn.btn-outline {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 14px;
  background: #F8FAFF;
  border-color: #2563EB;
  color: #1E3A8A;
}

.hero-note {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  margin-top: 16px;
}

/* heroStatsStrip */
.hero-stats-strip {
  margin-top: 28px;
  width: 100%;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
}

.hero-stat {
  width: 230px;
  border-radius: 12px;
  padding: 12px 18px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat .k {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.hero-stat .v {
  font-size: 18px;
  font-weight: 700;
  color: #2563EB;
}

.hero-stat-cta {
  border-radius: 14px;
  padding: 14px 20px;
  background: #0EA5E9;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* heroSteps */
.hero-steps {
  margin-top: 20px;
  width: 100%;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.hero-steps .step {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-steps .step-k {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
}

.hero-steps .step-v {
  font-size: 14px;
  font-weight: 400;
  color: #475569;
}

/* Tools section */
.practice-tools-section {
  padding: 100px 0;
  background: var(--color-bg-primary);
}

.practice-tools-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.practice-module-section {
  border-radius: 32px;
  padding: 56px 64px;
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.0625); /* #00000010 */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.module-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.module-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}

.module-subtitle {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #475569;
  max-width: 560px;
}

.module-header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.module-badge {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.module-guide {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: #64748B;
  text-align: right;
  width: 360px;
}

.module-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.tool-card {
  width: 320px;
  border-radius: 28px;
  padding: 36px 32px;
  background: #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.0706); /* #00000012 */
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tool-card:hover {
  transform: translateY(-1px);
}

.tool-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #18181B;
}

.tool-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #64748B;
}

.tool-footer {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-stats {
  font-size: 13px;
  font-weight: 400;
  color: #94A3B8;
}

.tool-badge {
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .practice-module-section {
    padding: 40px 24px;
  }
  .module-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .module-header-right {
    align-items: flex-start;
  }
  .module-guide {
    width: auto;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .practice-hero-title { font-size: 40px; }
  .practice-hero-subtitle { font-size: 18px; }
  .tool-card { width: 100%; }
}

