:root {
  color-scheme: light;
  --blue-950: #0a1b33;
  --blue-900: #0c2447;
  --blue-800: #12346a;
  --blue-700: #1648a3;
  --blue-600: #1b5fd1;
  --blue-500: #2f78f6;
  --gray-50: #f8fafc;
  --gray-100: #eef2f6;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #1f2937;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 14px 32px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--gray-700);
  background:
    radial-gradient(1200px 520px at 10% -10%, #e6eefc 0%, transparent 60%),
    radial-gradient(900px 420px at 90% 0%, #e9f0ff 0%, transparent 55%),
    var(--gray-50);
  min-height: 100vh;
}

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

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

h1, h2, h3 {
  font-family: "Sora", "Manrope", sans-serif;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-image {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.logo-text {
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.nav-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

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

.nav-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.nav-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-700);
}

.nav-close span:first-child {
  transform: rotate(45deg);
}

.nav-close span:last-child {
  transform: rotate(-45deg);
}

.nav-close:focus-visible {
  outline: 2px solid rgba(27, 95, 209, 0.45);
  outline-offset: 2px;
}

.site-nav a {
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue-600);
}

.site-nav .nav-cta {
  color: var(--white);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(27, 95, 209, 0.25);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-700);
  color: var(--white);
}

.nav-cta:focus-visible {
  outline: 2px solid rgba(27, 95, 209, 0.45);
  outline-offset: 2px;
}

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: var(--gray-100);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray-500);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--blue-700);
  display: block;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 27, 51, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 140px 0 110px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(9, 23, 48, 0.85) 10%, rgba(9, 23, 48, 0.45) 55%, rgba(9, 23, 48, 0.25) 100%);
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 18px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: rgba(248, 250, 252, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(27, 95, 209, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(27, 95, 209, 0.4);
}

.btn:focus-visible {
  outline: 2px solid rgba(27, 95, 209, 0.45);
  outline-offset: 3px;
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pill-light {
  background: rgba(255, 255, 255, 0.1);
}

.hero-highlight {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-main {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.highlight-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.7);
}

.highlight-value {
  font-size: 1.1rem;
  color: var(--white);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.82);
  color: var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.stat-card {
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.stat-card:last-of-type {
  border-bottom: none;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-700);
}

.stat-label {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.hero-mini {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.page-hero {
  padding: 120px 0 80px;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-600));
}

.page-hero .lead {
  color: rgba(248, 250, 252, 0.85);
  max-width: 620px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: linear-gradient(160deg, rgba(226, 232, 240, 0.6) 0%, rgba(248, 250, 252, 0.9) 70%);
}

.section-head {
  margin-bottom: 36px;
  max-width: 720px;
}

.section-lead {
  color: var(--gray-500);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.card-media img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.card-body {
  margin-top: 18px;
}

.service-card {
  display: grid;
  gap: 14px;
}

.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(27, 95, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.service-card svg {
  width: 28px;
  height: 28px;
}

.vacancy-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.stack .keypoint + .keypoint {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.signature {
  margin-top: 18px;
  font-weight: 600;
  color: var(--blue-700);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-lg);
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(27, 95, 209, 0.15);
}

.service-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(27, 95, 209, 0.08);
  color: var(--blue-800);
  font-weight: 600;
}

.service-actions {
  margin-top: 20px;
}

.advantage-card h3 {
  margin-bottom: 8px;
}

.stats {
  background: linear-gradient(160deg, rgba(15, 76, 169, 0.08) 0%, rgba(248, 250, 252, 0.9) 65%);
}

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

.stat-block {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-700);
}

.quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--gray-700);
}

.quote-meta {
  margin-top: 16px;
  font-style: normal;
  display: grid;
  gap: 4px;
  color: var(--gray-500);
}

.quote-name {
  font-weight: 700;
  color: var(--blue-700);
}

.quote-role {
  font-size: 0.9rem;
}

.testimonial-card {
  position: relative;
  padding: 26px 26px 24px 30px;
  background: linear-gradient(150deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(27, 95, 209, 0.16);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-600), var(--blue-500));
}

.legal-content .card {
  max-width: 860px;
}

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

.gallery-grid img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.callout {
  background: linear-gradient(120deg, rgba(14, 65, 156, 0.95), rgba(22, 72, 163, 0.88));
  color: var(--white);
}

.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.contact-roles {
  margin-bottom: 28px;
}

.contact-roles-head {
  display: grid;
  gap: 6px;
}

.contact-roles-lead {
  color: var(--gray-500);
  margin: 0;
}

.contact-roles-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-role {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: var(--gray-50);
  display: grid;
  gap: 6px;
}

.role-title {
  font-weight: 700;
  color: var(--blue-700);
}

.role-phone {
  font-weight: 600;
  color: var(--blue-800);
}

.role-name {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.contact-card .contact-label,
.footer-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-top: 18px;
  display: block;
}

.contact-value {
  font-weight: 600;
  color: var(--blue-700);
}

.contact-note {
  margin-top: 16px;
  background: rgba(148, 163, 184, 0.15);
  padding: 12px 14px;
  border-radius: 12px;
}

.form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 600;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-family: inherit;
  background: var(--white);
}

.map-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(15, 76, 169, 0.12), rgba(148, 163, 184, 0.2));
  min-height: 280px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 2;
}

.map-title {
  font-weight: 700;
}

.map-subtitle {
  color: var(--gray-500);
}

.map-pin {
  position: absolute;
  right: 24px;
  bottom: 30px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 10px rgba(27, 95, 209, 0.25);
}

.footer {
  background: var(--blue-950);
  color: rgba(248, 250, 252, 0.9);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.8);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(248, 250, 252, 0.85);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-end;
    background: transparent;
    pointer-events: none;
    z-index: 30;
    gap: 0;
  }

  .nav-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: min(82vw, 320px);
    height: 100dvh;
    background: var(--white);
    padding: calc(72px + env(safe-area-inset-top)) 16px calc(20px + env(safe-area-inset-bottom));
    border-radius: 0;
    box-shadow: -18px 0 40px rgba(15, 23, 42, 0.18);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-header {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-close {
    background: var(--gray-50);
  }

  .site-nav.is-open {
    pointer-events: auto;
  }

  .site-nav.is-open .nav-panel {
    transform: translateX(0);
  }

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

  .site-nav a {
    padding: 10px 14px;
    width: 100%;
    font-size: 1rem;
    line-height: 1.35;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--gray-700);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(27, 95, 209, 0.08);
    border-color: rgba(27, 95, 209, 0.2);
  }

  .site-nav .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 6px;
    background: var(--blue-600);
    border-color: transparent;
    color: var(--white);
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    background: var(--blue-700);
    color: var(--white);
  }

  .grid-3,
  .two-col,
  .split,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 80px;
  }

  .logo-image {
    height: 32px;
  }

  .nav-panel {
    width: 100%;
    padding: calc(68px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 22px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation-duration: 0.01ms !important;
  }
}
