:root {
  --navy-900: #061326;
  --navy-800: #0b1f3a;
  --navy-100: #e5ecf5;
  --blue-500: #3d73dd;
  --blue-100: #8fb4ff;
  --slate-800: #1f2937;
  --slate-600: #4b5563;
  --slate-400: #6b7280;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.94);
  --card-border: rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 24px 48px rgba(6, 19, 38, 0.25);
  --shadow-sm: 0 8px 24px rgba(6, 19, 38, 0.12);
  --radius-lg: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-900);
  color: var(--slate-600);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  z-index: 1001;
}

a:focus-visible,
.button:focus-visible,
.chip-link:focus-visible,
.language-switch .lang-toggle:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 4px;
  text-decoration: none;
}

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

nav {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(6, 19, 38, 0.08);
}

nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
  padding: 36px 0;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 14px;
  position: relative;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: 0.22em;
  flex-shrink: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
}

.brand-text {
  font-size: 14px;
}

nav ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

nav li {
  white-space: nowrap;
}

.nav-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

nav a {
  color: rgba(6, 19, 38, 0.74);
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--navy-800);
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  border: 1px solid rgba(6, 19, 38, 0.16);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 24px;
}

.language-switch .lang-toggle {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.22em;
  background: transparent;
  border: none;
  color: rgba(6, 19, 38, 0.74);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-switch .lang-toggle.active {
  background: var(--navy-800);
  color: var(--white);
}

.language-switch .lang-toggle:not(.active):hover {
  color: var(--navy-800);
}
.hero {
  position: relative;
  padding: 120px 0 104px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 78, 114, 0.82), rgba(104, 130, 176, 0.56));
  z-index: 1;
}

.hero picture.background-picture,
.hero img.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(80%) contrast(106%);
}

.hero .content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  display: grid;
  gap: 32px;
  justify-items: center;
  text-align: center;
}

.hero .tagline {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--blue-100);
  margin: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero p.lead {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 22px);
  color: rgba(255, 255, 255, 0.86);
}
.hero .slogan {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.trust-belt {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  text-align: center;
}

.trust-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.trust-logos li {
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(6, 19, 38, 0.55);
  color: var(--white);
  letter-spacing: 0.04em;
  font-size: 12px;
  text-transform: uppercase;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  margin-top: 10px;
  font-size: 14px;
  color: var(--slate-600);
  display: none;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  color: var(--blue-500);
}

.form-feedback.is-warning {
  color: #b45309;
}

.form-feedback.is-error {
  color: #b91c1c;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(61, 115, 221, 0.35);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button.outline {
  color: var(--blue-500);
  border: 1px solid rgba(61, 115, 221, 0.3);
  background: transparent;
}

.button.outline:hover {
  background: rgba(61, 115, 221, 0.08);
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

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

main {
  background: var(--white);
}

.section {
  padding: 112px 0;
}

.section.alt {
  background: var(--navy-100);
}

.section-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.section-cta .button {
  min-width: 220px;
}

.section h2 {
  margin: 0 0 26px;
  color: var(--navy-800);
  font-size: clamp(32px, 4vw, 46px);
  text-align: center;
}

.section p.lead {
  margin: 0 0 42px;
  color: var(--slate-400);
  font-size: 18px;
  text-align: center;
}

.testimonials {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.05), rgba(11, 31, 58, 0));
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 20px 40px rgba(6, 19, 38, 0.12);
  display: grid;
  gap: 18px;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 48px;
  color: rgba(61, 115, 221, 0.25);
  font-family: "Georgia", serif;
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  right: 24px;
  bottom: 18px;
  font-size: 48px;
  color: rgba(61, 115, 221, 0.18);
  font-family: "Georgia", serif;
  line-height: 1;
}

.testimonial-card .quote {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate-600);
}

.testimonial-card .profile {
  display: grid;
  gap: 4px;
}

.testimonial-card .profile .name {
  font-weight: 700;
  color: var(--navy-800);
}

.testimonial-card .profile .role {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.testimonial-footer {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.metrics {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.metric {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(61, 115, 221, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-800);
}

.metric-label {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.cards {
  display: grid;
  gap: 28px;
}

.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards.four {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}

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

.service-text h3 {
  margin: 0 0 8px;
  color: var(--navy-800);
}

.service-text p {
  margin: 0;
  color: var(--slate-600);
}

.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(61, 115, 221, 0.12);
  color: var(--blue-500);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.chip-link::after {
  content: "→";
  font-size: 14px;
}

.chip-link:hover {
  background: rgba(61, 115, 221, 0.2);
  color: var(--navy-800);
  text-decoration: none;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.card h3 {
  margin-top: 0;
  color: var(--navy-800);
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.badge {
  display: grid;
  gap: 6px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(11, 31, 58, 0.05);
}

.badge span {
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(61, 115, 221, 0.2);
}

.timeline-item {
  position: relative;
  padding-left: 68px;
}

.timeline-marker {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(61, 115, 221, 0.5);
  box-shadow: 0 0 0 6px rgba(61, 115, 221, 0.08);
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--navy-800);
}

.timeline-content p {
  margin: 0;
  color: var(--slate-600);
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin-top: 0;
  color: var(--navy-800);
}

.contact-card p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-weight: 500;
}

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

.keyword-list li {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(6, 19, 38, 0.06);
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.contact-steps li {
  position: relative;
  padding-left: 22px;
  color: var(--slate-600);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(61, 115, 221, 0.25);
  border: 2px solid rgba(61, 115, 221, 0.8);
}

.contact-card .button {
  margin-top: 24px;
}

.contact-card .contact-call-feedback {
  margin-top: 14px;
  font-size: 15px;
  color: var(--slate-400);
  min-height: 20px;
}

.contact-card .contact-hint {
  margin-top: 18px;
  font-size: 15px;
  color: var(--slate-400);
  font-weight: 400;
}

.turnstile-wrapper {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.turnstile-hint {
  margin: 0;
  font-size: 13px;
  color: var(--slate-400);
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy-800);
}

input,
textarea {
  font: inherit;
  padding: 14px;
  border: 1px solid rgba(11, 31, 58, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(61, 115, 221, 0.65);
  box-shadow: 0 0 0 3px rgba(61, 115, 221, 0.2);
}

footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  padding: 40px 0;
  text-align: center;
}

@media (max-width: 900px) {
  nav .nav-inner {
    gap: 18px 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-rail {
    position: static;
    width: 100%;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 16px 20px;
    justify-content: center;
  }

  nav a {
    padding: 0;
    letter-spacing: 0.2em;
  }

  .language-switch {
    margin-left: 0;
  }
  .brand-logo {
      height: 48px;
  }

  .hero {
    padding: 96px 0 80px;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .trust-belt {
    gap: 12px;
  }

  .trust-logos li {
    padding: 6px 14px;
    font-size: 11px;
  }

  .trust-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .chip-link::after {
    display: none;
  }

  .testimonial-card {
    padding: 28px;
  }

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

  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    padding-left: 58px;
  }

  .timeline-marker {
    left: 4px;
  }
}






