:root {
  --navy: #071b36;
  --blue: #0d4f9f;
  --blue-2: #1368c8;
  --cyan: #22b8c2;
  --gold: #d6b56d;
  --ink: #142033;
  --muted: #64748b;
  --soft: #f4f8fd;
  --line: #dce7f4;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(7, 27, 54, 0.14);
  --radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 27, 54, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.brand img {
  width: 66px;
  height: 42px;
  padding: 4px 6px;
  border-radius: 7px;
  background: var(--white);
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.91rem;
  font-weight: 800;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
  background: var(--white);
}

.language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--navy);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.96) 0%, rgba(7, 27, 54, 0.82) 42%, rgba(7, 27, 54, 0.24) 100%),
    url("hero-bg.png") center right / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--white));
  content: "";
}

.hero-inner,
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 115px;
}

.hero-panel {
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.1);
}

h1 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.94;
  font-weight: 900;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

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

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

.section {
  padding: 92px 0;
}

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

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0d3569);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 900;
}

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

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .lead {
  color: rgba(255,255,255,0.78);
}

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

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

.card,
.image-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 27, 54, 0.08);
  overflow: hidden;
}

.card {
  padding: 28px;
}

.card:hover,
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card-content {
  padding: 24px;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p,
.image-card p {
  margin-top: 10px;
  color: var(--muted);
}

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

.proof-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 27, 54, 0.08);
}

.proof-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 900;
}

.proof-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-item strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.timeline-item p {
  margin-top: 6px;
  color: var(--muted);
}

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

.faq-item {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}

.faq-item p {
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
}

.page-hero {
  padding: 96px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.96), rgba(13, 79, 159, 0.74)),
    url("hero-bg.png") center right / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 30px;
  align-items: start;
}

.contact-panel {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel img {
  width: 100%;
  margin-top: 24px;
  border-radius: var(--radius);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
  color: rgba(255,255,255,0.84);
}

.contact-list a {
  color: var(--white);
  font-weight: 900;
}

.form-card {
  padding: 32px;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: var(--navy);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

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

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 24px;
  color: rgba(255,255,255,0.75);
  background: var(--navy);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 10px;
    background: rgba(7, 27, 54, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
  }

  .grid,
  .grid.two,
  .proof-grid,
  .split,
  .faq-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(7, 27, 54, 0.94), rgba(7, 27, 54, 0.68)),
      url("hero-bg.png") center / cover no-repeat;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    padding: 0 14px;
  }

  .language-switcher button {
    min-width: 30px;
    font-size: 0.72rem;
  }

  .hero-inner,
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .actions,
  .btn,
  .form-grid {
    width: 100%;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}
