/* ============================================
   Jobee - Corporate Website Stylesheet
   Theme: Black (#0d0d0d) + Yellow (#ffc60b)
   ============================================ */

:root {
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --black-light: #2b2b2b;
  --yellow: #ffc60b;
  --yellow-dark: #e6a800;
  --yellow-light: #ffd94a;
  --text: #1a1a1a;
  --text-muted: #5a5f66;
  --bg-soft: #f7f7f5;
  --bg-alt: #efefe9;
  --border: #e5e5e0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.18);
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Meiryo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
}

a { color: var(--yellow-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--black); }

img { max-width: 100%; height: auto; }
.container { max-width: 1200px; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--black);
  color: #d9d9d9;
  font-size: 13px;
  padding: 8px 0;
}
.topbar a { color: #d9d9d9; }
.topbar a:hover { color: var(--yellow); }
.topbar .info-list { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar .info-list i { color: var(--yellow); margin-right: 6px; }

/* ============ NAVBAR ============ */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 3px solid var(--yellow);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 28px;
  color: var(--black) !important;
  letter-spacing: -0.5px;
  padding: 6px 0;
}
.navbar-brand .logo-mark {
  width: 44px; height: 44px;
  display: inline-block;
}
.navbar-brand .logo-text-wrap {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-brand .logo-text { display: inline-block; }
/* Jobee: Jo (black) + bee (yellow) */
.navbar-brand .logo-text .brand-jo { color: var(--black); }
.navbar-brand .logo-text .brand-bee { color: var(--yellow-dark); }
.navbar-brand small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 2px;
}

.main-header .navbar-nav .nav-link {
  color: var(--black) !important;
  font-weight: 600;
  font-size: 15px;
  padding: 20px 16px !important;
  position: relative;
  transition: color .2s;
}
.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
  color: var(--yellow-dark) !important;
}
/* Underline for active link — exclude dropdown-toggle so the ▼ arrow stays visible */
.main-header .navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 12px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
/* For dropdown-toggle in active state, add a small underline that does NOT conflict with ::after arrow */
.main-header .navbar-nav .nav-link.dropdown-toggle.active {
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-size: calc(100% - 46px) 3px;
  background-repeat: no-repeat;
  background-position: 16px calc(100% - 12px);
}

.dropdown-menu {
  border: 0;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 240px;
}
.dropdown-item {
  font-weight: 500;
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--bg-soft);
  color: var(--yellow-dark);
}

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 6px; margin-left: 12px; }
.lang-switcher .dropdown-toggle {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 30px;
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
}
.lang-switcher .dropdown-toggle:hover { background: var(--yellow); }
.lang-switcher img.flag {
  width: 22px; height: auto; border-radius: 3px; margin-right: 6px;
  vertical-align: middle;
}
.lang-menu { min-width: 200px; }
.lang-menu .dropdown-item img.flag {
  width: 22px; margin-right: 10px; border-radius: 3px;
}

/* ============ BUTTONS ============ */
.btn {
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all .25s ease;
  font-size: 15px;
}
.btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,198,11,0.35);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.9);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover { background: var(--black-light); color: var(--white); transform: translateY(-2px); }
/* legacy alias */
.btn-navy { background: var(--black); color: var(--white); }
.btn-navy:hover { background: var(--black-light); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 14px 36px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  background:
    linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(30,30,30,0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(255,198,11,0.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,198,11,0.15), transparent 45%),
    linear-gradient(135deg, #0d0d0d, #2b2b2b);
  color: var(--white);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,198,11,0.2);
  color: var(--yellow-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero h1 .hl { color: var(--yellow); }
.hero p.lead {
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 36px;
  color: #e0e0e0;
}
.hero .btn-group-hero { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.hero-stats .stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 13px;
  color: #e0e0e0;
  margin-top: 4px;
}

/* ============ HERO SLIDER (index) ============ */
/* Fixed height on all layers so shorter slides don't shrink the section
   (prevents page-below jump when carousel rotates) */
.hero-slider { position: relative; padding: 0; height: 880px; }
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item { height: 880px; }
.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0;
  color: var(--white);
  overflow: hidden;
}
.hero-slide > .container { width: 100%; }
.hero-slide.slide-jobseeker {
  background:
    linear-gradient(120deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.3) 100%),
    radial-gradient(circle at 85% 30%, rgba(255,198,11,0.45), transparent 50%),
    linear-gradient(135deg, #0d0d0d, #2b2b2b);
}
.hero-slide.slide-company {
  background:
    linear-gradient(120deg, rgba(255,198,11,0.1) 0%, rgba(10,10,10,0.88) 50%, rgba(10,10,10,0.95) 100%),
    radial-gradient(circle at 15% 70%, rgba(255,198,11,0.45), transparent 50%),
    linear-gradient(135deg, #1a1a1a, #0d0d0d);
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}
/* Background video */
.hero-slide.has-video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide.has-video .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-slide.slide-jobseeker.has-video .hero-video-overlay {
  background:
    linear-gradient(120deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.35) 100%),
    radial-gradient(circle at 85% 30%, rgba(255,198,11,0.35), transparent 50%);
}
.hero-slide.slide-company.has-video .hero-video-overlay {
  background:
    linear-gradient(120deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.82) 50%, rgba(10,10,10,0.92) 100%),
    radial-gradient(circle at 15% 70%, rgba(255,198,11,0.3), transparent 50%);
}
.hero-slide.has-video > .container { position: relative; z-index: 3; }
.hero-slide .eyebrow {
  display: inline-block;
  background: rgba(255,198,11,0.2);
  color: var(--yellow-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-slide h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-slide h1 .hl { color: var(--yellow); }
.hero-slide p.lead {
  font-size: 17px;
  max-width: 640px;
  color: #e5e5e5;
  margin-bottom: 36px;
}
.hero-slider .carousel-indicators {
  bottom: 24px;
  margin-bottom: 0;
}
.hero-slider .carousel-indicators button {
  width: 36px; height: 4px; border-radius: 2px;
  background-color: rgba(255,255,255,0.4);
  border: 0;
}
.hero-slider .carousel-indicators .active { background-color: var(--yellow); }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 5%; opacity: .65; }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

/* Multi-language "Find Jobs" buttons inside hero */
.hero-lang-find {
  margin: 24px 0 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  max-width: 760px;
}
.hero-lang-find-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-lang-find-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.lang-job-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-job-btn img.flag {
  width: 20px;
  border-radius: 3px;
  flex: 0 0 auto;
}
.lang-job-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-job-btn:hover {
  background: var(--yellow);
  color: var(--black) !important;
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255,198,11,0.3);
}
@media (max-width: 991px) {
  .hero-lang-find-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .hero-lang-find-grid { grid-template-columns: 1fr; }
}

/* Inner page hero */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(255,198,11,0.2);
  border-radius: 50%;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,198,11,0.12);
  border-radius: 50%;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
.page-hero .breadcrumb {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  padding: 6px 18px;
  border-radius: 20px;
  margin: 18px 0 0;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: #e0e0e0; font-size: 13px; }
.page-hero .breadcrumb-item.active { color: var(--yellow); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #e0e0e0; }

/* ============ SECTIONS ============ */
section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-black, .section-navy {
  background: var(--black);
  color: var(--white);
}
.section-black h2, .section-black h3,
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.4;
}
.section-header h2 .hl { color: var(--yellow-dark); }
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.section-navy .section-header h2,
.section-black .section-header h2 { color: var(--white); }
.section-navy .section-header p,
.section-black .section-header p { color: #d0d0d0; }

/* ============ CARDS ============ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.feature-card h4 {
  font-weight: 700;
  color: var(--black);
  font-size: 19px;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 0;
  line-height: 1.8;
}
.feature-card .num-badge {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 46px;
  font-weight: 800;
  color: var(--bg-alt);
  line-height: 1;
}

/* Support card */
.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all .3s;
  border: 1px solid var(--border);
}
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.support-card .step-num {
  width: 48px; height: 48px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
}
.support-card h4 { color: var(--black); font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.support-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* ============ TWO COLUMN CTA ============ */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s;
}
.audience-card:hover { transform: translateY(-6px); }
.audience-card.for-jobseeker {
  background: linear-gradient(135deg, #0d0d0d, #2b2b2b);
}
.audience-card.for-company {
  background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
  color: var(--black);
}
.audience-card .card-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  opacity: .85;
  text-transform: uppercase;
}
.audience-card h3 { font-size: 26px; font-weight: 800; margin: 10px 0 14px; color: inherit; }
.audience-card p { color: rgba(255,255,255,0.9); font-size: 15px; margin-bottom: 20px; }
.audience-card.for-company p { color: rgba(0,0,0,0.8); }
.audience-card .audience-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: inherit;
  font-size: 15px;
}
.audience-card.for-jobseeker .audience-cta { color: var(--yellow); }
.audience-card .icon-bg {
  position: absolute;
  top: 40px; right: 40px;
  font-size: 80px;
  opacity: .15;
}

/* ============ TIMELINE / FLOW ============ */
.flow-list { list-style: none; padding: 0; margin: 0; position: relative; }
.flow-list::before {
  content: "";
  position: absolute;
  left: 28px; top: 10px; bottom: 10px;
  width: 2px;
  background: var(--border);
}
.flow-item { position: relative; padding: 0 0 36px 80px; }
.flow-item:last-child { padding-bottom: 0; }
.flow-item .flow-num {
  position: absolute;
  left: 0; top: 0;
  width: 58px; height: 58px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(255,198,11,0.35);
}
.flow-item h4 { font-weight: 700; color: var(--black); margin-bottom: 8px; font-size: 19px; }
.flow-item p { color: var(--text-muted); margin: 0; font-size: 15px; }

/* ============ FAQ ============ */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
  color: var(--black);
  padding: 22px 24px;
  background: var(--white);
  font-size: 16px;
}
.accordion-button:not(.collapsed) {
  color: var(--yellow);
  background: var(--black);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(255,198,11,0.25); }
.accordion-body {
  padding: 20px 24px 26px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 15px;
  background: var(--bg-soft);
}

/* ============ STRENGTH BOX ============ */
.strength-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.strength-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.strength-item:hover { transform: translateX(6px); }
.strength-item h5 { color: var(--black); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.strength-item p { color: var(--text-muted); margin: 0; font-size: 14px; }

/* Compare Table */
.compare-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.compare-table table { margin: 0; }
.compare-table thead th {
  background: var(--black);
  color: var(--white);
  padding: 18px 20px;
  font-weight: 700;
  border: 0;
  font-size: 15px;
}
.compare-table thead th.jobee-col {
  background: var(--yellow);
  color: var(--black);
}
.compare-table tbody td {
  padding: 18px 20px;
  vertical-align: middle;
  font-size: 14.5px;
  color: var(--text);
  border-color: var(--border);
}
.compare-table tbody th {
  background: var(--bg-soft);
  color: var(--black);
  font-weight: 700;
  padding: 18px 20px;
  font-size: 15px;
  border-color: var(--border);
}
.compare-table .check { color: var(--yellow-dark); font-weight: 800; }

/* ============ JOB SEARCH ============ */
.job-search-bar {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: -70px;
  position: relative;
  z-index: 10;
}
.job-search-bar label { font-weight: 700; color: var(--black); font-size: 13px; margin-bottom: 6px; }
.job-search-bar .form-select,
.job-search-bar .form-control {
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.job-search-bar .form-select:focus,
.job-search-bar .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,198,11,0.2);
}

.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--yellow); }
.job-card .job-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.job-card .job-tag.tag-navy,
.job-card .job-tag.tag-black { background: var(--black); color: var(--yellow); }
.job-card h4 { color: var(--black); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.job-card .job-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 13.5px;
}
.job-card .job-meta li { padding: 4px 0; display: flex; align-items: center; gap: 10px; }
.job-card .job-meta i { color: var(--yellow-dark); width: 16px; }
.job-card .job-salary {
  font-size: 20px;
  font-weight: 800;
  color: var(--yellow-dark);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

/* ============ STAFF ============ */
.staff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  height: 100%;
}
.staff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.staff-card .staff-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--black-light), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,198,11,0.35);
  font-size: 90px;
  position: relative;
}
.staff-card .staff-photo::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}
.staff-card .staff-body { padding: 22px 24px 28px; }
.staff-card .staff-role {
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.staff-card h4 { color: var(--black); font-weight: 800; font-size: 20px; margin: 6px 0 10px; }
.staff-card .staff-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.staff-card .staff-tags span {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 2px 2px 0 0;
}

/* Staff photo with actual image */
.staff-card .staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.staff-card .staff-country {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.staff-card .staff-country img {
  width: 16px;
  height: auto;
  position: static;
  display: inline-block;
}
.staff-card .staff-age {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow, #ffd60a);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
}
.staff-card .staff-body h4 small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Role-grouped team section */
.team-role-section {
  padding: 70px 0 20px;
}
.team-role-section:last-of-type {
  padding-bottom: 80px;
}
.team-role-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--black, #111);
}
.team-role-header .team-role-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow-dark, #e6a800);
  text-transform: uppercase;
}
.team-role-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--black, #111);
  margin: 0;
}
.team-role-header .team-role-count {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
}
@media (max-width: 575px) {
  .team-role-header h3 { font-size: 22px; }
  .team-role-header .team-role-count { margin-left: 0; width: 100%; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.cta-banner h3 { font-weight: 800; color: var(--black); margin-bottom: 10px; font-size: 28px; }
.cta-banner p { color: rgba(0,0,0,0.85); margin-bottom: 0; font-size: 16px; }
.cta-banner .btn { background: var(--black); color: var(--yellow); border: 0; }
.cta-banner .btn:hover { background: #000; color: var(--yellow-light); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  color: #a8a8a8;
  padding: 80px 0 0;
}
.site-footer h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.site-footer a { color: #a8a8a8; }
.site-footer a:hover { color: var(--yellow); }
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 14px;
}
.site-footer .footer-brand img.logo-mark { width: 40px; height: 40px; }
.site-footer .footer-brand .brand-jo { color: var(--white); }
.site-footer .footer-brand .brand-bee { color: var(--yellow); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { padding: 5px 0; font-size: 14.5px; }
.site-footer .company-info p { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.site-footer .license {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  margin-top: 60px;
  text-align: center;
}

/* ============ MISC ============ */
.bg-dots {
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.text-orange,
.text-yellow { color: var(--yellow-dark) !important; }
.text-navy,
.text-black { color: var(--black) !important; }
.bg-navy,
.bg-black { background: var(--black) !important; }
.bg-orange,
.bg-yellow { background: var(--yellow) !important; }

/* Animation on scroll */
.fade-up { opacity: 0; transform: translateY(30px); transition: all .7s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* RTL support */
[dir="rtl"] .flow-list::before { left: auto; right: 28px; }
[dir="rtl"] .flow-item { padding: 0 80px 36px 0; }
[dir="rtl"] .flow-item .flow-num { left: auto; right: 0; }

/* Responsive */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .hero { padding: 80px 0 100px; }
  .hero-slide { padding: 50px 0 70px; }
  /* Tablet: lang grid is 2 cols → taller; bump hero-slider to keep consistent height */
  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item { height: 1060px; }
  .main-header .navbar-nav .nav-link { padding: 10px 0 !important; }
  .main-header .navbar-nav .nav-link.active:not(.dropdown-toggle)::after { display: none; }
  .main-header .navbar-nav .nav-link.dropdown-toggle.active { background: none; }
  .lang-switcher { margin: 10px 0; }
}
@media (max-width: 576px) {
  .hero-stats { gap: 24px; }
  .hero-stats .stat-num { font-size: 32px; }
  .cta-banner { padding: 32px 24px; }
  .cta-banner h3 { font-size: 22px; }
  .flow-item { padding-left: 68px; }
  .flow-item .flow-num { width: 48px; height: 48px; font-size: 18px; }
  .flow-list::before { left: 23px; }
  .navbar-brand { font-size: 22px; }
  .navbar-brand .logo-mark { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  /* Mobile: lang grid is 1 col (8 rows) → tallest layout */
  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item { height: 1200px; }
}

/* ==========================================================================
   FEATURE ROWS — alternating 2-column stack (4 theories)
   ========================================================================== */
.feature-rows-section {
  padding: 100px 0 120px;
  background: #fafafa;
}
.feature-rows-section .section-header { margin-bottom: 72px; }

.feature-row { margin-bottom: 72px; }
.feature-row:last-child { margin-bottom: 0; }

.feature-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Direction: text left / image right (default) */
.feature-row[data-dir="text-image"] .feature-row-inner > .feature-text  { order: 1; }
.feature-row[data-dir="text-image"] .feature-row-inner > .feature-image { order: 2; }

/* Direction: image left / text right */
.feature-row[data-dir="image-text"] .feature-row-inner > .feature-image { order: 1; }
.feature-row[data-dir="image-text"] .feature-row-inner > .feature-text  { order: 2; }

.feature-text { position: relative; padding: 8px 0; }
.feature-text .feature-num {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -2px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-text h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 18px;
}
.feature-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}
.feature-text p {
  font-size: 16px;
  line-height: 1.95;
  color: #444;
  margin: 0;
}

.feature-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.25);
  aspect-ratio: 4 / 3;
  background: var(--black);
}
.feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 18px;
  pointer-events: none;
  transition: border-color .3s ease;
}
.feature-image:hover::before { border-color: var(--yellow); }
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.feature-image:hover img { transform: scale(1.04); }

/* Responsive: stack on tablet/mobile */
@media (max-width: 991px) {
  .feature-rows-section { padding: 70px 0 80px; }
  .feature-row { margin-bottom: 56px; }
  .feature-row-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* On small screens, always show image first, then text, regardless of data-dir */
  .feature-row .feature-row-inner > .feature-image { order: 1; }
  .feature-row .feature-row-inner > .feature-text  { order: 2; }
  .feature-text .feature-num { font-size: 54px; }
}
@media (max-width: 576px) {
  .feature-rows-section { padding: 56px 0 64px; }
  .feature-text h3 { font-size: 1.25rem; }
  .feature-text p { font-size: 15px; line-height: 1.85; }
}

/* ==========================================================================
   HERO — typewriter cursor + text fade-in per slide change
   ========================================================================== */
.hero-slide h1.typing::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  color: var(--yellow);
  animation: caret-blink 1s steps(1) infinite;
  font-weight: 400;
}
@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Hero text blocks fade-in when slide becomes active */
.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide p.lead,
.hero-slide .hero-lang-find,
.hero-slide .btn-group-hero {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.carousel-item.active .hero-slide .eyebrow,
.carousel-item.active .hero-slide h1,
.carousel-item.active .hero-slide p.lead,
.carousel-item.active .hero-slide .hero-lang-find,
.carousel-item.active .hero-slide .btn-group-hero {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered reveal timing */
.carousel-item.active .hero-slide .eyebrow       { transition-delay: .05s; }
.carousel-item.active .hero-slide h1             { transition-delay: .15s; }
.carousel-item.active .hero-slide p.lead         { transition-delay: .55s; }
.carousel-item.active .hero-slide .hero-lang-find{ transition-delay: .75s; }
.carousel-item.active .hero-slide .btn-group-hero{ transition-delay: .9s;  }

/* Bootstrap's carousel-fade already handles the slide crossfade; tune timing */
.hero-slider .carousel-fade .carousel-item {
  transition: opacity 1.1s ease-in-out;
}

/* ============ SERVICES — DUAL AUDIENCE ============ */
.services-dual { padding-top: 60px; padding-bottom: 60px; }
.services-dual .section-header p strong { color: var(--black); font-weight: 800; }

.services-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
}

/* Divider line between columns (desktop only) */
.services-dual-grid::before {
  content: "";
  position: absolute;
  top: 10%; bottom: 10%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
  pointer-events: none;
}

.services-col {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.services-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg, 0 18px 40px rgba(0,0,0,0.08)); }

/* Top accent bar per audience */
.services-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.services-col-jobseeker::before { background: linear-gradient(90deg, #4a90e2, #6ab1f5); }
.services-col-company::before { background: linear-gradient(90deg, var(--yellow), var(--yellow-dark)); }

.services-col-head { margin-bottom: 22px; }
.services-col-head h3 {
  font-weight: 800;
  font-size: 22px;
  color: var(--black);
  margin: 14px 0 0;
  line-height: 1.4;
}
.services-col-head h3 small {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
}
.audience-tag i { font-size: 15px; }
.tag-jobseeker { background: rgba(74, 144, 226, 0.12); color: #2d6fbe; border-color: rgba(74,144,226,0.3); }
.tag-company   { background: rgba(255, 198, 11, 0.18); color: #9a7400; border-color: rgba(255,198,11,0.4); }

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.service-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  align-items: start;
}
.service-list li:last-child { border-bottom: 0; }
.service-list strong {
  display: block;
  font-size: 15.5px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.45;
}
.service-list p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.svc-icon {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 17px;
  flex-shrink: 0;
}
.services-col-jobseeker .svc-icon { background: rgba(74,144,226,0.12); color: #2d6fbe; }
.services-col-company   .svc-icon { background: rgba(255,198,11,0.18); color: #8a6600; }

.services-col-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 2px solid;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.services-col-foot i { font-size: 20px; }
.services-col-jobseeker .services-col-foot { border-top-color: rgba(74,144,226,0.3); }
.services-col-jobseeker .services-col-foot i { color: #4a90e2; }
.services-col-company .services-col-foot { border-top-color: rgba(255,198,11,0.4); }
.services-col-company .services-col-foot i { color: var(--yellow-dark); }

/* Outcome banner */
.services-outcome {
  margin-top: 44px;
  background: linear-gradient(135deg, var(--black) 0%, #1f1f1f 100%);
  border-radius: 22px;
  padding: 48px 32px 44px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.services-outcome::before {
  content: "";
  position: absolute;
  top: -60%; left: 50%;
  width: 60%; height: 220%;
  background: radial-gradient(ellipse, rgba(255,198,11,0.18), transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}
.outcome-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.outcome-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,198,11,0.15);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.services-outcome h3 {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  margin: 0 0 14px;
  line-height: 1.4;
}
.services-outcome h3 .hl { color: var(--yellow); }
.services-outcome p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.75;
}
.outcome-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.outcome-ctas .btn {
  padding: 12px 26px;
  font-weight: 700;
  border-radius: 999px;
  font-size: 14.5px;
}
.outcome-ctas .btn-outline-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.outcome-ctas .btn-outline-dark:hover {
  background: #fff; color: var(--black); border-color: #fff;
}
.outcome-ctas .btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.outcome-ctas .btn-primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  color: var(--black);
}

/* Responsive */
@media (max-width: 991px) {
  .services-dual-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-dual-grid::before { display: none; }
  .services-col { padding: 28px 24px 22px; }
  .services-col-head h3 { font-size: 20px; }
  .services-outcome { padding: 36px 22px 32px; }
  .services-outcome h3 { font-size: 22px; }
}

/* ============ UNIFIED CTA BUTTONS ============ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .2s, color .2s, transform .15s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
}
.btn-cta i { font-size: 17px; flex-shrink: 0; }
.btn-cta span { white-space: nowrap; }

.btn-cta-phone {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-cta-phone:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn-cta-primary {
  background: var(--yellow);
  color: var(--black);
  border: 1.5px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(255, 198, 11, 0.25);
}
.btn-cta-primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 198, 11, 0.35);
}
/* Light variant for dark backgrounds (e.g. services-outcome) */
.btn-cta-light {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-cta-light:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* ============ MINI CTA (between sections) ============ */
.mini-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--black) 0%, #1f1f1f 100%);
  border-radius: 22px;
  padding: 36px 36px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.mini-cta::before {
  content: "";
  position: absolute;
  top: -80%; right: -10%;
  width: 60%; height: 260%;
  background: radial-gradient(ellipse, rgba(255,198,11,0.15), transparent 65%);
  pointer-events: none;
}
.mini-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.mini-cta-text .outcome-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,198,11,0.18);
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mini-cta-text h3 {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.45;
  margin: 0 0 10px;
}
.mini-cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}
.mini-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mini-cta-actions .btn-cta { min-width: 220px; }
.mini-cta-actions .btn-cta-phone {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.mini-cta-actions .btn-cta-phone:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

@media (max-width: 767px) {
  .mini-cta { padding: 28px 22px; margin-top: 40px; }
  .mini-cta-inner { grid-template-columns: 1fr; gap: 20px; }
  .mini-cta-text h3 { font-size: 18.5px; }
  .mini-cta-actions { flex-direction: column; }
  .mini-cta-actions .btn-cta { min-width: 100%; width: 100%; }
}

/* ============ SERVICES OUTCOME — new CTA structure ============ */
.services-outcome .outcome-primary-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}
.services-outcome .outcome-primary-ctas .btn-cta { min-width: 260px; }

.services-outcome .outcome-secondary-link {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.services-outcome .outcome-secondary-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.services-outcome .outcome-secondary-link a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.services-outcome .outcome-secondary-link i { font-size: 14px; }

@media (max-width: 767px) {
  .services-outcome .outcome-primary-ctas .btn-cta { min-width: 100%; width: 100%; }
}

/* ============ STORY SECTION ============ */
.story-section { padding: 80px 0; }
.story-header { margin-bottom: 36px; }
.story-header .eyebrow { color: var(--yellow); font-weight: 700; letter-spacing: 3px; font-size: 13px; }
.story-header h2 {
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  margin: 10px 0 0;
  line-height: 1.4;
}
.story-body {
  max-width: 880px;
  margin: 0 auto 48px;
}
.story-body p {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 16px;
}
.story-body .story-note {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-left: 4px;
}
.story-body .text-yellow { color: var(--yellow); font-weight: 700; }

/* Funnel wrap w/ JP flag watermark */
.funnel-wrap {
  position: relative;
  padding: 40px 32px 36px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.funnel-jp-flag {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(188, 0, 45, 0.13) 0, rgba(188, 0, 45, 0.13) 110px, transparent 112px),
    linear-gradient(0deg, rgba(255,255,255,0.035), rgba(255,255,255,0.035));
  pointer-events: none;
  opacity: 0.9;
}
.funnel-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 28px;
}
.funnel-heading-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(188, 0, 45, 0.22);
  border: 1px solid rgba(188, 0, 45, 0.4);
  color: #ffb6c0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.funnel-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
}
.funnel-heading p {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  margin: 0;
}

.funnel-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 8px;
}

.funnel-step {
  text-align: center;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px 14px 20px;
  backdrop-filter: blur(6px);
  transition: transform .25s, border-color .25s;
}
.funnel-step:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.25); }

.step-num-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.step-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step-value span {
  font-size: 22px;
  font-weight: 700;
  margin-left: 2px;
}
.step-label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 4px;
}
.step-sub {
  color: rgba(255,255,255,0.5);
  font-size: 11.5px;
  line-height: 1.4;
  min-height: 16px;
}

.funnel-step-final {
  background: rgba(188, 0, 45, 0.18);
  border: 2px solid rgba(255, 198, 11, 0.7);
  box-shadow: 0 10px 30px rgba(255, 198, 11, 0.12);
}
.funnel-step-final .step-num-tag {
  background: var(--yellow);
  color: var(--black);
}
.funnel-step-final .step-value { color: var(--yellow); }

.funnel-arrow {
  color: rgba(255, 198, 11, 0.6);
  font-size: 22px;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-arrow i { display: block; }

.funnel-flow-labels {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  text-align: center;
  padding: 0 8px;
}
.funnel-flow-labels span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  padding: 8px 6px;
  border-top: 1px dashed rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
  .story-header h2 { font-size: 24px; }
  .funnel-wrap { padding: 28px 18px 24px; }
  .funnel-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .funnel-arrow { display: none; }
  .funnel-flow-labels { display: none; }
  .step-value { font-size: 32px; }
}
@media (max-width: 520px) {
  .funnel-steps { grid-template-columns: 1fr; }
}

/* ============ CTA BANNER (final, dual) ============ */
.cta-banner-dual {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 22px;
  padding: 40px 40px 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner-dual::before {
  content: "";
  position: absolute;
  top: -40%; left: -10%;
  width: 45%; height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.35), transparent 70%);
  pointer-events: none;
}
.cta-banner-dual .cta-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-audience-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.cta-banner-dual .cta-banner-text h3 {
  color: var(--black);
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 12px;
  line-height: 1.4;
}
.cta-banner-dual .cta-banner-text p {
  color: rgba(0,0,0,0.78);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.cta-banner-dual .cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cta-banner-dual .cta-banner-actions .btn-cta { min-width: 240px; }

.cta-banner-dual .cta-banner-sub {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.18);
  text-align: center;
}
.cta-banner-dual .cta-banner-sub a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s;
}
.cta-banner-dual .cta-banner-sub a:hover { background: rgba(0,0,0,0.08); }
.cta-banner-dual .cta-banner-sub i { font-size: 14px; }

@media (max-width: 767px) {
  .cta-banner-dual { padding: 30px 22px 24px; }
  .cta-banner-dual .cta-banner-inner { grid-template-columns: 1fr; gap: 22px; }
  .cta-banner-dual .cta-banner-text h3 { font-size: 20px; }
  .cta-banner-dual .cta-banner-actions { flex-direction: column; }
  .cta-banner-dual .cta-banner-actions .btn-cta { min-width: 100%; width: 100%; }
}

/* ============ PAGE HERO (subpage) ============ */
.page-hero {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(135deg, var(--black) 0%, #1f1f1f 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,198,11,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255,198,11,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 960px; }

.breadcrumb-nav { margin-bottom: 18px; }
.breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
}
.breadcrumb-nav .breadcrumb-item a:hover { color: var(--yellow); }
.breadcrumb-nav .breadcrumb-item.active { color: var(--yellow); }
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.35);
  content: "›";
}

.page-hero .eyebrow {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.page-hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.4;
  margin: 14px 0 18px;
}
.page-hero h1 .hl { color: var(--yellow); }
.page-hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 16.5px;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 0 30px;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-hero-actions .btn-cta { min-width: 220px; }
.page-hero-actions-center { justify-content: center; }

/* page-hero media variant (video / image bg) */
.page-hero-media {
  padding: 110px 0 100px;
}
.page-hero-media .container { text-align: center; max-width: 960px; }
.page-hero-media .breadcrumb-nav { justify-content: center; display: flex; }
.page-hero-media .lead { margin-left: auto; margin-right: auto; }
.page-hero-video,
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.9) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(255,198,11,0.12), transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-media .container { position: relative; z-index: 2; }

@media (max-width: 767px) {
  .page-hero { padding: 70px 0 60px; }
  .page-hero-media { padding: 90px 0 80px; }
  .page-hero h1 { font-size: 26px; line-height: 1.45; }
  .page-hero .lead { font-size: 14.5px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn-cta { min-width: 100%; width: 100%; }
  .page-hero-actions-center { align-items: center; }
}

/* ============ SERVICE MODES ============ */
.service-modes-section { padding: 80px 0; }
.service-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.mode-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(255,198,11,0.4);
}

.mode-card-featured {
  border: 2px solid var(--yellow);
  box-shadow: 0 12px 36px rgba(255,198,11,0.18);
  transform: translateY(-6px);
}
.mode-card-featured:hover {
  transform: translateY(-10px);
}

.mode-head { margin-bottom: 20px; }
.mode-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--black);
  color: var(--yellow);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.mode-head h3 {
  font-weight: 800;
  color: var(--black);
  font-size: 22px;
  margin: 0 0 8px;
}
.mode-lead {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.mode-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.mode-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--black);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  line-height: 1.6;
}
.mode-list li:last-child { border-bottom: 0; }
.mode-list li i {
  color: var(--yellow-dark);
  font-size: 17px;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: 1px;
}

.mode-foot { padding-top: 12px; border-top: 1px solid var(--border); }
.mode-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mode-badge-featured {
  background: var(--yellow);
  color: var(--black);
}

.service-modes-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(255,198,11,0.1);
  border: 1px solid rgba(255,198,11,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}
.service-modes-note i { color: var(--yellow-dark); font-size: 20px; flex-shrink: 0; }

@media (max-width: 991px) {
  .service-modes-grid { grid-template-columns: 1fr; gap: 18px; }
  .mode-card-featured { transform: none; }
  .mode-card-featured:hover { transform: translateY(-4px); }
}

/* ============ INDUSTRIES ============ */
.industries-section { padding: 80px 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.industry-card {
  position: relative;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  isolation: isolate;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,198,11,0.6);
  box-shadow: 0 18px 36px rgba(0,0,0,0.30);
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
  transition: background .3s;
}
.industry-card:hover .industry-card-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(255,198,11,0.22), transparent 60%);
}
.industry-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px 26px;
  text-align: center;
  align-self: flex-end;
  width: 100%;
}
.industry-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255,198,11,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--yellow);
  font-size: 26px;
  border: 1px solid rgba(255,198,11,0.35);
}
.industry-card h4 {
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.industry-card p {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
.industries-note {
  margin-top: 28px;
  padding: 18px 24px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.7;
}
.industries-note p { margin: 0 0 6px; }
.industries-note p:last-child { margin: 0; }
.industries-note strong { color: var(--black); }
.industries-note-sub {
  color: var(--text-muted);
  font-size: 13px;
}
.industries-note-sub i { margin-right: 6px; }

@media (max-width: 991px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* ============ POST-HIRE GRID ============ */
.post-hire-section { padding: 80px 0; }
.post-hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.post-hire-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.post-hire-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,198,11,0.4);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.phc-num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,198,11,0.22);
  line-height: 1;
}
.post-hire-card h4 {
  font-weight: 800;
  font-size: 16.5px;
  color: var(--black);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 40px;
}
.post-hire-card h4 i {
  color: var(--yellow-dark);
  font-size: 20px;
  flex-shrink: 0;
}
.post-hire-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) { .post-hire-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .post-hire-grid { grid-template-columns: 1fr; } }

/* ============ FLOW OVERVIEW ============ */
.flow-overview-section { padding: 80px 0; }
.flow-overview-grid {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 10px;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.flow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(255,198,11,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.fs-num {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--black);
  color: var(--yellow);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.flow-step h4 {
  font-weight: 800;
  font-size: 16px;
  color: var(--black);
  margin: 0 0 8px;
}
.flow-step p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.flow-step-final {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-color: var(--yellow-dark);
}
.flow-step-final .fs-num { background: var(--black); color: var(--yellow); }
.flow-step-final h4 { color: var(--black); }
.flow-step-final p { color: rgba(0,0,0,0.78); }

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  font-size: 22px;
}

.flow-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .flow-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .flow-arrow { display: none; }
}
@media (max-width: 575px) {
  .flow-overview-grid { grid-template-columns: 1fr; }
}

/* ============ FEE SECTION ============ */
.fee-section { padding: 80px 0 100px; }
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.fee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}
.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.fee-card h4 {
  font-weight: 800;
  font-size: 17px;
  color: var(--black);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fee-card h4 i { font-size: 22px; }
.fee-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .fee-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ FLOW PAGE: INTRO MESSAGE ============ */
.flow-intro-section { padding: 70px 0 30px; }
.flow-intro-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  max-width: 960px;
  margin: 0 auto;
}
.flow-intro-icon {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,198,11,0.18);
  border-radius: 20px;
  font-size: 36px;
  color: var(--yellow-dark);
}

.flow-intro-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--yellow-dark);
  background: rgba(255,198,11,0.14);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.flow-intro-body h2 {
  font-weight: 800;
  font-size: 28px;
  color: var(--black);
  margin: 0 0 20px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.flow-intro-body h2 .hl { color: var(--yellow-dark); }

.flow-intro-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
  margin: 0 0 18px;
}
.flow-intro-body p:last-child { margin-bottom: 0; }
.flow-intro-body strong { color: var(--black); font-weight: 700; }

.flow-intro-lead {
  font-size: 16px !important;
  color: var(--black) !important;
  padding: 16px 20px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  border-left: 3px solid var(--black);
}

.flow-intro-quote {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  margin: 26px 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  border-radius: 14px;
  border-left: 4px solid var(--yellow);
  position: relative;
}
.flow-intro-quote > i {
  font-size: 34px;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.9;
}
.flow-intro-quote p {
  color: #fff !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  margin: 0 0 6px !important;
  font-weight: 500;
}
.flow-intro-quote p:last-child { margin-bottom: 0 !important; }
.flow-intro-quote strong {
  color: var(--yellow) !important;
  font-weight: 700;
}

.flow-intro-tagline {
  margin-top: 22px !important;
  padding: 14px 18px;
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700;
  font-size: 15px !important;
  border-radius: 10px;
  line-height: 1.6 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-intro-tagline i {
  font-size: 20px;
  color: var(--black);
}

@media (max-width: 767px) {
  .flow-intro-card { grid-template-columns: 1fr; padding: 28px 22px; gap: 18px; }
  .flow-intro-icon { width: 64px; height: 64px; font-size: 28px; border-radius: 16px; }
  .flow-intro-body h2 { font-size: 21px; line-height: 1.5; }
  .flow-intro-lead { font-size: 15px !important; padding: 14px 16px; }
  .flow-intro-quote { grid-template-columns: 1fr; gap: 10px; padding: 18px 18px; }
  .flow-intro-quote > i { font-size: 26px; }
  .flow-intro-quote p { font-size: 15px !important; }
  .flow-intro-tagline { font-size: 14px !important; padding: 12px 14px; }
}

/* ============ FLOW PAGE: VERTICAL TIMELINE ============ */
.flow-timeline-section { padding: 80px 0; }
.flow-timeline {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.flow-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 34px;
  width: 3px;
  background:
    linear-gradient(180deg, var(--yellow) 0%, rgba(255,198,11,0.4) 100%);
  border-radius: 2px;
}
.flow-timeline-item {
  position: relative;
  padding: 0 0 32px 90px;
}
.flow-timeline-item:last-child { padding-bottom: 0; }

.fti-marker {
  position: absolute;
  top: 10px;
  left: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  border: 4px solid var(--yellow);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  z-index: 2;
}
.fti-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.fti-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px 24px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fti-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,198,11,0.5);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.fti-card::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 30px;
  width: 0; height: 0;
  border: 12px solid transparent;
  border-right-color: var(--white);
  filter: drop-shadow(-1px 0 0 var(--border));
}
.fti-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,198,11,0.16);
  color: var(--yellow-dark);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 14px;
}
.fti-card h3 {
  font-weight: 800;
  font-size: 22px;
  color: var(--black);
  margin: 0 0 6px;
}
.fti-lead {
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 14.5px;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.fti-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fti-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--black);
  border-bottom: 1px dashed var(--border);
}
.fti-list li:last-child { border-bottom: 0; }
.fti-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,198,11,0.22);
}

@media (max-width: 767px) {
  .flow-timeline { margin-top: 24px; }
  .flow-timeline::before { left: 24px; }
  .flow-timeline-item { padding-left: 68px; padding-bottom: 24px; }
  .fti-marker { width: 50px; height: 50px; top: 6px; border-width: 3px; }
  .fti-num { font-size: 16px; }
  .fti-card { padding: 22px 22px 18px; }
  .fti-card::before { display: none; }
  .fti-card h3 { font-size: 18px; }
  .fti-lead { font-size: 13.5px; }
  .fti-list li { font-size: 13.5px; }
}

/* ============ FLOW PAGE: GOAL BANNER ============ */
.flow-goal-banner {
  margin-top: 56px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,198,11,0.20), transparent 55%),
    linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  text-align: center;
  border: 1px solid rgba(255,198,11,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
.fgb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.flow-goal-banner h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.flow-goal-banner p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 auto 36px;
}
.flow-goal-banner strong { color: var(--yellow); font-weight: 700; }

.fgb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}
.fgb-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,198,11,0.25);
  border-radius: 16px;
  padding: 24px 16px;
}
.fgb-stat-num {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.fgb-stat-num small {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--yellow);
}
.fgb-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .flow-goal-banner { padding: 36px 22px; margin-top: 40px; }
  .flow-goal-banner h3 { font-size: 28px; }
  .flow-goal-banner p { font-size: 14.5px; }
  .fgb-stats { grid-template-columns: 1fr; gap: 12px; }
  .fgb-stat-num { font-size: 34px; }
}

/* ============ FLOW PAGE: SUPPORT CARDS ============ */
.flow-support-section { padding: 70px 0 80px; }
.flow-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.flow-support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  transition: transform .25s, box-shadow .25s;
}
.flow-support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.flow-support-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,198,11,0.16);
  color: var(--yellow-dark);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 14px;
}
.flow-support-card h4 {
  font-weight: 800;
  font-size: 16.5px;
  color: var(--black);
  margin: 0 0 10px;
  line-height: 1.55;
}
.flow-support-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .flow-support-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ PAGE ============ */
.faq-cat-section { padding: 50px 0 20px; }
.faq-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.faq-cat-card i {
  font-size: 28px;
  color: var(--yellow-dark);
  background: rgba(255,198,11,0.18);
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.faq-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: var(--yellow);
  color: var(--black);
}

.faq-section { padding: 70px 0; }
.faq-section .section-header { margin-bottom: 36px; text-align: center; }
.faq-section .section-header .eyebrow {
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.faq-section .section-header h2 {
  font-weight: 800;
  font-size: 26px;
  color: var(--black);
  margin: 10px 0 0;
}
.faq-section .section-header h2 .hl { color: var(--yellow-dark); }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-color: rgba(255,198,11,0.6);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}
.faq-q:hover { background: rgba(255,198,11,0.04); }
.faq-q-mark {
  width: 36px; height: 36px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 17px;
}
.faq-q-text {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--black);
  line-height: 1.6;
}
.faq-q-icon {
  color: var(--yellow-dark);
  font-size: 18px;
  transition: transform .2s ease;
}
.faq-q[aria-expanded="true"] .faq-q-icon { transform: rotate(45deg); }
.faq-q[aria-expanded="true"] { background: rgba(255,198,11,0.08); }

.faq-a-wrap { background: #fafafa; }
.faq-a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 22px 22px 26px;
  border-top: 1px dashed var(--border);
}
.faq-a-mark {
  width: 36px; height: 36px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 17px;
}
.faq-a-text p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.9;
  margin: 0 0 10px;
}
.faq-a-text p:last-child { margin-bottom: 0; }
.faq-a-text strong { color: var(--black); font-weight: 700; }
.faq-a-text ul {
  margin: 6px 0 10px;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.9;
}
.faq-a-text ul li { margin-bottom: 4px; }

@media (max-width: 767px) {
  .faq-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .faq-cat-card { padding: 16px 10px; font-size: 13px; }
  .faq-cat-card i { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
  .faq-section { padding: 50px 0; }
  .faq-section .section-header h2 { font-size: 21px; }
  .faq-q { grid-template-columns: 36px 1fr 22px; padding: 16px 16px; gap: 10px; }
  .faq-q-mark { width: 30px; height: 30px; font-size: 14px; }
  .faq-q-text { font-size: 14.5px; }
  .faq-a { grid-template-columns: 36px 1fr; padding: 16px 16px 20px; gap: 10px; }
  .faq-a-mark { width: 30px; height: 30px; font-size: 14px; }
  .faq-a-text p, .faq-a-text ul { font-size: 13.5px; }
}

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 70px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.contact-form-wrap h2 {
  font-weight: 800;
  font-size: 22px;
  color: var(--black);
  margin: 0 0 8px;
}
.contact-form-wrap .contact-lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 26px;
}

.form-group { margin-bottom: 22px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 8px;
}
.form-label .req {
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.form-label .opt {
  background: #eee;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--black);
  background: #fafafa;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,198,11,0.18);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.6;
}
.form-consent {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}
.form-consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.form-consent input[type="checkbox"] { margin-top: 4px; accent-color: var(--yellow-dark); width: 16px; height: 16px; }
.form-consent a { color: var(--yellow-dark); font-weight: 600; text-decoration: underline; }

/* ---- Validation states ---- */
.invalid-msg {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #c62828;
  font-weight: 600;
}
.invalid-msg.is-shown {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.invalid-msg.is-shown::before {
  content: "\F33A"; /* bi-exclamation-circle-fill */
  font-family: "bootstrap-icons";
  font-weight: normal;
  color: #c62828;
  font-size: 13px;
  line-height: 1.5;
  flex-shrink: 0;
}

.form-control.is-invalid,
.form-select.is-invalid,
textarea.form-control.is-invalid {
  border-color: #e53935;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
}
.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
textarea.form-control.is-invalid:focus {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.22);
}

.form-control.is-valid,
.form-select.is-valid,
textarea.form-control.is-valid {
  border-color: #c8c8c8;
  background: var(--white);
}

.form-consent.is-invalid {
  border-color: #e53935;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
}
.form-consent.is-valid {
  border-color: #c8c8c8;
  background: var(--white);
}

.form-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #e53935;
  border-left: 4px solid #c62828;
  color: #c62828;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 18px;
}
.form-error-banner i {
  font-size: 18px;
  flex-shrink: 0;
}
.form-error-banner .err-count {
  color: #c62828;
  font-weight: 800;
  margin: 0 2px;
}

.form-submit-row { margin-top: 28px; text-align: center; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--black);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  min-width: 260px;
}
.btn-submit:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,198,11,0.4);
}
.btn-submit i { font-size: 18px; }

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-card {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,198,11,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info-card h3 {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 20px;
  position: relative;
}
.contact-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.contact-info-item:first-of-type { border-top: 0; padding-top: 0; }
.contact-info-item i {
  width: 40px; height: 40px;
  background: rgba(255,198,11,0.15);
  color: var(--yellow);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-item .ci-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 4px;
}
.contact-info-item .ci-value {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.contact-info-item .ci-value a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,198,11,0.4);
  transition: color .2s ease, border-color .2s ease;
}
.contact-info-item .ci-value a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.contact-info-item .ci-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  margin: 2px 0 0;
  line-height: 1.6;
}

.contact-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
}
.contact-side-card h4 {
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
  margin: 0 0 8px;
}
.contact-side-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0 0 12px;
}
.contact-side-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
}
.contact-side-card a:hover { color: var(--black); }

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 767px) {
  .contact-form-wrap { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .btn-submit { min-width: 100%; width: 100%; padding: 14px 24px; }
}

/* ===================================================================
   PRIVACY POLICY PAGE
   =================================================================== */
.privacy-section { padding: 80px 0; background: var(--bg-soft, #fafafa); }
.privacy-intro {
  background: #fff;
  border-left: 4px solid var(--yellow);
  padding: 24px 28px;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  margin-bottom: 40px;
  line-height: 1.9;
  font-size: 15.5px;
  color: var(--text);
}
.privacy-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.privacy-article h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.privacy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}
.privacy-article p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text);
  margin: 0 0 12px;
}
.privacy-article p:last-child { margin-bottom: 0; }
.privacy-list {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}
.privacy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text);
}
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.privacy-contact-box {
  background: #fafafa;
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
}
.privacy-contact-box a {
  color: var(--yellow-dark);
  font-weight: 600;
  text-decoration: underline;
}
.privacy-meta {
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 36px;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .privacy-section { padding: 50px 0; }
  .privacy-article { padding: 22px 20px; }
  .privacy-article h2 { font-size: 17px; gap: 10px; }
  .privacy-num { width: 34px; height: 34px; font-size: 12px; }
}

/* ===================================================================
   FOR JOBSEEKERS — Shared button additions
   =================================================================== */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-yellow:hover {
  background: #ffe14c;
  color: var(--black);
  border-color: #ffe14c;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,198,11,0.45);
}
.btn-dark-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--black);
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-dark-yellow:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,198,11,0.4);
}

/* ===================================================================
   FOR JOBSEEKERS — Top Landing Page
   =================================================================== */
/* Welcome section */
.js-welcome { padding: 80px 0; }
.js-welcome-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  position: relative;
}
.js-welcome-img::after {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  width: 100px; height: 100px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.js-welcome-img img { width: 100%; height: auto; display: block; }
.js-welcome-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
  margin: 10px 0 20px;
  color: var(--black);
}
.js-welcome-lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 20px;
}
.js-welcome p { font-size: 15px; line-height: 1.9; color: var(--text); }

/* Paths: 3-card grid to subpages */
.js-paths { padding: 80px 0; }
.js-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.js-path-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.js-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: var(--yellow);
  color: var(--black);
}
.js-path-img { overflow: hidden; height: 200px; }
.js-path-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.js-path-card:hover .js-path-img img { transform: scale(1.06); }
.js-path-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.js-path-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.js-path-body h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.4;
}
.js-path-body h3 small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}
.js-path-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  flex: 1;
  margin-bottom: 14px;
}
.js-path-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 14px;
  transition: gap .2s ease;
}
.js-path-card:hover .js-path-link { gap: 12px; }

/* Why Jobee: alternating 4 rows */
.js-why { padding: 80px 0; }
.js-why-list { margin-top: 50px; }
.js-why-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.js-why-item.reverse { direction: rtl; }
.js-why-item.reverse > * { direction: ltr; }
.js-why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  position: relative;
}
.js-why-img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.js-why-body .js-why-num {
  display: inline-block;
  font-size: 56px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.js-why-body h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 16px;
}
.js-why-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 12px;
}

/* Jobs CTA */
.js-jobs { padding: 70px 0; }
.js-jobs-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.js-jobs-img img { width: 100%; height: auto; display: block; }

/* Final CTA */
.js-cta { padding: 80px 0; }
.js-cta-box {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.js-cta-box::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,198,11,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.js-cta-box::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,198,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.js-cta-content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.js-cta-content .eyebrow { color: var(--yellow); }
.js-cta-content h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.4;
  margin: 10px 0 18px;
}
.js-cta-content p {
  color: #d7d7d7;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}
.js-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================================================================
   FOR JOBSEEKERS — Support page
   =================================================================== */
.js-sup-intro { padding: 80px 0 40px; }
.js-sup-intro h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.45;
  margin: 10px 0 18px;
  color: var(--black);
}
.js-sup-intro-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

.js-sup-pillars { padding: 70px 0; }
.js-sup-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.js-sup-item.reverse { direction: rtl; }
.js-sup-item.reverse > * { direction: ltr; }
.js-sup-item:last-child { margin-bottom: 0; }
.js-sup-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.js-sup-img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.js-sup-phase {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 2;
}
.js-sup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.js-sup-eyebrow i { font-size: 14px; }
.js-sup-body h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 16px;
}
.js-sup-body > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 18px;
}
.js-sup-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.js-sup-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.js-sup-list li:last-child { border-bottom: none; }
.js-sup-list li i {
  color: var(--yellow-dark);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Language support */
.js-sup-lang { padding: 80px 0; background: #fafafa; }
.js-sup-lang-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.js-sup-lang-img img { width: 100%; height: auto; display: block; }
.js-sup-lang h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin: 10px 0 18px;
}
.js-sup-lang-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.js-sup-lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
}
.js-sup-lang-chip img { width: 18px; height: auto; }

/* ===================================================================
   FOR JOBSEEKERS — How It Works (flow) page
   =================================================================== */
.js-flow-intro { padding: 70px 0 20px; }

.js-flow-steps { padding: 60px 0 80px; }
.js-flow-timeline { margin-top: 50px; }
.js-flow-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.js-flow-step.reverse { direction: rtl; }
.js-flow-step.reverse > * { direction: ltr; }
.js-flow-step:last-child { margin-bottom: 0; }
.js-flow-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  position: relative;
}
.js-flow-img img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.js-flow-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.js-flow-num {
  font-size: 54px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.js-flow-period {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.js-flow-period i { font-size: 12px; color: var(--yellow-dark); }
.js-flow-body h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 14px;
}
.js-flow-body > p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}
.js-flow-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.js-flow-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
}
.js-flow-points li i {
  color: var(--yellow-dark);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Timing note card */
.js-flow-timing { padding: 40px 0 80px; }
.js-flow-timing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.js-flow-timing-icon {
  background: var(--yellow);
  color: var(--black);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.js-flow-timing-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--black);
}
.js-flow-timing-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 6px;
}
.js-flow-timing-card .hl {
  color: var(--yellow-dark);
  font-weight: 700;
}

/* ===================================================================
   RESPONSIVE — For Jobseekers
   =================================================================== */
@media (max-width: 991px) {
  .js-paths-grid { grid-template-columns: 1fr; gap: 20px; }
  .js-why-item,
  .js-sup-item,
  .js-flow-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .js-why-item.reverse,
  .js-sup-item.reverse,
  .js-flow-step.reverse { direction: ltr; }
  .js-welcome-title,
  .js-sup-intro h2,
  .js-sup-lang h2,
  .js-cta-content h2 { font-size: 26px; }
  .js-why-body h3,
  .js-sup-body h3,
  .js-flow-body h3 { font-size: 21px; }
  .js-why-body .js-why-num,
  .js-flow-num { font-size: 46px; }
}
@media (max-width: 767px) {
  .js-welcome, .js-paths, .js-why, .js-cta { padding: 50px 0; }
  .js-sup-intro { padding: 50px 0 30px; }
  .js-sup-pillars { padding: 40px 0 60px; }
  .js-flow-intro { padding: 50px 0 10px; }
  .js-flow-steps { padding: 40px 0 60px; }
  .js-flow-timing { padding: 20px 0 60px; }
  .js-welcome-title,
  .js-sup-intro h2,
  .js-sup-lang h2,
  .js-cta-content h2 { font-size: 22px; }
  .js-cta-box { padding: 40px 24px; }
  .js-cta-buttons { flex-direction: column; align-items: stretch; }
  .js-cta-buttons .btn-yellow,
  .js-cta-buttons .btn-outline-light { width: 100%; }
  .js-flow-timing-card { flex-direction: column; }
}

/* ============================================
   FOR JOBSEEKERS — Support Hub (2-choice)
============================================ */
/* Header dropdown sub-items (indented under parent) */
.dropdown-menu .dropdown-sub {
  padding-left: 30px;
  font-size: 14px;
  color: #666;
  position: relative;
}
.dropdown-menu .dropdown-sub i.bi-dot {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: 22px;
}
.dropdown-menu .dropdown-sub:hover {
  background: #fff8d4;
  color: var(--black);
}
.dropdown-menu .dropdown-sub.active {
  background: #fff8d4;
  color: var(--black);
  font-weight: 600;
}
.dropdown-menu .dropdown-item.fw-semibold.active {
  background: var(--yellow);
  color: var(--black);
}

/* Hub intro */
.js-hub-intro {
  padding: 70px 0 40px;
}
.js-hub-intro h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.js-hub-intro-lead {
  font-size: 16px;
  color: #444;
  line-height: 2.0;
}

/* Hub choice cards grid */
.js-hub-choices {
  padding: 0 0 80px;
}
.js-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.js-hub-card {
  display: block;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}
.js-hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  text-decoration: none;
  color: var(--black);
}
.js-hub-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.js-hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.js-hub-card:hover .js-hub-card-img img {
  transform: scale(1.04);
}
.js-hub-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.js-hub-card-body {
  padding: 30px 32px 32px;
}
.js-hub-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.js-hub-card-eyebrow i {
  color: var(--yellow);
  font-size: 18px;
}
.js-hub-card-body h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.4;
}
.js-hub-card-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.js-hub-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px dashed #e5e5e5;
  padding-top: 20px;
}
.js-hub-card-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
  padding: 6px 0;
  line-height: 1.6;
}
.js-hub-card-points i {
  color: var(--yellow);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.js-hub-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  background: var(--yellow);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(255, 214, 10, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.js-hub-card-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.js-hub-card:hover .js-hub-card-btn {
  background: var(--black);
  color: var(--yellow);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  gap: 14px;
}
.js-hub-card:hover .js-hub-card-btn i {
  transform: translateX(4px);
}

/* Comparison table */
.js-hub-compare {
  padding: 80px 0;
}
.js-compare-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  overflow-x: auto;
}
.js-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 700px;
}
.js-compare-table th,
.js-compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.js-compare-table thead th {
  background: transparent;
  padding-top: 10px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--black);
  font-weight: 700;
}
.js-compare-table thead th:first-child {
  width: 140px;
}
.js-compare-head {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.js-compare-head i {
  color: var(--yellow);
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.js-compare-head span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.4;
}
.js-compare-head small {
  display: inline-block;
  font-size: 12px;
  color: var(--text-muted, #6b7280);
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 2px;
}
.js-compare-table tbody th {
  background: #fafafa;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 140px;
  white-space: nowrap;
}
.js-compare-table tbody td {
  color: #333;
  line-height: 1.6;
}
.js-compare-table tbody tr:last-child th,
.js-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Domestic page — stats grid */
.js-sup-stats {
  padding: 70px 0;
}
.js-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.js-stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.js-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.js-stat-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.js-stat-num small {
  font-size: 20px;
  font-weight: 700;
  color: #888;
  margin-left: 2px;
}
.js-stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.js-stat-card small {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}

/* Domestic page — Who Is This For grid */
.js-who-for {
  padding: 80px 0;
}
.js-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.js-who-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.js-who-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.js-who-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 16px;
}
.js-who-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.js-who-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* Section lead (used in compare section) */
.section-header .section-lead {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

/* Responsive — 991px */
@media (max-width: 991px) {
  .js-hub-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .js-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .js-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .js-hub-intro { padding: 50px 0 24px; }
  .js-hub-intro h2 { font-size: 22px; }
  .js-hub-choices { padding: 0 0 50px; }
  .js-hub-compare { padding: 50px 0; }
  .js-sup-stats { padding: 50px 0; }
  .js-who-for { padding: 50px 0; }
  .js-who-grid {
    grid-template-columns: 1fr;
  }
  .js-hub-card-body { padding: 24px 20px 26px; }
  .js-hub-card-body h3 { font-size: 20px; }
  .js-compare-wrap { padding: 12px; }
  .js-stat-num { font-size: 36px; }
  .js-stat-num small { font-size: 16px; }
  .dropdown-menu .dropdown-sub {
    padding-left: 30px;
  }
}

/* ========================================
   FAQ AUDIENCE JUMP CARDS
======================================== */
.faq-audience-section {
  padding: 80px 0 20px;
  background: #fff;
}
.faq-audience-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.faq-audience-header .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--yellow-dark, #d4a209);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}
.faq-audience-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black, #000);
  line-height: 1.4;
}
.faq-audience-header p {
  color: #555;
  font-size: 15px;
}
.faq-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-audience-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 18px;
  text-decoration: none;
  color: var(--black, #000);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.faq-audience-card > i:first-child {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--yellow-dark, #d4a209);
  background: var(--yellow, #ffd60a);
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(255, 214, 10, 0.35);
}
.faq-audience-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-audience-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--yellow-dark, #d4a209);
}
.faq-audience-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black, #000);
}
.faq-audience-card small {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}
.faq-audience-arrow {
  flex-shrink: 0;
  font-size: 28px;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-audience-card:hover {
  border-color: var(--yellow, #ffd60a);
  box-shadow: 0 10px 24px rgba(255, 214, 10, 0.2);
  transform: translateY(-3px);
  color: var(--black, #000);
}
.faq-audience-card:hover .faq-audience-arrow {
  color: var(--yellow-dark, #d4a209);
  transform: translateY(4px);
}

/* FAQ SECTION — AUDIENCE-SPECIFIC */
.faq-section-audience {
  padding: 80px 0;
  scroll-margin-top: 80px;
}
.faq-section-audience .section-header {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.faq-section-audience .section-lead {
  color: #666;
  font-size: 15px;
  margin-top: 8px;
}
.eyebrow-domestic,
.eyebrow-overseas {
  display: inline-block;
  padding: 4px 14px;
  background: var(--yellow, #ffd60a);
  color: var(--black, #000);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .faq-audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .faq-audience-card {
    padding: 18px 20px;
    gap: 14px;
  }
  .faq-audience-card > i:first-child {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .faq-audience-title {
    font-size: 15px;
  }
  .faq-audience-card small {
    font-size: 11px;
  }
  .faq-audience-header h2 {
    font-size: 24px;
  }
}

/* =========================================================
 * /jobs/index.html — 求人検索ページ
 * ========================================================= */
.jobs-hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
}
.jobs-hero-stats .stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 214, 10, 0.25);
}
.jobs-hero-stats .stat-num {
  font-size: 28px; font-weight: 800; color: var(--yellow, #ffd60a); line-height: 1;
}
.jobs-hero-stats .stat-label {
  font-size: 12px; color: #c7d1e2; margin-top: 4px; letter-spacing: 1px;
}

/* 絞込パネル */
.jobs-filter-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.jobs-filter-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.jobs-filter-row + .jobs-filter-row { margin-top: 16px; }

.jobs-filter-label {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  color: var(--yellow-dark, #e6a800); text-transform: uppercase;
  margin-right: 6px;
}

.jobs-search-input {
  flex: 1 1 260px; min-width: 220px;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 11px 14px 11px 42px;
  font-size: 14.5px; background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'><path d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/></svg>");
  background-repeat: no-repeat;
  background-position: 14px center;
  transition: border-color .2s;
}
.jobs-search-input:focus {
  outline: none; border-color: var(--yellow, #ffd60a);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.18);
}

.jobs-select {
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 11px 30px 11px 14px; font-size: 14.5px;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  min-width: 160px;
}
.jobs-select:focus {
  outline: none; border-color: var(--yellow, #ffd60a);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.18);
}

.jobs-reset-btn {
  background: #fff; border: 1.5px solid #e5e7eb;
  border-radius: 10px; padding: 11px 18px;
  font-size: 13px; font-weight: 700; color: #555;
  cursor: pointer; transition: all .2s;
}
.jobs-reset-btn:hover { background: #fef3c7; border-color: var(--yellow, #ffd60a); color: var(--black, #111); }

/* カテゴリチップ */
.jobs-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.jobs-chip {
  background: #fff; border: 1.5px solid #e5e7eb;
  border-radius: 999px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 700; color: #444;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s;
}
.jobs-chip i { font-size: 14px; color: var(--yellow-dark, #e6a800); }
.jobs-chip span {
  background: #f3f4f6; color: #666;
  padding: 1px 8px; border-radius: 10px; font-size: 11px; font-weight: 800;
}
.jobs-chip:hover { border-color: var(--yellow, #ffd60a); color: var(--black, #111); }
.jobs-chip.is-active {
  background: var(--black, #111); color: #fff; border-color: var(--black, #111);
}
.jobs-chip.is-active i { color: var(--yellow, #ffd60a); }
.jobs-chip.is-active span { background: var(--yellow, #ffd60a); color: var(--black, #111); }

/* 特徴チップ（小さめ） */
.jobs-feature-chip {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 999px; padding: 6px 13px;
  font-size: 12.5px; font-weight: 600; color: #555;
  cursor: pointer; transition: all .2s;
}
.jobs-feature-chip:hover { border-color: var(--yellow, #ffd60a); color: var(--black, #111); }
.jobs-feature-chip.is-active {
  background: rgba(255, 214, 10, 0.2);
  border-color: var(--yellow, #ffd60a);
  color: var(--black, #111);
  font-weight: 800;
}

/* ステータス行 */
.jobs-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid #e5e7eb; margin-bottom: 20px;
  flex-wrap: wrap; gap: 10px;
}
.jobs-status-bar-left { font-size: 14px; color: #555; }
.jobs-status-bar-left strong { color: var(--black, #111); font-size: 18px; margin: 0 3px; }
.jobs-status-bar-right { font-size: 12px; color: var(--text-muted, #6b7280); display: flex; align-items: center; gap: 14px; }
.jobs-status-bar-right .jobs-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; display: inline-block; margin-right: 6px;
  animation: jobsPulse 1.6s infinite;
}
@keyframes jobsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* グリッド */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

/* カード */
.jobs-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.jobs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 10, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.jobs-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-bottom: 1px solid #f0f0f0;
}
.jobs-card-cat {
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--black, #111); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
}
.jobs-card-cat i { color: var(--yellow-dark, #e6a800); font-size: 14px; }
.jobs-card-badges { display: flex; gap: 6px; }
.jobs-badge {
  font-size: 10.5px; font-weight: 800; padding: 3px 9px;
  border-radius: 10px; letter-spacing: 0.5px;
}
.jobs-badge-new { background: #dc2626; color: #fff; }
.jobs-badge-featured { background: var(--yellow, #ffd60a); color: var(--black, #111); }
.jobs-badge-featured i { font-size: 10px; margin-right: 2px; }

.jobs-card-body { padding: 18px 22px; flex: 1; }
.jobs-card-posted {
  font-size: 11.5px; color: var(--text-muted, #6b7280);
  margin-bottom: 10px;
}
.jobs-card-posted i { font-size: 12px; margin-right: 3px; }

.jobs-card-title {
  font-size: 18px; font-weight: 800;
  color: var(--black, #111); line-height: 1.45;
  margin: 0 0 12px;
}

.jobs-card-wage {
  background: rgba(255, 214, 10, 0.15);
  border-left: 4px solid var(--yellow, #ffd60a);
  padding: 9px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 15.5px; font-weight: 800;
  color: var(--black, #111);
  margin-bottom: 16px;
}
.jobs-card-wage i { color: var(--yellow-dark, #e6a800); margin-right: 4px; }

.jobs-card-meta {
  list-style: none; padding: 0; margin: 0 0 14px;
}
.jobs-card-meta li {
  font-size: 13px; color: #444;
  padding: 4px 0; line-height: 1.55;
  display: flex; align-items: flex-start; gap: 7px;
}
.jobs-card-meta li i {
  color: var(--yellow-dark, #e6a800); font-size: 13px;
  flex-shrink: 0; margin-top: 3px;
}

.jobs-card-features {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-wrap: wrap; gap: 5px;
}
.jobs-card-features li {
  font-size: 11px; font-weight: 700;
  background: #f3f4f6; color: #333;
  padding: 4px 9px; border-radius: 6px;
}

.jobs-card-visa {
  font-size: 11.5px; color: #555;
  margin-bottom: 14px; line-height: 1.8;
}
.jobs-visa-label { font-weight: 700; margin-right: 4px; }
.jobs-visa-tag {
  display: inline-block;
  background: #f0f9ff; color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 1px 7px; border-radius: 4px;
  font-size: 10.5px; font-weight: 600;
  margin-right: 3px;
}

.jobs-card-desc {
  font-size: 13px; color: #555; line-height: 1.75;
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
}

.jobs-card-foot {
  padding: 16px 22px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.jobs-card-btn {
  flex: 1;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
}
.jobs-card-id {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted, #6b7280);
  letter-spacing: 1px;
}

/* 空状態 / もっと見る / エラー */
.jobs-empty {
  text-align: center; padding: 60px 20px;
  background: #fafafa; border-radius: 18px;
  color: var(--text-muted, #6b7280);
}
.jobs-empty i { font-size: 48px; color: #d1d5db; margin-bottom: 16px; }
.jobs-empty p { font-size: 15px; margin: 0; }

.jobs-more-wrap { text-align: center; margin-top: 36px; }
.jobs-more-btn {
  background: var(--black, #111); color: #fff;
  border: 0; border-radius: 999px;
  padding: 14px 36px; font-size: 14px; font-weight: 800;
  letter-spacing: 1px; cursor: pointer;
  transition: all .2s;
}
.jobs-more-btn:hover {
  background: var(--yellow, #ffd60a); color: var(--black, #111);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 214, 10, 0.4);
}

.jobs-error {
  padding: 40px 20px; text-align: center;
  background: #fef2f2; color: #991b1b;
  border-radius: 14px; font-size: 14px;
  border: 1px solid #fecaca;
}

/* 更新情報ノート */
.jobs-note {
  background: rgba(255, 214, 10, 0.1);
  border-left: 4px solid var(--yellow, #ffd60a);
  padding: 14px 20px; border-radius: 0 10px 10px 0;
  font-size: 13px; color: #555; margin-top: 28px; line-height: 1.75;
}
.jobs-note strong { color: var(--black, #111); }

/* レスポンシブ */
@media (max-width: 767px) {
  .jobs-grid { grid-template-columns: 1fr; gap: 16px; }
  .jobs-filter-panel { padding: 20px 18px; border-radius: 14px; }
  .jobs-filter-row { gap: 10px; }
  .jobs-search-input, .jobs-select { flex: 1 1 100%; }
  .jobs-reset-btn { flex: 1; }
  .jobs-card-title { font-size: 16.5px; }
  .jobs-card-head { padding: 12px 16px; }
  .jobs-card-body { padding: 16px 18px; }
  .jobs-card-foot { padding: 14px 18px; }
  .jobs-hero-stats { gap: 12px; }
  .jobs-hero-stats .stat { padding: 10px 16px; }
  .jobs-hero-stats .stat-num { font-size: 22px; }
}

/* ============ MINI CTA — DUAL (jobseeker + employer side-by-side) ============ */
.mini-cta-dual {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.mini-cta-dual > .mini-cta {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.mini-cta-dual .mini-cta-inner {
  grid-template-columns: 1fr;
  gap: 20px;
  flex: 1;
}
.mini-cta-dual .mini-cta-actions {
  flex-direction: column;
  gap: 10px;
}
.mini-cta-dual .mini-cta-actions .btn-cta {
  min-width: 0;
  width: 100%;
}
.mini-cta-dual .mini-cta-text h3 {
  font-size: 20px;
  line-height: 1.45;
}
@media (max-width: 991px) {
  .mini-cta-dual {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .mini-cta-dual { margin-top: 40px; }
}

/* ============ STAFF SECTION CTA (small inline CTA between team-role-sections) ============ */
.staff-section-cta {
  margin-top: 36px;
  padding: 18px 26px;
  background: linear-gradient(135deg, rgba(255,214,10,0.10) 0%, rgba(255,214,10,0.04) 100%);
  border: 1px solid rgba(255,214,10,0.35);
  border-radius: 14px;
}
.staff-section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.staff-section-cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--black, #111);
  line-height: 1.55;
  flex: 1;
  min-width: 220px;
}
.staff-section-cta-text i {
  font-size: 24px;
  color: var(--yellow-dark, #e6a800);
  flex-shrink: 0;
}
.staff-section-cta .btn-cta {
  min-width: 200px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .staff-section-cta { padding: 16px 18px; margin-top: 28px; }
  .staff-section-cta-inner { justify-content: center; }
  .staff-section-cta-text { justify-content: center; text-align: center; min-width: 0; }
  .staff-section-cta .btn-cta { width: 100%; }
}

/* ============ COMPANY PHILOSOPHY CARD — bee decoration ============ */
.philosophy-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.philosophy-card-bee {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 140px;
  height: 140px;
  transform: rotate(45deg);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 12px rgba(255,214,10,0.25));
}
@media (max-width: 767px) {
  .philosophy-card-bee {
    width: 110px;
    height: 110px;
    top: -16px;
    right: -16px;
  }
}

/* ============ Tagalog: smaller main nav font (long translated labels) ============ */
html[lang="tl"] .main-header .navbar-nav > .nav-item > .nav-link {
  font-size: 12.5px;
  padding: 20px 10px !important;
  line-height: 1.25;
}
html[lang="tl"] .main-header .navbar-brand small {
  font-size: 9.5px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  html[lang="tl"] .main-header .navbar-nav > .nav-item > .nav-link {
    font-size: 14px;
    padding: 10px 0 !important;
  }
}

/* ============ Footer active link (current page indicator) ============ */
.site-footer a.active {
  color: var(--yellow) !important;
  font-weight: 700;
}
