:root {
  --teal-950: #00457F;
  --teal-900: #00457F;
  --teal-800: #00457F;
  --teal-700: #00457F;
  --lime: #EC6206;
  --lime-soft: #EC6206;
  --warm: #f7f2ea;
  --warm-2: #fbf8f2;
  --white: #ffffff;
  --ink: #00457F;
  --muted: #526f88;
  --line: rgba(0, 69, 127, 0.12);
  --shadow: 0 24px 70px rgba(0, 69, 127, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

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

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 46px 0;
}

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

.warm {
  background: var(--warm);
}

.rounded-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 69, 127, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-weight: 800;
  color: var(--teal-900);
}

.brand > span:last-child {
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
}

.brand-mark .icon {
  width: 17px;
  height: 17px;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.desktop-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav li {
  position: relative;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #00457F;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--teal-800);
}

.desktop-nav > ul > .lang-item {
  margin-left: -16px;
}

.desktop-nav > ul > .lang-item + .lang-item {
  margin-left: -24px;
}

.desktop-nav .lang-item a {
  min-width: 34px;
  height: 34px;
  justify-content: center;
  border: 1px solid rgba(0, 69, 127, 0.14);
  border-radius: 8px;
  background: var(--white);
  line-height: 1;
}

.desktop-nav .lang-item a:hover,
.desktop-nav .lang-item a:focus-visible,
.desktop-nav .lang-item.current-lang a {
  border-color: var(--teal-900);
  background: var(--teal-900);
  color: var(--white);
}

.desktop-nav .menu-item-has-children > a {
  gap: 7px;
}

.desktop-nav .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.desktop-nav .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  min-width: 150px;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(0, 69, 127, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 69, 127, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.desktop-nav .menu-item-has-children:hover > .sub-menu,
.desktop-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.desktop-nav .sub-menu a {
  width: 100%;
  min-height: 38px;
  height: auto;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 10px;
}

.desktop-nav img,
.mobile-nav img {
  display: block;
  max-width: 24px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-900);
}

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

.menu-close {
  display: none;
}

.mobile-panel {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--lime-soft);
}

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

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--teal-800);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.34);
  transition: transform 180ms ease;
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon,
.text-link:hover .icon,
.text-link:focus-visible .icon {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 13px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-heading {
  margin-bottom: 36px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 34px;
}

.split-heading .btn {
  justify-self: end;
}

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

.narrow {
  max-width: 690px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
}

h1 {
  max-width: 680px;
  font-size: 68px;
  font-weight: 800;
}

h2 {
  font-size: 44px;
  font-weight: 800;
}

h3 {
  font-size: 21px;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.hero-copy p:not(.eyebrow),
.feature-copy p:not(.eyebrow),
.benefit-intro p:not(.eyebrow),
.process-card p:not(.eyebrow):not(.card-label),
.review-summary p:not(.eyebrow),
.footer-grid p {
  color: var(--muted);
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .hero-copy p:not(.eyebrow),
.section-dark .feature-copy p:not(.eyebrow),
.section-dark .footer-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--teal-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/img/hero-team.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 69, 127, 0.95) 0%, rgba(0, 69, 127, 0.78) 43%, rgba(0, 69, 127, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 69, 127, 0.22), rgba(0, 69, 127, 0.22));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  min-height: 690px;
  padding: 84px 0;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card {
  align-self: end;
  justify-self: end;
  max-width: 330px;
  margin-bottom: 40px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(0, 69, 127, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-weight: 700;
}

.mini-icon,
.icon-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
}

.logo-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 69, 127, 0.08);
}

.strip-title {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.partner-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2px 0;
}

.partner-carousel::before,
.partner-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 110px;
  content: "";
  pointer-events: none;
}

.partner-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.partner-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 54s linear infinite;
  will-change: transform;
}

.partner-list {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  padding: 0 16px 0 0;
  margin: 0;
  list-style: none;
}

.partner-logo {
  width: 210px;
  height: 88px;
  display: grid;
  place-items: center;
  flex: 0 0 210px;
  border: 1px solid rgba(0, 69, 127, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbf9f5);
}

.partner-logo--dark {
  background: var(--teal-900);
}

.partner-logo img {
  width: auto;
  max-width: 74%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.partner-logo--dark img {
  max-width: 78%;
  max-height: 46px;
}

@keyframes partner-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.blog-card,
.process-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  padding: 14px 14px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  outline: 0;
}

.service-card-link:focus-visible .image-wrap {
  outline: 3px solid rgba(236, 98, 6, 0.54);
  outline-offset: 4px;
}

.image-wrap {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 11;
}

.image-wrap img,
.blog-card img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover .image-wrap img,
.blog-card:hover img,
.team-card:hover img {
  transform: scale(1.04);
}

.service-card h3,
.service-card p,
.service-card .text-link {
  margin-inline: 10px;
}

.card-label {
  margin: 20px 0 8px;
  color: var(--teal-800);
  font-size: 13px;
  font-weight: 800;
}

.service-card p:not(.card-label),
.blog-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 800;
}

.text-link .icon {
  transition: transform 180ms ease;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(18px, 3vw, 34px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.service-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(236, 98, 6, 0.16), transparent 34%),
    rgba(0, 34, 62, 0.58);
  backdrop-filter: blur(18px);
}

.service-modal-panel {
  --modal-content-inset: clamp(26px, 4.5vw, 56px);
  position: relative;
  width: min(100%, 1060px);
  max-height: min(900px, calc(100dvh - 56px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 32px;
  background:
    linear-gradient(180deg, var(--white), var(--warm-2));
  box-shadow: 0 36px 90px rgba(0, 34, 62, 0.3);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
  scrollbar-gutter: stable;
}

.service-modal.is-open .service-modal-panel {
  transform: translateY(0) scale(1);
}

.service-modal-panel:focus {
  outline: 0;
}

.modal-close {
  position: sticky;
  top: 20px;
  z-index: 4;
  width: 44px;
  height: 44px;
  margin: 20px 20px -64px auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 69, 127, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-900);
  box-shadow: 0 14px 34px rgba(0, 69, 127, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: translateY(-2px);
  background: var(--warm-2);
}

.service-modal-hero {
  position: relative;
  min-height: clamp(380px, 54vh, 520px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--teal-900), var(--teal-700));
  isolation: isolate;
}

.service-modal-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.service-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 34, 62, 0.16), rgba(0, 34, 62, 0.82));
  z-index: 1;
  pointer-events: none;
}

.service-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-hero-copy {
  max-width: 880px;
  padding: clamp(92px, 11vw, 128px) var(--modal-content-inset) clamp(36px, 6vw, 64px);
  color: var(--white);
}

.service-modal-hero-copy .eyebrow {
  box-shadow: 0 14px 32px rgba(0, 34, 62, 0.2);
}

.service-modal-content {
  position: relative;
  padding: clamp(30px, 4.4vw, 54px) var(--modal-content-inset) var(--modal-content-inset);
  background: var(--white);
}

.service-modal-hero-copy h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.service-modal-summary {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.service-modal-intro {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 17px;
}

.service-modal-intro p {
  margin: 0;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.service-detail-layout h3 {
  margin: 0 0 18px;
}

.service-detail-main,
.service-sections {
  display: grid;
  gap: 18px;
}

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

.service-fact,
.service-detail-panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--warm-2);
}

.service-fact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.service-fact span {
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-fact strong {
  color: var(--teal-900);
  font-size: 17px;
  line-height: 1.35;
}

.service-content-section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.service-content-section p {
  margin: 0;
  color: var(--muted);
}

.service-content-section p + p,
.service-content-section p + .service-detail-list,
.service-content-section .service-detail-list + p {
  margin-top: 14px;
}

.service-detail-list,
.service-detail-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-detail-list li,
.service-detail-panel li {
  position: relative;
  padding-left: 38px;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 2px;
  width: 10px;
  height: 10px;
  border: 5px solid rgba(236, 98, 6, 0.18);
  border-radius: 50%;
  background: var(--lime);
  transform: translateY(-50%);
}

.service-detail-panel {
  position: sticky;
  top: 20px;
  background: var(--teal-900);
  color: var(--white);
}

.service-detail-panel ol {
  counter-reset: service-step;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail-panel li {
  counter-increment: service-step;
}

.service-detail-panel li::before {
  content: counter(service-step);
  position: absolute;
  top: -1px;
  left: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.service-detail-panel .card-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  margin-top: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--lime);
  line-height: 1.2;
}

.service-detail-panel strong {
  display: block;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.service-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-modal-actions .text-link {
  justify-content: center;
  margin-top: 0;
  color: var(--white);
}

.service-modal-actions .btn {
  width: 100%;
}

.service-page-main {
  background: var(--white);
}

.service-page-hero {
  padding: 76px 0 58px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.service-page-copy > .text-link {
  margin: 0 0 28px;
}

.service-page-copy h1 {
  max-width: 780px;
  color: var(--teal-900);
}

.service-page-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.service-page-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-page-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-page-body {
  background: var(--warm-2);
}

.service-page-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 36px;
  align-items: start;
}

.service-page-detail-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-page-detail ul,
.service-page-detail ol {
  color: var(--muted);
}

.service-page-detail h2 + ul,
.service-page-detail h2 + ol {
  margin-top: 16px;
}

.service-page-detail ul + h2,
.service-page-detail ol + h2 {
  margin-top: 34px;
}

.service-page-detail-panel .btn {
  margin-top: 22px;
}

.jobs {
  background:
    linear-gradient(180deg, var(--warm-2), var(--warm));
}

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

.job-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(0, 69, 127, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--lime);
}

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

.job-card .text-link {
  position: relative;
  z-index: 2;
}

.job-card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.job-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.job-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 69, 127, 0.08);
  color: var(--teal-900);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.job-status.urgent {
  background: var(--lime);
  color: var(--white);
}

.job-card h3 {
  margin-top: 22px;
  font-size: 22px;
}

.job-card > p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.job-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.job-meta li {
  display: flex;
  align-items: flex-start;
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
}

.job-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 69, 127, 0.07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.jobs-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0, 69, 127, 0.1);
}

.jobs-callout strong {
  display: block;
  color: var(--teal-900);
  font-size: 20px;
  line-height: 1.2;
}

.jobs-callout p {
  max-width: 680px;
  margin: 6px 0 0;
  color: var(--muted);
}

.job-page-main {
  background: var(--warm-2);
}

.job-top-media {
  position: relative;
  height: clamp(300px, 32vw, 430px);
  min-height: 0;
  overflow: hidden;
  background: var(--teal-900);
}

.job-top-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.job-top-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 69, 127, 0.04), rgba(0, 69, 127, 0.68)),
    linear-gradient(90deg, rgba(0, 69, 127, 0.18), rgba(0, 69, 127, 0));
}

.job-detail-shell {
  padding: 0 0 96px;
  background:
    linear-gradient(180deg, var(--warm-2), var(--white) 44%, var(--warm-2));
}

.job-post-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: -88px;
  margin-bottom: 30px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(0, 69, 127, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.job-post-identity {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.job-post-identity .card-label {
  margin: 0 0 8px;
}

.job-post-identity h1 {
  max-width: 850px;
  color: var(--teal-900);
  font-size: clamp(36px, 5vw, 62px);
}

.job-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.job-post-meta li {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.job-post-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.job-post-actions > p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.job-share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.job-share-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.job-share-link:hover,
.job-share-link:focus-visible,
.job-share-link.is-copied {
  transform: translateY(-2px);
  background: var(--teal-900);
  color: var(--white);
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 30px;
  align-items: start;
}

.job-main-column,
.job-sidebar {
  display: grid;
  gap: 22px;
}

.job-sidebar {
  align-self: start;
}

.job-content-card,
.job-side-card,
.related-job-card {
  border: 1px solid rgba(0, 69, 127, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.job-content-card {
  padding: clamp(26px, 4vw, 40px);
}

.job-lead {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.job-lead p {
  margin: 0;
}

.job-section-stack {
  display: grid;
  gap: 28px;
}

.job-content-section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.job-content-section h2 {
  margin-bottom: 16px;
  color: var(--teal-900);
  font-size: 28px;
}

.job-content-section p {
  margin: 0 0 14px;
  color: var(--muted);
}

.job-gallery-card .section-heading {
  margin-bottom: 24px;
}

.job-gallery-card .split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
}

.job-gallery-card .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.job-media-feature {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--teal-900);
}

.job-media-feature img {
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: cover;
}

.job-media-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 69, 127, 0), rgba(0, 69, 127, 0.34));
}

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

.job-gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: var(--warm);
}

.job-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.job-gallery-grid figure:hover img {
  transform: scale(1.04);
}

.related-jobs {
  padding-top: 22px;
}

.related-jobs .section-heading {
  margin-bottom: 18px;
}

.related-jobs .split-heading {
  align-items: center;
}

.related-job-list {
  display: grid;
  gap: 14px;
}

.related-job-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-job-card:hover,
.related-job-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-job-card a {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: inherit;
}

.related-job-card h3 {
  color: var(--teal-900);
  font-size: 20px;
}

.related-job-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.related-job-card .text-link {
  margin-top: 2px;
}

.job-side-card {
  padding: 24px;
}

.job-side-card h2 {
  margin-bottom: 18px;
  color: var(--teal-900);
  font-size: 22px;
}

.job-info-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.job-info-list dt,
.job-info-list dd {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.job-info-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.job-info-list dd {
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.job-info-list:not(.compact) {
  grid-template-columns: minmax(120px, 0.78fr) minmax(0, 1fr);
  column-gap: 16px;
}

.job-info-list.compact {
  gap: 0;
}

.job-info-list.compact dt {
  padding-bottom: 2px;
  border-top: 0;
}

.job-info-list.compact dd {
  padding-top: 0;
}

.job-map {
  overflow: hidden;
  border-radius: 18px;
  background: var(--warm);
}

.job-map iframe {
  display: block;
  width: 100%;
  min-height: 250px;
  aspect-ratio: 4 / 3;
  border: 0;
}

.employer-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.employer-card strong {
  display: block;
  color: var(--teal-900);
  line-height: 1.25;
}

.employer-card a {
  display: inline-flex;
  margin-top: 2px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.job-apply-card.contact-form {
  gap: 14px;
  box-shadow: none;
}

.job-apply-card .form-head {
  align-items: center;
}

.job-apply-card .form-head h2 {
  margin: 0;
  font-size: 22px;
}

.job-apply-card .form-head p {
  font-size: 13px;
}

.job-apply-card .contact-submit {
  width: 100%;
}

.feature-block {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
  padding: 70px;
  background:
    radial-gradient(circle at 10% 0%, rgba(236, 98, 6, 0.13), transparent 28%),
    var(--teal-900);
}

.feature-copy p {
  margin: 20px 0 30px;
}

.feature-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
}

.feature-visual img {
  width: min(100%, 620px);
  min-height: 390px;
  object-fit: cover;
  border-radius: 28px;
  margin-left: auto;
}

.floating-stack {
  position: absolute;
  left: 0;
  right: 30px;
  display: grid;
  gap: 16px;
}

.float-card {
  width: min(420px, 100%);
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-950);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.float-card:nth-child(2) {
  margin-left: 58px;
}

.float-card:nth-child(3) {
  margin-left: 118px;
}

.float-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
}

.stats {
  background: var(--white);
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 18px 10px;
  border-bottom: 1px solid rgba(0, 69, 127, 0.12);
}

.stat-item strong {
  color: var(--teal-900);
  font-size: 46px;
  line-height: 1;
}

.stat-item sup {
  font-size: 20px;
}

.stat-item span {
  max-width: 110px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.projects {
  background: var(--white);
}

.projects-heading {
  margin-bottom: 18px;
}

.stack-scroll {
  --stack-card-min-height: clamp(460px, 58dvh, 620px);
  position: relative;
}

.stack-sticky {
  display: block;
}

.stack-frame {
  display: grid;
  gap: 22px;
}

.stack-card {
  position: relative;
  min-height: var(--stack-card-min-height);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  will-change: opacity, transform;
}

.stack-card.reveal {
  transform: translateY(36px) scale(0.985);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--card-delay, 0ms);
}

.stack-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.stack-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}

.stack-number {
  display: block;
  margin-bottom: clamp(42px, 6dvh, 82px);
  color: rgba(0, 69, 127, 0.08);
  font-size: clamp(94px, 9vw, 148px);
  font-weight: 800;
  line-height: 0.75;
}

.stack-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding: 7px 16px;
  border: 1px solid rgba(236, 98, 6, 0.18);
  border-radius: 999px;
  background: rgba(236, 98, 6, 0.1);
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.stack-card h3 {
  max-width: 570px;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 50px);
  letter-spacing: 0;
}

.stack-card p:not(.stack-kicker) {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}

.stack-card-media {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--warm);
}

.stack-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 42px;
  align-items: start;
}

.benefit-intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.benefit-intro p {
  margin: 18px 0 24px;
}

.benefit-intro img {
  width: 100%;
  aspect-ratio: 16 / 11;
  margin-top: 28px;
  object-fit: cover;
  border-radius: var(--radius);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(0, 69, 127, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.benefit-card h3 {
  font-size: 19px;
}

.benefit-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.process-card {
  --process-accent: var(--teal-900);
  --process-surface: rgba(0, 69, 127, 0.06);
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-card:nth-child(2) {
  --process-accent: var(--lime);
  --process-surface: rgba(236, 98, 6, 0.08);
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(0, 69, 127, 0.2);
  box-shadow: var(--shadow);
}

.process-card .card-label {
  margin: 0;
  color: var(--process-accent);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0;
}

.process-card > p:not(.card-label) {
  margin: -6px 0 0;
}

.process-visual {
  position: relative;
  min-height: 156px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 22px;
  border-radius: 20px;
  background: var(--process-surface);
}

.process-visual::before,
.process-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--process-accent);
  opacity: 0.16;
}

.process-visual::before {
  width: 86px;
  height: 10px;
  top: 22px;
  right: 22px;
}

.process-visual::after {
  width: 56px;
  height: 10px;
  right: 52px;
  bottom: 24px;
}

.process-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--process-accent);
  color: var(--white);
}

.process-icon .icon {
  width: 34px;
  height: 34px;
}

.process-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.process-lines span {
  display: block;
  width: 86%;
  height: 12px;
  border-radius: 999px;
  background: var(--process-accent);
  opacity: 0.18;
}

.process-lines span:nth-child(2) {
  width: 64%;
  opacity: 0.3;
}

.process-lines span:nth-child(3) {
  width: 74%;
  opacity: 0.18;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 800;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.check-list .icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--lime);
}

.team-block {
  padding: 64px;
  background:
    radial-gradient(circle at 90% 8%, rgba(236, 98, 6, 0.18), transparent 26%),
    var(--teal-900);
}

.team-block .split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr) auto;
  align-items: center;
}

.team-photo {
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: 28px;
  background: var(--teal-800);
}

.team-photo img {
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
  object-position: center 42%;
}

.team-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  margin: 0;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

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

.team-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--teal-800);
}

.team-card img {
  position: absolute;
  inset: 0;
  object-position: center top;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 69, 127, 0.92));
}

.team-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.team-card h3 {
  font-size: 20px;
}

.team-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.team-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.team-tags span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
}

.review-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.review-summary p {
  margin: 18px 0 24px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-900);
}

.stars {
  color: #f7a629;
  font-size: 20px;
  letter-spacing: 0;
}

.rating-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.client-stack {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 26px;
}

.client-stack img,
.client-stack .review-avatar {
  width: 44px;
  height: 44px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.client-stack img {
  object-fit: cover;
}

.client-stack img + img,
.client-stack .review-avatar + .review-avatar {
  margin-left: -12px;
}

.client-stack .stack-label {
  margin-left: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-list {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  position: relative;
  padding: 26px 76px 26px 26px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-head img,
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-head img {
  object-fit: cover;
}

.review-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--teal-900);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.review-avatar--teal {
  background: #0097a7;
}

.review-avatar--dark {
  background: #28323f;
}

.review-avatar--orange {
  background: #ff3d00;
}

.review-avatar--photo {
  background: linear-gradient(135deg, #6d8f61, #223b30);
}

.testimonial-head h3 {
  font-size: 17px;
}

.testimonial-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-rating .stars {
  flex: 0 0 auto;
  font-size: 18px;
}

blockquote {
  margin: 0;
  color: #526f88;
}

.testimonial-card blockquote p {
  margin: 0 0 12px;
}

.testimonial-card blockquote p:last-child {
  margin-bottom: 0;
}

.quote-mark {
  position: absolute;
  right: 28px;
  bottom: 8px;
  color: rgba(0, 69, 127, 0.08);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 44px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 69, 127, 0.13);
}

.accordion-trigger {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.accordion-trigger .icon {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-trigger .icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-content > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}

.faq-media {
  position: relative;
}

.faq-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.support-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 69, 127, 0.16);
}

.support-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--white);
}

.support-card strong {
  display: block;
  color: var(--teal-900);
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cta-banner {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px;
  background:
    linear-gradient(90deg, rgba(0, 69, 127, 0.95), rgba(0, 69, 127, 0.74)),
    url("assets/img/project-workplace.jpg") center / cover;
}

.cta-banner h2 {
  max-width: 560px;
}

.lime-panel {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 24px;
  padding: 42px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--lime), #EC6206);
  color: var(--white);
}

.lime-panel div {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 12px 16px;
}

.lime-panel span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
}

.lime-panel strong {
  font-size: 36px;
  line-height: 1;
}

.lime-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card[hidden] {
  display: none;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card-link {
  display: flex;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
  color: inherit;
  outline: 0;
}

.blog-card-link:focus-visible .blog-media {
  outline: 3px solid rgba(236, 98, 6, 0.54);
  outline-offset: -3px;
}

.blog-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  max-width: calc(100% - 32px);
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-900);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-card h3 {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.18;
}

.blog-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.blog-meta span,
.blog-meta time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.blog-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--white), var(--warm-2));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
  gap: 34px;
  align-items: start;
}

.contact-info > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 26px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.contact-list a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--teal-900);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(236, 98, 6, 0.36);
  box-shadow: 0 18px 42px rgba(0, 69, 127, 0.1);
}

.contact-list span,
.map-caption span,
.form-head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(236, 98, 6, 0.12);
  color: var(--lime);
}

.contact-list strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 330px;
  aspect-ratio: 16 / 10;
  border: 0;
}

.map-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.map-caption strong {
  display: block;
  color: var(--teal-900);
  font-size: 15px;
  line-height: 1.25;
}

.map-caption a {
  display: inline-flex;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-caption a:hover,
.map-caption a:focus-visible {
  color: var(--lime);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(0, 69, 127, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-head h3 {
  font-size: 24px;
}

.form-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--teal-900);
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(0, 69, 127, 0.16);
  border-radius: 16px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 13px 15px;
  line-height: 1.55;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(236, 98, 6, 0.13);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.consent-row input[aria-invalid="true"] {
  border-color: var(--lime);
  background: rgba(236, 98, 6, 0.04);
}

.field-error {
  min-height: 17px;
  color: #9c3600;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.consent-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  accent-color: var(--lime);
}

.consent-error {
  margin-top: -14px;
}

.turnstile-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.turnstile-widget {
  min-height: 65px;
}

.turnstile-field.has-error .turnstile-widget {
  border-radius: 6px;
  outline: 2px solid rgba(236, 98, 6, 0.55);
  outline-offset: 4px;
}

.contact-submit {
  justify-self: start;
  margin-top: 2px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-submit[data-turnstile-locked="true"]:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  background:
    radial-gradient(circle at 82% 0%, rgba(236, 98, 6, 0.12), transparent 28%),
    var(--teal-950);
  padding-top: 38px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  max-width: 620px;
}

.newsletter {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 5px;
  border-radius: 999px;
  background: var(--lime);
}

.newsletter input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.newsletter button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  background: var(--teal-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 0.9fr;
  gap: 42px;
  padding: 46px 0 56px;
}

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

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-grid a,
.footer-grid p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--lime);
}

.footer-grid .icon {
  flex: 0 0 auto;
}

.social-row {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
}

.copyright {
  background: var(--lime);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.copyright .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .stack-scroll {
    min-height: auto;
  }

  .stack-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .stack-frame {
    height: auto;
    display: grid;
    gap: 18px;
  }

  .stack-card {
    position: relative;
    height: auto;
    min-height: 500px;
    transform: none !important;
  }

  .stack-card.reveal {
    opacity: 1;
    transition-delay: 0ms;
  }

  .partner-carousel::before,
  .partner-carousel::after {
    display: none;
  }

  .partner-track {
    width: auto;
    animation: none;
    transform: none;
  }

  .partner-list {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0;
  }

  .partner-list[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

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

  .site-header.is-open .menu-open {
    display: none;
  }

  .site-header.is-open .menu-close {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: block;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 69, 127, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav {
    width: min(100% - 40px, var(--container));
    display: grid;
    gap: 6px;
    margin: 0 auto;
    padding: 18px 0 24px;
  }

  .mobile-menu-list,
  .mobile-nav .sub-menu {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav .sub-menu {
    display: none;
    margin: 2px 0 4px 14px;
    padding-left: 10px;
    border-left: 1px solid var(--line);
  }

  .mobile-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
  }

  .mobile-nav a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--teal-950);
    font-weight: 800;
    text-align: left;
  }

  .mobile-nav .menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .mobile-nav .menu-item-has-children.is-open > a::after {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-nav a:hover {
    background: var(--warm);
  }

  .mobile-nav .btn {
    justify-content: center;
    margin-top: 8px;
    padding-inline: 22px;
  }

  .mobile-nav a.btn-primary {
    background: var(--lime);
    color: var(--white);
  }

  .mobile-nav a.btn-primary:hover,
  .mobile-nav a.btn-primary:focus-visible {
    background: var(--lime-soft);
    color: var(--white);
  }

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

  .hero-card {
    justify-self: start;
    align-self: start;
    margin-bottom: 0;
  }

  .card-grid.three,
  .approach-grid,
  .team-grid,
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-block,
  .benefits-grid,
  .testimonial-grid,
  .contact-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-block,
  .team-block {
    padding: 48px;
  }

  .benefit-intro,
  .review-summary,
  .contact-form {
    position: static;
  }

  .stack-scroll {
    --stack-card-min-height: clamp(500px, calc(100dvh - var(--header-height) - 132px), 620px);
  }

  .stack-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .stack-card-copy {
    padding: 34px;
  }

  .stack-card h3 {
    font-size: clamp(34px, 5vw, 50px);
  }

  .team-block .split-heading,
  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-page-grid,
  .service-page-detail,
  .job-post-head,
  .job-detail-layout,
  .job-gallery-card .split-heading {
    grid-template-columns: 1fr;
  }

  .job-sidebar {
    position: static;
  }

  .job-post-actions {
    justify-items: start;
  }

  .job-post-actions > p {
    max-width: none;
    text-align: left;
  }

  .service-modal-panel {
    width: min(100%, 900px);
    max-height: calc(100dvh - 40px);
  }

  .service-modal-hero {
    min-height: clamp(340px, 50vh, 460px);
  }

  .service-modal-media,
  .service-modal-media img {
    height: 100%;
  }

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

  .service-detail-panel {
    position: static;
  }

  .service-page-detail-panel {
    position: static;
  }

  .split-heading .btn {
    justify-self: start;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .section-compact {
    padding: 34px 0;
  }

  .nav-shell {
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-height);
  }

  .brand {
    gap: 10px;
    font-size: 17px;
    letter-spacing: 0;
  }

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

  .brand-mark .icon {
    width: 18px;
    height: 18px;
  }

  .brand span:last-child {
    max-width: calc(100vw - 132px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 14px;
    background: rgba(0, 69, 127, 0.04);
    box-shadow: none;
  }

  .menu-toggle .icon {
    width: 21px;
    height: 21px;
    stroke-width: 2.35;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .hero,
  .hero-grid {
    min-height: 640px;
  }

  .hero-grid {
    gap: 28px;
    padding: 60px 0;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 190px;
  }

  .hero-card {
    max-width: none;
    width: 100%;
  }

  .partner-carousel::before,
  .partner-carousel::after {
    width: 48px;
  }

  .partner-list {
    gap: 12px;
    padding-right: 12px;
  }

  .partner-logo {
    width: 164px;
    height: 76px;
    flex-basis: 164px;
    border-radius: 16px;
  }

  .partner-logo img {
    max-width: 76%;
    max-height: 48px;
  }

  .partner-logo--dark img {
    max-width: 80%;
    max-height: 38px;
  }

  .card-grid.three,
  .approach-grid,
  .team-grid,
  .jobs-grid,
  .job-gallery-grid,
  .stat-grid,
  .team-tags,
  .contact-list,
  .form-grid,
  .lime-panel,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-modal {
    padding: 0;
    align-items: stretch;
    justify-items: stretch;
  }

  .service-modal-panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
    box-shadow: none;
  }

  .modal-close {
    top: 14px;
    margin: 14px 14px -58px auto;
  }

  .service-modal-hero {
    min-height: clamp(410px, 66dvh, 540px);
  }

  .service-modal-hero-copy {
    padding: 82px var(--modal-content-inset) 34px;
  }

  .service-modal-media,
  .service-modal-media img {
    height: 100%;
  }

  .service-modal-content {
    --modal-content-inset: 20px;
    padding: 28px var(--modal-content-inset) 0;
  }

  .service-modal-summary,
  .service-page-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .service-facts {
    grid-template-columns: 1fr;
  }

  .service-detail-layout {
    gap: 14px;
    margin-top: 28px;
  }

  .service-fact,
  .service-detail-panel,
  .service-page-detail-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .service-modal-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .service-modal-actions .btn,
  .service-modal-actions .text-link {
    justify-content: center;
    margin-inline: 0;
  }

  .service-page-hero {
    padding: 46px 0 34px;
  }

  .service-page-image img {
    height: 320px;
  }

  .stat-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
  }

  .feature-block,
  .team-block {
    padding: 28px;
    border-radius: 28px;
  }

  .feature-visual {
    min-height: auto;
    display: block;
  }

  .feature-visual img {
    min-height: 310px;
    margin: 0;
  }

  .floating-stack {
    position: relative;
    right: auto;
    left: auto;
    margin-top: -42px;
    padding: 0 12px;
  }

  .float-card,
  .float-card:nth-child(2),
  .float-card:nth-child(3) {
    margin-left: 0;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

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

  .job-top-media,
  .job-top-media img {
    height: 290px;
    min-height: 0;
  }

  .job-detail-shell {
    padding-bottom: 70px;
  }

  .job-post-head {
    margin-top: -58px;
    margin-bottom: 22px;
    padding: 22px;
    border-radius: 24px;
  }

  .job-post-identity {
    flex-direction: column;
    gap: 14px;
  }

  .job-post-identity h1 {
    font-size: 34px;
  }

  .job-post-meta {
    display: grid;
    gap: 10px;
  }

  .job-share-actions {
    justify-content: flex-start;
  }

  .job-content-card,
  .job-side-card {
    padding: 22px;
    border-radius: 22px;
  }

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

  .job-content-section h2 {
    font-size: 24px;
  }

  .job-media-feature img {
    height: 280px;
  }

  .job-info-list:not(.compact) {
    grid-template-columns: 1fr;
  }

  .job-info-list:not(.compact) dt {
    padding-bottom: 0;
  }

  .job-info-list:not(.compact) dd {
    padding-top: 2px;
    border-top: 0;
  }

  .process-card {
    min-height: auto;
  }

  .stack-scroll {
    --stack-card-min-height: 0;
  }

  .stack-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .stack-frame {
    height: auto;
    display: grid;
    gap: 16px;
  }

  .stack-card {
    position: relative;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border-radius: 26px;
  }

  .stack-card-copy {
    padding: 24px;
  }

  .stack-number {
    margin-bottom: 34px;
    font-size: 78px;
  }

  .stack-kicker {
    margin-bottom: 16px;
  }

  .stack-card h3 {
    font-size: 31px;
  }

  .stack-card p:not(.stack-kicker) {
    margin-top: 16px;
    font-size: 16px;
  }

  .stack-card-media {
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 20px;
  }

  .team-card {
    min-height: 390px;
  }

  .team-photo {
    border-radius: 22px;
  }

  .team-photo img {
    height: 220px;
  }

  .team-photo figcaption {
    position: static;
    width: auto;
    max-width: none;
    border-radius: 0;
  }

  .testimonial-card {
    padding-right: 26px;
  }

  .quote-mark {
    position: static;
    display: block;
    margin-top: 8px;
    font-size: 54px;
  }

  .support-card {
    position: static;
    margin-top: -34px;
    margin-inline: 16px;
  }

  .cta-banner {
    min-height: 300px;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
  }

  .lime-panel {
    padding: 28px;
  }

  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .map-card iframe {
    min-height: 260px;
  }

  .footer-cta {
    padding-bottom: 38px;
  }

  .copyright .container {
    min-height: 64px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .job-card {
    padding: 22px;
  }

  .job-card-head {
    flex-direction: column;
  }

  .job-post-head {
    padding: 18px;
  }

  .job-post-identity h1 {
    font-size: 31px;
  }

  .job-post-actions,
  .job-post-actions .btn {
    width: 100%;
  }

  .job-share-actions {
    width: 100%;
  }

  .newsletter {
    border-radius: 22px;
  }

  .contact-list a {
    min-height: 66px;
  }
}
