/* ── Liveauskorea Kurse Block ─────────────────────────────── */
.lak-kurse {
  --lak-accent: #8a1437;
  --lak-accent-hover: color-mix(in srgb, var(--lak-accent) 80%, #000);
  --lak-text: #1a1a2e;
  --lak-muted: #6b6b80;
  --lak-border: #e5e5ed;
  --lak-bg: #f0f0f5;

  font-family: 'Raleway', sans-serif;
  max-width: 1328px;
  margin: 0 auto;
  padding: 60px 0;
  color: var(--lak-text);
  box-sizing: border-box;
}
.lak-kurse *, .lak-kurse *::before, .lak-kurse *::after {
  box-sizing: border-box;
}

/* ── Headline ────────────────────────────────────────────── */
.lak-headline {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 40px 0;
  color: var(--lak-text);
}

/* ── Tabs ────────────────────────────────────────────────── */
.lak-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.lak-tabs-inner {
  display: inline-flex;
  background: var(--lak-bg);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.lak-tab {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--lak-muted);
}
.lak-tab.is-active {
  background: #fff;
  color: var(--lak-text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.lak-tab:hover:not(.is-active) {
  background: var(--lak-accent);
  color: #fff;
}

/* ── Panel / Grid ────────────────────────────────────────── */
.lak-panel[hidden] { display: none; }
.lak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ── Card ────────────────────────────────────────────────── */
.lak-card {
  background: #fff;
  border: 1px solid var(--lak-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.lak-card:hover {
  box-shadow: 0 8px 32px rgba(26,26,46,0.1);
}
.lak-card--highlight {
  border: 2px solid var(--lak-accent);
  box-shadow: 0 4px 24px color-mix(in srgb, var(--lak-accent) 12%, transparent);
}

/* Badge */
.lak-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lak-accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Icon */
.lak-card-icon {
  width: 40px;
  height: 40px;
  background: var(--lak-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lak-text);
}

/* Title */
.lak-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.lak-card-subtitle {
  font-size: 0.9rem;
  color: var(--lak-muted);
  margin: 0;
}

/* Price */
.lak-card-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.lak-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lak-text);
}
.lak-price-old {
  font-size: 1rem;
  color: #a0a0b0;
  text-decoration: line-through;
}
.lak-tagline {
  font-size: 0.85rem;
  color: var(--lak-muted);
  margin: 4px 0 0 0;
}

/* CTA */
.lak-cta {
  display: block;
  text-align: center;
  background: var(--lak-accent);
  color: var(--lak-cta-text, #fff);
  padding: 14px 24px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  transition: background 0.2s ease;
}
.lak-cta:hover {
  background: var(--lak-accent-hover);
  color: var(--lak-cta-text, #fff);
}

/* Divider */
.lak-divider {
  height: 1px;
  background: var(--lak-border);
}

/* Features */
.lak-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--lak-accent);
}
.lak-features li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.lak-features li span {
  color: #3a3a4a;
}

/* Bonus */
.lak-bonus {
  color: var(--lak-accent);
}
.lak-bonus-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lak-muted);
  margin: 0 0 10px 0;
}
.lak-bonus-item {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.lak-bonus-item span {
  color: #3a3a4a;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .lak-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .lak-tabs-inner {
    flex-direction: column;
    width: 100%;
  }
  .lak-tabs {
    padding: 0 4px;
  }
  .lak-tab {
    width: 100%;
    text-align: center;
  }
  .lak-kurse {
    padding: 40px 16px;
  }
}
