/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #FAF8F4; font-family: system-ui, sans-serif; font-size: 14px; line-height: 1.7; color: #2C2C2A; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* === TOPBAR === */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: #FAF8F4; border-bottom: 0.5px solid #E8E0D5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; height: 52px;
}
.topbar-wordmark { font-family: Georgia, serif; font-size: 16px; color: #2C2C2A; }
.topbar-hamburger { background: none; border: none; font-size: 20px; color: #2C2C2A; cursor: pointer; padding: 4px; line-height: 1; }

/* === GLOBAL PROGRESS BAR === */
.global-progress { padding: 10px 16px; border-bottom: 0.5px solid #E8E0D5; }
.global-progress-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: 12px; color: #555555; }
.global-progress-pct { color: #C2603A; font-weight: 500; }
.progress-track { height: 5px; background: #E8E0D5; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: #C2603A; border-radius: 3px; transition: width 0.4s ease; }

/* === CONTAINER === */
.container { max-width: 720px; margin: 0 auto; padding: 0 16px; }

/* === HERO === */
.hero { padding: 32px 0 24px; }
.hero-pill {
  display: inline-block; font-size: 11px; border: 0.5px solid #E8E0D5;
  border-radius: 20px; padding: 3px 12px; background: white; color: #555555; margin-bottom: 16px;
}
.hero h1 { font-family: Georgia, serif; font-size: 32px; font-weight: 400; line-height: 1.2; color: #2C2C2A; }
.hero h1 em { font-style: italic; color: #C2603A; }
.hero-sub { font-size: 14px; color: #555555; margin-top: 8px; max-width: 520px; }
.hero-cta { display: inline-block; background: #C2603A; color: white; border-radius: 8px; padding: 10px 24px; font-size: 14px; font-weight: 500; margin-top: 16px; cursor: pointer; border: none; transition: background 0.2s; }
.hero-cta:hover { background: #8B3F22; }
.hero-note { font-size: 12px; color: #AAAAAA; margin-top: 8px; }

/* === FEATURE CARDS === */
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 24px 0; }
@media (max-width: 600px) { .feature-cards { display: flex; overflow-x: auto; gap: 12px; padding-bottom: 4px; } .feature-cards .card { min-width: 220px; } }
.feature-cards .card { background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 20px; }
.icon-tile { width: 40px; height: 40px; border-radius: 10px; background: #F5EDE8; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.icon-tile i { font-size: 20px; color: #C2603A; }
.card-title { font-size: 15px; font-weight: 500; color: #2C2C2A; margin-bottom: 6px; }
.card-body { font-size: 13px; color: #555555; line-height: 1.6; }

/* === SECTION HEADINGS === */
.section-heading { font-family: Georgia, serif; font-size: 22px; font-weight: 400; color: #2C2C2A; margin-bottom: 4px; }
.section-sub { font-size: 14px; color: #555555; margin-bottom: 16px; }

/* === STUDY TIPS === */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; margin-bottom: 32px; }
.tip-card { background: white; border: 0.5px solid #E8E0D5; border-radius: 12px; padding: 16px; }
.tip-icon-tile { width: 32px; height: 32px; border-radius: 8px; background: #F5EDE8; display: flex; align-items: center; justify-content: center; }
.tip-icon-tile i { font-size: 16px; color: #C2603A; }
.tip-title { font-weight: 500; font-size: 14px; color: #2C2C2A; margin-top: 10px; }
.tip-body { font-size: 13px; color: #555555; line-height: 1.7; margin-top: 4px; }

/* === DAY CARDS === */
.day-plan { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.day-card { background: white; border-radius: 12px; overflow: hidden; }
.day-card.unlocked { border: 1.5px solid #C2603A; }
.day-card.locked { border: 0.5px solid #E8E0D5; opacity: 0.85; }

.day-header { display: flex; align-items: stretch; min-height: 56px; }
.day-card.unlocked .day-header { cursor: pointer; }
.day-accent { width: 4px; flex-shrink: 0; }
.day-card.unlocked .day-accent { background: #C2603A; }
.day-card.locked .day-accent { background: #CCCCCC; }
.day-header-inner { flex: 1; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.day-meta { flex: 1; }
.day-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: #888888; }
.day-name { font-size: 15px; font-weight: 500; color: #2C2C2A; }
.day-progress-text { font-size: 11px; color: #8B3F22; margin-top: 2px; }
.day-right { display: flex; align-items: center; gap: 8px; padding-right: 14px; flex-shrink: 0; }
.day-pill { font-size: 11px; padding: 3px 10px; border-radius: 12px; }
.day-pill.unlocked { background: #F5EDE8; color: #8B3F22; }
.day-pill.locked { background: #F0ECE8; color: #999999; }
.day-chevron { font-size: 16px; color: #C2603A; transition: transform 0.2s; }
.day-chevron.open { transform: rotate(180deg); }

/* === LO LIST === */
.lo-list { border-top: 0.5px solid #F0ECE8; padding: 8px; display: none; }
.lo-list.open { display: block; }
.lo-row { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 8px; }
.lo-row.clickable { cursor: pointer; }
.lo-row.clickable:hover { background: #FAF6F2; }
.lo-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; flex-shrink: 0; }
.lo-num.complete { background: #C2603A; color: white; }
.lo-num.current { background: #C2603A; color: white; }
.lo-num.locked { background: #F0ECE8; color: #999999; }
.lo-title { flex: 1; font-size: 13px; }
.lo-title.complete { color: #888888; }
.lo-title.current { color: #2C2C2A; font-weight: 500; }
.lo-title.locked { color: #BBBBBB; }
.lo-status-icon { font-size: 14px; }
.lo-status-icon.complete { color: #3B6D11; }
.lo-status-icon.current { color: #C2603A; }
.lo-status-icon.locked { color: #CCCCCC; }

/* === MOCK ROW === */
.mock-row { display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-top: 1px dashed #E8E0D5; margin-top: 6px; border-radius: 8px; }
.mock-row.clickable { cursor: pointer; }
.mock-row.clickable:hover { background: #FAF6F2; }
.mock-row-icon { width: 32px; height: 32px; border-radius: 8px; background: #F5EDE8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-row-icon i { font-size: 16px; color: #C2603A; }
.mock-row-text { flex: 1; }
.mock-row-title { font-size: 13px; color: #C2603A; font-weight: 500; }
.mock-row-sub { font-size: 11px; color: #888888; }
.mock-row.locked-mock .mock-row-title { color: #BBBBBB; }
.mock-row.locked-mock .mock-row-icon i { color: #CCCCCC; }

/* === FOOTER === */
footer { border-top: 0.5px solid #E8E0D5; padding: 20px 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 11px; color: #AAAAAA; }
footer a { color: #AAAAAA; text-decoration: underline; }

/* === SIDEBAR === */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(44,44,42,0.5); z-index: 100; }
.sidebar-overlay.open { display: block; }
.sidebar-panel { position: fixed; left: 0; top: 0; height: 100%; width: 280px; background: #FAF8F4; overflow-y: auto; padding: 16px; z-index: 101; transform: translateX(-100%); transition: transform 0.25s ease; }
.sidebar-panel.open { transform: translateX(0); }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sidebar-title { font-family: Georgia, serif; font-size: 16px; }
.sidebar-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #2C2C2A; line-height: 1; }
.sidebar-day-label { font-size: 10px; text-transform: uppercase; font-weight: 500; color: #8B3F22; letter-spacing: 0.05em; margin: 12px 0 4px; }
.sidebar-lo-row { display: flex; align-items: center; gap: 8px; font-size: 12px; padding: 5px 8px; border-radius: 7px; }
.sidebar-lo-row.current { color: #C2603A; font-weight: 500; background: #F5EDE8; cursor: pointer; }
.sidebar-lo-row.complete { color: #555555; cursor: pointer; }
.sidebar-lo-row.locked { color: #BBBBBB; cursor: default; }
.sidebar-lo-row i { font-size: 13px; flex-shrink: 0; }

/* === EMAIL GATE MODAL === */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(44,44,42,0.6); z-index: 200; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-card { background: white; border-radius: 16px; max-width: 340px; width: 90%; padding: 24px; position: relative; overflow: hidden; }
.modal-top-bar { height: 4px; background: #C2603A; border-radius: 4px 4px 0 0; position: absolute; top: 0; left: 0; right: 0; }
.modal-heading { font-family: Georgia, serif; font-size: 20px; color: #2C2C2A; margin-top: 8px; margin-bottom: 10px; }
.modal-body { font-size: 13px; color: #555555; line-height: 1.7; margin-bottom: 16px; }
.modal-input { width: 100%; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 10px 12px; font-size: 14px; outline-color: #C2603A; font-family: inherit; }
.modal-error { font-size: 12px; color: #8B3F22; margin-top: 6px; display: none; }
.modal-submit { background: #C2603A; color: white; width: 100%; border: none; border-radius: 8px; padding: 11px; font-size: 14px; font-weight: 500; cursor: pointer; margin-top: 10px; transition: background 0.2s; }
.modal-submit:hover { background: #8B3F22; }
.modal-small { font-size: 11px; color: #AAAAAA; text-align: center; margin-top: 8px; }
.modal-server-error { font-size: 12px; color: #8B3F22; margin-top: 8px; display: none; text-align: center; }

/* === LO PAGE === */
.back-nav { font-size: 13px; color: #C2603A; cursor: pointer; padding: 10px 16px; display: inline-block; }
.back-nav:hover { text-decoration: underline; }
.lo-hero { background: #C2603A; padding: 20px 16px; }
.lo-hero-title { font-family: Georgia, serif; font-size: 22px; color: white; font-weight: 400; line-height: 1.2; }
.lo-hero-sub { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.lo-hero-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.lo-hero-pill { background: rgba(255,255,255,0.2); color: white; font-size: 11px; padding: 3px 10px; border-radius: 12px; }

.lo-section-label { display: flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #888888; font-weight: 500; padding: 20px 16px 8px; }
.lo-section-label i { font-size: 14px; color: #C2603A; }
.lo-card { background: white; border: 0.5px solid #E8E0D5; border-radius: 12px; padding: 16px; margin: 0 16px 12px; font-size: 13px; color: #555555; line-height: 1.7; }
.lo-card p { margin-bottom: 8px; }
.lo-card p:last-child { margin-bottom: 0; }
.lo-card ul, .lo-card ol { padding-left: 20px; margin-bottom: 8px; }
.lo-card li { margin-bottom: 4px; }
.lo-card h1, .lo-card h2, .lo-card h3, .lo-card h4 { font-family: Georgia, serif; font-weight: 400; color: #2C2C2A; margin: 12px 0 6px; }
.lo-card h3 { font-size: 15px; }
.lo-card h4 { font-size: 13px; font-weight: 500; }
.lo-card table { border-collapse: collapse; width: 100%; margin: 8px 0; }
.lo-card th { background: #F5EDE8; color: #8B3F22; font-size: 12px; padding: 8px 10px; text-align: left; }
.lo-card td { padding: 8px 10px; border-bottom: 0.5px solid #E8E0D5; font-size: 12px; color: #555555; }
.lo-card strong { color: #2C2C2A; }

.outcome-title { font-size: 14px; font-weight: 500; color: #2C2C2A; margin-bottom: 8px; }

/* === DEFINITIONS TABLE === */
.def-table-wrap { background: white; border: 0.5px solid #E8E0D5; border-radius: 12px; margin: 0 16px 12px; overflow: hidden; }
.def-table { width: 100%; border-collapse: collapse; }
.def-table thead tr { background: #F5EDE8; }
.def-table th { font-size: 12px; font-weight: 500; color: #8B3F22; padding: 10px 12px; text-align: left; }
.def-table td { padding: 10px 12px; font-size: 12px; vertical-align: top; border-bottom: 0.5px solid #F0ECE8; }
.def-table tbody tr:nth-child(even) td { background: #FAF8F4; }
.def-term { font-weight: 500; color: #2C2C2A; width: 28%; }
.def-plain { color: #555555; width: 30%; }
.def-apm { color: #555555; font-style: italic; width: 42%; }

/* === WORKED EXAMPLE === */
.scenario-box { background: #FAF6F2; border-left: 3px solid #C2603A; border-radius: 0 8px 8px 0; padding: 12px 14px; font-size: 13px; color: #555555; line-height: 1.7; }
.question-box { background: #EAF3DE; border-left: 3px solid #3B6D11; border-radius: 0 8px 8px 0; padding: 12px 14px; font-size: 13px; color: #1A5C36; line-height: 1.7; margin-top: 10px; }
.reveal-toggle { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #C2603A; cursor: pointer; margin-top: 10px; background: none; border: none; padding: 0; }
.model-answer-box { background: #FAF8F4; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 12px; margin-top: 8px; font-size: 12px; color: #555555; line-height: 1.7; display: none; }

/* === MISCONCEPTIONS === */
.misconception-pair { margin-bottom: 8px; }
.misc-wrong { background: #FDF2F0; border-radius: 8px; padding: 9px 12px; font-size: 12px; color: #8B3F22; line-height: 1.6; margin-bottom: 3px; display: flex; gap: 6px; align-items: flex-start; }
.misc-right { background: #EAF3DE; border-radius: 8px; padding: 9px 12px; font-size: 12px; color: #1A5C36; line-height: 1.6; display: flex; gap: 6px; align-items: flex-start; }
.misc-wrong i, .misc-right i { flex-shrink: 0; margin-top: 2px; }

/* === EXAM TECHNIQUE === */
.golden-rule { background: #F5EDE8; border-left: 3px solid #C2603A; border-radius: 0 8px 8px 0; padding: 10px 12px; margin-bottom: 6px; font-size: 12px; color: #8B3F22; line-height: 1.6; display: flex; gap: 8px; align-items: flex-start; }
.golden-rule i { color: #C2603A; flex-shrink: 0; margin-top: 2px; }
.cmd-table-wrap { background: white; border: 0.5px solid #E8E0D5; border-radius: 12px; margin-top: 14px; overflow: hidden; }
.cmd-table { width: 100%; border-collapse: collapse; }
.cmd-table th { background: #F5EDE8; color: #8B3F22; font-size: 12px; padding: 8px 12px; text-align: left; }
.cmd-table td { padding: 8px 12px; border-bottom: 0.5px solid #F0ECE8; font-size: 12px; color: #555555; }
.cmd-word { font-weight: 500; color: #8B3F22; width: 25%; }

/* === QUIZ === */
.quiz-divider { display: flex; align-items: center; margin: 28px 16px 16px; }
.quiz-divider-line { flex: 1; height: 0.5px; background: #E8E0D5; }
.quiz-divider-label { font-size: 11px; color: #888888; text-transform: uppercase; letter-spacing: 0.06em; padding: 0 12px; white-space: nowrap; }
.start-quiz-btn { width: calc(100% - 32px); margin: 0 16px 16px; background: #C2603A; color: white; border: none; border-radius: 10px; padding: 12px; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.start-quiz-btn:hover { background: #8B3F22; }

.quiz-area { padding: 0 16px 16px; display: none; }
.quiz-area.active { display: block; }
.quiz-progress { font-size: 12px; color: #888888; margin-bottom: 8px; }
.question-card { background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 16px; margin-bottom: 12px; }
.q-meta-pills { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.q-meta-pill { background: #F0ECE8; font-size: 10px; padding: 2px 8px; border-radius: 8px; color: #666666; }
.q-text { font-size: 13px; color: #2C2C2A; line-height: 1.7; margin-bottom: 12px; }
.q-option { display: flex; align-items: flex-start; gap: 8px; padding: 8px 10px; border-radius: 8px; cursor: pointer; margin-bottom: 4px; transition: background 0.15s; }
.q-option:hover:not(.answered) { background: #FAF6F2; }
.q-option.selected { background: #F5EDE8; border: 0.5px solid #C2603A; }
.q-option.correct { background: #EAF3DE !important; border: 0.5px solid #3B6D11 !important; }
.q-option.incorrect { background: #FDF2F0 !important; border: 0.5px solid #C2603A !important; }
.q-option input[type="radio"] { margin-top: 3px; accent-color: #C2603A; flex-shrink: 0; }
.q-option-label { font-size: 13px; color: #2C2C2A; cursor: pointer; line-height: 1.5; }
.q-textarea { width: 100%; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 10px; font-size: 13px; font-family: inherit; resize: vertical; outline-color: #C2603A; }
.q-wordcount { font-size: 11px; color: #AAAAAA; margin-top: 4px; text-align: right; }
.submit-answer-btn { width: 100%; background: #2C2C2A; color: white; border: none; border-radius: 8px; padding: 9px 20px; font-size: 13px; font-weight: 500; cursor: pointer; margin-top: 10px; }
.submit-answer-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.reveal-card { background: #FAF8F4; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 12px; margin-top: 10px; font-size: 12px; color: #555555; line-height: 1.7; display: none; }
.reveal-card.show { display: block; }
.reveal-label { font-weight: 500; color: #2C2C2A; margin-bottom: 4px; font-size: 12px; }
.next-q-btn { width: 100%; background: #C2603A; color: white; border: none; border-radius: 8px; padding: 9px; font-size: 13px; font-weight: 500; cursor: pointer; margin-top: 8px; display: none; }
.next-q-btn.show { display: block; }
.next-q-btn:hover { background: #8B3F22; }

.quiz-results { background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 20px; text-align: center; display: none; }
.quiz-results.show { display: block; }
.quiz-score { font-family: Georgia, serif; font-size: 24px; color: #2C2C2A; }
.quiz-pct { font-size: 16px; color: #C2603A; margin-top: 4px; }
.quiz-bar { height: 6px; background: #E8E0D5; border-radius: 3px; overflow: hidden; margin: 12px 0; }
.quiz-bar-fill { height: 100%; background: #C2603A; border-radius: 3px; }
.continue-btn { background: #C2603A; color: white; border: none; border-radius: 8px; padding: 10px 24px; font-size: 14px; font-weight: 500; cursor: pointer; margin-top: 12px; }
.continue-btn:hover { background: #8B3F22; }

/* === DROPDOWN GROUP === */
.dropdown-group { margin-bottom: 10px; }
.dropdown-group-label { font-size: 12px; color: #555555; display: block; margin-bottom: 4px; }
.dropdown-select { width: 100%; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 8px 10px; font-size: 13px; font-family: inherit; outline-color: #C2603A; background: white; }

/* === MEMORY AIDS === */
.memory-aids-wrap { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 16px; }
.memory-pill { background: #F5EDE8; border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #8B3F22; font-weight: 500; }

/* === QUICK RECAP === */
.recap-row { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; border-bottom: 0.5px solid #F0ECE8; }
.recap-row:last-child { border-bottom: none; }
.recap-num { width: 20px; height: 20px; border-radius: 50%; background: #F5EDE8; color: #C2603A; font-size: 11px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.recap-text { font-size: 13px; color: #2C2C2A; line-height: 1.6; }

/* === PROGRESS CHECKPOINT === */
.checkpoint-divider { display: flex; align-items: center; margin: 28px 16px 16px; }
.checkpoint-label { font-size: 11px; color: #888888; text-transform: uppercase; letter-spacing: 0.06em; padding: 0 12px; white-space: nowrap; }
.checkpoint-heading { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #2C2C2A; margin-bottom: 12px; }
.checkpoint-heading i { font-size: 20px; color: #C2603A; }
.checkpoint-row { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; cursor: pointer; border-radius: 6px; }
.checkpoint-row:hover { background: #FAF8F4; padding-left: 4px; }
.checkpoint-box { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid #CCCCCC; background: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: all 0.15s; }
.checkpoint-box.checked { background: #C2603A; border-color: #C2603A; }
.checkpoint-box.checked::after { content: '\e6de'; font-family: 'tabler-icons'; color: white; font-size: 11px; }
.checkpoint-text { font-size: 12px; color: #555555; line-height: 1.6; }
.checkpoint-text.checked { color: #AAAAAA; text-decoration: line-through; }
.mark-complete-btn { width: 100%; border: none; border-radius: 10px; padding: 12px; font-size: 14px; cursor: not-allowed; margin-top: 12px; font-family: inherit; font-weight: 500; background: #F0ECE8; color: #AAAAAA; transition: background 0.2s, color 0.2s; }
.mark-complete-btn.active { background: #C2603A; color: white; cursor: pointer; }
.mark-complete-btn.active:hover { background: #8B3F22; }
.mark-complete-btn.done { background: #3B6D11; color: white; cursor: default; }

/* === MOCK EXAM === */
.mock-start { max-width: 480px; margin: 40px auto; background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 32px; text-align: center; }
.mock-title { font-family: Georgia, serif; font-size: 28px; font-weight: 400; color: #2C2C2A; margin-bottom: 8px; }
.mock-subtitle { font-size: 16px; color: #555555; margin-bottom: 20px; }
.mock-info-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.mock-info-pill { background: #F5EDE8; color: #8B3F22; font-size: 12px; padding: 5px 12px; border-radius: 12px; }
.mock-note { font-size: 12px; color: #888888; margin-bottom: 20px; line-height: 1.6; }
.mock-begin-btn { background: #C2603A; color: white; border: none; border-radius: 10px; padding: 12px 32px; font-size: 15px; font-weight: 500; cursor: pointer; }
.mock-begin-btn:hover { background: #8B3F22; }

.mock-timer { position: fixed; top: 60px; right: 16px; background: white; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 6px 12px; font-size: 14px; font-weight: 500; color: #2C2C2A; z-index: 40; box-shadow: 0 2px 8px rgba(0,0,0,0.08); display: none; }
.mock-timer.visible { display: block; }
.mock-timer.urgent { color: #C2603A; }

.mock-q-progress { font-size: 12px; color: #888888; margin-bottom: 8px; padding: 0 16px; }
.mock-q-card { background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 20px; margin: 0 16px 12px; }
.mock-q-text { font-size: 14px; line-height: 1.8; color: #2C2C2A; margin-bottom: 16px; }
.mock-next-btn { width: calc(100% - 32px); margin: 0 16px 12px; background: #2C2C2A; color: white; border: none; border-radius: 8px; padding: 11px; font-size: 14px; font-weight: 500; cursor: pointer; }
.mock-next-btn:hover { background: #444; }

.break-card { max-width: 480px; margin: 40px auto; background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 32px; text-align: center; }
.break-timer-display { font-family: Georgia, serif; font-size: 40px; color: #C2603A; margin: 16px 0; }
.break-heading { font-family: Georgia, serif; font-size: 22px; font-weight: 400; color: #2C2C2A; margin-bottom: 8px; }
.break-body { font-size: 13px; color: #555555; line-height: 1.6; margin-bottom: 16px; }

.locked-screen { max-width: 400px; margin: 60px auto; background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 32px; text-align: center; }
.locked-screen i.lock-icon { font-size: 48px; color: #CCCCCC; }
.locked-screen h2 { font-family: Georgia, serif; font-size: 22px; font-weight: 400; color: #2C2C2A; margin: 12px 0 8px; }
.locked-screen p { font-size: 13px; color: #555555; margin-bottom: 16px; line-height: 1.6; }
.back-link { display: inline-block; color: #C2603A; font-size: 13px; margin-top: 8px; text-decoration: underline; cursor: pointer; }

/* === SELF ASSESSMENT === */
.self-assess-q { background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 20px; margin: 0 16px 12px; font-size: 13px; }
.sa-q-text { font-weight: 500; color: #2C2C2A; margin-bottom: 8px; line-height: 1.6; }
.sa-user-box { background: #FAF8F4; border: 0.5px solid #E8E0D5; border-radius: 8px; padding: 12px; font-size: 12px; color: #555555; line-height: 1.7; margin: 8px 0; white-space: pre-wrap; }
.sa-model-label { font-weight: 500; font-size: 12px; color: #2C2C2A; margin-top: 12px; margin-bottom: 4px; }
.sa-model-text { font-size: 12px; color: #555555; line-height: 1.7; }
.sa-marking-label { font-weight: 500; font-size: 12px; color: #2C2C2A; margin-top: 10px; margin-bottom: 6px; }
.sa-point { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; font-size: 12px; color: #555555; }
.sa-point input[type="checkbox"] { accent-color: #C2603A; margin-top: 2px; flex-shrink: 0; }
.sa-score-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; color: #555555; }
.sa-score-input { width: 60px; border: 0.5px solid #E8E0D5; border-radius: 6px; padding: 4px 8px; font-size: 13px; font-family: inherit; }
.sa-next-btn { width: 100%; background: #C2603A; color: white; border: none; border-radius: 8px; padding: 10px; font-size: 13px; font-weight: 500; cursor: pointer; margin-top: 12px; }
.sa-next-btn:hover { background: #8B3F22; }

.results-card { max-width: 560px; margin: 20px auto; background: white; border-radius: 12px; border: 0.5px solid #E8E0D5; padding: 32px; text-align: center; }
.results-score { font-family: Georgia, serif; font-size: 32px; color: #2C2C2A; }
.results-pct { font-size: 20px; color: #C2603A; margin-top: 4px; }
.results-banner { border-radius: 8px; padding: 10px 16px; margin: 16px 0; font-size: 16px; font-weight: 500; }
.results-banner.pass { background: #EAF3DE; color: #1A5C36; }
.results-banner.refer { background: #FDF2F0; color: #8B3F22; }
.results-passnote { font-size: 12px; color: #888888; margin-bottom: 12px; }
.results-table { width: 100%; border-collapse: collapse; text-align: left; margin: 12px 0; font-size: 13px; }
.results-table th { background: #F5EDE8; color: #8B3F22; padding: 8px 12px; font-size: 12px; }
.results-table td { padding: 8px 12px; border-bottom: 0.5px solid #F0ECE8; color: #555555; }
.results-table tr.total-row td { font-weight: 500; color: #2C2C2A; background: #FAF8F4; border-top: 1px solid #E8E0D5; }
.review-toggle-btn { background: none; border: 1.5px solid #C2603A; border-radius: 8px; color: #C2603A; padding: 8px 20px; font-size: 13px; cursor: pointer; margin-top: 12px; }
.review-toggle-btn:hover { background: #F5EDE8; }
.review-all { padding: 0 16px 24px; margin-top: 8px; }
.review-item { background: white; border-radius: 10px; border: 0.5px solid #E8E0D5; padding: 14px; margin-bottom: 8px; font-size: 12px; }
.review-item-q { font-weight: 500; color: #2C2C2A; margin-bottom: 6px; line-height: 1.5; }
.review-item-user { color: #555555; margin-bottom: 4px; }
.review-item-correct { color: #1A5C36; }
.review-item-marks { font-size: 11px; color: #888888; margin-top: 4px; }

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .hero h1 { font-size: 26px; }
  .feature-cards { grid-template-columns: 1fr; }
}
