@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f3f7fc;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #52607a;
  --primary: #103a8a;
  --primary-strong: #0a2558;
  --secondary: #19a0ff;
  --accent: #43d4c6;
  --border: rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 100%;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(25, 160, 255, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(67, 212, 198, 0.16), transparent 30%),
    linear-gradient(180deg, #edf4fb 0%, #ffffff 25%, #f6faff 100%);
  min-height: 100vh;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 400ms ease, transform 400ms ease;
}

main,
#site-header,
#site-footer {
  width: 100%;
}

main {
  flex: 1 0 auto;
}

body.page-ready {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.container {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(20px, 4vw, 56px);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 58, 138, 0.08);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 0 16px rgba(25, 160, 255, 0.5);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}

.section-head h2,
.page-hero-copy h1,
.slide-copy h1,
.cta-panel h2 {
  margin: 16px 0 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-head h2,
.page-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p,
.page-hero-copy p,
.slide-copy p,
.card p,
.timeline-card p,
.job-card p,
.footer-column p,
.testimonial p,
.trust-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2459d2 62%, var(--secondary));
  box-shadow: 0 18px 30px rgba(16, 58, 138, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.btn-link {
  padding-inline: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 0.85rem;
  color: var(--primary-strong);
}

.card,
.glass-card,
.job-card,
.testimonial,
.timeline-card,
.office-card,
.support-card,
.stat-card,
.filter-chip,
.contact-panel,
.leader-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.card,
.glass-card,
.testimonial,
.timeline-card,
.leader-card,
.office-card,
.support-card,
.stat-card,
.job-card,
.contact-panel {
  padding: 28px;
}

.card:hover,
.job-card:hover,
.leader-card:hover,
.office-card:hover,
.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card,
.job-card,
.leader-card,
.office-card,
.support-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 58, 138, 0.16), rgba(67, 212, 198, 0.16));
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.icon-badge svg {
  width: 28px;
  height: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.45), transparent 42%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 30px rgba(16, 58, 138, 0.22);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li {
  list-style: none;
  position: relative;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  color: #193253;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
  background: rgba(16, 58, 138, 0.08);
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 14px;
  transition: background var(--transition), transform var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(16, 58, 138, 0.08);
  transform: translateX(4px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(16, 58, 138, 0.08);
  color: var(--primary);
}

.page-hero {
  padding: 52px 0 20px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.page-hero-copy,
.page-hero-visual {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.page-hero-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.page-hero-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #193253;
  font-weight: 600;
}

.page-hero-copy li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  inset: auto auto 18% 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(25, 160, 255, 0.6), rgba(25, 160, 255, 0.08));
  animation: float 7s ease-in-out infinite;
}

.orb-two {
  inset: 8% 10% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(67, 212, 198, 0.44), rgba(67, 212, 198, 0.08));
  animation: float 6s ease-in-out infinite reverse;
}

.orb-three {
  inset: 26% auto auto 40%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(16, 58, 138, 0.28), rgba(16, 58, 138, 0.02));
  animation: pulse 5s ease-in-out infinite;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
}

.hero-frame {
  position: relative;
  border-radius: 36px;
  min-height: 680px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.2, 1, 0.22, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 28px;
  color: #fff;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 18, 45, 0.68), rgba(16, 58, 138, 0.82) 48%, rgba(11, 163, 255, 0.76));
}

.slide.healthcare::before {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(7, 28, 61, 0.76), rgba(19, 103, 158, 0.82) 52%, rgba(67, 212, 198, 0.68));
}

.slide.global::before {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(8, 20, 45, 0.78), rgba(26, 78, 170, 0.84) 52%, rgba(28, 50, 86, 0.86));
}

.slide > * {
  position: relative;
  z-index: 1;
}

.slide-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  margin-top: 10px;
}

.slide-copy p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 580px;
}

.slide-copy .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.slide-visual {
  position: relative;
  min-height: 470px;
}

.hero-card-cluster {
  position: absolute;
  inset: 0;
}

.floating-card {
  position: absolute;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(7, 18, 45, 0.24);
}

.floating-card h3,
.floating-card h4 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.floating-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.floating-card.large {
  top: 6%;
  right: 5%;
  width: 310px;
}

.floating-card.middle {
  left: 8%;
  bottom: 17%;
  width: 270px;
}

.floating-card.stats {
  right: 14%;
  bottom: 4%;
  width: 220px;
}

.shape-network,
.shape-grid,
.shape-ring {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-network {
  inset: 16% 10% 14% 12%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 65%),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.28), transparent 8%),
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.22), transparent 8%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.16), transparent 8%),
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.15) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.15) 50%, transparent 51%);
  background-size: auto, auto, auto, auto, 100% 92px, 92px 100%;
}

.shape-grid {
  inset: auto 5% 6% auto;
  width: 220px;
  height: 180px;
  background:
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.16) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.16) 50%, transparent 51%);
  background-size: 100% 36px, 36px 100%;
}

.shape-ring {
  top: 10%;
  left: 14%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.12);
}

.slider-controls {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  transition: width var(--transition), background var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  width: 40px;
  background: #fff;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.logo-chip {
  padding: 22px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #5f6f89;
}

.stats-grid .stat-card {
  min-height: 190px;
}

.stat-card h3 {
  margin: 18px 0 8px;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.industries-grid .card,
.services-grid .card,
.leaders-grid .leader-card,
.office-grid .office-card,
.support-grid .support-card {
  min-height: 100%;
}

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

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-step {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(16, 58, 138, 0.14), rgba(25, 160, 255, 0.18));
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.jobs-preview {
  display: grid;
  gap: 18px;
}

.job-card .job-meta,
.job-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.pill,
.job-tag,
.filter-chip,
.pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pill {
  background: rgba(16, 58, 138, 0.08);
  color: var(--primary);
}

.job-tag.remote {
  background: rgba(67, 212, 198, 0.16);
  color: #0b7168;
}

.job-tag.onsite {
  background: rgba(16, 58, 138, 0.1);
  color: var(--primary);
}

.job-tag.hybrid {
  background: rgba(25, 160, 255, 0.12);
  color: #0b5a96;
}

.testimonial {
  overflow: hidden;
}

.testimonial .quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: rgba(16, 58, 138, 0.12);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 58, 138, 0.18), rgba(67, 212, 198, 0.16));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, #081a45, #103a8a 58%, #18a1ff);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.06) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.06) 50%, transparent 51%);
  background-size: auto, auto, 100% 54px, 54px 100%;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 40px 0 30px;
}

.footer-shell {
  padding: 36px;
  border-radius: 34px;
  background: #091b45;
  color: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
}

.footer-top,
.footer-bottom {
  display: grid;
  gap: 24px;
}

.footer-top {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
}

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

.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding-top: 24px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.filters-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  margin-bottom: 28px;
}

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

.search-field,
.form-field input,
.form-field select,
.form-field textarea,
.filters-grid input,
.filters-grid select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.department-filters,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  padding-inline: 16px;
}

.filter-chip.active,
.pagination button.active {
  background: linear-gradient(135deg, var(--primary), #2459d2);
  color: #fff;
}

.jobs-layout {
  display: grid;
  gap: 20px;
}

.pagination {
  justify-content: center;
  margin-top: 28px;
}

.pagination button {
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 20, 45, 0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 70;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(860px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.modal-close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 0;
  background: rgba(16, 58, 138, 0.08);
  color: var(--primary);
  cursor: pointer;
}

.modal-section {
  margin-top: 24px;
}

.modal-section h3 {
  margin-bottom: 10px;
}

.modal-section ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

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

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

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

.form-field label {
  font-weight: 700;
  color: #163152;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.file-upload {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(16, 58, 138, 0.24);
  border-radius: 18px;
  background: rgba(16, 58, 138, 0.04);
}

.trust-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 58, 138, 0.08), rgba(67, 212, 198, 0.08));
}

.support-grid,
.office-grid {
  margin-top: 22px;
}

.map-placeholder {
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(transparent 49%, rgba(16, 58, 138, 0.08) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(16, 58, 138, 0.08) 50%, transparent 51%),
    linear-gradient(135deg, rgba(16, 58, 138, 0.08), rgba(67, 212, 198, 0.08));
  background-size: 100% 42px, 42px 100%, auto;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
}

.jobs-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

@media (max-width: 1100px) {
  .slide,
  .page-hero-shell,
  .contact-layout,
  .footer-top,
  .filters-grid {
    grid-template-columns: 1fr;
  }

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

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

  .slide {
    min-height: 760px;
  }

  .slide-visual {
    min-height: 360px;
  }

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

@media (max-width: 860px) {
  .section,
  .section-tight {
    padding: 72px 0;
  }

  .nav-shell {
    align-items: start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links-wrapper {
    width: 100%;
    display: none;
  }

  .nav-links-wrapper.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-frame {
    min-height: 780px;
  }

  .slide {
    padding: 36px 24px 90px;
  }

  .slide-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .slider-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .jobs-cta,
  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(14px, 4vw, 20px);
  }

  .hero-frame,
  .cta-panel,
  .footer-shell,
  .page-hero-copy,
  .page-hero-visual {
    border-radius: 26px;
  }

  .slide {
    min-height: 820px;
  }

  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .floating-card.large,
  .floating-card.middle,
  .floating-card.stats {
    width: auto;
    left: 20px;
    right: 20px;
  }

  .floating-card.large {
    top: 6%;
  }

  .floating-card.middle {
    top: 42%;
    bottom: auto;
  }

  .floating-card.stats {
    bottom: 8%;
  }
}
