:root {
  --text: #131313;
  --blue: #223f9d;
  --light-border: #dfdfdf;
  --dropdown-border: #e5e5e5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f4f4f4;
}

.top-notification-bar {
  width: 100%;
  height: 12px;
  background: #000000;
}

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--light-border);
  position: relative;
  z-index: 200;
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
}

.logo {
  text-decoration: none;
  color: #2c5a9f;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 20px;
  white-space: nowrap;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #d9deea;
  border-radius: 8px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #131a33;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link,
.nav-btn {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 10px;
  border-radius: 2px;
  white-space: nowrap;
  border: none;
  background: transparent;
  cursor: pointer;
}

.has-caret {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #10193f;
  border-bottom: 1.5px solid #10193f;
  transform: rotate(45deg) translateY(-1px);
  display: inline-block;
  margin-left: 1px;
}

.dropdown {
  position: relative;
}

.nav-btn.is-active {
  background: var(--blue);
  color: #ffffff;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  background: #ffffff;
  border: 1px solid var(--dropdown-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 168px;
  display: none;
  z-index: 260;
}

.dropdown-panel.show {
  display: block;
}

.dropdown-panel a {
  display: block;
  color: #151515;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 10px;
}

.dropdown-panel a:hover {
  background: #f5f7ff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-btn {
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.lang-flag {
  font-size: 12px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  display: block;
}

.consult-btn {
  text-decoration: none;
  background: var(--blue);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

.hero-banner {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.apply-job-link {
  position: relative;
  z-index: 2;
  color: #ffffff;
  background: rgba(34, 63, 157, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-family: inherit;
}

.apply-job-link:hover {
  background: rgba(34, 63, 157, 1);
}

.about-section {
  background: #f3f4f6;
  padding: 70px 24px 84px;
}

.about-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: #223f9d;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.about-left h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  color: #242833;
  max-width: 640px;
}

.about-lead {
  margin: 0;
  color: #4a5363;
  font-size: 17px;
  line-height: 1.7;
  max-width: 590px;
}

.about-cta {
  display: inline-block;
  margin-top: 26px;
  text-decoration: none;
  color: #ffffff;
  background: var(--blue);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.about-right img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.about-points {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-points article {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 14px;
  border: 1px solid #e6e9ef;
}

.about-points h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #1f2430;
  line-height: 1.3;
}

.about-points p {
  margin: 0;
  font-size: 13px;
  color: #5e6675;
  line-height: 1.55;
}

.stats-section {
  padding: 26px 24px 38px;
  background: #f3f4f6;
}

.stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: #293c95;
  border-radius: 14px;
  padding: 22px 10px 20px;
  text-align: center;
  color: #ffffff;
}

.stat-card h3 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}

.stat-card h3 span {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

.stat-card p {
  margin: 10px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.services-section {
  background: transparent;
  padding: 70px 24px 86px;
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.services-eyebrow {
  margin: 0;
  text-align: center;
  color: #223f9d;
  font-size: 14px;
  font-weight: 600;
}

.services-inner h2 {
  margin: 10px 0 34px;
  text-align: center;
  color: #1f2430;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

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

.service-card {
  position: relative;
  min-height: 210px;
  border-radius: 14px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.56) 100%
  );
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.service-overlay h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
}

.service-overlay p {
  margin: 0;
  color: rgba(238, 244, 255, 0.93);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.reviews-section {
  padding: 72px 24px 90px;
  background: #f8f9fb;
}

.reviews-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.reviews-eyebrow {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #223f9d;
}

.reviews-inner h2 {
  margin: 10px 0 34px;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  color: #1f2430;
  font-weight: 700;
}

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

.review-card {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(16, 25, 63, 0.06);
}

.review-stars {
  color: #f5b301;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  margin: 0;
  color: #4f596b;
  font-size: 15px;
  line-height: 1.65;
  min-height: 145px;
}

.review-card h3 {
  margin: 16px 0 4px;
  color: #1e2430;
  font-size: 17px;
  font-weight: 700;
}

.review-card span {
  color: #6b7383;
  font-size: 13px;
  font-weight: 500;
}

.footer-newsletter {
  padding: 0 24px;
  background: #f8f9fb;
}

.newsletter-wrap {
  max-width: 1240px;
  margin: 0 auto -44px;
  background: #101f4d;
  border-radius: 16px;
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.newsletter-left h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  max-width: 680px;
}

.newsletter-points {
  margin-top: 14px;
  display: flex;
  gap: 24px;
}

.newsletter-points span {
  color: rgba(226, 244, 241, 0.92);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 14px;
}

.newsletter-points span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
}

.newsletter-form {
  width: min(440px, 100%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: 10px;
  height: 48px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(229, 241, 240, 0.78);
}

.newsletter-form button {
  border: none;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #b7ccff;
  color: #1f2b55;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  background: #f2f4f7;
  padding: 92px 24px 26px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-inner h3 {
  margin: 0 0 14px;
  color: #2b3242;
  font-size: 19px;
}

.footer-about p,
.footer-col p {
  margin: 0;
  color: #5d6777;
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d9dfe8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #30394a;
  font-size: 14px;
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #5d6777;
  text-decoration: none;
  font-size: 14px;
}

.footer-col p {
  margin-bottom: 8px;
}

.footer-col strong {
  color: #2a3240;
}

.footer-bottom {
  max-width: 1240px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid #d8dde5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  color: #2c5a9f;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.footer-bottom p {
  margin: 0;
  color: #6a7383;
  font-size: 13px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.job-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.job-modal.is-open {
  display: block;
}

.job-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 40, 0.58);
}

.job-modal-panel {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 50px);
  margin: 25px auto;
  background: #ffffff;
  border-radius: 14px;
  overflow: auto;
  padding: 24px 24px 22px;
  box-shadow: 0 24px 60px rgba(8, 14, 35, 0.3);
}

.job-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #3b4354;
  cursor: pointer;
}

.job-modal-header p {
  margin: 0;
  color: #223f9d;
  font-weight: 600;
  font-size: 14px;
}

.job-modal-header h2 {
  margin: 6px 0 18px;
  font-size: clamp(26px, 2.5vw, 34px);
  color: #202736;
}

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

.form-section {
  border: 1px solid #dbe1eb;
  border-radius: 10px;
  padding: 14px 14px 12px;
}

.form-section h3 {
  margin: 0 0 10px;
  color: #1f2838;
  font-size: 18px;
}

.nested-section {
  margin-top: 14px;
  background: #fbfcfe;
}

.nested-section h3 strong {
  font-weight: 800;
}

.docs-section h3 {
  margin-bottom: 4px;
}

.docs-hint {
  margin: 0 0 12px;
  color: #6a7280;
  font-size: 13px;
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.docs-grid label {
  background: #fcfdff;
  border: 1px solid #dbe1eb;
  border-radius: 10px;
  padding: 10px;
}

.docs-grid small {
  margin-top: 6px;
  color: #7a8393;
  font-size: 12px;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.job-modal-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #283144;
  font-size: 13px;
  font-weight: 600;
}

.job-modal-form input,
.job-modal-form select,
.job-modal-form textarea {
  border: 1px solid #d6dce7;
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: #1c2638;
  background: #fafbfe;
}

.job-modal-form textarea {
  resize: vertical;
}

.job-modal-form fieldset {
  margin: 0;
  border: none;
  padding: 0;
}

.job-modal-form legend {
  margin-bottom: 8px;
  color: #283144;
  font-size: 13px;
  font-weight: 600;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-row label {
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #2f394c;
}

.job-modal-form input:focus,
.job-modal-form select:focus,
.job-modal-form textarea:focus {
  outline: none;
  border-color: #223f9d;
  box-shadow: 0 0 0 3px rgba(34, 63, 157, 0.12);
  background: #ffffff;
}

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

.job-form-actions {
  display: flex;
  justify-content: flex-end;
}

.job-submit-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  background: #223f9d;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.job-clear-btn {
  border: 1px solid #223f9d;
  border-radius: 999px;
  padding: 12px 22px;
  background: #ffffff;
  color: #223f9d;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.consult-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}

.consult-modal.is-open {
  display: block;
}

.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 36, 0.6);
}

.consult-modal-panel {
  position: relative;
  width: min(680px, calc(100% - 30px));
  margin: 36px auto;
  max-height: calc(100vh - 72px);
  overflow: auto;
  border-radius: 14px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 26px 50px rgba(7, 14, 36, 0.32);
}

.consult-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  color: #33405a;
  cursor: pointer;
}

.consult-modal-header p {
  margin: 0;
  color: #223f9d;
  font-size: 14px;
  font-weight: 600;
}

.consult-modal-header h2 {
  margin: 6px 0 16px;
  color: #1e2636;
  font-size: clamp(24px, 2.4vw, 32px);
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.consult-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #283144;
  font-size: 13px;
  font-weight: 600;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  border: 1px solid #d6dce7;
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: #1c2638;
  background: #fafbfe;
}

.consult-form textarea {
  resize: vertical;
}

@media (max-width: 1080px) {
  .header-inner {
    height: auto;
    min-height: 64px;
    padding: 14px 22px 16px;
    gap: 14px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo logo"
      "menu right";
    align-items: center;
  }

  .logo {
    grid-area: logo;
    margin-right: 0;
    justify-self: center;
    text-align: center;
    font-size: clamp(28px, 6.2vw, 38px);
    font-weight: 700;
    letter-spacing: 0.6px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: menu;
    margin-left: 0;
    justify-self: start;
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--light-border);
    z-index: 30;
    padding: 8px 16px 14px;
  }

  .site-header.menu-open .nav-menu {
    display: flex;
  }

  .nav-link,
  .nav-btn {
    width: 100%;
    text-align: left;
    border-radius: 8px;
    padding: 12px 10px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    min-width: 100%;
    border: none;
    box-shadow: none;
    margin-top: 2px;
    padding-left: 8px;
  }

  .dropdown-panel a {
    font-size: 14px;
    padding: 10px 8px;
  }

  .header-right {
    grid-area: right;
    margin-left: 0;
    gap: 10px;
    justify-self: end;
  }

  .social-icons {
    display: none;
  }

  .consult-btn {
    padding: 14px 22px;
    font-size: 14px;
  }

  .hero-banner {
    min-height: 0;
    height: clamp(240px, 56vw, 460px);
  }

  .apply-job-link {
    font-size: 18px;
    padding: 12px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-left h2 {
    max-width: 100%;
  }

  .about-lead {
    max-width: 100%;
  }

  .about-right img {
    height: 290px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

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

  .stat-card p {
    font-size: 14px;
  }

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

  .service-overlay h3 {
    font-size: 23px;
  }

  .service-overlay p {
    font-size: 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card p {
    min-height: 0;
  }

  .newsletter-wrap {
    flex-direction: column;
    margin-bottom: -30px;
  }

  .newsletter-form {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 680px) {
  .hero-banner {
    min-height: 0;
    height: clamp(210px, 56.25vw, 280px);
  }

  .stats-section {
    padding: 20px 16px 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-section {
    padding: 56px 16px 68px;
  }

  .services-inner h2 {
    margin-bottom: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: 200px;
  }

  .reviews-section {
    padding: 56px 16px 68px;
  }

  .reviews-inner h2 {
    margin-bottom: 24px;
  }

  .footer-newsletter {
    padding: 0 16px;
  }

  .newsletter-wrap {
    padding: 22px 18px;
    border-radius: 12px;
    margin-bottom: -20px;
  }

  .newsletter-points {
    flex-direction: column;
    gap: 8px;
  }

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

  .newsletter-form button {
    width: 100%;
  }

  .site-footer {
    padding: 66px 16px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand {
    font-size: 24px;
  }

  .job-modal-panel {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    padding: 14px 12px 16px;
  }

  .job-modal-form {
    gap: 12px;
  }

  .form-section {
    padding: 12px 10px;
  }

  .job-modal-header h2 {
    margin: 4px 0 12px;
    font-size: clamp(22px, 6vw, 28px);
  }

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

  .job-form-actions {
    justify-content: stretch;
  }

  .job-submit-btn {
    width: 100%;
  }

  .consult-modal-panel {
    width: calc(100% - 20px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    padding: 18px 14px 16px;
  }

  .consult-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

}
