/* ============================================
   MOKUMOKU MATCH — Dark Green Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --bg:       #080E0B;
  --bg2:      #0F1912;
  --card:     #111C15;
  --green:    #1B7A59;
  --green-l:  #4ECDA4;
  --amber:    #D4A645;
  --white:    #EDF4F0;
  --gray:     #8AA496;
  --border:   #1D2E26;
  --danger:   #E05252;
  --purple:   #8B5CF6;
  --teal:     #0D9488;
  --orange:   #EA7B2B;

  --radius:   12px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);

  --transition: 0.2s ease;
  --font: 'Inter', 'Noto Sans JP', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,14,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

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

.btn--primary:hover {
  background: #219a6d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,122,89,0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--green-l);
  border: 1.5px solid var(--green-l);
}

.btn--secondary:hover {
  background: rgba(78,205,164,0.08);
}

.btn--amber {
  background: var(--amber);
  color: #0a0a0a;
}

.btn--amber:hover {
  background: #e8b44e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,166,69,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg2);
  color: var(--white);
}

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

.btn--danger:hover {
  background: #c94444;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn--sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   TAGS / PILLS
   ============================================ */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.tag--area {
  background: rgba(27,122,89,0.2);
  color: var(--green-l);
  border: 1px solid rgba(78,205,164,0.25);
}

.tag--atmosphere {
  background: rgba(212,166,69,0.15);
  color: var(--amber);
  border: 1px solid rgba(212,166,69,0.25);
}

.tag--clientele {
  background: rgba(139,92,246,0.15);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,0.25);
}

.tag--workStyle {
  background: rgba(13,148,136,0.15);
  color: #2dd4bf;
  border: 1px solid rgba(13,148,136,0.25);
}

.tag--shishaElements {
  background: rgba(234,123,43,0.15);
  color: #fb923c;
  border: 1px solid rgba(234,123,43,0.25);
}

.tag--employment {
  background: rgba(27,122,89,0.15);
  color: var(--green-l);
  border: 1px solid rgba(78,205,164,0.2);
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ============================================
   MATCH SCORE BADGE
   ============================================ */

.match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.match-badge--high {
  background: rgba(27,122,89,0.25);
  color: var(--green-l);
  border: 1px solid rgba(78,205,164,0.3);
}

.match-badge--mid {
  background: rgba(212,166,69,0.2);
  color: var(--amber);
  border: 1px solid rgba(212,166,69,0.3);
}

.match-badge--low {
  background: rgba(138,164,150,0.15);
  color: var(--gray);
  border: 1px solid rgba(138,164,150,0.2);
}

.match-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================
   CARDS
   ============================================ */

.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,122,89,0.2);
}

.job-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg2);
}

.job-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg2), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--border);
}

.job-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.job-card__store {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.job-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.job-card__salary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-l);
  white-space: nowrap;
}

.job-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray);
}

.job-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.job-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-card--featured {
  border-color: rgba(212,166,69,0.3);
}

.job-card--featured::before {
  content: 'FEATURED';
  display: block;
  background: var(--amber);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  text-align: center;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(27,122,89,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-l);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green-l);
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--green-l);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-l);
  letter-spacing: -0.04em;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-l);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--green-l);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-title em {
  font-style: normal;
  color: var(--green-l);
}

.section-desc {
  margin-top: 12px;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 520px;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.jobs-grid--2col {
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

/* ============================================
   SIDEBAR FILTER LAYOUT
   ============================================ */

.page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
}

.sidebar__panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.sidebar__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-tag {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.filter-tag:hover {
  border-color: var(--green);
  color: var(--white);
}

.filter-tag.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.filter-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238AA496' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: var(--green);
}

.filter-select option {
  background: var(--bg2);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--danger);
  margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--green);
  background: #0c1710;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

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

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238AA496' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-select option {
  background: var(--bg2);
}

.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 6px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 6px;
}

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

/* File Upload */
.file-upload {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.file-upload:hover,
.file-upload.drag-over {
  border-color: var(--green);
  background: rgba(27,122,89,0.05);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload__icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--gray);
}

.file-upload__text {
  font-size: 0.875rem;
  color: var(--gray);
}

.file-upload__text strong {
  color: var(--green-l);
}

.file-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg2);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--white);
}

.file-item__remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 2px;
}

.file-item__remove:hover {
  color: var(--danger);
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 8px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.form-check__label {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================
   SECTION
   ============================================ */

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 48px 0;
}

.section--dark {
  background: var(--bg2);
}

.section--darker {
  background: #06100A;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
}

.feature-card:hover {
  border-color: var(--green);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(27,122,89,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* ============================================
   JOB DETAIL
   ============================================ */

.job-detail__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg2);
}

.job-detail__hero-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg2), var(--card));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.job-detail__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.job-detail__title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.job-detail__store-name {
  font-size: 1rem;
  color: var(--green-l);
  font-weight: 600;
  margin-bottom: 16px;
}

.job-detail__section {
  margin-bottom: 32px;
}

.job-detail__section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  min-width: 100px;
  flex-shrink: 0;
}

.info-item__value {
  font-size: 0.875rem;
  color: var(--white);
}

.sticky-apply-card {
  position: sticky;
  top: 80px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.sticky-apply-card__salary {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-l);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.sticky-apply-card__type {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery__main {
  grid-row: span 2;
}

.gallery img,
.gallery__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--border);
}

/* Shisha Info */
.shisha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.shisha-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
}

.shisha-item__value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-l);
  margin-bottom: 4px;
}

.shisha-item__label {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ============================================
   FAQ
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--green-l);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer__inner {
  padding-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  padding: 20px 0;
}

.breadcrumb a:hover {
  color: var(--green-l);
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination__btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--transition);
}

.pagination__btn:hover,
.pagination__btn.active {
  border-color: var(--green);
  color: var(--green-l);
  background: rgba(27,122,89,0.1);
}

.pagination__btn.active {
  font-weight: 700;
}

/* ============================================
   RESULT BAR
   ============================================ */

.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.result-bar__count {
  font-size: 0.875rem;
  color: var(--gray);
}

.result-bar__count strong {
  color: var(--white);
  font-weight: 700;
}

.result-bar__sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   ALERT / TOAST
   ============================================ */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert--success {
  background: rgba(27,122,89,0.2);
  border: 1px solid rgba(78,205,164,0.3);
  color: var(--green-l);
}

.alert--error {
  background: rgba(224,82,82,0.15);
  border: 1px solid rgba(224,82,82,0.3);
  color: #fc8181;
}

.alert--info {
  background: rgba(13,148,136,0.15);
  border: 1px solid rgba(13,148,136,0.3);
  color: #2dd4bf;
}

/* ============================================
   LISTING PAGE
   ============================================ */

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card--featured {
  border-color: var(--amber);
  position: relative;
}

.pricing-card--featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
}

.pricing-card__plan {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--green-l);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ============================================
   STEP LIST
   ============================================ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}

.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__content {}

.step__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   ADMIN PANEL
   ============================================ */

.admin-body {
  background: var(--bg);
  min-height: 100vh;
}

.admin-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header__logo {
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-header__badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 60px);
}

.admin-sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 20px 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.admin-nav-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.admin-nav-item.active {
  color: var(--green-l);
  background: rgba(27,122,89,0.1);
  border-left-color: var(--green-l);
}

.admin-nav-item__icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.admin-content {
  padding: 28px 32px;
  overflow-y: auto;
}

.admin-tab {
  display: none;
}

.admin-tab.active {
  display: block;
}

.admin-page-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* Admin Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.modal__close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.modal__close:hover {
  color: var(--white);
}

.modal__body {
  padding: 28px;
}

.modal__footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge--new {
  background: rgba(78,205,164,0.2);
  color: var(--green-l);
}

.status-badge--reviewing {
  background: rgba(212,166,69,0.2);
  color: var(--amber);
}

.status-badge--hired {
  background: rgba(139,92,246,0.2);
  color: #a78bfa;
}

.status-badge--rejected {
  background: rgba(224,82,82,0.15);
  color: #fc8181;
}

.status-badge--active {
  background: rgba(27,122,89,0.2);
  color: var(--green-l);
}

.status-badge--inactive {
  background: rgba(138,164,150,0.1);
  color: var(--gray);
}

/* Admin Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.admin-stat-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-l);
  letter-spacing: -0.04em;
}

.admin-stat-card__label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--green-l);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   LOADING / SKELETON
   ============================================ */

.skeleton {
  background: linear-gradient(90deg, var(--card) 25%, var(--bg2) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.loading-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.loading-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.loading-card__image {
  height: 180px;
}

.loading-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loading-card__line {
  height: 14px;
}

.loading-card__line--short {
  width: 60%;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-green { color: var(--green-l); }
.text-amber { color: var(--amber); }
.text-gray { color: var(--gray); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.empty-state__desc {
  font-size: 0.875rem;
  max-width: 320px;
  margin: 0 auto 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sidebar__panel {
    display: none;
  }

  .sidebar__panel.mobile-visible {
    display: block;
  }

  .job-detail__layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: block;
  }

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

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .section {
    padding: 56px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__main {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

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

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

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

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  padding: 24px;
}

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

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-nav__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav__links a:hover {
  color: var(--green-l);
}

.mobile-nav__cta {
  margin-top: auto;
  padding-top: 24px;
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-hero {
  text-align: center;
  padding: 100px 20px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: rgba(27,122,89,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
}

.thanks-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.thanks-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 50;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: #219a6d;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE FILTER TOGGLE
   ============================================ */

.mobile-filter-toggle {
  display: none;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .mobile-filter-toggle {
    display: flex;
  }
}
