:root {
  --ink: #102034;
  --ink-soft: #435267;
  --paper: #f4f6f8;
  --white: #ffffff;
  --blue: #1261c9;
  --blue-dark: #0a3f8d;
  --blue-soft: #dceaff;
  --cyan: #22a8d8;
  --line: #d7dee7;
  --steel: #707d8e;
  --night: #0a1422;
  --night-2: #111f31;
  --success: #12805c;
  --danger: #b63a42;
  --shadow: 0 18px 48px rgba(18, 39, 68, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: 0 0 8px 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.section-lead {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(215, 222, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(10, 29, 50, 0.1);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand img {
  width: 88px;
  height: auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  margin-top: 0.25rem;
  color: var(--steel);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.78rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  margin-left: 0.45rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  content: "";
  transform: translateY(2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(720px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.8rem;
}

.nav-dropdown-menu strong,
.nav-dropdown-menu span {
  display: block;
}

.nav-dropdown-menu span {
  margin-top: 0.2rem;
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.language-link {
  min-width: 42px;
  padding: 0.58rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 97, 201, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(34, 168, 216, 0.18), transparent 30%),
    linear-gradient(135deg, var(--night), #102744 75%, #12365e);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.hero .eyebrow {
  color: #74d4f3;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: #cbd7e6;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
}

.hero-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
}

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

.hero-note {
  position: absolute;
  left: -1.2rem;
  bottom: -1.2rem;
  max-width: 300px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(9, 21, 36, 0.9);
  color: #dce5ef;
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 15, 28, 0.58);
}

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

.trust-item {
  min-height: 100px;
  display: grid;
  align-content: center;
  padding: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--white);
  font-size: 1.02rem;
}

.trust-item span {
  margin-top: 0.2rem;
  color: #9eb0c5;
  font-size: 0.78rem;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

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

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

.section-dark .section-lead {
  color: #b9c8d9;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-head .button {
  flex: 0 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  grid-column: span 4;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(22, 42, 70, 0.05);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: #a9c8ef;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card-featured {
  grid-column: span 6;
}

.service-card picture {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--night-2);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.service-number {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0.6rem 0 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-link {
  position: relative;
  isolation: isolate;
  width: fit-content;
  overflow: hidden;
  margin-top: auto;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(116, 212, 243, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-dark), #118fc8);
  color: var(--white);
  box-shadow:
    0 0 0 1px rgba(18, 97, 201, 0.16),
    0 7px 18px rgba(18, 97, 201, 0.25),
    0 0 22px rgba(34, 168, 216, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
  animation: service-link-glow 3.2s ease-in-out infinite;
}

.service-link::after {
  position: absolute;
  inset: -35% auto -35% -60%;
  z-index: 0;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  content: "";
  opacity: 0.55;
  pointer-events: none;
  transform: skewX(-18deg);
  animation: service-link-sheen 3.2s ease-in-out infinite;
}

.service-card:hover .service-link,
.service-card:focus-visible .service-link {
  border-color: rgba(172, 236, 255, 0.98);
  background: linear-gradient(135deg, #084fba, #0fa8d9);
  box-shadow:
    0 0 0 1px rgba(34, 168, 216, 0.28),
    0 10px 24px rgba(18, 97, 201, 0.32),
    0 0 34px rgba(34, 168, 216, 0.48);
  transform: translateY(-2px) scale(1.025);
}

.service-card:focus-visible {
  outline: 3px solid rgba(34, 168, 216, 0.5);
  outline-offset: 4px;
}

@keyframes service-link-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(18, 97, 201, 0.16),
      0 7px 18px rgba(18, 97, 201, 0.25),
      0 0 18px rgba(34, 168, 216, 0.18);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(34, 168, 216, 0.28),
      0 9px 22px rgba(18, 97, 201, 0.3),
      0 0 30px rgba(34, 168, 216, 0.4);
  }
}

@keyframes service-link-sheen {
  0%,
  55% {
    left: -60%;
  }

  82%,
  100% {
    left: 135%;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.split-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.32rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.application-grid,
.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.application-card,
.feature-card,
.process-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.application-card h3,
.feature-card h3,
.process-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.application-card p,
.feature-card p,
.process-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.application-card picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: -1.4rem -1.4rem 1.2rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--night-2);
}

.process-card::before {
  position: absolute;
  top: -2rem;
  right: -0.2rem;
  color: rgba(255, 255, 255, 0.05);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-step);
}

.process-card h3 {
  position: relative;
  color: var(--white);
}

.process-card p {
  position: relative;
  color: #b9c8d9;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric {
  padding: 1.4rem;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.06);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: 1.15rem;
}

.metric span {
  margin-top: 0.3rem;
  color: #aebed0;
  font-size: 0.82rem;
}

.cta-section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(34, 168, 216, 0.18), transparent 28%),
    var(--blue-dark);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.cta-grid h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-grid p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: #d7e5f7;
}

.page-hero {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 12% 16%, rgba(34, 168, 216, 0.16), transparent 30%),
    var(--night);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 700px;
  margin: 1.4rem 0 0;
  color: #c5d3e3;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.page-hero-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

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

.breadcrumbs {
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #a3afbe;
  content: "/";
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.prose {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.prose h2,
.prose h3 {
  color: var(--ink);
  line-height: 1.16;
}

.prose h2 {
  margin: 2.6rem 0 0.9rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.25rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.4rem;
}

.sidebar-card {
  position: sticky;
  top: 104px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sidebar-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.sidebar-card p {
  margin: 0.65rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.sidebar-card .button {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.faq-item summary {
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-detail {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-detail strong,
.contact-detail a,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  color: var(--steel);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  margin-top: 0.35rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  padding: clamp(1.3rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 168, 216, 0.12), transparent 28%),
    #eef3f8;
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 2.4rem;
}

.location-heading .section-lead {
  margin: 0;
}

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

.location-map-card iframe {
  width: 100%;
  height: clamp(340px, 48vw, 540px);
  display: block;
  border: 0;
  filter: grayscale(0.88) contrast(0.94) brightness(1.03);
  transition: filter 320ms ease;
}

.location-map-card:hover iframe,
.location-map-card:focus-within iframe {
  filter: grayscale(0.15) contrast(1);
}

.location-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem;
  border-top: 1px solid var(--line);
}

.location-address {
  display: grid;
  gap: 0.25rem;
}

.location-address strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.location-address span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

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

.form-field label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #bac5d2;
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 97, 201, 0.15);
}

.form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
}

.form-status {
  min-height: 1.7rem;
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  padding-block: 3.5rem 1.5rem;
  background: #07111e;
  color: #b7c4d4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 420px;
}

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

.footer-brand p {
  margin: 1.2rem 0 0;
  color: #93a5ba;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #b7c4d4;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8395aa;
  font-size: 0.76rem;
}

.language-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 168, 216, 0.2), transparent 30%),
    var(--night);
  color: var(--white);
}

.language-card {
  width: min(720px, 100%);
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.language-card img {
  width: 180px;
  margin-inline: auto;
}

.language-card h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.language-card p {
  margin: 1rem auto 0;
  color: #c3d1e0;
}

.language-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    inset: 79px 0 auto;
    max-height: calc(100vh - 79px);
    overflow-y: auto;
    padding: 1rem 1.25rem 2rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
  }

  .nav-list a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    margin-top: 0.3rem;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

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

  .menu-toggle {
    display: grid;
  }

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

  .hero-grid {
    min-height: auto;
  }

  .hero-media,
  .page-hero-media {
    max-width: 760px;
  }

  .hero-note {
    left: 1rem;
  }

  .service-card {
    grid-column: span 6;
  }

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

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

@media (max-width: 820px) {
  .brand-text {
    display: none;
  }

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

  .trust-item:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .split,
  .content-grid,
  .contact-layout,
  .location-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

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

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

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .brand img {
    width: 74px;
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav {
    inset-block-start: 71px;
    max-height: calc(100vh - 71px);
  }

  .hero-grid {
    padding-block: 3.7rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.8rem);
  }

  .hero-actions,
  .language-actions {
    display: grid;
  }

  .hero-actions .button,
  .language-actions .button {
    width: 100%;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .trust-grid,
  .service-grid,
  .application-grid,
  .feature-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: 0;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-head .button {
    justify-self: start;
  }

  .form-field-full,
  .form-consent,
  .form-status {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .location-map-footer {
    display: grid;
  }

  .location-map-footer .button {
    justify-self: start;
  }
}

@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;
  }
}
