:root {
  --brand-50: #EFF5FF;
  --brand-100: #DCE8FF;
  --brand-300: #87B0FF;
  --brand-500: #2563EB;
  --brand-600: #1E63FF;
  --brand-700: #0B3DBF;
  --brand-900: #061F66;
  --ink: #0B1320;
  --ink-2: #334155;
  --ink-3: #64748B;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F6F9FF;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', 'Pretendard', 'Noto Sans KR', 'Noto Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.font-display {
  font-family: 'Inter', 'Pretendard', 'Noto Sans KR', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.hero-bg {
  background:
    radial-gradient(1100px 500px at 85% -20%, rgba(30, 99, 255, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 10%, rgba(11, 61, 191, 0.10), transparent 60%),
    linear-gradient(180deg, #F6F9FF 0%, #FFFFFF 100%);
}

.bridge-line {
  background-image: linear-gradient(90deg, transparent, var(--brand-300) 30%, var(--brand-300) 70%, transparent);
  height: 2px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-300);
  box-shadow: 0 12px 32px -16px rgba(11, 61, 191, 0.25);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--brand-700);
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background: var(--brand-900);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--brand-700);
  border: 1px solid var(--brand-300);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-ghost:hover {
  background: var(--brand-50);
  border-color: var(--brand-500);
}

.lang-btn {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active {
  background: var(--brand-700);
  color: #fff;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
  display: block;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--brand-300); color: var(--brand-700); }
.chip.is-active {
  background: var(--brand-700);
  border-color: var(--brand-700);
  color: #fff;
}

.section-anchor {
  scroll-margin-top: 80px;
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-700);
}

.flag-tile {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 4px 12px -6px rgba(11, 61, 191, 0.4);
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink-3);
  display: inline-block;
}

.kv-grid-bg {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.shadow-card {
  box-shadow: 0 24px 48px -28px rgba(11, 61, 191, 0.35);
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-bg { background-size: cover; }
}

[hidden] { display: none !important; }

/* Nav dropdown */
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 24px 48px -20px rgba(11, 31, 102, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 50;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.12s;
}
.dropdown-item:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}
.dropdown-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-300);
  margin-top: 8px;
  flex-shrink: 0;
}
.dropdown-caret {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 4px;
}

/* Path card (Choose your path) */
.path-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 22px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.path-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-500);
  box-shadow: 0 18px 36px -20px rgba(11, 61, 191, 0.35);
}
.path-card .path-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-300);
  letter-spacing: 0.04em;
}
.path-card .path-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
  transition: gap 0.18s ease;
}
.path-card:hover .path-arrow {
  gap: 10px;
}

/* Mid CTA banner */
.midcta-band {
  background:
    radial-gradient(800px 300px at 100% 50%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, var(--brand-700), var(--brand-900));
  border-radius: 22px;
  color: #fff;
  padding: 36px;
}
.midcta-band .btn {
  background: #fff;
  color: var(--brand-700);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: transform 0.15s, background 0.15s;
}
.midcta-band .btn:hover {
  background: var(--brand-50);
  transform: translateY(-1px);
}

/* Section padding tightening */
.section-pad { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .section-pad { padding-top: 5.5rem; padding-bottom: 5.5rem; } }

/* Article page */
.article-hero {
  position: relative;
  background: var(--bg-soft);
  padding: 32px 0 56px;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 360px at 80% -20%, rgba(30, 99, 255, 0.18), transparent 60%),
    radial-gradient(600px 300px at 0% 30%, rgba(11, 61, 191, 0.10), transparent 60%);
  pointer-events: none;
}
.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(11, 61, 191, 0.45);
  background: var(--brand-50);
}
.article-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 999px; background: currentColor; }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body > * + * { margin-top: 1.1em; }
.article-body h2 {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2.4em;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 1.8em;
  line-height: 1.3;
}
.article-body p { margin-top: 1.1em; }
.article-body ul, .article-body ol {
  padding-left: 1.4em;
  margin-top: 1.1em;
}
.article-body li { margin-top: 0.5em; }
.article-body li::marker { color: var(--brand-700); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body blockquote {
  margin: 1.6em 0;
  padding: 18px 22px;
  background: var(--brand-50);
  border-left: 3px solid var(--brand-700);
  border-radius: 6px;
  font-size: 16px;
  color: var(--ink-2);
}
.article-body blockquote p { margin: 0; }
.article-body code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.9em;
  background: #F1F5F9;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--brand-700);
}
.article-body a {
  color: var(--brand-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brand-300);
}
.article-body a:hover { text-decoration-color: var(--brand-700); }
.article-body .lede {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
}
.article-body .callout {
  margin: 1.8em 0;
  padding: 22px 24px;
  border: 1px solid var(--brand-100);
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border-radius: 14px;
}
.article-body .callout-title {
  font-weight: 700;
  color: var(--brand-700);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article-end-cta {
  margin-top: 4em;
  padding: 36px;
  background:
    radial-gradient(800px 300px at 100% 50%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, var(--brand-700), var(--brand-900));
  border-radius: 18px;
  color: #fff;
}
.article-end-cta .btn {
  background: #fff;
  color: var(--brand-700);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-300);
  box-shadow: 0 16px 32px -20px rgba(11, 61, 191, 0.3);
}
.related-card .cover {
  aspect-ratio: 16 / 9;
  background: var(--brand-50);
}
.related-card .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Insights card image */
.insight-cover {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}
.insight-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .insight-cover img { transform: scale(1.04); }
.insight-cover .tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Form alert */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 4px;
}
.form-alert.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ========== Path mini-landing flow ========== */

.paths-view {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#paths-grid.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}
#paths-detail {
  opacity: 0;
  transform: translateY(8px);
}
#paths-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Visited badge on grid card */
.path-visited {
  position: absolute;
  top: 16px;
  right: 16px;
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.path-card.was-visited .path-visited { display: inline-flex; }
.path-card.was-visited .path-num { display: none; }
.path-card.was-visited {
  border-color: var(--brand-300);
  background: linear-gradient(180deg, #fff, var(--brand-50));
}

/* Mini landing layout */
.path-detail-inner {
  background: #fff;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.detail-back:hover {
  background: var(--brand-100);
  border-color: var(--brand-300);
  transform: translateX(-2px);
}

.detail-hero {
  margin-top: 18px;
  max-width: 880px;
}
.detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.detail-flag {
  font-size: 14px;
  line-height: 1;
}
.detail-headline {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
  margin-top: 16px;
}
@media (min-width: 640px) {
  .detail-headline { font-size: 40px; line-height: 1.12; }
}
.detail-lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (min-width: 640px) { .detail-lead { font-size: 17px; } }

.detail-section { margin-top: 48px; }
.detail-section-h {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}

/* Services grid (5 items) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.service-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 20px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.service-item:hover {
  border-color: var(--brand-300);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -20px rgba(11, 61, 191, 0.3);
}
.service-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.service-title {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: process;
}
@media (min-width: 768px) { .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.process-step {
  display: flex;
  gap: 14px;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.process-step:hover {
  border-color: var(--brand-300);
  box-shadow: 0 12px 28px -20px rgba(11, 61, 191, 0.3);
}
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 14px;
    height: 1.5px;
    background: var(--brand-300);
    transform: translateY(-50%);
    z-index: 1;
  }
}

.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-700);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.step-body { flex: 1; min-width: 0; }
.step-duration {
  display: inline-block;
  padding: 3px 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.step-title {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* Outcomes grid (30/60/90) */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
@media (min-width: 768px) { .outcomes-grid { grid-template-columns: repeat(3, 1fr); } }

.outcome-card {
  background: linear-gradient(180deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
  border-radius: 14px;
  padding: 22px;
}
.outcome-day {
  display: inline-block;
  padding: 5px 12px;
  background: var(--brand-700);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.outcome-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.trust-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* CTA block */
.detail-cta-block {
  margin-top: 48px;
  padding: 28px 28px 30px;
  background:
    radial-gradient(700px 220px at 110% 0%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, var(--brand-700), var(--brand-900));
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .detail-cta-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 36px;
  }
}
.detail-cta-text h3 {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.detail-cta-text p {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}
.detail-cta-btn {
  background: #fff !important;
  color: var(--brand-700) !important;
  flex-shrink: 0;
  white-space: nowrap;
}
.detail-cta-btn:hover {
  background: var(--brand-50) !important;
  transform: translateY(-1px);
}

/* Bottom repeat CTA */
.detail-cta-bottom {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-back-text {
  background: none;
  border: none;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 4px;
}
.detail-back-text:hover { color: var(--brand-700); }

/* Short form */
.short-form {
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--brand-100);
  border-radius: 18px;
  box-shadow: 0 24px 48px -32px rgba(11, 61, 191, 0.25);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.short-form.is-open {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .short-form { padding: 32px; }
}

.short-form-header { margin-bottom: 22px; max-width: 540px; }
.short-form-title {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.short-form-sub {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.short-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 16px;
}
@media (min-width: 640px) { .short-form-grid { grid-template-columns: 1fr 1fr; } }
.short-form-grid .md\:col-span-2 { grid-column: span 1; }
@media (min-width: 640px) { .short-form-grid .md\:col-span-2 { grid-column: span 2; } }

.lang-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lang-radios label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}
.lang-radios label:hover { border-color: var(--brand-300); color: var(--brand-700); }
.lang-radios input { appearance: none; -webkit-appearance: none; margin: 0; width: 14px; height: 14px; border: 1.5px solid var(--ink-3); border-radius: 999px; cursor: pointer; flex-shrink: 0; transition: all 0.15s; }
.lang-radios input:checked { border-color: var(--brand-700); background: var(--brand-700); box-shadow: inset 0 0 0 3px #fff; }
.lang-radios label:has(input:checked) {
  background: var(--brand-50);
  border-color: var(--brand-700);
  color: var(--brand-700);
}

.short-form-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) {
  .short-form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.short-form-disclaimer {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 360px;
}
.short-form-submit { justify-content: center; }

.short-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  grid-column: 1 / -1;
}
.short-form-alert a { color: inherit; text-decoration: underline; font-weight: 600; }

/* ========== Audience cards (Who this is for) ========== */
.audience-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-card:hover {
  border-color: var(--brand-300);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -22px rgba(11, 61, 191, 0.3);
}
.audience-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: 0.06em;
}
.audience-text {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* ========== Proof of work ========== */
.industry-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
  letter-spacing: 0.01em;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.industry-pill:hover {
  background: var(--brand-50);
  border-color: var(--brand-300);
  transform: translateY(-1px);
}

.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.case-card:hover {
  border-color: var(--brand-300);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -22px rgba(11, 61, 191, 0.3);
}
.case-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-title {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-top: 2px;
}
.case-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.case-card-cta {
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px dashed var(--brand-300);
  text-decoration: none;
  color: inherit;
}
.case-card-cta:hover {
  border-style: solid;
  border-color: var(--brand-700);
}
.case-card-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand-700);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.case-cta-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-700);
  padding-top: 6px;
}

/* Success state */
.short-form-success {
  margin-top: 28px;
  padding: 32px;
  background: linear-gradient(180deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
  border-radius: 18px;
  text-align: center;
}
.short-form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--brand-700);
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.short-form-success h3 {
  font-family: 'Inter', 'Pretendard', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.short-form-success p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 4px;
}
.short-form-success .email-hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
}
.short-form-success .email-hint a {
  color: var(--brand-700);
  font-weight: 600;
  text-decoration: underline;
}

