@import url("");

:root {
  --bg: #ffffff;
  --surface: #f7f7f5;
  --surface-2: #f1f2ee;
  --ink: #17211b;
  --muted: #667069;
  --line: #e2e5e0;
  --brand: #1dbf73;
  --brand-dark: #12915a;
  --dark: #10251a;
  --dark-2: #163124;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 37, 26, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 37, 26, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 229, 224, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--brand);
  border-radius: 10px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  color: #374139;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--brand-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  transition: 0.2s ease;
}

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

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

.btn-primary:hover {
  background: var(--brand-dark);
}

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

.btn-dark:hover {
  background: #06140d;
}

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

.btn-light:hover {
  background: #eff7f1;
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: #bdc5bf;
  background: var(--surface);
}

.btn-block {
  width: 100%;
}

.btn-large {
  min-height: 54px;
  padding-inline: 26px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 78% 25%, rgba(29, 191, 115, 0.16), transparent 34%),
    linear-gradient(180deg, #fbfdfb 0%, #ffffff 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  top: -140px;
  left: -100px;
  background: rgba(29, 191, 115, 0.1);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -110px;
  background: rgba(16, 37, 26, 0.08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 16px 0 20px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-search {
  display: flex;
  max-width: 760px;
  margin-top: 34px;
  padding: 7px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.search-field {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.search-field input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
}

.search-icon {
  color: var(--brand-dark);
  font-size: 27px;
  line-height: 1;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.popular-searches button {
  padding: 7px 11px;
  color: #3b453e;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.popular-searches button:hover {
  color: var(--brand-dark);
  border-color: rgba(29, 191, 115, 0.45);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.hero-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 20px;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hero-panel {
  position: relative;
  padding: 18px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.panel-header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(29, 191, 115, 0.14);
}

.mini-badge {
  padding: 4px 8px;
  color: var(--dark);
  background: var(--brand);
  border-radius: 999px;
  font-weight: 900;
}

.featured-card {
  padding: 22px;
  background: var(--white);
  border-radius: 20px;
}

.featured-top {
  display: flex;
  gap: 13px;
  align-items: center;
}

.company-logo,
.job-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  font-weight: 900;
}

.company-logo {
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--brand);
  border-radius: 14px;
}

.featured-top h3,
.featured-top p {
  margin: 0;
}

.featured-top h3 {
  font-size: 18px;
}

.featured-top p {
  color: var(--muted);
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.tag-row span {
  padding: 6px 9px;
  color: #425047;
  background: var(--surface);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.featured-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.featured-info div {
  padding: 13px;
  background: var(--surface);
  border-radius: 12px;
}

.featured-info small,
.featured-info strong {
  display: block;
}

.featured-info small {
  color: var(--muted);
}

.featured-info strong {
  margin-top: 3px;
  font-size: 14px;
}

.mini-cards {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  color: var(--white);
  background: var(--dark-2);
  border-radius: 14px;
}

.mini-card strong,
.mini-card p {
  display: block;
  margin: 0;
}

.mini-card strong {
  font-size: 13px;
}

.mini-card p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.mini-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--dark);
  background: var(--brand);
  border-radius: 8px;
  font-weight: 900;
}

.trusted-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trusted-content {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.trusted-content > span {
  color: var(--muted);
  font-size: 13px;
}

.trusted-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: #566159;
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

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

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

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading.center {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  max-width: 780px;
  margin: 10px 0 0;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
}

.section-heading.light .eyebrow {
  color: #6ce0a8;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 190px;
  padding: 22px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 191, 115, 0.45);
  box-shadow: var(--shadow-soft);
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  margin-top: 28px;
  font-size: 17px;
}

.category-card small {
  margin-top: 6px;
  color: var(--muted);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--brand-dark);
  background: rgba(29, 191, 115, 0.1);
  border-radius: 13px;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.featured-service {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand-dark);
  background: rgba(29, 191, 115, 0.12);
  border-radius: 12px;
  font-weight: 900;
}

.featured-service .service-number {
  color: var(--dark);
  background: var(--brand);
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 9px;
  color: var(--dark);
  background: var(--brand);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.service-card h3 {
  margin: 22px 0 8px;
  font-size: 23px;
}

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

.featured-service p,
.featured-service li {
  color: rgba(255, 255, 255, 0.7);
}

.service-card ul {
  padding-left: 18px;
  margin: 24px 0;
}

.service-card li {
  margin: 8px 0;
  color: #4c5850;
}

.text-button {
  padding: 0;
  color: var(--brand-dark);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.featured-service .text-button {
  color: #6ce0a8;
}

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

.filter-wrap input,
.filter-wrap select {
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}

.filter-wrap input {
  min-width: 270px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.job-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.22s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 191, 115, 0.45);
  box-shadow: var(--shadow-soft);
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-logo {
  width: 42px;
  height: 42px;
  color: var(--dark);
  background: rgba(29, 191, 115, 0.14);
  border-radius: 12px;
  font-size: 12px;
}

.save-job {
  width: 38px;
  height: 38px;
  color: var(--muted);
  background: var(--surface);
  border: 0;
  border-radius: 10px;
  font-size: 19px;
}

.save-job.saved {
  color: var(--brand-dark);
  background: rgba(29, 191, 115, 0.12);
}

.job-category {
  display: inline-block;
  margin-top: 20px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card h3 {
  margin: 6px 0 4px;
  font-size: 19px;
}

.job-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.job-footer strong {
  font-size: 14px;
}

.job-footer button {
  color: var(--brand-dark);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.empty-state {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border-radius: 14px;
}

.hidden {
  display: none !important;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.process-grid article {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid span {
  color: #6ce0a8;
  font-weight: 900;
}

.process-grid h3 {
  margin: 15px 0 8px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.candidate-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 50px;
  background:
    radial-gradient(circle at 80% 20%, rgba(29, 191, 115, 0.15), transparent 32%),
    var(--surface);
  border-radius: var(--radius-lg);
}

.candidate-banner h2 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.08;
}

.candidate-banner p {
  color: var(--muted);
}

.candidate-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.candidate-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.candidate-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--brand);
  border-radius: 16px;
  font-weight: 900;
}

.candidate-card p {
  margin: 5px 0 16px;
}

.candidate-card ul {
  padding-left: 18px;
  margin: 0;
}

.candidate-card li {
  margin: 8px 0;
}

.faq-list {
  max-width: 850px;
  margin-inline: auto;
}

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  font-weight: 900;
}

.faq-question span {
  font-size: 24px;
  transition: 0.2s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

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

.faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.final-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--brand-dark);
}

.final-cta .eyebrow {
  color: #d8f7e8;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  max-width: 800px;
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 66px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  background: #07150e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 280px;
  margin-top: 16px;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: var(--white);
}

.footer-grid a,
.footer-grid button {
  display: block;
  margin: 10px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 9, 0.72);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  overflow-y: auto;
  padding: 32px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.modal-dialog > h2 {
  margin: 10px 0 6px;
  font-size: 34px;
  line-height: 1.1;
}

.modal-dialog > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  color: var(--muted);
  background: var(--surface);
  border: 0;
  border-radius: 10px;
  font-size: 24px;
}

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

.form-grid label,
.form-grid .full {
  display: block;
}

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

.form-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 191, 115, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  margin-top: 4px;
}

.success-message {
  padding: 36px 20px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.success-message h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.success-message p {
  max-width: 480px;
  margin: 0 auto;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  max-width: 340px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--dark);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 16px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 38px;
  }

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

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

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open a {
    padding: 12px 10px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .candidate-banner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-block: 18px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero {
    padding: 44px 0 54px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-search {
    flex-direction: column;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 10px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading,
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-wrap {
    width: 100%;
    flex-direction: column;
  }

  .filter-wrap input {
    min-width: 0;
    width: 100%;
  }

  .category-grid,
  .service-grid,
  .job-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .candidate-banner {
    padding: 28px;
  }

  .candidate-actions {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

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

  .form-grid .full {
    grid-column: auto;
  }

  .modal-dialog {
    padding: 26px 20px;
  }

  .modal-dialog > h2 {
    padding-right: 32px;
    font-size: 28px;
  }
}


/* Upload CV thật lên Cloudflare R2 */
.file-input {
  padding: 10px !important;
  background: var(--surface) !important;
}

.file-input::file-selector-button {
  margin-right: 12px;
  padding: 9px 13px;
  color: var(--dark);
  background: rgba(29, 191, 115, 0.14);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.field-help {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.form-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  color: #8f1d1d;
  background: #fff0f0;
  border: 1px solid #f5caca;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
