*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #171717;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: #1d4ed8; text-decoration: none; transition: color 0.2s; }
a:hover { color: #1e40af; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}
h1 { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.75px; }
h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.3px; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { color: #404040; margin-bottom: 1rem; line-height: 1.8; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-intro {
  color: #737373;
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.02rem;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.bg-offwhite { background: #fafaf9; }
.bg-white { background: #ffffff; }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.8rem 1.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-blue {
  color: #ffffff;
  background: #1d4ed8;
}
.btn-blue:hover {
  background: #1e40af;
  color: #ffffff;
}
.btn-outline {
  color: #1d4ed8;
  background: transparent;
  border: 1.5px solid #1d4ed8;
}
.btn-outline:hover {
  background: #1d4ed8;
  color: #ffffff;
}
.btn-outline-white {
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}
.btn-dark {
  color: #ffffff;
  background: #171717;
}
.btn-dark:hover {
  background: #2d2d2d;
  color: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.navbar-logo {
  font-size: 0.78rem;
  font-weight: 700;
  color: #171717;
  letter-spacing: -0.2px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-logo:hover { color: #171717; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 56px;
}
.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #525252;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: #171717;
}

.nav-links > li.has-dropdown > a {
  gap: 0.3rem;
}
.nav-arrow {
  font-size: 0.55rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s;
  opacity: 0.4;
}
.nav-links > li.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  z-index: 200;
  padding: 0.4rem;
  margin-top: 0;
}
.nav-links > li.has-dropdown:hover .nav-dropdown {
  display: block;
}
.nav-dropdown li a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #525252;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  background: #fafaf9;
  color: #171717;
}

.nav-cta {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: #1e40af; color: #ffffff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #171717;
  transition: all 0.3s;
}

.hero-swiper {
  width: 100%;
  height: 85vh; overflow: hidden; margin: 0;
  position: relative;
  background: #fafaf9;
}
.hero-swiper .swiper-wrapper {
  transition-timing-function: ease !important;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.slide-bg-1 { background-image: url(../img/hero-slide-1.jpg); background-color: #fafaf9; }
.slide-bg-2 { background-image: url(../img/hero-slide-2.jpg); background-color: #171717; }
.slide-bg-3 { background-image: url(../img/hero-slide-3.jpg); background-color: #eef2f7; }

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide-overlay--dark { background: rgba(0, 0, 0, 0.4); }

.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
}
.slide-content--centered {
  justify-content: center;
  text-align: center;
}

.slide-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 1rem;
}
.slide-eyebrow--light { color: rgba(255,255,255,0.6); }

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #171717;
}
.slide-title--light { color: #ffffff; }

.slide-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
  color: #525252;
}
.slide-lead--light { color: rgba(255,255,255,0.75); }

.slide-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.slide-cta--centered { justify-content: center; }

.slide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.slide-image-area {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin: 0 auto;
}

.slide-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.slide-feature {
  padding: 0;
  text-align: left;
}
.slide-feature h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #171717;
}
.slide-feature p {
  font-size: 0.88rem;
  color: #737373;
  margin: 0;
  line-height: 1.6;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  color: #171717 !important;
  transition: background 0.2s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0,0,0,0.08);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 0.85rem !important; font-weight: 700; }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d4d4d4;
  opacity: 1;
  border-radius: 2px;
}
.swiper-pagination-bullet-active {
  background: #1d4ed8;
  width: 24px;
  border-radius: 2px;
  transition: width 0.3s;
}

.stats-bar {
  background: #ffffff;
  border-bottom: 1px solid #f0f0ed;
  padding: 0;
}
.stats-bar .container {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid #f0f0ed;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #171717;
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: #737373;
}

.trust-bar {
  background: #fafaf9;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0f0ed;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a3a3a3;
  padding: 0.4rem 1.5rem;
  border-right: 1px solid #e5e5e5;
}
.trust-item:last-child { border-right: none; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: #525252; margin-bottom: 1.25rem; }
.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.service-card .card-link::after { content: '\2192'; }
.service-card:hover .card-link { gap: 0.5rem; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-section--reversed { direction: rtl; }
.split-section--reversed > * { direction: ltr; }
.split-image {
  background: #f5f5f4;
  border-radius: 8px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.split-content {
  padding: 2rem 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
}
.industry-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #171717;
}
.industry-card p { font-size: 0.9rem; color: #525252; margin-bottom: 1rem; }
.industry-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1d4ed8;
  transition: gap 0.2s;
}
.industry-card .card-link::after { content: '\2192'; }
.industry-card:hover .card-link { gap: 0.5rem; }

.page-cta {
  background: #171717;
  padding: 5rem 0;
  text-align: center;
}
.page-cta h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}
.page-cta p {
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin: 0 auto 2rem;
}

.page-header {
  background: #fafaf9;
  padding: 5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid #f0f0ed;
}
.page-header h1 {
  color: #171717;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.75px;
}
.page-header p {
  color: #737373;
  margin: 0.75rem auto 0;
  max-width: 500px;
  font-size: 1.02rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a3a3a3;
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: #a3a3a3; }
.breadcrumb a:hover { color: #1d4ed8; }
.breadcrumb .sep { color: #d4d4d4; }

.notice {
  border-left: 3px solid #1d4ed8;
  background: #fafaf9;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  border-radius: 0 6px 6px 0;
}
.notice p { margin: 0; font-size: 0.95rem; color: #404040; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.team-avatar {
  width: 100%;
  height: 200px;
  background: #f5f5f4;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info { padding: 1.75rem 2rem; }
.team-name { font-size: 1rem; font-weight: 700; color: #171717; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 0.75rem;
  display: block;
}
.team-bio { font-size: 0.88rem; color: #525252; margin: 0; }

.career-list-section { display: flex; flex-direction: column; gap: 1rem; }

.career-card {
  border: 1px solid #e5e5e5;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.career-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  cursor: pointer;
}
.career-title {
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}
.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.career-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #737373;
  background: #fafaf9;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
}
.career-tag--blue {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #dbeafe;
}
.career-apply {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.5rem 1.15rem;
}
.career-toggle {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #fafaf9;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
  font-size: 1rem;
  color: #737373;
  font-weight: 300;
}
.career-card.open .career-toggle { transform: rotate(45deg); background: #eff6ff; color: #1d4ed8; border-color: #dbeafe; }
.career-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.career-card.open .career-body { max-height: 600px; }
.career-body-inner {
  padding: 0 2rem 2rem;
  border-top: 1px solid #f5f5f4;
  padding-top: 1.5rem;
}
.career-body-inner p {
  font-size: 0.9rem;
  color: #404040;
  line-height: 1.7;
}
.career-req-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.career-req-list li {
  font-size: 0.88rem;
  color: #404040;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.55;
}
.career-req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  background: #1d4ed8;
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f5f5f4;
}
.contact-detail:last-child { border-bottom: none; }
.contact-text h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #171717;
  margin-bottom: 0.25rem;
}
.contact-text p { margin: 0; font-size: 0.9rem; color: #525252; }
.contact-text a { color: #1d4ed8; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #171717;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  color: #171717;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 2px rgba(29,78,216,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.field-invalid { border-color: #dc2626 !important; }
.form-error {
  font-size: 0.72rem;
  color: #dc2626;
  font-weight: 500;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #737373;
}
.form-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: #1d4ed8;
}

.email-panel {
  background: #fafaf9;
  border-left: 4px solid #1d4ed8;
  padding: 2.5rem;
  border-radius: 0 8px 8px 0;
}
.email-panel .section-label { margin-bottom: 0.5rem; }
.email-panel h3 { margin-bottom: 0.75rem; }
.email-panel h3 a { font-size: 1.6rem; color: #1d4ed8; font-weight: 700; }
.email-panel h3 a:hover { color: #1e40af; }
.email-panel-rule {
  width: 50px;
  height: 3px;
  background: #1d4ed8;
  border: none;
  margin: 0 0 1.5rem;
}
.email-panel p { font-size: 0.92rem; color: #525252; }
.email-panel ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.email-panel ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: #404040;
  line-height: 1.6;
}
.email-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: #1d4ed8;
  border-radius: 50%;
}

.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid #f0f0ed;
}
.solution-block:last-child { border-bottom: none; }
.solution-block--reversed { direction: rtl; }
.solution-block--reversed > * { direction: ltr; }
.solution-image {
  background: #f5f5f4;
  border-radius: 8px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}
.solution-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.solution-features li {
  font-size: 0.9rem;
  color: #404040;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.6;
}
.solution-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: #1d4ed8;
  border-radius: 50%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
  text-align: left;
}
.feature-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-card p { font-size: 0.9rem; color: #525252; margin: 0; }

.footer { background: #171717; color: #a3a3a3; }
.footer-top { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand p { font-size: 0.85rem; color: #737373; margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-logo-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a3a3a3;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #2d2d2d;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: #737373;
  font-size: 0.82rem;
  display: inline-block;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: #ffffff; }
.footer-links li { font-size: 0.82rem; color: #737373; }
.footer-bottom {
  border-top: 1px solid #2d2d2d;
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; margin: 0; color: #525252; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #525252; font-size: 0.75rem; text-decoration: none; }
.footer-legal a:hover { color: #ffffff; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.19s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.26s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.33s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.40s; }

@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .split-section--reversed { direction: ltr; }
  .solution-block { grid-template-columns: 1fr; gap: 2rem; }
  .solution-block--reversed { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .slide-split { grid-template-columns: 1fr; gap: 2rem; }
  .slide-split-image { display: none; }
  .industry-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .slide-title { font-size: 2.2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
    gap: 0;
    z-index: 999;
    height: auto;
    overflow-y: auto;
  }
  .nav-links.open > li { width: 100%; height: auto; }
  .nav-links.open > li > a {
    height: auto;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f5f5f4;
    display: block;
    width: 100%;
    font-size: 0.88rem;
    color: #171717;
  }
  .nav-cta.open {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    padding: 1rem 2rem;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-radius: 0;
  }
  .nav-links.open .nav-dropdown {
    display: block;
    position: static;
    transform: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #fafaf9;
    padding: 0.25rem 0 0.25rem 0.75rem;
    margin-bottom: 0.25rem;
    border-left: 2px solid #1d4ed8;
  }
  .nav-links.open .nav-dropdown li a {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    border-radius: 0;
  }
  .nav-links.open .has-dropdown > a { border-bottom: none; }
  .nav-arrow { display: none; }
  .stats-bar .container { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid #f0f0ed; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-swiper { height: 70vh; }
  .slide-title { font-size: 1.9rem; }
  .slide-features { grid-template-columns: 1fr; }
  .swiper-button-prev,
  .swiper-button-next { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.9rem; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-cta { flex-direction: column; align-items: flex-start; }
  .page-header { padding: 3.5rem 0 2.5rem; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 1.6rem; }
  h1 { font-size: 1.7rem; }
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  padding: 0.6rem 1.2rem;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; color: #ffffff; }

.body-locked { overflow: hidden; }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 2rem;
}

.split-image,
.solution-image {
  background: linear-gradient(145deg, #f5f5f4 0%, #e7e5e4 40%, #f0efed 70%, #fafaf9 100%);
}
.team-avatar {
  background: linear-gradient(135deg, #e7e5e4 0%, #f5f5f4 50%, #d6d3d1 100%);
}
.slide-image-area {
  background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

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

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success h3 { color: #171717; margin-bottom: 0.5rem; }
.form-success .form-success-ref {
  font-size: 0.78rem;
  color: #737373;
  margin-top: 0.5rem;
}

.mission-intro { margin-top: 1.5rem; }
