:root {
  --green-950: #0b2a18;
  --green-900: #12391f;
  --green-800: #164a29;
  --green-700: #1e5a35;
  --green-600: #256f42;
  --green-500: #2e8750;
  --green-400: #4aa56c;
  --green-100: #e3efe7;
  --green-50: #f2f7f4;

  --accent: #e53935;
  --accent-dark: #c62828;
  --accent-soft: #fdecec;

  --ink: #222222;
  --ink-soft: #3d3d3d;
  --muted: #666666;
  --muted-2: #8a8a8a;
  --line: #eaeaea;
  --line-strong: #dcdcdc;

  --surface: #ffffff;
  --surface-muted: #f8f9fa;
  --surface-green: #f2f7f4;

  --success: #28a745;
  --warning: #ffc107;
  --error: #dc3545;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(18, 57, 31, 0.05), 0 4px 14px rgba(18, 57, 31, 0.06);
  --shadow: 0 8px 30px rgba(18, 57, 31, 0.09);
  --shadow-lg: 0 24px 60px rgba(18, 57, 31, 0.15);
  --shadow-accent: 0 12px 28px rgba(229, 57, 53, 0.32);

  --font-display: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --header-h: 78px;
  --topbar-h: 42px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--green-800);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.1em;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.container-wide {
  width: min(1380px, 96%);
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-tight {
  padding: clamp(40px, 5vw, 64px) 0;
}

.section-tint {
  background: var(--surface-muted);
}

.section-green {
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  color: #fff;
}

.section-flush {
  padding-top: 0;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.green {
  color: var(--green-700);
}

.accent {
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}

.eyebrow .icon {
  width: 15px;
  height: 15px;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.eyebrow.accent {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: #fbd4d4;
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  margin-bottom: 0.5em;
}

.section-head .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.section-head-row .section-head {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.65rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}

.btn .icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 90, 53, 0.28);
}

.btn-green:hover {
  background: var(--green-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.6px solid var(--green-700);
  color: var(--green-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green-50);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  background: var(--surface-muted);
}

.btn-ghost:hover {
  background: var(--line);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--green-800);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--green-800);
}

.btn-white:hover {
  background: var(--green-100);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.86rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.34rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.chip .icon {
  width: 14px;
  height: 14px;
}

.chip.green {
  color: var(--green-700);
  background: var(--green-50);
  border-color: var(--green-100);
}

.chip.accent {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: #fbd4d4;
}

.chip.gold {
  color: #8a6d00;
  background: #fff8e1;
  border-color: #ffe082;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}

.tag.green {
  color: var(--green-700);
  background: var(--green-100);
}

.tag.red {
  color: var(--accent);
  background: var(--accent-soft);
}

.tag.gray {
  color: var(--muted);
  background: var(--surface-muted);
}

.icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon-lg {
  width: 30px;
  height: 30px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b301;
}

.stars .icon {
  width: 16px;
  height: 16px;
}

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.83rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--topbar-h);
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar a:hover {
  color: #fff;
}

.topbar .icon {
  width: 15px;
  height: 15px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.topbar-right .divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
}

.topbar-pill {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.22rem 0.8rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(18, 57, 31, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(18, 57, 31, 0.22);
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  color: var(--green-800);
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.22rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.85rem;
  border-radius: 9px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--green-700);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
}

.header-phone .icon {
  width: 17px;
  height: 17px;
  color: var(--green-700);
}

.header-phone small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.menu-toggle .icon {
  width: 22px;
  height: 22px;
}

.menu-toggle:hover {
  background: var(--surface-muted);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 24, 0.5);
  backdrop-filter: blur(3px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(11, 42, 24, 0.18);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.drawer-nav {
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  overflow-y: auto;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.6rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.drawer-nav a .icon {
  width: 18px;
  height: 18px;
  color: var(--muted-2);
}

.drawer-nav a:hover,
.drawer-nav a.active {
  background: var(--green-50);
  color: var(--green-700);
}

.drawer-nav a:hover .icon,
.drawer-nav a.active .icon {
  color: var(--green-600);
}

.drawer-foot {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-foot .btn {
  width: 100%;
}

.drawer-foot-meta {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drawer-foot-meta a {
  color: var(--green-700);
  font-weight: 600;
}

.hero {
  position: relative;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(46, 135, 80, 0.09), transparent 60%),
    radial-gradient(50% 50% at 5% 100%, rgba(46, 135, 80, 0.07), transparent 60%),
    linear-gradient(180deg, #fbfdfc 0%, #f3f8f5 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.2rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--green-700);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero h1 .accent {
  position: relative;
  white-space: nowrap;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.24em;
  background: var(--accent-soft);
  border-radius: 4px;
  z-index: -1;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 1.8rem;
}

.hero-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.75rem;
  max-width: 640px;
}

.search-tabs {
  display: flex;
  gap: 0.3rem;
  background: var(--surface-muted);
  border-radius: 11px;
  padding: 0.3rem;
  margin-bottom: 0.6rem;
}

.search-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 0.8rem;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}

.search-tab .icon {
  width: 17px;
  height: 17px;
}

.search-tab.active {
  background: #fff;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

.search-row {
  display: flex;
  gap: 0.6rem;
}

.search-row .field {
  flex: 1;
}

.search-row .field input {
  border: 0;
  padding: 0.85rem 0.4rem 0.85rem 0.2rem;
  font-size: 0.98rem;
  background: transparent;
  outline: none;
  width: 100%;
}

.search-row .field input::placeholder {
  color: var(--muted-2);
}

.search-row .btn {
  padding-inline: 1.5rem;
}

.search-popular {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.search-popular a {
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
}

.search-popular a:hover {
  background: var(--green-100);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-note .icon {
  width: 17px;
  height: 17px;
  color: var(--success);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-blob {
  position: absolute;
  inset: 4% 2% 2% 6%;
  background:
    radial-gradient(60% 55% at 30% 25%, rgba(46, 135, 80, 0.14), transparent 60%),
    linear-gradient(150deg, #e9f3ed, #dceae6);
  border-radius: 44% 56% 52% 48% / 46% 42% 58% 54%;
  animation: blob-float 12s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { border-radius: 44% 56% 52% 48% / 46% 42% 58% 54%; }
  50% { border-radius: 52% 48% 46% 54% / 55% 52% 48% 45%; }
}

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-card-main {
  width: 78%;
  top: 8%;
  left: 6%;
  padding: 1.4rem;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}

.hero-card-main .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hero-card-main .cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}

.hero-card-main .cert-badge .icon {
  width: 15px;
  height: 15px;
}

.hero-progress-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-progress {
  height: 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  overflow: hidden;
  margin-bottom: 1rem;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
}

.hero-card-main h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.hero-card-main .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-modules {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-module {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-module .m-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.hero-module .m-check .icon {
  width: 12px;
  height: 12px;
}

.hero-card-job {
  right: 4%;
  top: 12%;
  width: 44%;
  padding: 1.1rem;
  z-index: 3;
  animation: float 8s ease-in-out 1.2s infinite;
}

.hero-card-job .job-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
}

.hero-card-job h5 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.hero-card-job p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-card-job .salary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--green-700);
}

.hero-card-job .new-tag {
  position: absolute;
  top: -0.6rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent);
}

.hero-card-cert {
  left: 8%;
  bottom: 6%;
  width: 56%;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
  animation: float 9s ease-in-out 0.6s infinite;
}

.hero-card-cert .cert-icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--green-600), var(--green-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-cert .cert-icon .icon {
  width: 24px;
  height: 24px;
}

.hero-card-cert strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-card-cert span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-float {
  right: 10%;
  bottom: 22%;
  width: 30%;
  padding: 0.9rem 1rem;
  z-index: 3;
  animation: float 7.5s ease-in-out 2s infinite;
}

.hero-card-float .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.hero-card-float .avatars {
  display: flex;
}

.hero-card-float .avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
}

.hero-card-float .avatars span:last-child {
  margin-right: 0;
}

.hero-card-float p {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
}

.hero-card-float strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--green-800);
  display: flex;
  align-items: baseline;
}

.hero-stat strong .suffix {
  color: var(--accent);
}

.hero-stat span {
  font-size: 0.83rem;
  color: var(--muted);
  display: block;
}

.partner-band {
  border-top: 1px solid var(--line);
  background: #fff;
}

.partner-band-inner {
  padding: 2.2rem 0 2.6rem;
}

.partner-band .label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.4rem;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: #9aa5a0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.partner-logo:hover {
  color: var(--green-700);
}

.partner-logo .pl-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--green-700);
}

.grid-cards {
  display: grid;
  gap: 1.5rem;
}

.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.course-cover {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.course-cover .cover-art {
  position: absolute;
  inset: 0;
  opacity: 0.14;
}

.course-cover .cover-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-cover .cover-icon .icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

.course-cover .cover-chip {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
}

.c-course-1 { background: linear-gradient(135deg, #1e5a35, #2e8750); }
.c-course-2 { background: linear-gradient(135deg, #164a29, #256f42); }
.c-course-3 { background: linear-gradient(135deg, #2e8750, #4aa56c); }
.c-course-4 { background: linear-gradient(135deg, #12391f, #1e5a35); }

.course-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.course-body .category {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.course-body h3 {
  font-size: 1.16rem;
  line-height: 1.3;
  margin: 0;
}

.course-body h3 a {
  color: var(--ink);
}

.course-body h3 a:hover {
  color: var(--green-700);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.course-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.course-price {
  display: flex;
  flex-direction: column;
}

.course-price strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--green-800);
}

.course-price span {
  font-size: 0.75rem;
  color: var(--muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-700);
}

.link-arrow .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover {
  color: var(--green-800);
}

.link-arrow:hover .icon {
  transform: translateX(4px);
}

.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.job-company {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.job-avatar {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex: none;
}

.av-1 { background: linear-gradient(140deg, #1e5a35, #2e8750); }
.av-2 { background: linear-gradient(140deg, #256f42, #4aa56c); }
.av-3 { background: linear-gradient(140deg, #164a29, #256f42); }
.av-4 { background: linear-gradient(140deg, #12391f, #1e5a35); }
.av-5 { background: linear-gradient(140deg, #2e8750, #7ec092); }
.av-6 { background: linear-gradient(140deg, #1e5a35, #4aa56c); }

.job-company .co-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.job-company .co-loc {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.job-company .co-loc .icon {
  width: 13px;
  height: 13px;
}

.job-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0;
}

.job-card h3 a {
  color: var(--ink);
}

.job-card h3 a:hover {
  color: var(--green-700);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  flex-wrap: wrap;
}

.job-salary {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green-700);
  font-size: 1.02rem;
}

.job-salary small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
}

.job-posted {
  font-size: 0.78rem;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green-100);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.step-icon .icon {
  width: 26px;
  height: 26px;
}

.step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--green-700), var(--green-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 22px rgba(30, 90, 53, 0.24);
}

.feature-icon.red {
  background: linear-gradient(140deg, var(--accent), #ff6b66);
  box-shadow: 0 10px 22px rgba(229, 57, 53, 0.24);
}

.feature-icon .icon {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.stats-band {
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 90% 10%, rgba(74, 165, 108, 0.25), transparent 60%),
    radial-gradient(50% 70% at 5% 90%, rgba(74, 165, 108, 0.16), transparent 60%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item .icon {
  width: 30px;
  height: 30px;
  color: var(--green-400);
  margin: 0 auto 0.9rem;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-item strong .suffix {
  color: #ffd1cf;
}

.stat-item span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
}

.testimonial-carousel {
  position: relative;
}

.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.track::-webkit-scrollbar {
  display: none;
}

.track > * {
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .track.multi {
    grid-auto-columns: calc(50% - 0.75rem);
  }
}

@media (min-width: 1080px) {
  .track.multi {
    grid-auto-columns: calc(33.333% - 1rem);
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.t-quote {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.t-quote .icon {
  width: 34px;
  height: 34px;
  color: var(--green-100);
  flex: none;
}

.t-quote p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex: none;
}

.t-person .t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
}

.t-person .t-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.t-person .t-role .sep {
  color: var(--green-600);
  font-weight: 700;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}

.carousel-btn .icon {
  width: 20px;
  height: 20px;
}

.carousel-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.5rem;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.carousel-dots span.active {
  width: 26px;
  background: var(--green-600);
}

.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(120deg, var(--green-800) 0%, var(--green-700) 55%, var(--green-600) 100%);
  padding: clamp(2.6rem, 6vw, 4.4rem);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 80% at 100% 0%, rgba(255, 255, 255, 0.14), transparent 60%);
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 560px;
}

.cta-band .btn {
  position: relative;
}

.cta-band .btn .icon {
  width: 18px;
  height: 18px;
}

.footer {
  background: linear-gradient(180deg, var(--green-950), #081f12);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer .brand-name {
  color: #fff;
}

.footer .brand-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a .icon {
  width: 14px;
  height: 14px;
  color: var(--green-400);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s var(--ease);
}

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

.footer-links a:hover .icon {
  opacity: 1;
  transform: translateX(0);
}

.footer-about p {
  font-size: 0.92rem;
  margin: 1.1rem 0 0;
  max-width: 320px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.footer-contact li .icon {
  width: 18px;
  height: 18px;
  color: var(--green-400);
  margin-top: 0.15rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social .icon {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom .heart {
  color: var(--accent);
}

.page-hero {
  position: relative;
  background:
    radial-gradient(55% 70% at 90% 0%, rgba(46, 135, 80, 0.1), transparent 60%),
    linear-gradient(180deg, #fbfdfc, #f3f8f5);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero-inner {
  padding: clamp(2.6rem, 5vw, 4.2rem) 0 clamp(2.4rem, 5vw, 3.6rem);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.page-hero .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
  margin-bottom: 1.6rem;
}

.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.2rem;
}

.page-hero-stats .phs {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.page-hero-stats .icon {
  width: 26px;
  height: 26px;
  color: var(--green-600);
}

.page-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}

.page-hero-stats span {
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.breadcrumb a {
  color: var(--green-700);
  font-weight: 600;
}

.breadcrumb .icon {
  width: 14px;
  height: 14px;
  color: var(--muted-2);
}

.breadcrumb .current {
  color: var(--muted);
  font-weight: 500;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.toolbar .result-count {
  font-size: 0.9rem;
  color: var(--muted);
}

.toolbar .result-count strong {
  color: var(--ink);
  font-family: var(--font-display);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.8rem;
}

.filter-bar .search-input {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.7rem 1rem;
  background: var(--surface-muted);
}

.filter-bar .search-input .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.filter-bar .search-input input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.94rem;
}

.filter-select {
  position: relative;
}

.filter-select .icon {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  pointer-events: none;
  color: var(--muted);
}

.filter-select select {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.72rem 2.4rem 0.72rem 1rem;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  outline: none;
}

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

.filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}

.filter-clear:hover {
  color: var(--accent);
}

.filter-clear .icon {
  width: 15px;
  height: 15px;
}

.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
}

.empty-state .icon {
  width: 54px;
  height: 54px;
  color: var(--muted-2);
  margin: 0 auto 1.2rem;
}

.empty-state h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.job-detail-head {
  padding: 0.5rem 0 2rem;
}

.job-detail-head .job-company {
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.job-detail-head .job-avatar {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  font-size: 1.35rem;
}

.job-detail-head h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 0.2rem;
}

.job-detail-head .co-name {
  font-size: 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2.5rem;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.side-card-head {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.side-card-head h3 {
  font-size: 1.05rem;
  margin: 0;
}

.side-card-body {
  padding: 1.4rem 1.5rem;
}

.key-facts {
  display: flex;
  flex-direction: column;
}

.key-fact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.key-fact:last-child {
  border-bottom: 0;
}

.key-fact .kf-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.key-fact .kf-icon .icon {
  width: 19px;
  height: 19px;
}

.key-fact span {
  font-size: 0.76rem;
  color: var(--muted);
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.key-fact strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}

.side-cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.side-cta .note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.side-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.side-contact a,
.side-contact li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.side-contact .icon {
  width: 18px;
  height: 18px;
  color: var(--green-600);
}

.side-share {
  display: flex;
  gap: 0.55rem;
}

.side-share a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}

.side-share a:hover {
  background: var(--green-50);
  color: var(--green-700);
  border-color: var(--green-100);
}

.side-share .icon {
  width: 17px;
  height: 17px;
}

.prose {
  color: var(--ink-soft);
}

.prose h2 {
  font-size: 1.55rem;
  margin: 0 0 0.9rem;
}

.prose p {
  color: var(--ink-soft);
}

.prose h2:not(:first-child) {
  margin-top: 2.4rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.check-list .icon {
  width: 20px;
  height: 20px;
  color: var(--green-600);
  margin-top: 0.15rem;
  flex: none;
}

.check-list li strong {
  color: var(--ink);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-stat {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-700);
}

.mini-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.acc-item.open {
  border-color: var(--green-100);
  box-shadow: var(--shadow-sm);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}

.acc-head .acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 0.3s var(--ease);
}

.acc-head .acc-icon .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.acc-item.open .acc-head .acc-icon {
  background: var(--green-700);
  color: #fff;
}

.acc-item.open .acc-icon .icon {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.acc-inner {
  padding: 0 1.4rem 1.4rem;
}

.acc-inner p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.acc-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.acc-inner li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.acc-inner li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  margin-top: 0.55em;
  flex: none;
}

.acc-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  margin: 0.9rem 0 0.45rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tl-item {
  display: flex;
  gap: 1.1rem;
}

.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.tl-dot .icon {
  width: 20px;
  height: 20px;
}

.tl-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tl-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.trainer-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.trainer-avatar {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(140deg, var(--green-700), var(--green-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  flex: none;
}

.trainer-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.trainer-card .t-role {
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.trainer-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.trainer-card .t-stats {
  display: flex;
  gap: 1.4rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.trainer-card .t-stats span {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trainer-card .t-stats .icon {
  width: 15px;
  height: 15px;
  color: var(--green-600);
}

.opportunity-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.opportunity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.opportunity-card .icon {
  width: 22px;
  height: 22px;
  color: var(--green-700);
}

.opportunity-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.opportunity-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

.sticky-apply {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.8rem 0;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -10px 30px rgba(18, 57, 31, 0.1);
}

.sticky-apply.visible {
  transform: translateY(0);
}

.sticky-apply .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-apply .sa-title {
  min-width: 0;
}

.sticky-apply .sa-title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-apply .sa-title span {
  font-size: 0.78rem;
  color: var(--muted);
}

.sticky-apply .btn {
  flex: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.form-card .form-desc {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-group label .req {
  color: var(--accent);
}

.form-control {
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 0.78rem 1rem;
  width: 100%;
  outline: none;
  background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

.form-control::placeholder {
  color: var(--muted-2);
}

.form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(46, 135, 80, 0.12);
}

.form-group.has-error .form-control {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  display: none;
}

.form-group.has-error .field-error {
  display: block;
}

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

.dropzone {
  border: 1.6px dashed var(--line-strong);
  border-radius: 13px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  cursor: pointer;
  background: var(--surface-muted);
  transition: all 0.3s var(--ease);
}

.dropzone:hover,
.dropzone.dragover {
  border-color: var(--green-500);
  background: var(--green-50);
}

.dropzone .dz-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7rem;
}

.dropzone .dz-icon .icon {
  width: 22px;
  height: 22px;
}

.dropzone strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.dropzone span {
  font-size: 0.82rem;
  color: var(--muted);
}

.file-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--green-100);
  background: var(--green-50);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.file-item .file-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.file-item .file-icon .icon {
  width: 19px;
  height: 19px;
}

.file-item .file-meta {
  min-width: 0;
  flex: 1;
}

.file-item .file-meta strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-display);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item .file-meta span {
  font-size: 0.78rem;
  color: var(--muted);
}

.file-item .file-remove {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--green-100);
}

.file-item .file-remove:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.file-item .file-remove .icon {
  width: 15px;
  height: 15px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.form-actions .btn .icon {
  width: 18px;
  height: 18px;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.form-hint .icon {
  width: 15px;
  height: 15px;
  color: var(--success);
}

.btn.is-loading .icon {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-panel {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.2rem, 4vw, 2.5rem);
}

.success-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  animation: pop 0.5s var(--ease);
}

.success-icon .icon {
  width: 40px;
  height: 40px;
}

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.success-panel p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 1.8rem;
}

.summary-card .app-target {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.summary-card .app-target .at-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.summary-card .app-target h4 {
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}

.summary-card .app-target p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.summary-list li span {
  color: var(--muted);
}

.summary-list li strong {
  font-family: var(--font-display);
  text-align: right;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card .ic-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.info-card .ic-icon .icon {
  width: 25px;
  height: 25px;
}

.info-card h3 {
  font-size: 1.02rem;
  margin: 0;
}

.info-card p,
.info-card a {
  font-size: 0.92rem;
  color: var(--muted);
}

.info-card a {
  color: var(--green-700);
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.3rem;
  max-width: 320px;
}

.map-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.map-overlay p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.directions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.directions .icon {
  width: 16px;
  height: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-item .icon {
  width: 40px;
  height: 40px;
  color: var(--green-700);
  margin: 0 auto 1rem;
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mission-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.mission-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.mission-card h3 .icon {
  width: 22px;
  height: 22px;
  color: var(--green-700);
}

.mission-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
}

.journey-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.journey-card .jc-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.journey-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

.journey-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.journey-card .check-list {
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.journey-card .check-list li {
  font-size: 0.86rem;
}

.journey-card .check-list .icon {
  width: 17px;
  height: 17px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.1rem;
}

.partner-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.partner-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-100);
}

.partner-tile .pt-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}

.partner-tile strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.partner-tile span {
  font-size: 0.72rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green-600), var(--green-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.team-card span {
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 600;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .detail-sidebar {
    position: static;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }

  .topbar-right {
    display: none;
  }

  .topbar-left {
    justify-content: space-between;
    width: 100%;
  }

  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

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

  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-card-main {
    width: 86%;
    left: 4%;
  }

  .hero-card-job {
    right: 2%;
    width: 48%;
  }

  .sticky-apply .sa-title span {
    display: none;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .search-row {
    flex-wrap: wrap;
  }

  .search-row .btn {
    width: 100%;
  }

  .page-hero-stats {
    gap: 1rem 1.5rem;
  }

  .toolbar {
    align-items: flex-start;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .map-wrap {
    height: 420px;
  }

  .map-overlay {
    position: static;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }
}

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

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-card-job {
    width: 56%;
  }
}
