:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-soft: #f7f9fd;
  --surface-strong: #ffffff;
  --ink: #0f1733;
  --muted: #61708f;
  --line: rgba(15, 23, 51, 0.1);
  --brand: #1f3776;
  --brand-deep: #0b153a;
  --accent: #c5a15a;
  --shadow: 0 18px 40px rgba(11, 21, 58, 0.1);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(31, 55, 118, 0.08), transparent 26%),
    linear-gradient(180deg, #eef2fa 0%, #f7f9fd 18%, #ffffff 42%, #f7f9fd 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 21, 58, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-text-only {
  padding: 8px 0;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(10, 16, 60, 0.2);
  background: #0b1030;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  font-family: "DM Serif Display", serif;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav,
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav {
  justify-content: center;
  font-weight: 600;
  color: #ffffff;
  justify-self: center;
}

.lang-switcher {
  position: relative;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
}

.lang-trigger,
.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.lang-trigger {
  min-height: 42px;
  min-width: 156px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  justify-content: space-between;
}

.lang-current {
  flex: 1;
  text-align: left;
}

.lang-caret {
  font-size: 0.8rem;
  opacity: 0.8;
}

.lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(11, 21, 58, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 30px rgba(6, 11, 30, 0.28);
  display: none;
  z-index: 80;
}

.lang-switcher.is-open .lang-menu {
  display: grid;
  gap: 4px;
}

.lang-option {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  justify-content: flex-start;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-selected {
  background: rgba(255, 255, 255, 0.1);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  margin: 6px auto;
}

.hero {
  padding: 88px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
}

.hero h1,
.section-heading h2,
.story-panel h2,
.impact-copy h2,
.contact-copy h2,
.cta-band h2 {
  font-family: "DM Serif Display", serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 1;
  max-width: 11ch;
}

.lead,
.section-heading p,
.story-panel p,
.impact-copy p,
.contact-copy p,
.timeline p,
.service-card p,
.testimonial-grid blockquote,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  font-size: 1.06rem;
  max-width: 62ch;
  margin: 20px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #21408a, #102252);
  box-shadow: 0 16px 30px rgba(16, 34, 82, 0.24);
}

.button-secondary {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 51, 0.1);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 51, 0.08);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  min-height: 540px;
  border-radius: 20px;
  padding: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(20, 35, 80, 0.98), rgba(8, 15, 40, 1));
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel::before {
  width: 280px;
  height: 280px;
  top: -60px;
  right: -80px;
}

.hero-panel::after {
  width: 180px;
  height: 180px;
  bottom: 60px;
  left: -70px;
}

.hero-card,
.hero-stat {
  position: absolute;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.hero-card-main {
  top: 40px;
  left: 34px;
  right: 84px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(8, 15, 40, 0.2);
}

.hero-card-main p,
.hero-card-main span,
.hero-card-accent span,
.hero-stat small {
  color: var(--muted);
}

.hero-card-main strong,
.hero-card-accent strong,
.hero-stat span {
  display: block;
}

.hero-card-main strong {
  margin: 10px 0;
  font-size: 1.45rem;
  line-height: 1.25;
}

.hero-card-accent {
  right: 34px;
  bottom: 138px;
  width: 180px;
  padding: 22px;
  color: white;
  background: linear-gradient(180deg, rgba(197, 161, 90, 0.92), rgba(151, 116, 50, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-accent strong {
  margin-top: 10px;
  font-size: 3.4rem;
  line-height: 1.1;
  text-align: center;
}

.hero-stat {
  left: 34px;
  bottom: 40px;
  max-width: 270px;
  padding: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat span {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 8px;
}

.partners {
  padding: 0 0 32px;
}

.partners-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.partners-track span {
  display: grid;
  place-items: center;
  min-height: 68px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  border: 1px solid rgba(15, 23, 51, 0.08);
  color: #445271;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 16px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

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

.service-card,
.timeline article,
.testimonial-grid blockquote,
.faq-list details,
.contact-form,
.metric-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 51, 0.08);
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 24px;
}

.service-card span {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--brand-deep);
}

.story {
  background:
    linear-gradient(180deg, rgba(14, 26, 61, 0.98), rgba(11, 21, 58, 1));
  color: #ffffff;
}

.story .eyebrow,
.story-panel h2,
.story .story-list strong,
.story .metric-card strong,
.story .metric-card span {
  color: #ffffff;
}

.story .story-panel p,
.story .story-list p {
  color: rgba(255, 255, 255, 0.72);
}

.story .story-list div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.story .metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.story-grid,
.impact-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.story-panel,
.impact-copy {
  padding-right: 24px;
}

.story-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.story-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.story-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.story-aside {
  display: grid;
  gap: 18px;
}

.metric-card {
  padding: 26px;
}

.metric-card strong,
.impact-stats strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-family: "DM Serif Display", serif;
  color: var(--brand-deep);
  line-height: 1;
}

.metric-card span,
.impact-stats span {
  color: var(--muted);
}

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

.timeline article {
  padding: 24px;
}

.timeline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(31, 55, 118, 0.1);
  color: var(--brand);
  font-weight: 800;
}

.timeline h3 {
  margin: 18px 0 10px;
}

.impact {
  padding-top: 24px;
}

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

.impact-stats div {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
  border: 1px solid rgba(15, 23, 51, 0.08);
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  font-size: 1rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  color: var(--brand);
  font-weight: 800;
}

.align-left {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding-right: 28px;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.3rem;
  color: var(--brand);
}

.faq-list details[open] summary::after {
  content: "-";
}

.cta-band {
  padding-top: 24px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #0d173d, #1d377c 60%, #284a9c);
  box-shadow: 0 24px 44px rgba(13, 23, 61, 0.22);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: grid;
  gap: 6px;
}

.contact-list strong {
  color: var(--brand);
}

.contact-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 51, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: white;
}

.contact-form textarea {
  resize: vertical;
}

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

.footer {
  padding: 24px 0 42px;
  background: #0b153a;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  max-width: 42ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
  justify-content: flex-end;
  font-weight: 700;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero-grid,
  .story-grid,
  .impact-grid,
  .contact-grid,
  .faq-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 780px) {
  .topbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(11, 21, 58, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

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

  .lang-switcher {
    gap: 6px;
    justify-self: end;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-panel {
    min-height: 420px;
  }

  .hero-card-main {
    right: 34px;
  }

  .hero-card-accent {
    width: 150px;
    bottom: 116px;
  }

  .card-grid,
  .timeline,
  .testimonial-grid,
  .impact-stats,
  .partners-track {
    grid-template-columns: 1fr;
  }

  .cta-band-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .topbar-inner {
    min-height: 76px;
    gap: 14px;
  }

  .lang-switcher {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: -4px;
    padding-bottom: 10px;
  }

  .lang-trigger {
    min-width: 136px;
    min-height: 40px;
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero-panel {
    padding: 18px;
    min-height: 380px;
  }

  .hero-card-main,
  .hero-card-accent,
  .hero-stat {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .hero-card-main {
    top: 18px;
    padding: 20px;
  }

  .hero-card-accent {
    bottom: 124px;
  }

  .hero-stat {
    bottom: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .cta-band-inner,
  .contact-form,
  .service-card,
  .timeline article,
  .testimonial-grid blockquote,
  .faq-list details,
  .metric-card {
    padding: 20px;
  }
}
