html, body {
  overflow-x: hidden;
  width: 100%;
}
/* ======================================
   RECRUIT THEME
====================================== */

:root {
  --recruit-color: #10b981;
  --recruit-dark: #065f46;

  --text: #0f172a;
  --muted: #64748b;

  --border: #e2e8f0;
  --bg: #f8fafc;
}

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

.recruit-hero {
  padding: 180px 0 140px;

  text-align: center;

  background: linear-gradient(135deg, #0f172a, var(--recruit-dark));

  color: white;

  position: relative;

  overflow: hidden;
}

.recruit-hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -250px;
  right: -200px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;
}

.hero-label {
  color: #86efac;

  font-weight: 700;

  letter-spacing: 0.2em;

  margin-bottom: 20px;
}

.recruit-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);

  line-height: 1.1;

  margin-bottom: 30px;
}

.hero-text {
  max-width: 700px;

  margin: 0 auto;

  font-size: 1.1rem;

  line-height: 2;

  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  margin-top: 50px;

  display: flex;

  justify-content: center;

  gap: 20px;
}

/* ======================================
   DATA
====================================== */

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

.chart-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
}

/*.chart-wide {
  grid-column: 1 / -1;
}*/

.survey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.mini-chart-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
}

.chart-card canvas {
  height: 280px !important;
  width: auto !important;
  margin: auto;
}

.mini-chart-card canvas {
  height: 220px !important;
  width: auto !important;
  margin: auto;
}

.chart-card,
.mini-chart-card {
  background: #fff;

  border-radius: 24px;

  padding: 32px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);

  transition: 0.3s;
}

.chart-card:hover,
.mini-chart-card:hover {
  transform: translateY(-6px);
}

.chart-stat {
  font-size: 3rem;

  font-weight: 800;

  color: #2563eb;

  text-align: center;

  line-height: 1;
}

.chart-subtitle {
  text-align: center;

  color: #64748b;

  margin-bottom: 20px;

  font-size: 0.9rem;
}

.chart-card h3,
.mini-chart-card h3 {
  text-align: center;

  margin-bottom: 20px;
}

/* ======================================
   WORK STYLE
====================================== */

.work-grid {
  margin-top: 80px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.work-card {
  background: white;

  padding: 50px 40px;

  border-radius: 24px;

  border: 1px solid var(--border);

  transition: 0.3s;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.work-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.work-card h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: var(--recruit-color);
}

.work-card p {
  line-height: 1.9;

  color: var(--muted);
}

/* ======================================
   U/I TURN
====================================== */

.ui-turn-box {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 80px;

  align-items: center;

  padding: 80px;

  border-radius: 30px;

  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.ui-left h2 {
  font-size: 2.5rem;

  margin: 20px 0;
}

.ui-left p {
  line-height: 2;

  color: var(--muted);
}

.ui-right {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.local-card {
  display: flex;

  gap: 20px;

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  text-decoration: none;

  color: inherit;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.local-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.local-thumb {
  width: 220px;

  flex-shrink: 0;
}

.local-thumb img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.local-body {
  padding: 24px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.local-tag {
  display: inline-block;

  padding: 4px 12px;

  border-radius: 999px;

  background: #dcfce7;

  color: #166534;

  font-size: 0.75rem;

  font-weight: 700;

  margin-bottom: 12px;
}

.local-body h3 {
  font-size: 1.1rem;

  margin-bottom: 10px;
}

.local-body p {
  color: var(--muted);

  line-height: 1.8;
}

/* ======================================
   JOBS
====================================== */

.job-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: 0.3s;
  cursor: pointer;
}
.job-card.open {
  border: 2px solid #22c55e;

  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), #ffffff);
}
.job-status.open {
  background: #22c55e;
  transform: scale(1.03);
  color: white;
}
.job-card.closed {
  position: relative;
  opacity: 0.7;
  filter: grayscale(100%);
}

.job-card.closed:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}
.job-card.closed::after {
  content: "COMING SOON";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 2rem;

  font-weight: 800;

  letter-spacing: 3px;

  color: rgba(15, 23, 42, 0.08);

  pointer-events: none;
}
.job-status {
  position: absolute;
  top: 20px;
  right: 20px;

  padding: 6px 12px;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;

  color: white;
  background: #64748b;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: var(--recruit-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.job-card h3 {
  color: var(--recruit-color);
  font-size: 1.5em;
  margin-bottom: 16px;
}

.job-card p {
  color: var(--muted);
}

/* ======================================
   BENEFITS
====================================== */

.benefits {
  background: #f8fafc;
}

.benefits .section-lead {
  text-align: center;

  max-width: 700px;

  margin: 20px auto 60px;

  color: var(--muted);

  line-height: 2;
}

.benefits-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.benefit-card {
  background: #fff;

  padding: 40px 30px;

  border-radius: 24px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;

  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;

  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--muted);

  line-height: 1.8;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   PERSON
====================================== */

.person-list {
  margin-top: 60px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  list-style: none;

  padding: 0;
}

.person-list li {
  background: white;

  padding: 30px;

  border-radius: 18px;

  border: 1px solid var(--border);

  font-weight: 600;

  position: relative;

  padding-left: 60px;
}

.person-list li::before {
  content: "✓";

  position: absolute;

  left: 25px;
  top: 50%;

  transform: translateY(-50%);

  color: var(--recruit-color);

  font-weight: bold;
}

/* ======================================
   FLOW
====================================== */

.flow-timeline {
  margin: 30px auto 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.flow-step {
  width: 20%;
  background: white;

  padding: 20px 30px;

  border-radius: 18px;

  border: 1px solid var(--border);

  font-weight: 600;
}

.flow-step span {
  display: inline-block;

  margin-right: 15px;

  color: var(--recruit-color);

  font-weight: 800;
}
.flow-step p {
  font-weight: normal;
}

/* ======================================
   CTA
====================================== */

.recruit-cta {
  padding: 120px 0;

  text-align: center;

  background: linear-gradient(135deg, var(--recruit-dark), #064e3b);

  color: white;
}

.recruit-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  margin-bottom: 25px;
}

.recruit-cta p {
  max-width: 700px;

  margin: 0 auto 40px;

  line-height: 2;

  color: rgba(255, 255, 255, 0.85);
}

.requirement-card {
  background: #fff;

  border-radius: 24px;

  padding: 40px;

  margin-top: 40px;

  border: 1px solid #e2e8f0;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.requirement-card h3 {
  color: var(--recruit-color);

  margin-bottom: 30px;
}

.recruit-table {
  width: 100%;

  border-collapse: collapse;
}

.recruit-table th {
  width: 220px;

  text-align: left;

  padding: 20px;

  border-bottom: 1px solid #e2e8f0;

  color: #0f172a;
}

.recruit-table td {
  padding: 20px;

  border-bottom: 1px solid #e2e8f0;

  color: #64748b;

  line-height: 1.8;
}

/* ======================================
   RECRUIT TAB
====================================== */

.recruit-tabs {
  display: flex;

  justify-content: center;

  gap: 12px;

  margin-top: 60px;

  margin-bottom: 40px;
}

.tab-btn {
  border: none;

  background: white;

  padding: 16px 32px;

  border-radius: 999px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;

  border: 1px solid #e2e8f0;
}

.tab-btn:hover {
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--recruit-color);

  color: white;

  border-color: var(--recruit-color);
}

/* ======================================
   CONTENT
====================================== */

.tab-content {
  display: none;

  background: white;

  border-radius: 24px;

  padding: 40px;

  border: 1px solid #e2e8f0;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

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

@media (max-width: 992px) {
  .data-grid,
  .work-grid,
  .job-grid,
  .numbers-grid,
  .survey-grid,
  .person-list {
    grid-template-columns: 1fr;
  }

  .ui-turn-box {
    grid-template-columns: 1fr;

    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .recruit-hero {
    padding: 140px 0 100px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .ui-left h2 {
    font-size: 2rem;
  }
  .flow-step {
    width: 90%;
  }
  .numbers,.survey  {display: none;}

.local-tag {
  margin-bottom: 0;
}
.local-card {
  flex-direction: column-reverse;
}
.local-body p {
  margin: 0;
}
.local-thumb {
  width: auto;
}
.section {
  padding: 100px 0;
}
.tab-btn {
  padding: 16px;
  border-radius: 9px;
}
.tab-content {
  padding: 20px;
}
.recruit-table tr {
  display: flex;
  flex-direction: column;}
.recruit-table th {
  padding: 10px 10px 0;
  border-bottom: none;
}
.recruit-table td {
  padding: 0 10px 10px;
}

}
