/* ============================================================
   Portfolio Path — Global Styles
   Warm & approachable, consistent with self-assessment tool
   ============================================================ */

:root {
  --navy: #1a2744;
  --navy-light: #2c3e6b;
  --teal: #00838f;
  --teal-hover: #006d75;
  --teal-light: #e0f2f1;
  --teal-soft: #b2dfdb;
  --amber: #f9a825;
  --amber-light: #fff8e1;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --red: #c62828;
  --red-light: #ffebee;
  --grey: #607d8b;
  --grey-light: #eceff1;
  --bg: #f5f7fa;
  --bg-warm: #fafbfd;
  --white: #ffffff;
  --text: #333;
  --text-light: #666;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-hover); }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--navy);
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 700;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--teal-soft);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-links a.nav-cta {
  background: var(--teal);
  color: white;
  padding: 8px 20px;
}

.nav-links a.nav-cta:hover {
  background: var(--teal-hover);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: var(--transition);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 80px 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,131,143,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,131,143,0.25);
  color: var(--teal-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-soft);
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  width: 300px;
  height: 300px;
  background: rgba(0,131,143,0.1);
  border: 2px solid rgba(0,131,143,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: white;
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,131,143,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: white;
}

.btn-lg {
  font-size: 16px;
  padding: 14px 32px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: var(--transition);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

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

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

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  background: var(--white);
}

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-light);
}

/* ============================================================
   TESTIMONIALS / SOCIAL PROOF
   ============================================================ */
.testimonials {
  background: var(--teal-light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 28px;
  color: var(--teal);
  font-weight: 700;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}

.testimonial-card .testimonial-author {
  font-size: 14px;
  color: var(--grey);
  font-weight: 600;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.about-hero p {
  font-size: 17px;
  opacity: 0.8;
}

.about-content {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  width: 280px;
  height: 340px;
  background: var(--grey-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-placeholder {
  font-size: 64px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.about-bio h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}

.about-bio .subtitle {
  font-size: 16px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-bio p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.credentials-list {
  list-style: none;
  margin: 20px 0;
}

.credentials-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text);
}

.credentials-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand .nav-logo-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  list-style: none;
}

.footer-links-title {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 20px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  text-align: center;
}

/* ============================================================
   ASSESSMENT PAGE
   ============================================================ */
.assessment-status {
  text-align: center;
  padding: 80px 32px;
}

.assessment-status .status-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.assessment-status h2 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.assessment-status p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.assessment-active iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-login {
  max-width: 400px;
  margin: 80px auto;
  padding: 0 32px;
}

.admin-login .card {
  text-align: center;
}

.admin-login h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.admin-login p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,131,143,0.1);
}

.admin-panel {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 32px;
}

.admin-panel h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.toggle-row .label {
  font-weight: 600;
  color: var(--text);
}

.toggle-row .sublabel {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 50px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 28px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--green);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.admin-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.admin-status.success {
  background: var(--green-light);
  color: var(--green);
}

.admin-status.error {
  background: var(--red-light);
  color: var(--red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    flex: none;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .grid-3, .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-inner {
    flex-direction: column;
  }

  section {
    padding: 48px 0;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 26px;
  }

  .container, .container-narrow {
    padding: 0 20px;
  }
}

/* ============================================================
   ASSESSMENT TOOL — Embedded styles
   ============================================================ */

.assess-header {
  background: var(--navy);
  color: white;
  padding: 24px 0;
}

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

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  flex: 0 0 auto;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  transition: all 0.2s;
}

.step-dot.start-icon { font-size: 12px; }
.step.active .step-dot { background: var(--teal); color: white; box-shadow: 0 0 0 3px rgba(0,131,143,0.2); }
.step.completed .step-dot { background: var(--green); color: white; }
.step:hover .step-dot { transform: scale(1.15); }

.step-line {
  flex: 1 1 0;
  height: 2px;
  background: #e0e0e0;
  min-width: 4px;
}

.step-line.done { background: var(--green); }

.stepper-label {
  text-align: center;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-top: -16px;
  margin-bottom: 20px;
}

/* Glossary */
.glossary-term {
  border-bottom: 2px dotted var(--teal);
  color: var(--teal);
  cursor: help;
  font-weight: 500;
}

.glossary-term:hover { text-decoration: underline; }
.glossary-term .glossary-tooltip { display: none !important; }

.gt-popup {
  position: fixed;
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px;
  white-space: normal;
  width: 320px;
  max-width: 90vw;
  z-index: 10000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  line-height: 1.5;
  pointer-events: none;
}

.gt-popup .gt-full { font-weight: 600; display: block; margin-bottom: 4px; color: #b2dfdb; font-size: 14px; }
.gt-popup .gt-def { display: block; opacity: 0.9; }
.gt-popup .gt-intl { display: block; margin-top: 6px; font-size: 11px; opacity: 0.75; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 5px; }
.gt-popup::after { content: ''; position: absolute; border: 6px solid transparent; }
.gt-popup.above::after { top: 100%; left: 50%; transform: translateX(-50%); border-top-color: var(--navy); }
.gt-popup.below::after { bottom: 100%; left: 50%; transform: translateX(-50%); border-bottom-color: var(--navy); }

/* Glossary modal */
.glossary-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.glossary-modal.open { display: flex; }

.glossary-modal-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.glossary-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}

.glossary-modal-header h2 { font-size: 18px; color: var(--navy); }
.glossary-modal-close { font-size: 24px; cursor: pointer; color: var(--grey); }

.glossary-entry {
  margin-bottom: 16px;
  padding: 12px;
  border-left: 4px solid var(--teal);
  background: var(--teal-light);
  border-radius: 4px;
}

.glossary-entry strong { color: var(--navy); }
.glossary-entry .full { font-size: 13px; color: var(--grey); }
.glossary-entry .definition { font-size: 13px; margin-top: 6px; color: #333; }
.glossary-entry .international { font-size: 12px; color: var(--teal); margin-top: 4px; font-style: italic; }

/* Assessment sections */
.assess-container .section { display: none; }
.assess-container .section.active { display: block; }

/* Assessment cards (scoped to avoid conflict with site cards) */
.assess-container .card { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 20px; overflow: hidden; }
.assess-container .card-header { padding: 16px 20px; border-bottom: 1px solid #eee; }
.assess-container .card-header h2 { font-size: 17px; color: var(--navy); }
.assess-container .card-header p { font-size: 13px; color: var(--grey); margin-top: 4px; }
.assess-container .card-body { padding: 20px; }

/* Welcome */
.welcome-box {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}

.welcome-box h3 { color: var(--teal); margin-bottom: 12px; }
.welcome-box p { color: #333; font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.welcome-box ul { margin-left: 24px; }
.welcome-box li { margin-bottom: 8px; font-size: 14px; line-height: 1.5; }

.info-box {
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 16px;
  font-size: 13px;
}

.info-box strong { color: #1565c0; display: block; margin-bottom: 10px; }
.info-box ul { margin-left: 24px; }
.info-box li { margin-bottom: 8px; font-size: 14px; line-height: 1.5; }

/* Form elements */
.assess-container .form-group { margin-bottom: 18px; }
.assess-container .form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.assess-container .form-group .hint { font-size: 12px; color: var(--grey); margin-bottom: 6px; font-style: italic; }
.assess-container .form-group select,
.assess-container .form-group input[type="number"],
.assess-container .form-group input[type="text"] {
  width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 14px; font-family: inherit; transition: border-color 0.2s;
}
.assess-container .form-group select:focus,
.assess-container .form-group input:focus { border-color: var(--teal); outline: none; }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border: 1px solid #e0e0e0; border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.radio-option:hover { border-color: var(--teal); background: var(--teal-light); }
.radio-option.selected { border-color: var(--teal); background: var(--teal-light); }
.radio-option.unsure { border-color: #9e9e9e; background: #f5f5f5; }
.radio-option input[type="radio"] { margin-top: 3px; accent-color: var(--teal); }
.radio-option .radio-label { font-size: 14px; }
.radio-option .radio-label strong { color: var(--navy); }

.yn-group { display: flex; gap: 10px; flex-wrap: wrap; }
.yn-btn { padding: 8px 20px; border: 1px solid #ccc; border-radius: 6px; background: var(--white); cursor: pointer; font-size: 13px; font-weight: 500; transition: all 0.15s; }
.yn-btn:hover { border-color: var(--teal); }
.yn-btn.selected-yes { background: var(--green-light); border-color: var(--green); color: var(--green); }
.yn-btn.selected-no { background: var(--red-light); border-color: var(--red); color: var(--red); }
.yn-btn.selected-partial { background: var(--amber-light); border-color: var(--amber); color: #e65100; }

/* Assessment navigation */
.nav-row { display: flex; justify-content: space-between; margin-top: 24px; }

/* Results */
.results-summary { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.result-card { padding: 16px; border-radius: 10px; text-align: center; }
.result-card.green { background: var(--green-light); border: 1px solid #a5d6a7; }
.result-card.amber { background: var(--amber-light); border: 1px solid #ffe082; }
.result-card.red { background: var(--red-light); border: 1px solid #ef9a9a; }
.result-card .count { font-size: 32px; font-weight: 700; }
.result-card .label { font-size: 12px; color: var(--grey); margin-top: 2px; }

.overall-band { padding: 20px; border-radius: 10px; text-align: center; margin-bottom: 24px; }
.overall-band h2 { font-size: 20px; margin-bottom: 6px; }
.overall-band p { font-size: 14px; }
.band-green { background: var(--green-light); border: 2px solid var(--green); color: var(--green); }
.band-amber { background: var(--amber-light); border: 2px solid var(--amber); color: #e65100; }
.band-red { background: var(--red-light); border: 2px solid var(--red); color: var(--red); }

.slo-result { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 16px; overflow: hidden; }
.slo-result-header { padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.slo-result-header h3 { font-size: 14px; color: var(--navy); }
.slo-pill { padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.pill-green { background: var(--green-light); color: var(--green); }
.pill-amber { background: var(--amber-light); color: #e65100; }
.pill-red { background: var(--red-light); color: var(--red); }
.slo-result-body { padding: 0 20px 16px; font-size: 13px; color: #555; display: none; }
.slo-result-body.open { display: block; }
.slo-result-body ul { margin-left: 16px; margin-top: 8px; }
.slo-result-body li { margin-bottom: 4px; }
.gap-item { color: var(--red); }
.strength-item { color: var(--green); }
.warning-item { color: #e65100; }
.uncertainty-item { color: var(--amber); }

.score-bar { height: 6px; background: #e0e0e0; border-radius: 3px; margin-top: 6px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 3px; transition: width 0.4s; }

.calibration-note { background: #e3f2fd; border-left: 4px solid #1976d2; padding: 12px 16px; border-radius: 0 6px 6px 0; margin-bottom: 16px; font-size: 13px; }
.calibration-note strong { color: #1565c0; }

.cta-box { background: var(--teal-light); border: 2px solid var(--teal); border-radius: 10px; padding: 20px; text-align: center; margin-top: 24px; }
.cta-box h3 { color: var(--teal); margin-bottom: 8px; }
.cta-box p { font-size: 14px; color: #333; }

.disclaimer { font-size: 11px; color: var(--grey); text-align: center; margin-top: 16px; padding: 12px; }

@media print {
  .stepper, .nav-row, .assess-header, .site-nav, .site-footer { display: none; }
  .section { display: block !important; }
  .slo-result-body { display: block !important; }
  body { background: white; }
}

@media (max-width: 768px) {
  .assess-container { padding: 12px; }
  .assess-header { padding: 16px 0; }
  .stepper { padding: 8px 10px; }
  .step-dot { width: 20px; height: 20px; font-size: 9px; }
  .gt-popup { width: 280px; }
}
