/* ============================================================
   KILIKA INC. — Shared Stylesheet
   Font: Poppins via Google Fonts
   Primary: #e68d42 | Dark: #222222 | Body text: #555
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #fff;
  color: #222222;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { text-decoration: none; }

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

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #272727;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: #e68d42; }

/* Auth nav states */
.nav-auth-btn {
  display: inline-block;
  background: #e68d42;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}

.nav-auth-btn:hover { background: #cf7a34; color: #fff !important; }

.nav-auth-account { color: #272727; font-size: 14px; font-weight: 600; }
.nav-auth-account:hover { color: #e68d42; }

.nav-auth-logout { color: #aaa !important; font-size: 14px; font-weight: 600; }
.nav-auth-logout:hover { color: #e68d42 !important; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: #e68d42;
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-primary:hover { background: #cf7a34; color: #fff; }

.btn-outline {
  display: inline-block;
  border: 2px solid #e68d42;
  color: #e68d42;
  padding: 13px 38px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.btn-outline:hover { background: #e68d42; color: #fff; }

/* === SECTION LABEL === */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e68d42;
  margin-bottom: 16px;
}

/* === HERO — LIGHT (interior pages) === */
.hero {
  padding: 90px 60px;
  text-align: center;
  background: #fafafa;
  border-bottom: 1px solid #ebebeb;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e68d42;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: #222222;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: clamp(15px, 2vw, 17px);
  color: #555;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* === HERO — DARK (home, careers) === */
.hero-dark {
  position: relative;
  background-image: url('assets/kilika-bg.png');
  background-size: cover;
  background-position: center;
}

.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 0, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 60px;
  text-align: center;
}

.hero-dark .hero-eyebrow { color: #e68d42; }

.hero-dark h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero-dark p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* === SECTION — DARK (about closing, etc.) === */
.section-dark {
  position: relative;
  background-image: url('assets/kilika-bg.png');
  background-size: cover;
  background-position: center;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 0, 0.65);
}

.section-dark-content {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-dark .section-label { color: #e68d42; }

.section-dark h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 36px;
}

/* === HOME: ABOUT SECTION === */
.about {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-left { flex: 1; }

.about-left h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #222222;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  border-left: 3px solid #e68d42;
  padding-left: 16px;
}

.about-left p { color: #555; font-size: 15px; }

.about-right {
  flex: 1;
  padding-top: 44px;
}

.about-right p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

.about-right p:last-child { margin-bottom: 0; }

/* === HOME: CONTACT SNIPPET === */
.contact-snippet {
  background: #fafafa;
  border-top: 1px solid #ebebeb;
  padding: 100px 60px;
  text-align: center;
}

.contact-snippet h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
  margin: 16px 0 14px;
}

.contact-snippet p {
  color: #555;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.contact-email {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #e68d42;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.contact-email:hover { border-color: #e68d42; }

/* === STATS GRID (about page) === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 60px;
  text-align: center;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #e68d42;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === CARD GRID (expertise, about page) === */
.card-section {
  padding: 80px 60px;
  background: #fafafa;
}

.card-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.card-section-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.card-section-header p {
  color: #555;
  font-size: 15px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-top: 3px solid #e68d42;
  padding: 32px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

/* === SPLIT LAYOUT (contact page) === */
.split-layout {
  display: flex;
  min-height: 520px;
}

.split-left {
  flex: 1;
  padding: 80px 60px;
}

.split-left h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
  margin: 16px 0 12px;
}

.split-left p {
  color: #555;
  font-size: 15px;
  margin-bottom: 36px;
}

.split-right {
  flex: 1;
}

.orange-panel {
  background: #e68d42;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  height: 100%;
  min-height: 520px;
}

.orange-panel img {
  max-width: 240px;
  width: 100%;
}

/* === FORM STYLES === */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #272727;
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #222222;
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #e68d42;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

/* === JOB ACCORDION (jobs page) === */
.job-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.job-card {
  border-left: 4px solid #e68d42;
  background: #fff;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

details.job-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

details.job-card summary::-webkit-details-marker { display: none; }

details.job-card summary .job-title {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  flex: 1;
}

details.job-card summary .summary-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

details.job-card summary .chevron {
  font-size: 18px;
  color: #e68d42;
  transition: transform 0.2s;
  line-height: 1;
}

details.job-card[open] summary .chevron { transform: rotate(180deg); }
details.job-card[open] summary .job-title { color: #e68d42; }

.job-body {
  padding: 24px 28px 28px;
  border-top: 1px solid #ebebeb;
}

.job-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: #272727;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 20px 0 8px;
}

.job-body h4:first-child { margin-top: 0; }

.job-body p,
.job-body li {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.job-body ul {
  padding-left: 20px;
  margin-top: 4px;
}

.job-body li { margin-bottom: 4px; }

.job-body .apply-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}

/* === JOB TAG === */
.job-tag {
  display: inline-block;
  background: #e68d42;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

/* === FAQ ACCORDION (faq page) === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 60px 80px;
}

details.faq-item {
  border-bottom: 1px solid #ebebeb;
}

details.faq-item:first-child {
  border-top: 1px solid #ebebeb;
}

details.faq-item summary {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: #e68d42;
  flex-shrink: 0;
  line-height: 1;
}

details.faq-item[open] summary::after { content: '−'; }
details.faq-item[open] summary { color: #e68d42; }

.faq-answer {
  padding: 0 0 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

/* === THREE-STEP PROCESS (careers page) === */
.steps {
  padding: 80px 60px;
  background: #fafafa;
  border-top: 1px solid #ebebeb;
}

.steps-header {
  text-align: center;
  margin-bottom: 52px;
}

.steps-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #e68d42;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

/* === SIGNATURE (about page) === */
.signature {
  max-width: 160px;
  opacity: 0.85;
  margin-top: 24px;
}

/* === CONTENT SECTION (generic padded section) === */
.content-section {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.content-section p {
  color: #555;
  font-size: 15px;
  margin-bottom: 16px;
  max-width: 700px;
}

/* === RESUME DROP ZONE === */
.drop-zone {
  border: 2px dashed #ddd;
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 20px;
  user-select: none;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: #e68d42;
  background: #fff8f3;
}

.drop-zone.drop-zone-selected {
  border-color: #e68d42;
  background: #fff8f3;
}

.drop-icon { font-size: 36px; margin-bottom: 8px; line-height: 1; }

.drop-zone p { font-size: 14px; color: #555; margin-bottom: 10px; }

.drop-file-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.drop-file-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  word-break: break-all;
}

.drop-clear {
  background: none;
  border: none;
  color: #aaa;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

.drop-clear:hover { color: #e68d42; }

/* === SITE FOOTER === */
.site-footer {
  padding: 36px 60px;
  text-align: center;
  border-top: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer .footer-logo {
  height: 26px;
  width: auto;
  opacity: 0.65;
}

.site-footer .footer-copy {
  font-size: 12px;
  color: #aaa;
}

.site-footer .footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.site-footer .footer-links a {
  font-size: 12px;
  color: #aaa;
  transition: color 0.15s;
}

.site-footer .footer-links a:hover { color: #e68d42; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }

  .hero { padding: 60px 24px; }
  .hero-content { padding: 80px 24px; }

  .about {
    flex-direction: column;
    gap: 32px;
    padding: 60px 24px;
  }
  .about-right { padding-top: 0; }

  .contact-snippet { padding: 60px 24px; }

  .split-layout { flex-direction: column; }
  .split-left { padding: 48px 24px; }
  .orange-panel { min-height: 240px; padding: 32px; }

  .card-section { padding: 60px 24px; }
  .card-grid { grid-template-columns: 1fr; gap: 20px; }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 24px;
    gap: 28px;
  }

  .steps { padding: 60px 24px; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .job-list { padding: 0 24px 60px; }
  .faq-list { padding: 0 24px 60px; }

  .content-section { padding: 60px 24px; }

  .section-dark-content { padding: 72px 24px; }

  .site-footer { padding: 28px 24px; }
}

/* === APPLY MODAL (jobs page) === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 8px;
  padding: 44px 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: #222; }
.modal h2 { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 6px; }
.modal-job-title { font-size: 14px; color: #e68d42; font-weight: 600; margin-bottom: 28px; }
.modal-user-info {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
}
.modal-user-info strong { color: #222; }
.modal-success { text-align: center; padding: 20px 0; display: none; }
.modal-success .check { font-size: 48px; margin-bottom: 12px; }
.modal-success h3 { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: #555; }
.modal-error {
  background: #fff3f3;
  border: 1px solid #ffcccc;
  color: #cc0000;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.btn-applied {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}
@media (max-width: 560px) {
  .modal { padding: 36px 20px; }
}

/* === LOGIN PAGE === */
.login-wrap {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 24px;
}
.login-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 56px 48px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.login-card img { height: 44px; margin: 0 auto 32px; }
.login-card h1 { font-size: 24px; font-weight: 700; color: #222; margin-bottom: 10px; }
.login-card p { font-size: 15px; color: #555; margin-bottom: 36px; }
.google-btn-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.login-note { font-size: 13px; color: #aaa; }
.login-note a { color: #e68d42; }
.login-error {
  background: #fff3f3;
  border: 1px solid #ffcccc;
  color: #cc0000;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 480px) {
  .login-card { padding: 40px 24px; }
}

/* === REGISTER PAGE === */
.register-wrap {
  background: #fafafa;
  padding: 60px 24px 80px;
}
.register-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  padding: 52px 48px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
.register-card img.card-logo { height: 36px; margin-bottom: 28px; }
.register-card h1 { font-size: 26px; font-weight: 700; color: #222; margin-bottom: 8px; }
.register-card .sub { font-size: 15px; color: #555; margin-bottom: 36px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: #e68d42; }
.checkbox-group label { font-size: 14px; color: #444; line-height: 1.5; font-weight: 400; }
.form-error {
  background: #fff3f3;
  border: 1px solid #ffcccc;
  color: #cc0000;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 600px) {
  .register-card { padding: 36px 20px; }
  .form-row { flex-direction: column; gap: 0; }
}

/* === DASHBOARD PAGE === */
.dashboard-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 60px 80px;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.dashboard-header h1 { font-size: 32px; font-weight: 700; color: #222; }
.dashboard-header p { font-size: 15px; color: #555; margin-top: 4px; }
.dash-section { margin-bottom: 52px; }
.dash-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e68d42;
  margin-bottom: 20px;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.profile-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.profile-field p { font-size: 15px; color: #222; margin: 0; }
.applications-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.applications-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-bottom: 2px solid #ebebeb;
}
.applications-table td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: middle;
}
.applications-table tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-New         { background: #fff3e0; color: #e65100; }
.status-Reviewed    { background: #e3f2fd; color: #0d47a1; }
.status-Shortlisted { background: #e8f5e9; color: #1b5e20; }
.status-Rejected    { background: #fce4ec; color: #880e4f; }
.no-apps { color: #aaa; font-size: 15px; padding: 24px 0; }
.edit-profile-form { display: none; }
.edit-profile-form.active { display: block; margin-top: 28px; }
@media (max-width: 768px) {
  .dashboard-wrap { padding: 40px 24px 60px; }
  .profile-grid { grid-template-columns: 1fr; }
  .applications-table { font-size: 13px; }
  .applications-table th, .applications-table td { padding: 10px; }
}

/* === 404 PAGE === */
.error-wrap {
  min-height: calc(100vh - 68px - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #fafafa;
}
.error-code {
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  color: #e68d42;
  line-height: 1;
  margin-bottom: 12px;
}
.error-wrap h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}
.error-wrap p {
  font-size: 16px;
  color: #555;
  max-width: 480px;
  margin: 0 auto 36px;
}
.error-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PRIVACY PAGE === */
.privacy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 60px 80px;
}
.privacy-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin: 40px 0 12px;
}
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.75;
}
.privacy-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.privacy-body li {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 6px;
}
.privacy-body a { color: #e68d42; }
.privacy-body a:hover { text-decoration: underline; }
.privacy-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 768px) {
  .privacy-body { padding: 48px 24px 60px; }
}

/* === HAMBURGER MENU === */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #272727;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.nav-hamburger:hover { color: #e68d42; }

@media (max-width: 480px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Open state — triggered by JS toggling .nav-open on .nav */
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .nav.nav-open .nav-links li { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
  .nav.nav-open .nav-links li:last-child { border-bottom: none; }
  .nav.nav-open .nav-links a { font-size: 16px; display: block; }
  .nav.nav-open .nav-auth-btn { display: inline-block; margin-top: 4px; }
}
