/* =========================================================
   COMP.TESTE — style.css
   ========================================================= */

/* ----- CSS Custom Properties ----- */
:root {
  --navy:        #0B1F5B;
  --navy-dark:   #071440;
  --navy-light:  #1a3580;
  --gold:        #C9A84C;
  --gold-light:  #E8C56A;
  --gold-dark:   #A8862A;
  --white:       #FFFFFF;
  --bg-light:    #F4F6FA;
  --text-dark:   #1A1A2E;
  --text-muted:  #6E7891;
  --success:     #10B981;
  --warning:     #F59E0B;
  --critical:    #EF4444;
  --border:      #E2E8F0;
  --shadow:      0 4px 24px rgba(11, 31, 91, 0.10);
  --shadow-lg:   0 8px 48px rgba(11, 31, 91, 0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ----- Container ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Section base ----- */
.section { padding: 88px 0; }

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--sm  { padding: 9px 20px;  font-size: 0.82rem; }
.btn--lg  { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
  padding: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-link:hover { color: var(--navy); text-decoration: underline; }

/* ----- Navbar ----- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-main { color: var(--white); letter-spacing: 0.06em; }
.logo-by   { color: rgba(255,255,255,0.45); font-size: 0.7em; font-weight: 500; margin: 0 0.18em; letter-spacing: 0; }
.logo-brand{ color: var(--gold); letter-spacing: 0.1em; }
.navbar.scrolled .logo-main  { color: var(--navy); }
.navbar.scrolled .logo-by    { color: rgba(11,31,91,0.45); }
.navbar.scrolled .logo-brand { color: var(--gold-dark); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-lang {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 7px 14px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-lang:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}
.navbar.scrolled .btn-lang {
  color: var(--navy);
  background: var(--bg-light);
  border-color: var(--border);
}
.navbar.scrolled .btn-lang:hover {
  background: var(--border);
}

/* Navbar CTA adjusts on scroll */
.navbar.scrolled .btn--gold {
  /* remains gold, always good */
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Decorative shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape--circle-lg {
  width: 700px; height: 700px;
  background: var(--gold);
  top: -200px; right: -200px;
}
.shape--circle-sm {
  width: 300px; height: 300px;
  background: var(--white);
  bottom: -100px; left: -80px;
}
.shape--ring {
  width: 400px; height: 400px;
  border: 40px solid var(--gold);
  background: transparent;
  opacity: 0.04;
  bottom: 40px; right: 15%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.hero__text {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  white-space: nowrap;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__ctas .btn {
  flex: 1;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  align-self: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
  gap: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}
.hero__stat:first-child { padding-left: 0; }

.hero__stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ----- How It Works ----- */
.how-it-works { background: var(--bg-light); }

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  flex: 1;
  max-width: 300px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
}

.step-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  padding: 0 20px;
  flex-shrink: 0;
}

/* ----- Checker Section ----- */
.checker-section { background: var(--white); }

.checker-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.checker-step { padding: 48px; }

.checker-step__title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}

.checker-step__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

/* Regulations Grid */
.regulations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reg-card {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 24px;
  position: relative;
  transition: var(--transition);
  background: var(--white);
  overflow: hidden;
}

.reg-card--active {
  cursor: pointer;
}
.reg-card--active:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  transform: translateY(-3px);
}
.reg-card--active:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.reg-card--soon {
  opacity: 0.62;
  cursor: not-allowed;
  background: var(--bg-light);
}
.reg-card--soon:hover {
  opacity: 0.75;
}

.reg-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 10px;
}

.reg-badge--available {
  background: #D1FAE5;
  color: #065F46;
}

.reg-badge--soon {
  background: #F3F4F6;
  color: #6B7280;
}

.reg-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}
.reg-card--soon .reg-icon {
  background: linear-gradient(135deg, #94A3B8, #CBD5E1);
}

.reg-name {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.reg-card--soon .reg-name { color: var(--text-muted); }

.reg-fullname {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.reg-card--soon .reg-fullname { color: var(--text-muted); }

.reg-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Geographic scope indicator */
.reg-scope {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  font-size: 0.70rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.reg-scope i { font-size: 0.65rem; }
.reg-scope__note {
  font-weight: 500;
  opacity: 0.72;
  letter-spacing: 0.02em;
  text-transform: none;
}
.reg-scope--eu {
  background: rgba(0, 51, 153, 0.08);
  color: #003399;
}
.reg-scope--pt {
  background: rgba(0, 99, 32, 0.09);
  color: #006320;
}
.reg-scope--pt-dir {
  background: rgba(0, 99, 32, 0.09);
  color: #006320;
}
.reg-card--soon .reg-scope { opacity: 0.45; }

.reg-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}
.reg-card--active:hover .reg-cta { gap: 10px; }

.reg-coming-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ----- Questionnaire ----- */
.questionnaire-header {
  margin-bottom: 36px;
}

.questionnaire-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.btn-back,
.questionnaire-back {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 6px 0;
}
.btn-back:hover,
.questionnaire-back:hover { color: var(--navy); }

.questionnaire-reg-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-light);
  border-radius: 100px;
  padding: 5px 14px;
}
.questionnaire-reg-label i { color: var(--gold); }

.progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.progress-bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 100px;
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  min-width: 36px;
}

/* Question area */
.question-area { animation: fadeInUp 0.35s ease; }

.question-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.question-num {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.question-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.question-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.question-hint {
  font-size: 0.83rem;
  color: var(--text-muted);
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 14px;
  line-height: 1.55;
}

/* Boolean (Yes/No) */
.bool-options {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bool-btn {
  flex: 1;
  min-width: 120px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bool-btn:hover {
  border-color: var(--navy);
  background: rgba(11,31,91,0.04);
  transform: translateY(-2px);
}
.bool-btn.bool-btn--yes:hover { border-color: var(--success); background: rgba(16,185,129,0.06); }
.bool-btn.bool-btn--no:hover { border-color: var(--critical); background: rgba(239,68,68,0.05); }

/* Single choice / multiselect cards */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.choice-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.choice-card:hover {
  border-color: var(--navy-light);
  background: rgba(11,31,91,0.03);
  transform: translateY(-1px);
}
.choice-card.selected {
  border-color: var(--navy);
  background: rgba(11,31,91,0.06);
}
.choice-card.selected .choice-indicator {
  background: var(--navy);
  border-color: var(--navy);
}
.choice-card.selected .choice-indicator::after { opacity: 1; }

.choice-indicator {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choice-indicator::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

/* Multiselect uses square indicator */
.choice-card--multi .choice-indicator {
  border-radius: 5px;
}
.choice-card--multi.selected .choice-indicator::after {
  content: '\2713';
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  border-radius: 0;
  background: none;
  opacity: 1;
}

.choice-text { flex: 1; }
.choice-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}
.choice-sublabel {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}

/* Continue button for multi-choice */
.btn-continue-wrap {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

/* ----- Results ----- */
.result-wrap { animation: fadeInUp 0.4s ease; }

.result-header {
  text-align: center;
  padding: 24px 0 32px;
}

.result-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
}
.result-icon--success { background: #D1FAE5; color: var(--success); }
.result-icon--warning { background: #FEF3C7; color: var(--warning); }

.result-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.result-title--success { color: var(--success); }
.result-title--warning { color: var(--navy); }

.result-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.65;
}

.result-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Action Points */
.action-points { margin-top: 36px; }

.action-points__title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.action-item:hover { box-shadow: var(--shadow); }

.action-item__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1.6;
}

.action-item__body { flex: 1; }

.action-item__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.action-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.priority-badge {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 2px 8px;
}
.priority-badge--critical { background: #FEE2E2; color: #B91C1C; }
.priority-badge--high     { background: #FEF3C7; color: #92400E; }
.priority-badge--medium   { background: #DBEAFE; color: #1E40AF; }

.action-item__desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Sample banner */
.sample-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF7E6;
  border: 1px solid #F6C06A;
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #92400E;
  flex-wrap: wrap;
}
.sample-banner i { color: var(--gold); flex-shrink: 0; }
.sample-banner__count { font-weight: 700; }
.sample-banner__cta-hint { margin-left: auto; font-style: italic; opacity: 0.85; }

/* Locked action items */
.action-item--locked {
  opacity: 0.6;
  background: #F9FAFB;
  cursor: default;
  pointer-events: none;
}
.action-item--locked:hover { box-shadow: none; }
.action-item--locked .action-item__icon { filter: grayscale(1); }
.action-item--locked .action-item__desc {
  font-style: italic;
  color: #9CA3AF;
}

/* Locked section upgrade CTA */
.locked-cta {
  margin-top: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--gold);
  background: #FFFBF0;
  text-align: center;
}
.locked-cta__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.locked-cta__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.locked-cta .btn { font-size: 0.85rem; padding: 9px 20px; }

/* Result actions */
.result-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.result-restart {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 14px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  transition: var(--transition);
}
.result-restart:hover { color: var(--navy); text-decoration: underline; }

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

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

.cta-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-card--navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  color: var(--white);
}

.cta-card--light {
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.cta-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
}
.cta-card__icon--navy {
  background: var(--bg-light);
  color: var(--navy);
}

.cta-card__title {
  font-size: 1.35rem;
  color: var(--white);
}
.cta-card__title--navy { color: var(--navy); }

.cta-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.cta-features li i {
  color: var(--success);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ----- Schedule Section ----- */
.schedule-section { background: var(--white); }

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Form */
.schedule-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 40px;
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,91,0.08);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--critical);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Checkbox */
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.checkbox-label:hover {
  border-color: var(--navy);
  background: var(--bg-light);
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
  background: var(--navy);
  border-color: var(--navy);
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
  opacity: 1;
}
.checkbox-label input[type="checkbox"]:checked ~ * {
  /* checked state visual cue via the label itself */
}
.checkbox-label:has(input:checked) {
  border-color: var(--navy);
  background: rgba(11,31,91,0.05);
}

.checkmark {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkmark::after {
  content: '\2713';
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.checkbox-label--inline {
  border: none;
  padding: 4px 0;
  background: transparent;
}
.checkbox-label--inline:hover { background: transparent; border: none; }

.link--gold { color: var(--gold-dark); font-weight: 600; }
.link--gold:hover { text-decoration: underline; }

/* Info Cards */
.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); }

.info-card--gold {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.35);
}

.info-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-card__icon--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.info-card h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- Footer ----- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: 4px;
}

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

.footer__col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer-link--active { color: var(--white) !important; font-weight: 600; }

.footer-link--soon {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tag-soon {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 2px 7px;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

.footer__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ----- Modal ----- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,20,64,0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.modal-overlay
/* Zoho Booking Embed */
.zoho-booking-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.zoho-booking-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

.hidden { display: none; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.modal__close:hover { background: var(--border); color: var(--text-dark); }

.modal__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.modal__title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Legitimate interest notice inside PDF modal */
.modal__notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f0f4ff;
  border-left: 3px solid var(--navy);
  border-radius: 6px;
  padding: 12px 14px;
  margin: 16px 0 4px;
}

.modal__notice > i {
  color: var(--navy);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal__notice p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.modal__notice a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Required star */
.required-star {
  color: #EF4444;
  margin-left: 2px;
}

/* Input error state */
.input--error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Field-level error message */
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #EF4444;
  margin-top: 4px;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ----- Toast ----- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 3000;
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 90vw;
  text-align: center;
  animation: slideUp 0.3s ease;
}
.toast.hidden { display: none; }
.toast--success .toast__icon { color: var(--success); }
.toast--error   .toast__icon { color: var(--critical); }
.toast__icon { font-size: 1.1rem; flex-shrink: 0; }

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ----- Animations ----- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Responsive: 768px ----- */
@media (max-width: 768px) {

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  /* Navbar */
  .navbar { padding: 14px 0; }
  .navbar__logo { font-size: 1.25rem; }
  .btn-lang { padding: 6px 11px; font-size: 0.72rem; }
  .navbar__actions .btn--sm { padding: 8px 14px; font-size: 0.78rem; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__text { display: flex; flex-direction: column; width: 100%; }
  .hero__title { font-size: 2rem; white-space: normal; }
  .hero__subtitle { font-size: 1rem; }
  .hero__ctas { gap: 10px; }
  .hero__stats { gap: 0; padding: 16px 20px; }
  .hero__stat { padding: 0 14px; }

  /* How it works */
  .steps-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .step-card { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding: 0; }

  /* Checker */
  .checker-step { padding: 28px 24px; }
  .regulations-grid { grid-template-columns: 1fr; }

  /* Choice grid */
  .choice-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 32px 28px; }

  /* Schedule */
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Result actions */
  .result-actions { flex-direction: column; }
  .result-actions .btn { width: 100%; justify-content: center; }
}

/* ----- Responsive: 480px ----- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: 1.7rem; white-space: normal; }
  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }
  .hero__stat-divider { width: 100%; height: 1px; }
  .hero__stat { padding: 0; }

  .section__title { font-size: 1.5rem; }

  .checker-step { padding: 20px 16px; }

  .schedule-form-wrap { padding: 20px 16px; }
  .checkbox-grid { flex-direction: column; }

  .footer__links { grid-template-columns: 1fr; }

  .modal { padding: 28px 20px; }

  .bool-options { flex-direction: column; }
  .bool-btn { width: 100%; }
}

/* ─────── DORA ROLE SELECTION ─────── */
.dora-role-header {
  text-align: center;
  margin-bottom: 2rem;
}
.dora-role-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.dora-role-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}
.dora-role-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}
.dora-role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .dora-role-grid { grid-template-columns: 1fr; }
}
.dora-role-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
  width: 100%;
}
.dora-role-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 18px rgba(11,31,91,0.12);
  transform: translateY(-2px);
}
.dora-role-card__icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(11,31,91,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}
.dora-role-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dora-role-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.dora-role-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.dora-role-card__arrow {
  flex-shrink: 0;
  color: var(--navy);
  opacity: 0.35;
  font-size: 0.9rem;
  transition: opacity 0.15s, transform 0.15s;
}
.dora-role-card:hover .dora-role-card__arrow {
  opacity: 0.9;
  transform: translateX(3px);
}

/* =========================================================
   SCREENER — Company Profile Diagnosis
   ========================================================= */

/* Full-width screener card in the regulation grid */
.reg-card--screener {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: var(--navy);
  color: var(--white);
}
.reg-card--screener .reg-card--screener__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.reg-card--screener__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.reg-card--screener__body { flex: 1; min-width: 0; }
.reg-card--screener .reg-name  { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.reg-card--screener .reg-desc  { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; }
.reg-card--screener .reg-cta   { color: var(--gold-light); gap: 8px; font-weight: 700; white-space: nowrap; }
.reg-card--screener:hover { border-color: var(--gold); box-shadow: 0 6px 28px rgba(11,31,91,0.28); transform: translateY(-3px); }
.reg-card--screener:hover .reg-cta { gap: 12px; }

/* Screener form */
.screener-form { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }

.screener-section {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  background: var(--bg-light);
}
.screener-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.screener-section__hint { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; margin-top: -10px; }

.screener-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.screener-field:last-child { margin-bottom: 0; }

.screener-label { font-size: 0.875rem; font-weight: 600; color: var(--navy); font-family: 'Montserrat', sans-serif; }

.screener-select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  width: 100%;
  max-width: 420px;
  transition: var(--transition);
  cursor: pointer;
}
.screener-select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,31,91,0.08); }
.screener-select.screener-error { border-color: var(--critical); }

.screener-radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.screener-radio {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; padding: 9px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  background: var(--white); transition: var(--transition); user-select: none;
}
.screener-radio input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.screener-radio__box {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.screener-radio input:checked ~ .screener-radio__box { border-color: var(--navy); background: var(--navy); box-shadow: inset 0 0 0 3px var(--white); }
.screener-radio:has(input:checked) { border-color: var(--navy); background: rgba(11,31,91,0.05); }
.screener-radio:hover { border-color: var(--navy-light); }
.screener-radio--error { border-color: var(--critical) !important; }

.screener-checks { display: flex; flex-direction: column; gap: 8px; }
.screener-check {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--white); transition: var(--transition); user-select: none;
}
.screener-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.screener-check__mark {
  width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; transition: var(--transition);
  font-size: 0.65rem; color: transparent;
}
.screener-check input:checked ~ .screener-check__mark { background: var(--navy); border-color: var(--navy); color: var(--white); }
.screener-check:has(input:checked) { border-color: var(--navy); background: rgba(11,31,91,0.04); }
.screener-check:hover { border-color: var(--navy-light); }
.screener-check__body { display: flex; flex-direction: column; gap: 2px; }
.screener-check__body strong { font-size: 0.88rem; color: var(--text-dark); font-weight: 600; }
.screener-check__body span   { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }

.screener-submit { margin-top: 8px; }

/* Screener result */
.screener-res-block { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.screener-res-block--na { opacity: 0.7; }
.screener-res-block__title {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--bg-light); border-bottom: 1.5px solid var(--border);
}
.screener-res-block__title--yes { color: var(--success); }
.screener-res-block__title--no  { color: var(--text-muted); }
.screener-res-count { margin-left: auto; background: var(--border); border-radius: 100px; padding: 2px 10px; font-size: 0.78rem; color: var(--text-dark); }
.screener-res-list { display: flex; flex-direction: column; }

.screener-reg-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: var(--white); flex-wrap: wrap;
}
.screener-reg-row:last-child { border-bottom: none; }
.screener-reg-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-light); display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--navy); flex-shrink: 0;
}
.screener-reg-row--no .screener-reg-icon { color: var(--text-muted); }
.screener-reg-body { flex: 1; min-width: 0; }
.screener-reg-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); font-family: 'Montserrat', sans-serif; }
.screener-reg-row--no .screener-reg-name { color: var(--text-muted); }
.screener-reg-oneliner { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin-top: 2px; }

.screener-reg-badge {
  font-size: 0.72rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.screener-reg-badge--yes { background: rgba(16,185,129,0.12); color: #059669; }
.screener-reg-badge--no  { background: var(--bg-light); color: var(--text-muted); }

.screener-detail-btn {
  font-size: 0.8rem; font-weight: 600; color: var(--gold-dark);
  background: none; border: 1.5px solid var(--gold); border-radius: 8px;
  padding: 6px 12px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.screener-detail-btn:hover { background: var(--gold); color: var(--white); }

.screener-start-all-wrap {
  text-align: center;
  margin: 24px 0 8px;
}
.screener-start-all-btn {
  font-size: 1rem;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.screener-disclaimer {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(245,158,11,0.08); border-left: 3px solid var(--warning);
  border-radius: 0 8px 8px 0; padding: 10px 14px;
  margin-top: 8px; line-height: 1.5;
}

.screener-result-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .reg-card--screener .reg-card--screener__inner { flex-direction: column; align-items: flex-start; }
  .screener-reg-row { gap: 10px; }
  .screener-detail-btn { font-size: 0.75rem; padding: 5px 10px; }
  .screener-result-actions { flex-direction: column; }
  .screener-result-actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   QUEUE NAVIGATION (shown at bottom of individual results)
   ========================================================= */
.queue-nav {
  margin-top: 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(11,31,91,0.04) 100%);
}
.queue-nav__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.queue-nav__label {
  font-size: 0.78rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark);
  display: flex; align-items: center; gap: 6px;
}
.queue-nav__count {
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg-light); border-radius: 100px; padding: 2px 10px;
}
.queue-nav__steps {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  margin-bottom: 16px;
}
.qstep {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; font-family: 'Montserrat', sans-serif;
  border: 1.5px solid var(--border); color: var(--text-muted);
  background: var(--white);
}
.qstep--done {
  border-color: var(--success); color: var(--success);
  background: rgba(16,185,129,0.07);
}
.qstep--current {
  border-color: var(--gold); color: var(--gold-dark);
  background: rgba(201,168,76,0.10);
}
.qstep-sep { font-size: 0.55rem; color: var(--text-muted); margin: 0 2px; }
.queue-nav__actions { display: flex; gap: 10px; }

/* Screener result — checkbox on applicable rows */
.screener-reg-check-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 26px; flex-shrink: 0; cursor: pointer;
}
.screener-reg-check-wrap input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.screener-reg-check__box {
  width: 20px; height: 20px; border-radius: 5px;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: transparent; transition: var(--transition);
}
.screener-reg-check-wrap input:checked ~ .screener-reg-check__box {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.screener-reg-check-wrap:hover .screener-reg-check__box { border-color: var(--navy-light); }

/* Assess CTA at bottom of applicable block */
.screener-assess-cta {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: rgba(201,168,76,0.06);
  border-top: 1.5px solid rgba(201,168,76,0.3);
  flex-wrap: wrap;
}
.screener-assess-hint {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; flex: 1; min-width: 180px;
}

/* =========================================================
   COMBINED RESULT PAGE
   ========================================================= */
.combined-header {
  text-align: center; margin-bottom: 28px;
}
.combined-header__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  margin: 0 auto 12px;
}
.combined-reg-section {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 16px;
}
.combined-reg-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: var(--bg-light);
  border-bottom: 1.5px solid var(--border);
}
.combined-reg-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(11,31,91,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--navy); flex-shrink: 0;
}
.combined-reg-icon--na { color: var(--text-muted); background: var(--bg-light); }
.combined-reg-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); font-family: 'Montserrat', sans-serif; flex: 1; }
.combined-action-list { padding: 8px 0; }
.combined-not-applicable {
  font-size: 0.85rem; color: var(--text-muted); font-style: italic;
  padding: 12px 18px;
}

/* -- Email Report Capture -- */
.email-report-wrap{background:#f8f9fc;border:1.5px solid #e2e8f0;border-radius:12px;padding:20px 24px;margin-bottom:16px;}
.email-report-label{font-size:.95rem;color:#1e3a5f;font-weight:500;margin-bottom:12px;}
.email-report-row{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.email-report-input{flex:1;min-width:220px;padding:11px 16px;border:1.5px solid #cbd5e1;border-radius:8px;font-size:.95rem;color:#1e3a5f;outline:none;transition:border-color .2s;}
.email-report-input:focus{border-color:#c9a84c;}
.email-report-input.input-error{border-color:#ef4444;animation:shake .3s;}
.email-report-hint{font-size:.8rem;color:#64748b;margin-top:8px;margin-bottom:0;}
@keyframes shake{0%,100%{transform:translateX(0)}25%{transform:translateX(-6px)}75%{transform:translateX(6px)}}

/* -- AHKORIS Logo -- */
.navbar__logo-img { height: 38px; width: auto; display: block; }
.footer__logo-img { height: 52px; width: auto; display: block; margin-bottom: 12px; }

/* ============================================================
   BOOKING CALENDAR
   ============================================================ */
.booking-calendar { width: 100%; }
.booking-step { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.booking-cal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.booking-month-label { font-size:1.1rem; font-weight:700; color:#1e3a5f; text-transform:capitalize; }
.booking-nav-btn { background:none; border:2px solid #e2e8f0; border-radius:8px; width:36px; height:36px; font-size:1.3rem; cursor:pointer; color:#1e3a5f; line-height:1; transition:.2s; }
.booking-nav-btn:hover { border-color:#c9a84c; color:#c9a84c; }
.booking-weekdays { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:6px; }
.booking-weekdays span { text-align:center; font-size:.75rem; font-weight:600; color:#64748b; padding:4px 0; }
.booking-days { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.booking-day { display:flex; align-items:center; justify-content:center; height:38px; border-radius:8px; font-size:.9rem; font-weight:500; transition:.15s; }
.booking-day--empty { background:transparent; }
.booking-day--past { color:#cbd5e1; cursor:default; }
.booking-day--unavail { color:#94a3b8; cursor:default; }
.booking-day--avail { background:#eef6ff; color:#1e3a5f; border:1.5px solid #c9a84c; cursor:pointer; font-weight:700; }
.booking-day--avail:hover { background:#c9a84c; color:#fff; border-color:#c9a84c; }
.booking-legend { display:flex; align-items:center; gap:8px; font-size:.8rem; color:#64748b; margin-top:12px; }
.booking-dot { width:10px; height:10px; border-radius:50%; display:inline-block; }
.booking-dot--avail { background:#c9a84c; }
.booking-step-title { font-size:1.05rem; font-weight:700; color:#1e3a5f; margin:12px 0 4px; text-transform:capitalize; }
.booking-step-hint { font-size:.9rem; color:#64748b; margin-bottom:14px; }
.booking-time-grid { display:flex; flex-wrap:wrap; gap:10px; }
.booking-time-btn { padding:10px 20px; border:2px solid #c9a84c; border-radius:8px; background:#fff; color:#1e3a5f; font-size:.95rem; font-weight:600; cursor:pointer; transition:.15s; }
.booking-time-btn:hover { background:#c9a84c; color:#fff; }
.booking-back { background:none; border:none; color:#c9a84c; font-size:.9rem; font-weight:600; cursor:pointer; padding:0; margin-bottom:16px; display:flex; align-items:center; gap:6px; }
.booking-back:hover { text-decoration:underline; }
.booking-selection-summary { background:#1e3a5f; color:#fff; border-radius:10px; padding:14px 18px; margin-bottom:20px; font-size:.95rem; display:flex; align-items:center; gap:10px; }
.booking-selection-summary i { color:#c9a84c; font-size:1.1rem; }
