/* =============================================================
   Polisystem — Landing / Public Pages Stylesheet
   Light theme, professional, human-first design
   ============================================================= */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:        #1a2b4a;
  --navy-mid:    #243660;
  --teal:        #00897b;
  --teal-light:  #e0f2f1;
  --teal-dark:   #00695c;
  --accent:      #f59e0b;
  --bg:          #f8fafc;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-sm:   0 1px 6px rgba(0,0,0,.06);
  --font:        'Inter','Segoe UI',system-ui,sans-serif;
}

/* ── Base Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; }

/* ── Utility ──────────────────────────────────────────────────── */
.text-navy   { color: var(--navy) !important; }
.text-teal   { color: var(--teal) !important; }
.text-muted  { color: var(--text-muted) !important; }
.bg-navy     { background: var(--navy) !important; }
.bg-teal     { background: var(--teal) !important; }
.bg-teal-light{ background: var(--teal-light) !important; }
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: .5rem;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--navy); line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin-bottom: 0;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary-navy {
  background: var(--navy); color: #fff;
  border: 2px solid var(--navy);
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary-navy:hover {
  background: #111e34; border-color: #111e34;
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(26,43,74,.3);
}
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-navy:hover {
  background: var(--navy); color: #fff; transform: translateY(-1px);
}
.btn-teal-solid {
  background: var(--teal); color: #fff;
  border: 2px solid var(--teal);
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-teal-solid:hover {
  background: var(--teal-dark); border-color: var(--teal-dark);
  color: #fff; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,137,123,.3);
}

/* ── Navbar ──────────────────────────────────────────────────── */
.landing-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 800; font-size: 1.25rem; color: var(--navy);
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 36px; }
.nav-logo .logo-name { color: var(--navy); }
.nav-logo .logo-accent { color: var(--teal); }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto; flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-muted); font-weight: 500; font-size: .9rem;
  padding: .4rem .85rem; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--navy); background: #f1f5f9; }
.nav-cta { display: flex; align-items: center; gap: .75rem; margin-left: 1rem; }
.nav-btn-login {
  color: var(--navy); font-weight: 600; font-size: .9rem;
  padding: .4rem .9rem; border-radius: 8px;
  transition: background .15s;
}
.nav-btn-login:hover { background: #f1f5f9; color: var(--navy); }
.nav-btn-register {
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: .9rem;
  padding: .45rem 1.1rem; border-radius: 50px;
  transition: all .2s;
}
.nav-btn-register:hover { background: #111e34; color: #fff; }
.nav-hamburger {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: var(--navy); cursor: pointer;
  margin-left: auto;
}
.nav-mobile-menu {
  display: none; flex-direction: column;
  padding: 1rem 1.5rem 1.5rem; gap: .5rem;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text); font-weight: 500; padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 50%, #0d5c4e 100%);
  color: #fff;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,137,123,.2); border: 1px solid rgba(0,137,123,.4);
  color: #4db6ac; font-size: .8rem; font-weight: 600;
  padding: .35rem .85rem; border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.25rem; color: #fff;
}
.hero h1 .highlight { color: #4db6ac; }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-val { font-size: 1.5rem; font-weight: 800; color: #4db6ac; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .1rem; }
/* Dashboard mockup illustration */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-mockup {
  background: #fff; border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden; width: 100%; max-width: 480px;
}
.mockup-bar {
  background: #f1f5f9; padding: .6rem .8rem;
  display: flex; align-items: center; gap: .45rem;
  border-bottom: 1px solid #e2e8f0;
}
.mockup-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.mockup-bar-title {
  font-size: .72rem; color: #94a3b8;
  font-weight: 500; margin-left: .5rem;
}
.mockup-body { padding: 1rem; }
.mockup-heading { font-size: .8rem; font-weight: 700; color: #1e293b; margin-bottom: .75rem; }
.mockup-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
  margin-bottom: .75rem;
}
.mockup-stat-card {
  background: linear-gradient(135deg, var(--navy), #1e3a6e);
  border-radius: 8px; padding: .6rem .7rem;
}
.mockup-stat-card.teal {
  background: linear-gradient(135deg, var(--teal), #004d40);
}
.mockup-stat-card.amber {
  background: linear-gradient(135deg, #d97706, #92400e);
}
.mockup-stat-v { font-size: .95rem; font-weight: 800; color: #fff; }
.mockup-stat-l { font-size: .58rem; color: rgba(255,255,255,.7); margin-top: .1rem; }
.mockup-table-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: .5rem; padding: .4rem .5rem;
  background: #f8fafc; border-radius: 6px;
  font-size: .62rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: .35rem;
}
.mockup-table-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: .5rem; padding: .4rem .5rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: .65rem; color: #334155;
}
.badge-active { background: #dcfce7; color: #16a34a; padding: .15rem .4rem; border-radius: 4px; font-weight: 600; }
.badge-lapsed { background: #fef9c3; color: #92400e; padding: .15rem .4rem; border-radius: 4px; font-weight: 600; }

/* ── Trust Bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
}
.trust-item i { font-size: 1rem; color: var(--teal); }

/* ── Section wrapper ──────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--bg); }
.section-white { background: var(--surface); }
.section-navy { background: var(--navy); }
.text-center-block { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }

/* ── Features Grid ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--teal);
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.feature-card p  { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── How It Works ─────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; position: relative;
}
.step-card { text-align: center; padding: 1rem; }
.step-number {
  width: 56px; height: 56px;
  background: var(--navy); color: #fff;
  border-radius: 50%; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step-card p  { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pricing-card.popular {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,137,123,.12);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .3rem .85rem;
  border-radius: 50px; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: .5rem; }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; }
.pricing-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: super; }
.pricing-period { font-size: .8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.pricing-features li {
  font-size: .875rem; padding: .4rem 0;
  display: flex; align-items: center; gap: .5rem; color: var(--text);
}
.pricing-features li i { color: var(--teal); font-size: .9rem; }
.pricing-features li.disabled { color: var(--text-muted); }
.pricing-features li.disabled i { color: #d1d5db; }
.pricing-btn {
  display: block; text-align: center; width: 100%;
  padding: .75rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem;
  transition: all .2s;
}
.pricing-btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.pricing-btn-outline:hover { border-color: var(--navy); color: var(--navy); background: #f8fafc; }
.pricing-btn-solid {
  background: var(--teal); color: #fff; border: 2px solid var(--teal);
}
.pricing-btn-solid:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  position: relative;
}
.testimonial-quote {
  font-size: 2.5rem; color: var(--teal-light); line-height: 1;
  font-family: Georgia, serif; margin-bottom: .25rem;
}
.testimonial-text {
  font-size: .92rem; color: var(--text); line-height: 1.7;
  margin-bottom: 1.25rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: .85rem; letter-spacing: .05em; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .75rem; overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-weight: 600; color: var(--navy); font-size: .95rem;
  background: var(--surface); user-select: none;
  gap: 1rem;
}
.faq-question .faq-arrow {
  font-size: .85rem; color: var(--text-muted); flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 1.25rem 1.25rem;
  font-size: .9rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 60%, #0d5c4e 100%);
  border-radius: 24px; padding: 4rem 2rem; text-align: center; color: #fff;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 1rem; color: #fff; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────── */
.landing-footer {
  background: var(--navy); color: rgba(255,255,255,.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-wrap { margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-col h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .875rem; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 0 0 1.5rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: #fff; }
.fsca-note {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .75rem 1rem;
  font-size: .75rem; color: rgba(255,255,255,.55);
  margin-top: 1.5rem;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 4rem 1.25rem 3rem; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero h1 { font-size: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .section { padding: 3.5rem 1.25rem; }
}

/* ── Registration Wizard ──────────────────────────────────────── */
.reg-page {
  min-height: 100vh;
  background: var(--bg);
  padding: 2rem 1rem;
}
.reg-card {
  max-width: 860px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.reg-header {
  background: linear-gradient(135deg, var(--navy), #1e3a6e);
  padding: 2rem 2rem 1.5rem; color: #fff;
}
.reg-header h1 { font-size: 1.4rem; font-weight: 800; margin-bottom: .25rem; color: #fff; }
.reg-header p  { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.reg-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; }
.reg-logo-icon {
  width: 38px; height: 38px;
  background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; font-weight: 800;
}
.reg-logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; }
.reg-logo-text span { color: #4db6ac; }

/* Stepper */
.stepper {
  display: flex; gap: 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.step-tab {
  flex: 1; min-width: 0;
  padding: .85rem .5rem; text-align: center;
  font-size: .78rem; font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .2s, border-color .2s;
}
.step-tab.active { color: var(--navy); border-bottom-color: var(--teal); background: #fff; }
.step-tab.done   { color: var(--teal); }
.step-tab-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; font-size: .72rem;
  background: var(--border); color: var(--text-muted);
  margin-bottom: .25rem; font-weight: 700;
}
.step-tab.active .step-tab-num { background: var(--teal); color: #fff; }
.step-tab.done .step-tab-num   { background: var(--teal-light); color: var(--teal); }

.reg-body { padding: 2.35rem 2.5rem; }
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.step-desc  { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-label { font-size: .82rem; font-weight: 600; color: #374151; margin-bottom: .35rem; }
.form-control, .form-select {
  border-radius: 8px; border: 1.5px solid var(--border);
  font-size: .875rem; padding: .55rem .8rem;
  transition: border-color .15s, box-shadow .15s;
}
.reg-body .form-control, .reg-body .form-select {
  min-height: 50px;
  font-size: .95rem;
  padding: .72rem .95rem;
}
.reg-body textarea.form-control { min-height: 100px; resize: vertical; }
.reg-body .row > [class*="col-"] { min-width: 0; }
.form-control:focus, .form-select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,137,123,.12); outline: none;
}
.form-hint { font-size: .75rem; color: var(--text-muted); margin-top: .3rem; }
.required-star { color: #ef4444; }
.field-error { font-size: .75rem; color: #dc2626; margin-top: .3rem; }

/* Plan cards in wizard */
.plan-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; }
.plan-card-radio { cursor: pointer; }
.plan-card-radio input[type="radio"] { display: none; }
.plan-card-inner {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center;
  transition: border-color .15s, box-shadow .15s;
}
.plan-card-radio input[type="radio"]:checked + .plan-card-inner {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,137,123,.12);
  background: var(--teal-light);
}
.plan-card-radio:hover .plan-card-inner { border-color: var(--teal); }
.plan-card-name { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .4rem; }
.plan-card-price { font-size: 1.4rem; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-card-price sup { font-size: .7rem; }
.plan-card-period { font-size: .72rem; color: var(--text-muted); margin-bottom: .5rem; }
.plan-card-trial { font-size: .68rem; font-weight: 600; color: var(--teal); background: var(--teal-light); padding: .2rem .5rem; border-radius: 50px; }

/* Review panel */
.review-group { margin-bottom: 1.25rem; }
.review-group-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: .5rem; }
.review-row { display: flex; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.review-row:last-child { border-bottom: none; }
.review-label { color: var(--text-muted); flex: 0 0 140px; }
.review-value { color: var(--navy); font-weight: 600; word-break: break-word; }

/* Wizard nav */
.wizard-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem; border-top: 1px solid var(--border);
  background: #f8fafc;
}
.wizard-nav .step-info { font-size: .8rem; color: var(--text-muted); }

/* Success screen */
.success-screen { text-align: center; padding: 3rem 1rem; }
.success-icon {
  width: 80px; height: 80px;
  background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #16a34a; margin: 0 auto 1.5rem;
}
.success-screen h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.success-screen p { color: var(--text-muted); font-size: .95rem; max-width: 420px; margin: 0 auto 2rem; line-height: 1.7; }

/* Alert box */
.alert-box {
  border-radius: var(--radius); padding: .9rem 1.1rem;
  font-size: .875rem; margin-bottom: 1.25rem; display: flex; gap: .6rem;
}
.alert-box i { flex-shrink: 0; margin-top: .1rem; }
.alert-danger  { background: #fef2f2; color: #991b1b; border-left: 4px solid #dc2626; }
.alert-success { background: #f0fdf4; color: #166534; border-left: 4px solid #16a34a; }

/* Password strength */
.pw-strength { margin-top: .4rem; }
.pw-strength-bar { height: 4px; border-radius: 4px; background: #e2e8f0; overflow: hidden; margin-bottom: .25rem; }
.pw-strength-fill { height: 100%; border-radius: 4px; transition: width .3s, background .3s; }
.pw-strength-text { font-size: .7rem; font-weight: 600; }
