:root {
  --brand-dark: #0A1F44;
  --brand-darker: #06122B;
  --brand-accent: #2A9D8F;
  --brand-accent-dark: #207a70;
  --brand-highlight: #E76F51;
  --bg-light: #F7F7F5;
  --bg-panel: #ECEFF1;
  --text-primary: #1A1A1A;
  --text-muted: #55667A;
  --text-soft: #889AAE;
  --border-subtle: rgba(10, 31, 68, 0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.05), 0 1px 3px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 6px 14px rgba(10, 31, 68, 0.08), 0 2px 4px rgba(10, 31, 68, 0.04);
  --shadow-lg: 0 20px 40px rgba(10, 31, 68, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", "Noto Sans SC", "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--text-primary);
  background: #ffffff;
  line-height: 1.55;
  font-feature-settings: "tnum" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
}

.h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--brand-dark);
}

.h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.3;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
}

.subtle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.text-mini {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ============ Navigation ============ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 50;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--brand-dark);
}

.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: block;
  /* SVG file already has gradient + background; this just clips and sizes */
}

.brand__name {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s;
}

.nav__links a:hover {
  color: var(--brand-dark);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 880px) {
  .nav__links {
    display: none;
  }
}

/* ============ Language Switcher ============ */
.lang-switch {
  position: relative;
  display: inline-flex;
  padding: 4px;
  background: var(--bg-panel);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
}

.lang-switch button.active {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.05s, background 0.15s, box-shadow 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.18);
}

.btn--primary:hover {
  background: #1a3262;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.22);
}

.btn--secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--border-subtle);
}

.btn--secondary:hover {
  border-color: var(--brand-dark);
  background: var(--bg-light);
}

.btn--accent {
  background: var(--brand-accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--brand-accent-dark);
}

.btn--large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn--small {
  padding: 8px 14px;
  font-size: 13px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, #f3fbf9 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fafbfb 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 30%, rgba(42, 157, 143, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(231, 111, 81, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__copy h1 {
  margin-top: 12px;
  margin-bottom: 24px;
}

.hero__copy h1 span {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__copy p.lead {
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.hero__stat .v {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero__stat .l {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.hero__card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}

.hero__card-row:last-child {
  border-bottom: 0;
}

.hero__card-row .lbl {
  color: var(--text-muted);
}

.hero__card-row .val {
  font-weight: 700;
  color: var(--brand-dark);
}

.hero__card-row .val--accent {
  color: var(--brand-accent);
}

.hero__card-row .val--highlight {
  color: var(--brand-highlight);
}

.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero__card-title {
  font-weight: 800;
  color: var(--brand-dark);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(42, 157, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 157, 143, 0); }
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero__stat .v {
    font-size: 1.05rem;
  }
  .hero__stat .l {
    font-size: 11px;
  }
}

/* ============ Section header ============ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .lead {
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}

/* ============ Problem stats grid ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 880px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-card__l {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 36px;
}

.stat-card__v {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.stat-card--accent .stat-card__v { color: var(--brand-accent); }
.stat-card--highlight .stat-card__v { color: var(--brand-highlight); }

.stat-source {
  text-align: center;
  margin-top: 28px;
}

/* ============ Solution / Process steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 880px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--border-subtle);
  padding: 26px;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step__num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: "Inter", monospace;
  letter-spacing: 0.02em;
}

.step:nth-child(3n+2) .step__num { background: var(--brand-accent); }
.step:nth-child(3n+3) .step__num { background: var(--brand-highlight); }

.step__title {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.step__desc {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ Science cards ============ */
.evidence {
  background: var(--bg-light);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 880px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}

.evidence-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border-top: 4px solid var(--brand-accent);
  box-shadow: var(--shadow-sm);
}

.evidence-card:nth-child(1) {
  border-top-color: var(--brand-highlight);
}
.evidence-card:nth-child(2) {
  border-top-color: var(--brand-accent);
}
.evidence-card:nth-child(3) {
  border-top-color: var(--brand-dark);
}

.evidence-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-soft);
  font-family: "Inter", monospace;
  margin-bottom: 10px;
}

.evidence-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.evidence-card__body {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ Timeline ============ */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

@media (max-width: 880px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tl-step {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.tl-step__day {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px;
  letter-spacing: 0.04em;
}

.tl-step:nth-child(odd) .tl-step__day {
  background: var(--brand-dark);
}

.tl-step__desc {
  padding: 14px 10px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ About cards ============ */
.about {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 880px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.about-card__head {
  padding: 16px 22px;
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.about-card:nth-child(2) .about-card__head { background: var(--brand-highlight); }
.about-card:nth-child(3) .about-card__head { background: var(--brand-dark); }

.about-card__body {
  padding: 24px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.locations-strip {
  margin-top: 40px;
  text-align: center;
  padding: 18px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 14px;
}

/* ============ Patient-facing additions (v2) ============ */

/* Section variants */
.section--alt {
  background: var(--bg-light);
}

.section--promise {
  padding: 72px 0;
}

/* Patient hero accent */
.hero--patient .h1 .accent {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-highlight) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 24px;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-tick {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__card--patient .hero__card-title {
  color: var(--brand-accent);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  font-size: 13px;
  text-transform: uppercase;
}

/* Promise grid */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 880px) {
  .promise-grid { grid-template-columns: 1fr; }
}

.promise-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promise-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-accent));
  color: #fff;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.promise-card .h3 {
  margin-bottom: 12px;
}

/* How-step grid (4 steps) */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 1000px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .how-grid { grid-template-columns: 1fr; }
}

.how-step {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.how-step__n {
  font-family: "Inter", monospace;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-highlight));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}

.how-step:nth-child(2) .how-step__n {
  background: linear-gradient(135deg, var(--brand-highlight), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-step:nth-child(3) .how-step__n {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-step:nth-child(4) .how-step__n {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-step .h3 {
  margin-bottom: 8px;
}

/* Eligibility grid */
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 760px) {
  .eligibility-grid { grid-template-columns: 1fr; }
}

.eligibility-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.eligibility-card--yes {
  border-top: 4px solid var(--brand-accent);
}

.eligibility-card--no {
  border-top: 4px solid var(--text-soft);
  opacity: 0.94;
}

.eligibility-card .h3 {
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--text-primary);
  border-bottom: 1px dashed var(--border-subtle);
}

.check-list li:last-child {
  border-bottom: 0;
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tick--yes {
  background: var(--brand-accent);
  color: #fff;
}

.tick--no {
  background: var(--bg-panel);
  color: var(--text-soft);
}

.note-soft {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(42, 157, 143, 0.06);
  border-left: 3px solid var(--brand-accent);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Expect timeline (vertical) */
.expect-timeline {
  list-style: none;
  counter-reset: expect;
  padding: 0;
  margin: 32px 0 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.expect-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-accent), var(--brand-highlight));
  opacity: 0.4;
}

.expect-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 24px;
}

.expect-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
}

.expect-item:nth-child(odd)::before {
  border-color: var(--brand-highlight);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.1);
}

.expect-item__head {
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.expect-item__body {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Cost cards */
.cost-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.cost-section .h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .cost-grid { grid-template-columns: 1fr; }
}

.cost-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
}

.cost-card--main {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #15336a 100%);
  border-color: var(--brand-dark);
}

.cost-card--main * { color: #fff !important; }
.cost-card--main .cost-card__desc { color: rgba(255, 255, 255, 0.75) !important; }

.cost-card__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.cost-card__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cost-card__desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.cost-note {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Safety grid */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 880px) {
  .safety-grid { grid-template-columns: 1fr; }
}

.safety-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.safety-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.safety-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: var(--bg-light);
  border-radius: 50%;
}

.safety-card .h3 {
  margin-bottom: 10px;
}

.disclaimer-box {
  margin-top: 32px;
  padding: 18px 22px;
  background: rgba(231, 111, 81, 0.08);
  border: 1px solid rgba(231, 111, 81, 0.2);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team grid (humanized) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  margin: 0 auto 16px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
  box-shadow: var(--shadow-md);
}

.team-card:nth-child(2) .team-avatar {
  background: linear-gradient(135deg, var(--brand-highlight), var(--brand-dark));
}

.team-card:nth-child(3) .team-avatar {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-accent));
}

.team-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 4px;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.team-bg {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* FAQ */
.faq-grid {
  max-width: 820px;
  margin: 32px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--brand-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15.5px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--brand-accent);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============ Careers page ============ */
.nav__links a.active {
  color: var(--brand-dark);
  position: relative;
}

.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.careers-hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #f3fbf9 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 30%, rgba(42, 157, 143, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 12% 80%, rgba(231, 111, 81, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.careers-hero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.careers-hero__inner .h1 {
  margin: 14px 0 24px;
}

.careers-hero__inner .h1 .accent {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-highlight) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.careers-hero__inner .lead {
  margin: 0 auto 32px;
}

.careers-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.meta-pill__d {
  font-size: 14px;
}

.why-join {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 880px) {
  .why-join { grid-template-columns: 1fr; }
}

.why-join__item {
  text-align: center;
  padding: 28px 24px;
}

.why-join__icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(10, 31, 68, 0.08), 0 2px 4px rgba(10, 31, 68, 0.04);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-join__item:hover .why-join__icon {
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 14px 28px rgba(10, 31, 68, 0.12), 0 4px 8px rgba(10, 31, 68, 0.06);
}
.why-join__icon--svg svg {
  width: 38px;
  height: 38px;
}

.why-join__item .h3 {
  margin-bottom: 10px;
}

.why-join__item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.section--positions {
  background: var(--bg-light);
}

.job-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  margin-bottom: 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent);
}

.job-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border-subtle);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.job-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.job-tag--loc {
  background: rgba(42, 157, 143, 0.08);
  color: var(--brand-accent-dark);
  border-color: rgba(42, 157, 143, 0.2);
}

.job-card__apply {
  flex-shrink: 0;
}

.job-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 720px) {
  .job-card__body { grid-template-columns: 1fr; }
}

.job-card__h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 10px;
}

.job-card__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-card__col li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}

.job-card__col li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
}

.field-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============ CS hours notice + chat toggle ============ */
.cs-hours-strip {
  text-align: center;
  padding: 12px 20px;
  background: rgba(42, 157, 143, 0.06);
  color: var(--brand-accent-dark);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(42, 157, 143, 0.12);
}

/* ============ Animation utilities ============ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Chat widget (FAB + centered modal) ============ */
.ql-chat {
  font-family: "Inter", "Noto Sans SC", "Noto Sans KR", -apple-system, sans-serif;
}

/* FAB stays bottom-right */
.ql-chat__fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-accent));
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(10, 31, 68, 0.28), 0 4px 10px rgba(10, 31, 68, 0.16);
  transition: transform 0.18s, box-shadow 0.18s;
}
.ql-chat__fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 44px rgba(10, 31, 68, 0.32);
}
.ql-chat__fab.has-unread::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  background: var(--brand-highlight);
  border: 2px solid #fff;
  border-radius: 50%;
  animation: ql-unread-pulse 1.5s infinite;
}
@keyframes ql-unread-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.ql-chat__fab-icon {
  font-size: 19px;
  line-height: 1;
}
.ql-chat__fab-text {
  line-height: 1;
}

.ql-chat.is-open .ql-chat__fab {
  display: none;
}

/* Backdrop overlay */
.ql-chat__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.22s ease-out;
}
.ql-chat.is-open .ql-chat__backdrop {
  display: block;
  opacity: 1;
}

/* Centered modal panel — hidden by default with display:none for robustness */
.ql-chat__panel {
  display: none;          /* hard-hide; safer than opacity:0 alone */
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(440px, calc(100vw - 32px));
  height: min(640px, calc(100vh - 64px));
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(10, 31, 68, 0.35), 0 12px 28px rgba(10, 31, 68, 0.18);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ql-chat.is-open .ql-chat__panel {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 520px) {
  .ql-chat.is-open .ql-chat__panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: 0;
    top: 0;
    left: 0;
    transform: translate(0, 0) scale(1);
  }
}

.ql-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #15336a 100%);
  color: #fff;
}
.ql-chat__title {
  font-weight: 800;
  font-size: 15px;
}
.ql-chat__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}
.ql-chat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
}
.ql-chat__dot.is-on {
  background: #58d9aa;
  box-shadow: 0 0 0 0 rgba(88, 217, 170, 0.5);
  animation: ql-pulse 2s infinite;
}
.ql-chat__dot.is-off {
  background: #d1a85b;
}
@keyframes ql-pulse {
  0% { box-shadow: 0 0 0 0 rgba(88, 217, 170, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(88, 217, 170, 0); }
  100% { box-shadow: 0 0 0 0 rgba(88, 217, 170, 0); }
}
.ql-chat__close {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background 0.15s;
}
.ql-chat__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ql-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ql-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}
.ql-msg__from {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 3px;
  font-weight: 600;
  padding: 0 4px;
}
.ql-msg__bubble {
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.ql-msg__ts {
  font-size: 10px;
  color: var(--text-soft);
  margin-top: 2px;
  padding: 0 4px;
}

.ql-msg--you {
  align-self: flex-end;
  align-items: flex-end;
}
.ql-msg--you .ql-msg__bubble {
  background: var(--brand-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.ql-msg--them {
  align-self: flex-start;
  align-items: flex-start;
}
.ql-msg--them .ql-msg__bubble {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-bottom-left-radius: 4px;
}

.ql-msg--system {
  align-self: center;
  max-width: 90%;
}
.ql-msg--system .ql-msg__bubble {
  background: rgba(42, 157, 143, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(42, 157, 143, 0.18);
  font-size: 13px;
  text-align: center;
  border-radius: 10px;
}

.ql-chat__input {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
}
.ql-chat__input textarea {
  flex: 1;
  resize: none;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.4;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-light);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ql-chat__input textarea:focus {
  outline: 0;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
  background: #fff;
}
.ql-chat__send {
  background: var(--brand-dark);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.ql-chat__send:hover {
  background: #15336a;
}
.ql-chat__send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Footer chat link */
.footer__chat-link {
  color: var(--brand-accent) !important;
  font-weight: 600;
}
.footer__chat-link:hover {
  color: #fff !important;
}

/* Footer language switcher */
.footer__lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}
.footer__lang-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 9px 36px 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: background-color 0.15s, border-color 0.15s;
}
.lang-select:hover { background-color: rgba(255, 255, 255, 0.14); }
.lang-select:focus {
  outline: 0;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.18);
}
.lang-select option {
  background: var(--brand-darker);
  color: #fff;
}

/* Minimal footer (for apply page) */
.footer--minimal {
  padding: 32px 0 24px;
}
.footer--minimal .footer__lang {
  border-top: 0;
  padding-top: 8px;
}

/* Footer additions */
.footer__disclaimer {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
}

/* ============ CTA ============ */
.cta {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.cta::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--brand-accent), transparent 70%);
  top: -100px;
  right: -100px;
}

.cta::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--brand-highlight), transparent 70%);
  bottom: -100px;
  left: -100px;
}

.cta__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta .btn {
  font-size: 17px;
  padding: 16px 32px;
}

.cta__note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ Footer ============ */
.footer {
  background: var(--brand-darker);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 32px;
  font-size: 14px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 720px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer .brand__name {
  color: #fff;
}

.footer__tagline {
  margin-top: 12px;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.55;
}

.footer__col h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer__col p,
.footer__col a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer__col a:hover {
  color: var(--brand-accent);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ============ Apply page ============ */
.apply-page {
  background: var(--bg-light);
  min-height: 100vh;
  padding: 64px 0 100px;
}

.apply-page__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.apply-hero {
  text-align: center;
  margin-bottom: 40px;
}

.apply-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--brand-dark);
  margin-bottom: 14px;
  font-weight: 800;
}

.apply-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid var(--border-subtle);
}

@media (max-width: 600px) {
  .apply-card {
    padding: 28px 20px;
  }
}

.fieldset {
  margin-bottom: 32px;
}

.fieldset__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

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

.field-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
  .field-row,
  .field-row--3 {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 16px;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: #fff;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field--required label::after {
  content: " *";
  color: var(--brand-highlight);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.submit-row .btn {
  padding: 16px 32px;
  font-size: 16px;
}

.submit-row .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.privacy-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.5;
}

/* ============ Result states ============ */
.result {
  text-align: center;
  padding: 40px 20px;
}

.result__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.result--success .result__icon {
  background: rgba(42, 157, 143, 0.15);
  color: var(--brand-accent);
}

.result--error .result__icon {
  background: rgba(231, 111, 81, 0.15);
  color: var(--brand-highlight);
}

.result h2 {
  font-size: 1.6rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
  font-weight: 800;
}

.result p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============ Utility ============ */
.hidden { display: none !important; }

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