@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary:      #0F766E;
  --primary-dk:   #0C5F57;
  --primary-soft: #DDF7F2;
  --primary-mid:  #5EEAD4;
  --bg:           #F7F8FA;
  --surface:      #FFFFFF;
  --text:         #111827;
  --text-sec:     #4B5563;
  --text-muted:   #9CA3AF;
  --border:       #E5E7EB;
  --dark:         #0F172A;
  --success:      #10B981;
  --danger:       #EF4444;
  --warning:      #F59E0B;
}

*, *::before, *::after { box-sizing: border-box; }

body.landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  /* 한글이 글자 단위로 쪼개지지 않도록 어절(띄어쓰기) 단위로만 줄바꿈.
     긴 URL 등은 last-resort로만 끊기게 overflow-wrap 병행 */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 제목은 줄 길이를 고르게 분배해 외톨이 음절(예: "세요")을 줄임 */
.landing h1, .landing h2, .landing h3 { text-wrap: balance; }

.landing a:not(.btn):not([class*="btn-"]) { color: var(--primary); }

/* ─── Header ─────────────────────────────────────────── */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.landing-header .container {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.landing-logo i { font-size: 1.1rem; }
.landing-nav { display: flex; align-items: center; gap: 2rem; }
.landing-nav a {
  color: var(--text-sec);
  font-weight: 500;
  font-size: .925rem;
  text-decoration: none;
  transition: color .15s;
}
.landing-nav a:hover { color: var(--primary); }

.btn-cta {
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 8px;
  padding: .5rem 1.1rem;
  border: none;
  text-decoration: none;
  transition: background .15s;
}
.btn-cta:hover { background: var(--primary-dk); }
.btn-cta.dropdown-toggle::after { vertical-align: middle; }

.landing-login {
  color: var(--text-sec) !important;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  padding: .5rem .75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s;
}
.landing-login:hover { border-color: var(--primary); color: var(--primary) !important; }

.text-teal { color: var(--primary) !important; }
.text-pink  { color: #EC4899 !important; }

/* ─── Hero Brand ─────────────────────────────────────── */
.hero-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .75rem;
}
.hero-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  flex-shrink: 0;
}
.hero-brand-name {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
}

/* ─── CTA Brand Icon ─────────────────────────────────── */
.cta-brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 1.25rem;
}

@media (max-width: 767px) {
  .hero-brand-icon { width: 48px; height: 48px; }
  .hero-brand-name { font-size: 1.2rem; }
  .cta-brand-icon  { width: 56px; height: 56px; }
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg) 60%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1.5rem; }   /* 모바일에서도 대시보드 미리보기 표시 */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
  font-size: .8rem;
  border-radius: 999px;
  padding: .3rem .85rem;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
}
.hero .hero-sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 1.75rem;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-hero-primary:hover { background: var(--primary-dk); color: #fff; transform: translateY(-1px); }
.btn-hero-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: .78rem 1.5rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-hero-outline:hover { background: var(--primary); color: #fff; }

/* ── Hero Visual (Dashboard Mockup) ──────────────────── */
.hero-visual {
  position: relative;
}
.dash-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dash-card-header {
  background: var(--bg);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-card-header .title { font-weight: 700; font-size: .9rem; color: var(--text); }
.dash-card-header .date  { font-size: .8rem; color: var(--text-muted); }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 1rem 1.25rem;
}
.dash-stat {
  background: var(--bg);
  border-radius: 10px;
  padding: .75rem;
}
.dash-stat .val  { font-weight: 800; font-size: 1.25rem; line-height: 1; margin-bottom: .2rem; }
.dash-stat .lbl  { font-size: .75rem; color: var(--text-muted); }
.dash-stat.green .val { color: var(--success); }
.dash-stat.red   .val { color: var(--danger); }
.dash-stat.gold  .val { color: var(--warning); }

.dash-rows { padding: 0 1.25rem .75rem; }
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem .75rem;
  border-radius: 8px;
  margin-bottom: .35rem;
}
.dash-row:nth-child(odd) { background: var(--bg); }
.dash-row-left  { display: flex; align-items: center; gap: .6rem; }
.dash-row-dot   { width: 9px; height: 9px; border-radius: 50%; }
.dash-row-dot.on  { background: var(--success); }
.dash-row-dot.off { background: var(--border); }
.dash-row-name  { font-weight: 600; font-size: .875rem; color: var(--text); }
.dash-row-time  { font-size: .775rem; color: var(--text-muted); }
.dash-row-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 999px;
}
.dash-row-badge.on     { background: #D1FAE5; color: #065F46; }
.dash-row-badge.warn   { background: #FEF3C7; color: #92400E; }
.dash-row-badge.danger { background: #FEE2E2; color: #991B1B; }
.dash-row-badge.off { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }
.dash-row-dot.warn { background: var(--warning); }

.dash-check-note {
  margin: 0 1.25rem 1.25rem;
  font-size: .75rem;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: .4rem;
  line-height: 1.5;
}
.dash-check-note i { color: var(--primary); }

.dash-pay-summary {
  margin: 0 1.25rem 1.25rem;
  background: var(--primary-soft);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-pay-summary .pay-label { font-size: .8rem; color: var(--primary); font-weight: 500; }
.dash-pay-summary .pay-val   { font-weight: 900; font-size: 1.4rem; color: var(--primary); margin-top: .15rem; }
.dash-pay-summary .pay-note  { font-size: .75rem; color: var(--primary); opacity: .75; }
.dash-pay-summary .badge-wrap{ text-align: right; }

/* ─── Sections ───────────────────────────────────────── */
.landing-section      { padding: 5rem 0; }
.landing-section.alt  { background: var(--bg); }
.landing-section.dark {
  background: var(--dark);
  color: #fff;
}

.section-eyebrow {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  text-align: center;
  color: var(--text);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.section-lead {
  text-align: center;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── Pain Points ────────────────────────────────────── */
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
}
.pain-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: #FEF3C7;
  color: var(--warning);
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.pain-card p { font-weight: 600; font-size: .95rem; color: var(--text); margin: 0; line-height: 1.5; }
.pain-sub { display: block; margin-top: .45rem; font-weight: 400; font-size: .85rem; color: var(--text-sec); line-height: 1.6; }

/* ─── Feature Cards ──────────────────────────────────── */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,118,110,.1);
  border-color: var(--primary-mid);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.feature-card p { color: var(--text-sec); font-size: .9rem; line-height: 1.65; margin: 0; }

/* ─── Role Split ─────────────────────────────────────── */
.role-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) { .role-split { grid-template-columns: 1fr; } }

.role-panel { padding: 4rem; }
@media (max-width: 991px) { .role-panel { padding: 3rem 2rem; } }

.role-panel.owner    { background: var(--primary); }
.role-panel.employee { background: var(--primary-soft); }

.role-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.role-panel.owner    .role-label { color: rgba(255,255,255,.7); }
.role-panel.employee .role-label { color: var(--primary); }

.role-panel h3 {
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.role-panel.owner    h3 { color: #fff; }
.role-panel.employee h3 { color: var(--text); }

.role-panel .role-desc {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.role-panel.owner    .role-desc { color: rgba(255,255,255,.8); }
.role-panel.employee .role-desc { color: var(--text-sec); }

.role-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.role-list li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .9rem;
  font-weight: 500;
}
.role-list li::before {
  content: '';
  position: absolute; left: 0; top: .75rem;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.role-panel.owner    .role-list li { color: rgba(255,255,255,.9); }
.role-panel.owner    .role-list li::before { background: var(--primary-mid); }
.role-panel.employee .role-list li { color: var(--text-sec); }
.role-panel.employee .role-list li::before { background: var(--primary); }

.btn-role-owner {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn-role-owner:hover { background: var(--primary-soft); color: var(--primary); transform: translateY(-1px); }

.btn-role-employee {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  padding: .72rem 1.5rem;
  text-decoration: none;
  transition: background .15s, color .15s, transform .1s;
}
.btn-role-employee:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

/* ─── How It Works ───────────────────────────────────── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 767px) { .step-grid { grid-template-columns: 1fr 1fr; } }

.step-item { text-align: center; position: relative; }
.step-num-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: linear-gradient(to right, var(--primary-mid), var(--border));
}
.step-item:last-child .step-connector { display: none; }
.step-item h5 { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: .4rem; }
.step-item p  { font-size: .875rem; color: var(--text-sec); line-height: 1.6; margin: 0; }

/* ─── Pricing ────────────────────────────────────────── */
.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .15s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.plan-name {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}
.plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: .25rem;
  line-height: 1.1;
}
.plan-price-note { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-divider { border-top: 1px solid var(--border); margin: 1.5rem 0; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; flex: 1 0 auto; }
.plan-card li {
  padding: .45rem 0 .45rem 1.6rem;
  position: relative;
  font-size: .9rem;
  color: var(--text-sec);
}
.plan-card li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute; left: 0;
  color: var(--primary);
  font-size: .9rem;
}
.plan-badge {
  display: inline-block;
  align-self: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: .75rem;
  border-radius: 999px;
  padding: .2rem .85rem;
  margin-bottom: 1.5rem;
}
.plan-badge.muted { background: var(--bg); color: var(--text-muted); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: 12px !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface);
  border-radius: 12px !important;
  padding: 1.1rem 1.25rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg);
  color: var(--primary);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after {
  filter: none;
  background-size: 14px;
}
.faq-accordion .accordion-body {
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.7;
  padding: 1rem 1.25rem 1.25rem;
}

/* ─── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0C6B63 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 2rem;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-cta-white:hover { background: var(--primary-soft); transform: translateY(-2px); }

/* ─── Footer ─────────────────────────────────────────── */
.landing-footer {
  background: var(--dark);
  color: #94A3B8;
}
.landing-footer .footer-top {
  padding: 3.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand { max-width: 260px; }
.footer-brand .logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  display: flex; align-items: center; gap: .35rem;
  margin-bottom: .6rem;
}
.footer-brand .logo i { color: var(--primary-mid); }
.footer-brand p { font-size: .85rem; color: #64748B; line-height: 1.6; margin: 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-links a {
  font-size: .875rem;
  color: #64748B;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom span { font-size: .825rem; color: #475569; }

/* ─── Product Preview ───────────────────────────────── */
.product-carousel { max-width: 960px; margin: 0 auto; padding-bottom: 44px; }
.product-carousel-inner { border-radius: 0 0 16px 16px; }
.carousel-indicators { bottom: -40px; }
.carousel-indicators [data-bs-target] {
  width: 8px; height: 8px; border-radius: 50%;
  background-color: var(--primary); opacity: .35;
}
.carousel-indicators .active { opacity: 1; }
#ssCarousel .carousel-control-prev,
#ssCarousel .carousel-control-next {
  width: 48px !important; height: 48px !important;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.96);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  border: 1.5px solid rgba(0,0,0,.08);
  opacity: 1 !important;
  z-index: 10;
  position: absolute;
}
#ssCarousel .carousel-control-prev { left: 16px !important; }
#ssCarousel .carousel-control-next { right: 16px !important; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0);
  width: 20px; height: 20px;
}
.product-window {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15,23,42,.14), 0 4px 20px rgba(15,23,42,.08);
  border: 1px solid var(--border);
}
.product-chrome {
  background: #F1F5F9;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: .75rem;
  border-bottom: 1px solid var(--border);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dot { width: 12px; height: 12px; border-radius: 50%; }
.chrome-red    { background: #FF5F57; }
.chrome-yellow { background: #FEBC2E; }
.chrome-green  { background: #28C840; }
.chrome-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--text-muted);
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product-viewport { overflow: hidden; position: relative; background: #F7F8FA; }
/* 스크린샷 뷰포트: 고정 높이 + absolute 이미지로 마진 크롭 */
.product-viewport-ss {
  position: relative;
  height: 530px;
  overflow: hidden;
  background: #F7F8FA;
}
.product-ss-img {
  position: absolute !important;
  top: 0;
  left: 50%;
  width: 100% !important;
  max-width: none !important;
  height: auto;
  transform: translateX(-50%);
  display: block;
  border: none;
}
@media (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next { display: none; }
  /* 모바일: 전용 크롭 이미지(900x526, 1.71:1)를 그대로 채움 — 축소 없이 선명하게 */
  .product-viewport-ss { height: auto; aspect-ratio: 900 / 526; }
  .product-ss-img {
    position: static !important;
    transform: none;
    width: 100% !important;
  }
}

/* ─── Signup / forms ─────────────────────────────────── */
.signup-wrap { max-width: 920px; }
.signup-form-wrap { max-width: 520px; }
.choice-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  height: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s;
  text-decoration: none;
  display: block;
}
.choice-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(15,118,110,.1);
  transform: translateY(-3px);
}
.choice-card .choice-icon {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: .75rem;
}
.choice-card.employee .choice-icon { color: #EC4899; }
.choice-card h4 { font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.choice-card p  { color: var(--text-sec); font-size: .9rem; margin: 0; }

.step-indicator { display: flex; gap: .5rem; justify-content: center; margin-bottom: 1.75rem; }
.step-dot {
  display: flex; align-items: center; gap: .4rem;
  color: var(--text-muted); font-weight: 600; font-size: .875rem;
}
.step-dot .num {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--text-muted); font-size: .85rem; font-weight: 700;
}
.step-dot.active { color: var(--primary); }
.step-dot.active .num { background: var(--primary); color: #fff; }

.btn-form-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: .7rem 1.25rem;
  transition: background .15s;
}
.btn-form-primary:hover { background: var(--primary-dk); color: #fff; }

/* Auth layout */
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
