:root {
  --bg: #f6f7fb;
  --card-bg: #ffffff;
  --text: #1f2933;
  --muted: #5f6b7a;
  --primary: #1a73e8;
  --primary-dark: #0f5ec0;
  --success: #1f9d4c;
  --border: #e5e8ee;
  --error: #d93025;
  --nav-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0.3rem 0;
}

.site-header {
  background: #fff;
  box-shadow: none;
  position: static;
  top: auto;
  z-index: 1;
  padding: 0;
}

.site-header .container {
  padding: 0.25rem 0;
}

.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 115px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: #202a44;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: var(--success);
  border-radius: 999px;
}

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

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.lang-select .caret {
  font-size: 0.8rem;
  color: var(--muted);
}

.lang-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 0.25rem 0;
  margin: 0;
  display: none;
  min-width: 140px;
  z-index: 5;
}

.lang-select.open .lang-options {
  display: block;
}

.lang-options li {
  padding: 0.45rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.lang-options li:hover,
.lang-options li.active {
  background: #f0f7ff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.35rem;
}

.button.primary {
  background: #1a9c4d;
  color: #fff;
  box-shadow: 0 10px 20px rgba(26, 156, 77, 0.25);
}

.button.primary:hover {
  background: #158542;
}

.button.success {
  background: #1f9d4c;
  color: #fff;
  box-shadow: 0 8px 16px rgba(31, 157, 76, 0.22);
}

.button.primary-outline {
  border: 1px solid var(--primary);
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 16px rgba(26, 115, 232, 0.22);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  background: #ffffff url('../images/Hero-Section-bg.jpg') center top / contain no-repeat;
  padding: 2rem 0 3rem;
}

.hero-stage {
  position: relative;
  padding: 1rem 0;
  text-align: center;
  min-height: 1000px;
}

.hero-overlay {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(620px, 90vw);
}

.hero-copy {
  text-align: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 2.9rem);
  line-height: 1.2;
  color: #1f2d45;
  font-weight: 800;
  text-transform: uppercase;
}

.text-green {
  color: #1f9d4c;
}

.text-blue {
  color: var(--primary);
}

.rating-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  margin-left: -8px;
}

.avatars img:first-child {
  margin-left: 0;
}

.rating-score {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #202a44;
}

.rating-score .star {
  color: #f2b400;
}

.hero-path {
  display: none;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 320px;
}

.job-card:hover {
  border-color: #1f9d4c;
  box-shadow: 0 10px 20px rgba(31, 157, 76, 0.1);
}

.jobs-section {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.jobs-header h2 {
  margin: 0;
  font-size: 1.4rem;
  color: #1f4b99;
}

.jobs-header .count {
  font-size: 0.9rem;
  margin-left: 0.35rem;
}

.jobs-nav {
  display: flex;
  gap: 0.5rem;
}

.pill-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: #1f2933;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.pill-btn:hover {
  border-color: var(--primary);
  color: #1f9d4c;
}

.job-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
}

.job-card__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.job-card__logo {
  color: #c51b1b;
  font-weight: 700;
  font-size: 0.95rem;
}

.job-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.job-card__name {
  color: #1f4b99;
  font-weight: 700;
  font-size: 1rem;
}

.job-card__location {
  color: #4f5d6b;
  font-size: 0.9rem;
}

.job-card__salary {
  font-weight: 700;
  color: #1f2933;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-card__title {
  color: #1f4b99;
  font-weight: 700;
  font-size: 1.05rem;
}

.job-card__desc {
  margin: 0;
  color: #3c4758;
  font-size: 0.95rem;
  line-height: 1.5;
}

.job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.job-card__openings {
  color: var(--muted);
  font-size: 0.95rem;
}

.button.success {
  background: #f7f9fc;
  color: #1f2933;
  border: 1px solid #d6dde8;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  transition: background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.button.success:hover {
  background: #1f9d4c;
  color: #fff;
  border-color: #1f9d4c;
  box-shadow: 0 10px 20px rgba(31, 157, 76, 0.25);
}

.steps {
  background: #ffffff;
  padding: 4.5rem 0 6rem;
}

.steps-inner {
  position: relative;
  text-align: center;
}

.steps-title {
  margin: 0 0 2.8rem;
  font-size: clamp(2.5rem, 3.8vw, 3.2rem);
  color: #0a7be7;
  line-height: 1.1;
  font-weight: 800;
}

.steps-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  display: flex;
  justify-content: center;
  transform: translateY(-35px);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
  z-index: 1;
  align-items: stretch;
  margin-top: -10px;
}

.step-card {
  background: #f3ffef;
  border: 1px solid #d2f0d2;
  border-radius: 18px;
  padding: 1.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  text-align: left;
  min-height: 240px;
}

.step-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #303a52;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  color: #2a3244;
}

.step-card p {
  margin: 0;
  color: #2f3a49;
  font-size: 1rem;
  line-height: 1.55;
}

.testimonials {
  background: #fff;
  padding: 4rem 0 4.5rem;
}

.testimonials-title {
  text-align: center;
  margin: 0 0 2.5rem;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  color: #0a7be7;
  line-height: 1.15;
  font-weight: 800;
}

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

.testimonial-card {
  background: #f3ffef;
  border: 1px solid #c5eac4;
  border-radius: 12px;
  padding: 1.4rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.quote-mark {
  font-size: 1.8rem;
  color: #1f2d45;
}

.testimonial-text {
  margin: 0;
  color: #2c3340;
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4e7ec, #cdd3db);
  border: 2px solid #fff;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
}

.avatar.brand {
  background: #ef3b3a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 800;
  color: #2f3b55;
}

.testimonial-role {
  color: #4f5d6b;
  font-size: 0.95rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill-btn.ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: #1f2933;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.pill-btn.primary {
  background: #0ba44c;
  color: #fff;
  border-color: #0ba44c;
  box-shadow: 0 8px 16px rgba(11, 164, 76, 0.2);
}

.faq {
  background: #fff;
  padding: 4rem 0 4.5rem;
}

.faq-title {
  text-align: center;
  margin: 0 0 2.5rem;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  color: #0a7be7;
  line-height: 1.15;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #d6dde8;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.faq-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6dde8;
  border-radius: 8px;
  font-weight: 700;
  color: #1f2d45;
}

.faq-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #1f2d45;
}

.faq-arrow {
  color: #1f2d45;
  font-size: 1rem;
}

.faq-body {
  margin: 0.6rem 0 0;
  color: #2c3340;
  line-height: 1.5;
}

.faq-item:not(.open) .faq-body {
  display: none;
}

.faq-item.open {
  border-color: #0a7be7;
  box-shadow: 0 8px 18px rgba(10, 123, 231, 0.12);
}

.faq-item.open .faq-number {
  border-color: #0a7be7;
  color: #0a7be7;
}

.faq-load {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input, textarea {
  padding: 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.status-message {
  margin-top: 0.75rem;
  color: var(--muted);
}

.status-message.error {
  color: var(--error);
}

.status-message.success {
  color: var(--success);
}

.muted {
  color: var(--muted);
  margin: 0.15rem 0;
}

.job-description {
  margin-top: 0.75rem;
  white-space: pre-line;
}

.site-footer {
  background: #f2fff3;
  border-top: 1px solid #d6e9d8;
  padding: 2.5rem 0 1.5rem;
}

.site-footer .container {
  width: min(1200px, 94vw);
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 170px 170px 170px auto;
  gap: 2.4rem;
  align-items: center;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #d6e9d8;
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-contact {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.65rem;
  color: #1f2d45;
  font-size: 0.95rem;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0ba44c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0ba44c;
}

.footer-col h4 {
  margin: 0 0 0.45rem;
  color: #0a7be7;
}

.footer-col a {
  display: block;
  color: #1f2d45;
  text-decoration: none;
  margin: 0.2rem 0;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-newsletter {
  background: #fff;
  border: 2px solid #0ba44c;
  border-radius: 18px;
  padding: 0.8rem 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  width: 380px;
  justify-self: end;
  align-self: center;
}

.footer-newsletter h4 {
  margin: 0 0 0.6rem;
  color: #1f2d45;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.newsletter-form input {
  padding: 0.7rem 0.9rem;
  border: 1px solid #e2e7ec;
  border-radius: 999px;
  font-size: 0.95rem;
  background: #f9fafb;
  width: 220px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding-top: 1rem;
  gap: 1rem;
  border-top: 1px solid #d6e9d8;
  margin-top: 1.2rem;
}

.footer-meta {
  color: #1f2d45;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-social .social {
  text-decoration: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #0096ff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-social .instagram { background: #0096ff; }
.footer-social .facebook { background: #0096ff; font-size: 1.1rem; }
.footer-social .linkedin { background: #0096ff; text-transform: lowercase; font-size: 1.05rem; }
.footer-social .youtube { background: #0096ff; font-size: 1.1rem; }
.footer-social .tiktok { background: #0096ff; }

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
}

.footer-legal a {
  color: #1f2d45;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Request Talent */
.rt-form {
  padding: 2rem 0 3rem;
  max-width: 960px;
}

.rt-title {
  margin: 0 0 1rem;
  color: #0a7be7;
  font-size: 1.8rem;
}

.rt-card {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.rt-card:not(:first-of-type) {
  margin-top: 1.5rem;
}

.rt-card label {
  font-weight: 700;
  color: #1f2d45;
  font-size: 1rem;
}

.rt-field input,
.rt-field select,
.rt-field textarea {
  width: 100%;
  border: 1px solid #d6dde8;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.98rem;
  background: #fff;
}

.rt-field textarea {
  resize: vertical;
  min-height: 140px;
}

.rt-grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.rt-grid.three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: end;
}

.rt-field {
  display: grid;
  gap: 0.35rem;
}

.rt-field label {
  font-weight: 700;
  color: #1f2d45;
}

.rt-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.rt-inline.verify-row {
  grid-template-columns: 1fr auto;
}

.rt-inline input,
.rt-inline select {
  width: 100%;
}

.rt-code {
  width: 80px;
}

.rt-inline select {
  min-width: 90px;
}

.rt-inline.verify-row .button {
  min-width: 100px;
}

.rt-upload {
  margin-top: 1rem;
}

.rt-upload h2 {
  margin: 0 0 0.75rem;
  color: #0a7be7;
}

.rt-upload-box {
  border: 2px dashed #d6dde8;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  display: block;
  color: #1f2d45;
  background: #fafbff;
}

.rt-upload-icon {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.rt-upload-sub {
  margin: 0.25rem 0;
}

.rt-upload-sub span {
  color: #0a7be7;
  cursor: pointer;
}

.rt-upload-meta {
  color: #6a7685;
  margin: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.chip {
  background: #f0f7ff;
  color: #0a7be7;
  border: 1px solid #cfe2ff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.chip.active {
  background: #0096ff;
  color: #fff;
  border-color: #0096ff;
}

.counter-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #1f2d45;
}

.rt-sep {
  color: #6a7685;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #1f2d45;
}

.checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.rt-terms {
  margin-top: 1rem;
}

.rt-submit {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.rt-submit .button {
  min-width: 180px;
}

.button.success.ghost {
  background: #fff;
  color: #1f2d45;
  border: 1px solid #d6dde8;
  box-shadow: none;
}

.button.success.ghost:hover {
  background: #1f9d4c;
  color: #fff;
  border-color: #1f9d4c;
}

/* Contact Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-backdrop.show {
  display: flex;
}

.contact-modal {
  background: #fff;
  border-radius: 14px;
  width: min(520px, 92vw);
  padding: 1.8rem 1.5rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  position: relative;
}

.contact-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #1f2d45;
}

.contact-modal h2 {
  margin: 0 0 0.6rem;
  color: #0a7be7;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.contact-modal p {
  margin: 0 0 1rem;
  color: #1f2d45;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 700;
  color: #1f2d45;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe2ec;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  background: #f2f4fb;
}

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

.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #1f2d45;
  font-size: 0.96rem;
}

.contact-checkbox input {
  margin-top: 0.2rem;
}

.contact-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  background: #0ba44c;
  color: #fff;
  border: none;
  cursor: pointer;
}

.contact-submit:hover {
  background: #0a9443;
}

/* About */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.about-hero-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 55%;
  color: #fff;
  max-width: 720px;
  z-index: 2;
  text-align: center;
}

.about-hero-text .sub {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.about-hero-text h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.4rem, 4.8vw, 3rem);
  line-height: 1.15;
  color: #0a7be7;
}

.about-hero-text .text-green {
  color: #0fa15b;
}

.about-hero-text .lead {
  margin: 0.8rem 0 0;
  font-size: 1.15rem;
  line-height: 1.5;
}

.about-content {
  padding: 3rem 0 4rem;
  max-width: 1180px;
  margin: 0 auto;
}

.about-content h2 {
  text-align: center;
  color: #0a7be7;
  font-size: 2rem;
  margin: 0 0 1rem;
}

.about-content h3 {
  margin: 1.5rem 0 0.8rem;
  color: #1f2d45;
  font-size: 1.3rem;
}

.about-content p {
  margin: 0.35rem 0;
  color: #1f2d45;
  line-height: 1.5;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin: 0.35rem 0;
  color: #1f2d45;
  line-height: 1.5;
}

.expertise {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}

.expertise-block h4 {
  margin: 0.4rem 0;
  color: #1f2d45;
}

.expertise-block ul {
  margin: 0.2rem 0 0.6rem 1.2rem;
  padding: 0;
  color: #1f2d45;
}

.expertise-block li {
  margin: 0.2rem 0;
}

.expertise-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
}

.expertise-logo img {
  width: 240px;
  height: auto;
}

/* Apply page */
.apply-page {
  background: #f8fafc;
  padding: 2rem 0 3rem;
}

.apply-wrap {
  max-width: 1100px;
}

.apply-back {
  color: #0a7be7;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.apply-job-meta {
  color: #6a7685;
  margin-bottom: 1rem;
}

.apply-card {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 12px;
  padding: 1.2rem 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.apply-lead {
  color: #0fa15b;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.apply-heading {
  color: #0a7be7;
  margin: 0 0 0.8rem;
}

.apply-grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.apply-field {
  display: grid;
  gap: 0.3rem;
}

.apply-field label {
  font-weight: 700;
  color: #1f2d45;
}

.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%;
  border: 1px solid #d6dde8;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.98rem;
  background: #fff;
}

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

.apply-inline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.apply-inline .button {
  min-width: 100px;
}

.apply-code {
  width: 80px;
}

.apply-upload {
  display: block;
  border: 2px dashed #d6dde8;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  background: #fafbff;
  color: #1f2d45;
  cursor: pointer;
}

.apply-upload-icon {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.apply-upload span {
  color: #0a7be7;
}

.apply-upload-meta {
  margin: 0.2rem 0 0;
  color: #6a7685;
}

.apply-terms {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.apply-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.6rem;
}

/* Responsive overrides */
@media (max-width: 1100px) {
  .hero-stage {
    min-height: 720px;
  }
  .hero-overlay {
    top: 40%;
    width: min(720px, 95vw);
  }
  .about-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .expertise-logo {
    order: -1;
  }
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-items: flex-start;
  }
  .footer-newsletter {
    width: 100%;
    justify-self: stretch;
  }
  .footer-bottom {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: left;
    row-gap: 0.6rem;
  }
}

@media (max-width: 960px) {
  .nav-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .hero {
    background-size: cover;
    background-position: center top;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
  }

  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .steps-path {
    display: none;
  }

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

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

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

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .button {
    width: 100%;
  }

  .container {
    width: min(96vw, 100%);
  }

  .rating-pill {
    flex-direction: column;
  }

  .hero-stage {
    min-height: 520px;
    padding: 0.5rem 0;
  }

  .about-hero img {
    height: 420px;
  }

  .about-hero-text {
    top: 52%;
    padding: 0 1rem;
  }

  .rt-inline {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
