:root {
  --lw-black: #000000;
  --lw-deep-navy: #00043A;
  --lw-imperial-blue: #00043A;
  --lw-steel-azure: #2f6df4;
  --lw-dark-wine: #2f6df4;
  --lw-ghost-white: #F7F7FF;
  --lw-blue-royal: var(--lw-deep-navy);
  --lw-cyan: var(--lw-steel-azure);
  --lw-cyan-soft: var(--lw-steel-azure);
  --lw-aqua: var(--lw-ghost-white);
  --lw-red: var(--lw-dark-wine);
  --lw-white: #ffffff;
  --lw-surface: #ffffff;
  --lw-surface-2: var(--lw-ghost-white);
  --lw-text: var(--lw-deep-navy);
  --lw-muted: var(--lw-imperial-blue);
  --lw-border: rgba(0, 4, 58, 0.14);
  --lw-paper: var(--lw-ghost-white);
  --lw-grid-line: rgba(0, 41, 98, 0.1);
  --lw-grid-line-soft: rgba(0, 41, 98, 0.08);
  --lw-dot-color: rgba(0, 41, 98, 0.11);
  --lw-dot-size: 1.6px;
  --lw-dot-gap: 18px;
  --lw-nav-dot-color: rgba(0, 41, 98, 0.11);
  --lw-btn-grad: #00043A;
  --lw-btn-grad-hover: #2f6df4;
}

body.home {
  --header-offset: 168px;
  background: #F7F7FF;
  color: var(--lw-text);
}

[data-lw-site-header] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.18s ease;
}

[data-lw-site-header].is-ready {
  visibility: visible;
  opacity: 1;
}

.home-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  background: #F7F7FF;
}

.home-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--lw-dot-color) 0 var(--lw-dot-size), transparent calc(var(--lw-dot-size) + 0.2px));
  background-size: var(--lw-dot-gap) var(--lw-dot-gap);
  background-position: 0 0;
  opacity: 0.72;
}

.home-main::after {
  content: none;
}

.home-main > * {
  position: relative;
  z-index: 1;
}

.lw-top {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 2100;
  padding: 0 0 8px;
  background: transparent;
  transition: background 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease;
}

.lw-top.is-scrolled {
  background-color: rgba(0, 4, 58, 0.96);
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 1.15px, transparent 1.35px);
  background-size: 18px 18px;
  background-position: 0 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 8, 60, 0.24);
}

.lw-info-wrap {
  width: 100%;
  margin: 0;
}

.lw-info-wrap--footer {
  margin: 0 0 20px;
}

/* ── Info bar ────────────────────────────────────────────────────────────── */
.lw-info-bar {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 38px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 4, 58, 0.08);
  padding: 0 clamp(16px, 2.5vw, 40px);
  transition: height 0.25s ease, background 0.25s ease;
}

/* ── Centered group ──────────────────────────────────────────────────────── */
.lw-ib-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: lw-ib-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lw-ib-in {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Email link ──────────────────────────────────────────────────────────── */
.lw-ib-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.lw-ib-email i {
  font-size: 0.72rem;
  color: #2f6df4;
  transition: color 0.18s ease;
}

.lw-ib-email:hover { color: #2f6df4; }

/* ── Separator ───────────────────────────────────────────────────────────── */
.lw-ib-pipe {
  display: block;
  width: 1px;
  height: 15px;
  background: rgba(0, 4, 58, 0.12);
  flex-shrink: 0;
}

/* ── Social icons ────────────────────────────────────────────────────────── */
.lw-ib-socials {
  display: flex;
  align-items: center;
  gap: 1px;
}

.lw-ib-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: rgba(0, 4, 58, 0.42);
  text-decoration: none;
  font-size: 0.76rem;
  transition: color 0.18s ease, background 0.18s ease, transform 0.15s ease;
}

.lw-ib-social:hover {
  color: #00043A;
  background: rgba(0, 4, 58, 0.06);
  transform: translateY(-1px);
}

.lw-ib-social:focus-visible {
  outline: 2px solid rgba(47, 109, 244, 0.4);
  outline-offset: 1px;
}


.lw-top-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 2px;
  transition: padding 0.28s ease;
}

@media (min-width: 992px) {
  .container.lw-top-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 2.6vw, 40px);
    padding-right: clamp(20px, 2.6vw, 40px);
  }
}

.lw-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lw-header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  padding: 0 4px;
}

.lw-header-logo-stack {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lw-header-logo-image {
  display: block;
  max-height: 138px;
  width: auto;
  max-width: none;
  transition: opacity 0.28s ease;
}

.lw-header-logo-image--default {
  display: block;
  opacity: 1;
}

.lw-header-logo-image--scrolled {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.lw-top.is-scrolled .lw-header-logo-image--default {
  display: none;
  opacity: 0;
}

.lw-top.is-scrolled .lw-header-logo-image--scrolled {
  display: block;
  opacity: 1;
}

.lw-wordmark {
  display: inline-block;
  font-family: "Tomorrow", "Jost", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.45rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #00043A;
  text-transform: uppercase;
  white-space: nowrap;
  transition: font-size 0.28s ease;
}

.lw-pill-nav {
  width: auto;
  flex: 1 1 auto;
  margin-left: 0;
  transform: none;
  min-height: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  padding: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, padding 0.28s ease;
}

@media (min-width: 1200px) {
  .lw-top-inner {
    position: relative;
    justify-content: center;
    min-height: 142px;
  }

  .lw-header-logo {
    position: absolute;
    left: clamp(12px, 1.4vw, 26px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .lw-pill-nav {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .lw-pill-nav .navbar-collapse {
    width: 100%;
  }
}

.lw-top.is-scrolled .lw-info-bar {
  height: 34px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 4, 58, 0.1);
}

.lw-top.is-scrolled .lw-top-inner {
  padding-top: 2px;
  padding-bottom: 0;
}

.lw-top.is-scrolled .lw-wordmark {
  font-size: clamp(1.86rem, 2.45vw, 2.2rem);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 4, 58, 0.22);
}

.lw-top.is-scrolled .lw-pill-nav {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.lw-top.is-scrolled .lw-nav-secondary,
.lw-top.is-scrolled .lw-nav-contact {
  background: #2f6df4;
  border-color: rgba(47, 109, 244, 0.28);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(47, 109, 244, 0.26);
}

.lw-top.is-scrolled .lw-nav-secondary:hover,
.lw-top.is-scrolled .lw-nav-contact:hover,
.lw-top.is-scrolled .lw-nav-secondary.active,
.lw-top.is-scrolled .lw-nav-secondary[aria-current="page"],
.lw-top.is-scrolled .lw-nav-contact.active,
.lw-top.is-scrolled .lw-nav-contact[aria-current="page"] {
  background: #2f6df4;
  border-color: rgba(35, 95, 224, 0.34);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(47, 109, 244, 0.3);
}

.lw-pill-nav .navbar-collapse {
  flex: 1 1 auto;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-left: 0;
  min-height: 64px;
}

.lw-main-menu {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  gap: 12px;
  width: max-content;
  margin: 0 auto !important;
  min-height: 60px;
  padding: 4px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 41, 98, 0.12);
  box-shadow: 0 14px 32px rgba(0, 41, 98, 0.12);
  backdrop-filter: blur(4px);
}

.lw-main-menu > .nav-item,
.lw-main-menu > .nav-link {
  display: inline-flex;
  align-items: center;
}

.lw-nav-split {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.lw-nav-split > .nav-link {
  padding-right: 4px;
}

.lw-nav-split__toggle {
  min-width: 26px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lw-nav-split__toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.76;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lw-nav-split__toggle:hover::before,
.lw-nav-split__toggle:focus-visible::before,
.lw-nav-split__toggle.active::before,
.lw-nav-split.show .lw-nav-split__toggle::before {
  opacity: 1;
}

.lw-nav-split.show .lw-nav-split__toggle::before {
  transform: rotate(-135deg);
}

.lw-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.lw-nav-actions .lw-nav-lang {
  display: none;
  align-items: center;
  margin: 0;
}

.lw-nav-actions .lw-nav-lang .lw-nav-lang-btn {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 41, 98, 0.14);
  background: rgba(255, 255, 255, 0.97);
  color: #00043A;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  gap: 5px;
  box-shadow: 0 10px 18px rgba(0, 41, 98, 0.1);
}

.lw-nav-actions .lw-nav-lang .lw-nav-lang-btn i {
  color: #00043A;
  font-size: 0.8rem;
}

.lw-nav-actions .lw-nav-lang .lang-select__menu {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  min-width: 180px;
}

.lw-nav-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 13px;
  border-radius: 999px;
  color: #F7F7FF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid rgba(0, 78, 137, 0.32);
  background: #00043A;
  box-shadow: 0 10px 18px rgba(0, 41, 98, 0.16);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lw-nav-secondary:hover {
  color: #ffffff;
  background: #2f6df4;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 41, 98, 0.24);
}

.lw-nav-secondary.active,
.lw-nav-secondary[aria-current="page"] {
  color: #ffffff;
  background: #2f6df4;
  border-color: rgba(0, 78, 137, 0.48);
  box-shadow: 0 12px 22px rgba(0, 41, 98, 0.24);
}

.lw-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  min-height: 30px;
  padding: 4px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 78, 137, 0.32);
  background: #00043A;
  color: #F7F7FF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(0, 41, 98, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lw-nav-contact:hover {
  background: #2f6df4;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 41, 98, 0.28);
}

.lw-nav-contact.active,
.lw-nav-contact[aria-current="page"] {
  background: #2f6df4;
  color: #ffffff;
  border-color: rgba(0, 78, 137, 0.48);
  box-shadow: 0 12px 22px rgba(0, 41, 98, 0.28);
}

.lw-pill-nav .navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lw-deep-navy) !important;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 8px 5px;
  border-radius: 999px;
  min-height: 36px;
  text-align: center;
}

.lw-pill-nav .dropdown-toggle::after {
  display: none;
}

.lw-pill-nav .navbar-nav .nav-link:hover,
.lw-pill-nav .navbar-nav .nav-link.active,
.lw-pill-nav .navbar-nav .show > .nav-link {
  color: var(--lw-deep-navy) !important;
  background: transparent;
  opacity: 0.88;
}

.lw-pill-nav .dropdown-menu {
  margin-top: 8px !important;
  border-radius: 14px;
  border: 1px solid var(--lw-border) !important;
  box-shadow: 0 14px 30px rgba(0, 41, 98, 0.16);
  background: #ffffff;
}

.lw-pill-nav .dropdown-item {
  color: var(--lw-deep-navy);
}

.lw-pill-nav .dropdown-item:hover,
.lw-pill-nav .dropdown-item:focus {
  color: var(--lw-deep-navy);
  background: rgba(0, 78, 137, 0.14);
}

.lw-pill-nav .navbar-toggler {
  border-color: rgba(0, 41, 98, 0.18);
}


.lw-section {
  padding: 84px 0;
}

.lw-hero {
  min-height: 100dvh;
  padding: calc(var(--header-offset) + 12px) 0 0;
}

.lw-hero .container {
  min-height: calc(100dvh - (var(--header-offset) + 12px));
}

.lw-hero-empty {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.lw-hero-empty::before {
  content: none;
}

.lw-hero-empty .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  min-height: calc(100dvh - (var(--header-offset) + 12px));
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-hero-empty .container::before {
  content: none;
}

.lw-hero-empty .container::after {
  content: none;
}

.lw-hero-empty-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  text-align: center;
  transform: translateY(-40px);
}

.lw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 41, 98, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #4e5b78;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0, 41, 98, 0.06);
}

.lw-hero-badge::before {
  content: "✦";
  color: #2f6df4;
  font-size: 0.82rem;
}

.lw-hero-empty-content h1 {
  margin: 0;
  display: grid;
  justify-items: center;
  color: #00043A;
  font-family: "Inter", "Jost", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-shadow: none;
}

.lw-hero-empty-content h1 > span {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  white-space: nowrap;
}

.lw-hero-keyword {
  display: inline;
  white-space: inherit;
  color: #2f6df4;
}

.lw-hero-empty-subtext {
  margin: 0;
  max-width: 34ch;
  color: #5a6783;
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  line-height: 1.55;
}

.lw-hero-empty-content h1 span.is-typing::after,
.lw-hero-empty-content h1 span.is-typed::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: currentColor;
}

.lw-hero-empty-content h1 span.is-typing::after {
  animation: lwTypeCursor 0.85s steps(1) infinite;
}

.lw-hero-empty-content h1 span.is-typed::after {
  opacity: 0;
}

@keyframes lwTypeCursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.lw-hero-empty-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 4px;
}

.lw-hero-empty-actions > * {
  min-width: 0;
}

.lw-hero-empty-content .lw-btn {
  min-height: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  margin-top: 0;
}

.lw-btn-hero-link {
  border: 0;
  background: transparent;
  color: #2f6df4;
  font-weight: 700;
  box-shadow: none;
}

.lw-btn-hero-link:hover {
  color: #1f58d4;
  background: transparent;
  transform: translateY(-1px);
}

.lw-btn-hero-primary {
  border-radius: 10px;
  border: 1px solid rgba(38, 98, 230, 0.18);
  background: #2f6df4;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(47, 109, 244, 0.24);
}

.lw-btn-hero-primary:hover {
  color: #ffffff;
  background: #2f6df4;
  box-shadow: 0 18px 34px rgba(47, 109, 244, 0.28);
}

.lw-about-trigger {
  cursor: pointer;
}

.lw-about-panel__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 11px;
  border: 1px solid rgba(0, 41, 98, 0.14);
  background: rgba(247, 247, 255, 0.88);
  color: #00043A;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 700;
}

.lw-about-bubble[hidden] {
  display: none;
}

.lw-about-bubble {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
  display: grid;
  gap: 14px;
  margin: 12px auto 0;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 4, 58, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 70px rgba(0, 4, 58, 0.14);
  text-align: left;
}

.lw-about-bubble__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 109, 244, 0.08);
  color: #00043A;
}

.lw-about-bubble h2 {
  margin: 0;
  color: #00043A;
  font-family: "Inter", "Jost", sans-serif;
  font-size: clamp(1.24rem, 1.9vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: none;
}

.lw-about-bubble p {
  margin: 0;
  color: rgba(0, 4, 58, 0.72);
  line-height: 1.65;
  font-size: 0.96rem;
}

.lw-about-bubble__points {
  display: grid;
  gap: 12px;
}

.lw-about-bubble__point {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7f9fd;
  border: 1px solid rgba(0, 4, 58, 0.08);
}

.lw-about-bubble__point strong {
  color: #00043A;
  font-size: 0.98rem;
}

.lw-about-bubble__point span {
  color: rgba(0, 4, 58, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lw-hero-card {
  position: relative;
  min-height: calc(100dvh - (var(--header-offset) + 12px));
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid rgba(0, 41, 98, 0.14);
  box-shadow: 0 24px 52px rgba(6, 18, 66, 0.14);
}

.lw-hero-card::before {
  content: none;
}

.lw-hero-card::after {
  content: none;
}

.lw-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  max-width: 100%;
  min-height: calc(100dvh - (var(--header-offset) + 12px));
  padding: clamp(10px, 1.3vw, 20px);
}

.lw-hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(10px, 1.25vw, 18px);
  min-height: 100%;
  padding: clamp(10px, 1.2vw, 18px);
  border-radius: 28px;
  border: 1px solid rgba(0, 41, 98, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(0, 41, 98, 0.12);
  overflow: hidden;
}

.lw-hero-stage::before {
  content: none;
}

.lw-hero-column {
  position: relative;
  z-index: 1;
}

.lw-hero-column-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 34px);
  border-radius: 22px;
  border: 1px solid rgba(0, 78, 137, 0.24);
  background: #ffffff;
  color: #00043A;
}

.lw-hero-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #00043A;
}

.lw-hero-column-main h1 {
  margin: 0;
  font-family: "Inter", "Jost", sans-serif;
  font-size: clamp(1.75rem, 3.35vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: #00043A;
}

.lw-hero-sub {
  margin: 0;
  color: #00043A;
  font-size: clamp(0.98rem, 1.16vw, 1.24rem);
  line-height: 1.5;
  max-width: 44ch;
}

.lw-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lw-hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 11px;
  border: 1px solid rgba(0, 41, 98, 0.28);
  background: #F7F7FF;
  color: #00043A;
  font-size: 0.8rem;
  font-weight: 600;
}

.lw-hero-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.lw-btn-primary {
  background: var(--lw-btn-grad);
  color: #ffffff;
  border-color: rgba(0, 41, 98, 0.35);
  box-shadow: 0 14px 26px rgba(0, 41, 98, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.lw-btn-primary:hover {
  color: #ffffff;
  background: var(--lw-btn-grad-hover);
  box-shadow: 0 16px 30px rgba(0, 41, 98, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lw-btn-outline {
  background: #ffffff;
  color: #00043A;
  border-color: rgba(0, 41, 98, 0.42);
}

.lw-btn-outline:hover {
  color: #00043A;
  background: #F7F7FF;
}

.lw-hero-column-side {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
}

.lw-info-card {
  padding: clamp(16px, 1.5vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(0, 41, 98, 0.18);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
}

.lw-info-card h2 {
  margin: 0 0 8px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00043A;
}

.lw-info-card p {
  margin: 0;
  color: #00043A;
  font-size: clamp(0.94rem, 1.01vw, 1.16rem);
  line-height: 1.56;
}

.lw-hero-metrics {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lw-hero-metrics div {
  border-radius: 14px;
  padding: 12px 10px;
  border: 1px solid rgba(0, 41, 98, 0.2);
  background: rgba(247, 247, 255, 0.94);
}

.lw-hero-metrics strong {
  display: block;
  color: #00043A;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.1;
}

.lw-hero-metrics span {
  display: block;
  margin-top: 3px;
  color: #00043A;
  font-size: 0.8rem;
  line-height: 1.28;
}

.lw-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.lw-section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.45rem);
  color: var(--lw-text);
  margin-bottom: 10px;
}

.lw-section-head p {
  color: var(--lw-muted);
  font-size: 1.02rem;
}

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

.lw-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lw-border);
  border-radius: 16px;
  padding: 18px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lw-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #00043A;
}

.lw-card p {
  color: #00043A;
  font-size: 0.96rem;
}

.lw-card a {
  margin-top: 10px;
  text-decoration: none;
  color: #00043A;
  font-weight: 600;
}

.lw-card a:hover {
  color: #2f6df4;
}

.lw-learning-hub {
  padding-bottom: 44px;
}

.lw-learning-hub__shell {
  display: grid;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(0, 41, 98, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 44px rgba(0, 41, 98, 0.06);
  backdrop-filter: blur(10px);
}

.lw-learning-hub__head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.lw-learning-hub__head h2 {
  margin: 0;
  color: #00043A;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.lw-learning-hub__head p {
  margin: 0;
  color: #5a6783;
  font-size: 1.02rem;
  line-height: 1.7;
}

.lw-learning-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lw-learning-tab {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 41, 98, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #59657f;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 41, 98, 0.04);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lw-learning-tab:hover {
  transform: translateY(-1px);
}

.lw-learning-tab:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(47, 109, 244, 0.14);
}

.lw-learning-tab.is-active {
  background: #2f6df4;
  color: #ffffff;
  border-color: rgba(47, 109, 244, 0.34);
  box-shadow: 0 10px 22px rgba(47, 109, 244, 0.22);
}

.lw-learning-panel[hidden] {
  display: none;
}

.lw-learning-panel {
  animation: lwLearningPanelIn 0.28s ease;
}

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

.lw-learning-card,
.lw-domain-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 41, 98, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(0, 41, 98, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lw-learning-card:hover,
.lw-domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 109, 244, 0.16);
  box-shadow: 0 22px 42px rgba(0, 41, 98, 0.1);
}

.lw-learning-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 100 / 78;
  background: #edf1fb;
}

.lw-learning-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(0.92) contrast(1.03) brightness(0.96);
}

.lw-learning-card:hover .lw-learning-card__image img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.06) brightness(0.98);
}

.lw-learning-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.lw-learning-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(47, 109, 244, 0.08);
  color: #2f6df4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-learning-card__body h3,
.lw-domain-card h3 {
  margin: 0;
  color: #00043A;
  font-size: 1.14rem;
  line-height: 1.35;
}

.lw-learning-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.lw-learning-card__body h3 a:hover {
  color: #2f6df4;
}

.lw-learning-card__body p,
.lw-domain-card p {
  margin: 0;
  color: #5a6783;
  font-size: 0.97rem;
  line-height: 1.65;
}

.lw-learning-card__link,
.lw-domain-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #00043A;
  text-decoration: none;
  font-weight: 800;
}

.lw-domain-card__link {
  align-self: start;
  padding-top: 4px;
}

.lw-learning-card__link:hover,
.lw-domain-card__link:hover {
  color: #2f6df4;
}

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

.lw-domain-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.lw-domain-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(47, 109, 244, 0.16);
  color: #2f6df4;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

@keyframes lwLearningPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lw-funding {
  padding-top: 28px;
  padding-bottom: 28px;
}

.lw-funding-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: center;
  gap: 22px;
  padding: clamp(22px, 3vw, 38px);
  border-radius: 32px;
  border: 1px solid rgba(47, 109, 244, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 247, 255, 0.96) 100%);
  box-shadow: 0 22px 46px rgba(0, 41, 98, 0.08);
}

.lw-funding-box::before {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 109, 244, 0.14) 0%, rgba(47, 109, 244, 0) 72%);
  pointer-events: none;
}

.lw-funding-copy,
.lw-funding-side {
  position: relative;
  z-index: 1;
}

.lw-funding-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 560px;
}

.lw-funding-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 109, 244, 0.16);
  background: rgba(47, 109, 244, 0.08);
  color: #2f6df4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-funding-box h2 {
  color: #00043A;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.08;
  margin: 0;
}

.lw-funding-box p {
  color: rgba(0, 4, 58, 0.72);
  margin: 0;
  max-width: 52ch;
  line-height: 1.72;
}

.lw-funding-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lw-funding-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(47, 109, 244, 0.12);
  color: #00043A;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0, 41, 98, 0.05);
}

.lw-funding-side {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  background: #00043A;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 8, 60, 0.18);
}

.lw-funding-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(47, 109, 244, 0.22);
}

.lw-funding-note strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #2f6df4;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.lw-funding-note h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.02rem;
}

.lw-funding-note p {
  color: rgba(255, 255, 255, 0.84);
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.6;
}

.lw-funding-cta {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  background: #2f6df4;
  color: #ffffff;
  border: 1px solid rgba(47, 109, 244, 0.24);
  box-shadow: 0 14px 28px rgba(47, 109, 244, 0.24);
}

.lw-funding-cta:hover {
  color: #ffffff;
  background: #00043A;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 30px rgba(0, 8, 60, 0.22);
}

.lw-domains {
  padding-top: 18px;
  padding-bottom: 24px;
}

.lw-domains-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 41, 98, 0.16);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 41, 98, 0.08);
}

.lw-domains-head {
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(0, 41, 98, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 255, 0.88));
}

.lw-domains-head h2 {
  margin: 0;
  color: #00043A;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}

.lw-domains-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.lw-domains-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 24px;
  color: #00043A;
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid rgba(0, 41, 98, 0.08);
}

.lw-domains-list li:first-child {
  border-top: 0;
}

.lw-domains-list li::before {
  content: counter(item);
  counter-increment: item;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00043A;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.lw-domains-list {
  counter-reset: item;
}

.lw-method {
  padding-top: 68px;
}

.lw-method-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.lw-method-intro {
  position: sticky;
  top: calc(var(--header-offset) + 18px);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 247, 255, 0.98) 100%);
  color: #00043A;
  border: 1px solid rgba(47, 109, 244, 0.14);
  box-shadow: 0 24px 52px rgba(0, 41, 98, 0.1);
  overflow: hidden;
}

.lw-method-intro::before {
  content: "";
  position: absolute;
  inset: auto -120px -130px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 109, 244, 0.18) 0%, rgba(47, 109, 244, 0) 72%);
  pointer-events: none;
}

.lw-method-intro > * {
  position: relative;
  z-index: 1;
}

.lw-method-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 109, 244, 0.18);
  background: rgba(47, 109, 244, 0.08);
  color: #2f6df4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-method-intro h2 {
  margin: 0;
  color: #00043A;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.lw-method-intro p {
  margin: 0;
  color: rgba(0, 4, 58, 0.7);
  line-height: 1.72;
  max-width: 34ch;
}

.lw-method-visual {
  position: relative;
  min-height: 172px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(47, 109, 244, 0.08), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(47, 109, 244, 0.18);
  overflow: hidden;
}

.lw-method-visual::before {
  content: "";
  position: absolute;
  inset: auto -24px -34px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 109, 244, 0.22) 0%, rgba(47, 109, 244, 0) 72%);
  animation: lwMethodGlow 4.6s ease-in-out infinite;
}

.lw-method-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
}

.lw-method-orbit-ring,
.lw-method-orbit-core,
.lw-method-orbit-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.lw-method-orbit-ring--outer {
  border: 1px solid rgba(47, 109, 244, 0.34);
  animation: lwMethodSpin 12s linear infinite;
}

.lw-method-orbit-ring--inner {
  inset: 20px;
  border: 1px dashed rgba(0, 4, 58, 0.24);
  animation: lwMethodSpinReverse 8s linear infinite;
}

.lw-method-orbit-core {
  inset: 49px;
  background: radial-gradient(circle, #00043A 0%, #2f6df4 58%, rgba(47, 109, 244, 0.24) 100%);
  box-shadow:
    0 0 0 10px rgba(47, 109, 244, 0.08),
    0 0 28px rgba(47, 109, 244, 0.3);
  animation: lwMethodPulse 2.6s ease-in-out infinite;
}

.lw-method-orbit-dot {
  width: 12px;
  height: 12px;
  inset: auto;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(47, 109, 244, 0.16);
}

.lw-method-orbit-dot--one {
  top: 4px;
  left: 50%;
  margin-left: -6px;
}

.lw-method-orbit-dot--two {
  right: 8px;
  top: 68px;
}

.lw-method-orbit-dot--three {
  left: 18px;
  bottom: 22px;
}

.lw-method-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lw-method-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 109, 244, 0.18);
  color: #00043A;
  font-weight: 600;
  font-size: 0.92rem;
  animation: lwMethodChipFloat 4.8s ease-in-out infinite;
}

.lw-method-signals span:nth-child(2) {
  animation-delay: -1.6s;
}

.lw-method-signals span:nth-child(3) {
  animation-delay: -3.2s;
}

.lw-method-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 8px 0 8px 8px;
}

.lw-method-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 45px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(47, 109, 244, 0.28) 0%, rgba(47, 109, 244, 0.04) 100%);
}

.lw-method-grid::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2f6df4;
  box-shadow: 0 0 0 6px rgba(47, 109, 244, 0.12);
  animation: lwMethodTravel 7s linear infinite;
}

.lw-method-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 109, 244, 0.14);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(0, 41, 98, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: lwMethodCardFloat 5.4s ease-in-out infinite;
}

.lw-method-card:nth-child(2) {
  margin-left: 42px;
  animation-delay: -1.8s;
}

.lw-method-card:nth-child(3) {
  margin-left: 84px;
  animation-delay: -3.4s;
}

.lw-method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 109, 244, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.lw-method-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 109, 244, 0.18) 0%, rgba(47, 109, 244, 0) 72%);
  pointer-events: none;
}

.lw-method-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(47, 109, 244, 0.28);
  box-shadow: 0 24px 46px rgba(0, 41, 98, 0.14);
}

.lw-method-card__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #2f6df4;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(47, 109, 244, 0.26);
  animation: lwMethodPulse 3s ease-in-out infinite;
}

.lw-method-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding-left: 4px;
}

.lw-method-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 109, 244, 0.08);
  color: #2f6df4;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lw-method-card h3 {
  margin: 0;
  color: #00043A;
  font-size: 1.18rem;
  line-height: 1.3;
}

.lw-method-card p {
  margin: 0;
  color: rgba(0, 4, 58, 0.72);
  line-height: 1.68;
  font-size: 1rem;
  max-width: 42ch;
}

@keyframes lwMethodSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes lwMethodSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes lwMethodPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.92); }
}

@keyframes lwMethodGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes lwMethodChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes lwMethodCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes lwMethodTravel {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(calc(100% + 440px)); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lw-method-visual::before,
  .lw-method-orbit-ring--outer,
  .lw-method-orbit-ring--inner,
  .lw-method-orbit-core,
  .lw-method-signals span,
  .lw-method-grid::after,
  .lw-method-card,
  .lw-method-card__index {
    animation: none;
  }
}

.lw-community {
  padding-top: 58px;
}

.lw-community-wrap {
  border-radius: 24px;
  border: 1px solid var(--lw-border);
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
}

.lw-community-wrap h2 {
  color: #00043A;
  margin-bottom: 10px;
}

.lw-community-wrap p {
  color: #00043A;
}

.lw-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lw-stats div {
  background: #f3f8ff;
  border: 1px solid var(--lw-border);
  border-radius: 12px;
  padding: 14px;
}

.lw-stats strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
  color: #2f6df4;
}

.lw-stats span {
  color: #00043A;
  font-size: 0.92rem;
}

.lw-footer-section {
  padding: 46px 0 30px;
  background: #f7f9fc;
  border-top: 1px solid rgba(0, 41, 98, 0.08);
}

.lw-footer-shell {
  position: relative;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lw-footer-shell::before {
  content: none;
}

.lw-footer-panel,
.lw-footer-bottom {
  position: relative;
  z-index: 1;
}

.lw-footer-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 2.05fr);
  gap: clamp(28px, 4vw, 60px);
  padding: 0;
  align-items: start;
}

.lw-footer-brand-col {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: center;
  max-width: 360px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lw-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(100%, 240px);
  height: 168px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.lw-footer-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}

.lw-footer-subline {
  margin: 0;
  color: rgba(0, 4, 58, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34ch;
  text-align: left;
  justify-self: start;
  overflow-wrap: anywhere;
}

.lw-footer-email {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #2f6df4;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  box-shadow: none;
}

.lw-footer-email:hover {
  color: #153d9b;
  text-decoration: underline;
}

.lw-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 44px);
}

.lw-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.lw-footer-column h4 {
  margin: 0;
  color: #00043A;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  min-height: 0;
  text-transform: none;
  letter-spacing: 0;
}

.lw-footer-column a,
.lw-footer-column span {
  color: rgba(0, 4, 58, 0.66);
  text-decoration: none;
  line-height: 1.55;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.lw-footer-column a:hover {
  color: #2f6df4;
}

.lw-footer-column:last-child {
  gap: 10px;
}

.lw-footer-column:last-child span {
  position: relative;
  padding-left: 28px;
}

.lw-footer-column:last-child span:first-of-type {
  margin-top: 2px;
}

.lw-footer-column:last-child span:first-of-type::before {
  content: "\f3c5";
  position: absolute;
  left: 0;
  top: 2px;
  color: #2f6df4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.95rem;
}

.lw-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(0, 41, 98, 0.1);
  background: transparent;
  border-radius: 0;
}

.lw-footer-bottom p {
  margin: 0;
  color: rgba(0, 4, 58, 0.5);
  font-size: 0.92rem;
}

.lw-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lw-footer-bottom-links a,
.lw-footer-bottom-links span {
  color: rgba(0, 4, 58, 0.58);
  text-decoration: none;
  font-weight: 600;
}

.lw-footer-bottom-links a:hover {
  color: #00043A;
}

@media (max-width: 1399.98px) {
  .lw-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lw-hero-empty-content {
    width: min(1040px, calc(100% - 72px));
    transform: translateY(-28px);
  }

  .lw-hero-empty-content h1 {
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    width: min(100%, 28ch);
    max-width: 28ch;
  }
}

@media (max-width: 1199.98px) {
  .lw-learning-hub__shell {
    padding: 24px;
  }

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

  .lw-funding-box {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  }

  .lw-method-shell {
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
    gap: 20px;
  }

  .lw-method-card:nth-child(2) {
    margin-left: 24px;
  }

  .lw-method-card:nth-child(3) {
    margin-left: 48px;
  }
}

@media (max-width: 991.98px) {
  body.home {
    --header-offset: 112px;
  }

  .lw-hero-empty-actions {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .lw-hero-empty-actions > * {
    min-width: 0;
  }

  .lw-hero-empty-actions .lw-btn {
    flex: 0 1 auto;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .lw-hero-empty-content {
    width: min(760px, calc(100% - 48px));
  }

  .lw-hero-empty-content h1 {
    font-size: clamp(1.12rem, 3.35vw, 1.95rem);
    width: fit-content;
    max-width: 100%;
  }

  .lw-hero-empty-content h1 > span {
    white-space: nowrap;
  }

  .lw-top {
    top: 0;
  }

  .lw-top.is-scrolled {
    box-shadow: 0 6px 16px rgba(0, 41, 98, 0.16);
  }

  .lw-top-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 0;
  }

  .container.lw-top-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .lw-header-logo {
    align-self: flex-start;
  }

  .lw-header-logo-image {
    max-height: 130px;
  }

  .lw-wordmark {
    font-size: clamp(1.75rem, 6vw, 2rem);
  }

  .lw-pill-nav {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
    border-radius: 24px;
    padding: 10px 12px;
  }

  .lw-top.is-scrolled .lw-top-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lw-top.is-scrolled .lw-pill-nav {
    transform: none;
  }

  .lw-pill-nav .navbar-toggler {
    border: 0;
    box-shadow: none;
    padding: 6px 8px;
  }

  .lw-pill-nav .navbar-collapse {
    align-items: stretch;
    gap: 0;
    margin-left: 0;
  }

  .lw-main-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .lw-nav-contact {
    margin: 8px 0 0;
    width: 100%;
    min-height: 42px;
  }

  .lw-pill-nav .navbar-nav .nav-link {
    border-radius: 10px;
    padding: 10px 10px;
  }

  .lw-hero {
    min-height: 100dvh;
    padding-top: calc(var(--header-offset) + 12px);
    padding-bottom: 0;
  }

  .lw-hero .container {
    min-height: calc(100dvh - (var(--header-offset) + 12px));
  }

  .lw-hero-grid {
    max-width: 100%;
    min-height: calc(100dvh - (var(--header-offset) + 12px));
    padding: 12px;
  }

  .lw-hero-card {
    min-height: calc(100dvh - (var(--header-offset) + 12px));
    border-radius: 20px;
  }

  .lw-hero-empty .container::before {
    inset: 14px;
    border-radius: 22px;
  }

  .lw-hero-empty-content {
    width: min(700px, calc(100% - 64px));
    margin: 0 auto;
    gap: 14px;
  }

  .lw-hero-empty-content h1 {
    font-size: clamp(1.35rem, 4.6vw, 2.2rem);
    line-height: 1.25;
  }

  .lw-hero-empty-content h1 span {
    white-space: normal;
  }

  .lw-hero-empty-subtext {
    font-size: 0.98rem;
    max-width: 30ch;
  }

  .lw-hero-empty-content .lw-btn {
    min-height: 46px;
    padding: 11px 20px;
    font-size: 0.95rem;
  }

  .lw-hero-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .lw-hero-column-main {
    padding: 16px;
    gap: 12px;
  }

  .lw-hero-column-main h1 {
    font-size: clamp(1.45rem, 6vw, 2.4rem);
  }

  .lw-hero-sub {
    font-size: 0.98rem;
  }

  .lw-hero-actions {
    margin-top: 4px;
  }

  .lw-hero-column-side {
    grid-template-rows: auto auto auto;
    gap: 10px;
  }

  .lw-info-card {
    padding: 14px;
  }

  .lw-info-card p {
    font-size: 0.96rem;
  }

  .lw-hero-metrics {
    gap: 8px;
  }

  .lw-hero-metrics div {
    padding: 10px;
  }

  .lw-card-grid,
  .lw-stats {
    grid-template-columns: 1fr;
  }

  .lw-method-shell {
    grid-template-columns: 1fr;
  }

  .lw-method-intro {
    position: relative;
    top: auto;
    border-radius: 24px;
    padding: 22px 18px;
  }

  .lw-method-card {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 20px;
  }

  .lw-method-card__index {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 0.94rem;
  }

  .lw-method-card__content {
    padding-left: 14px;
  }

  .lw-method-grid::before {
    left: 35px;
  }

  .lw-method-grid::after {
    left: 28px;
  }

  .lw-method-card:nth-child(2),
  .lw-method-card:nth-child(3) {
    margin-left: 0;
  }

  .lw-learning-hub__shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .lw-learning-grid,
  .lw-learning-grid--domains {
    grid-template-columns: 1fr;
  }

  .lw-learning-card__body,
  .lw-domain-card {
    padding: 20px;
  }

  .lw-funding-box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .lw-footer-section {
    padding-top: 42px;
  }

  .lw-footer-shell {
    padding: 0;
    border-radius: 0;
  }

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

  .lw-footer-brand-col {
    max-width: 100%;
    padding: 0;
  }

  .lw-footer-logo {
    width: min(100%, 220px);
    height: 152px;
  }

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

  .lw-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 18px;
  }
}

@media (max-width: 575.98px) {
  body.home {
    --header-offset: 104px;
  }

  .lw-hero-empty-actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .lw-hero-empty-content h1 {
    font-size: clamp(1.08rem, 4.65vw, 1.44rem);
    line-height: 1.14;
    letter-spacing: -0.055em;
    width: fit-content;
    max-width: 100%;
  }

  .lw-hero-empty-content h1 span {
    white-space: nowrap;
  }

  .lw-hero {
    min-height: 100dvh;
    padding-top: calc(var(--header-offset) + 12px);
    padding-bottom: 0;
  }

  .lw-hero .container {
    min-height: calc(100dvh - (var(--header-offset) + 12px));
  }

  .lw-hero-card {
    min-height: calc(100dvh - (var(--header-offset) + 12px));
  }

  .lw-hero-empty .container::before {
    inset: 10px;
    border-radius: 16px;
  }

  .lw-hero-empty-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    gap: 12px;
  }

  .lw-footer-brand-col,
  .lw-footer-subline,
  .lw-footer-email {
    max-width: 100%;
  }

  .lw-footer-email {
    width: fit-content;
  }

  .lw-learning-hub__shell {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .lw-method-intro {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .lw-method-signals span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .lw-method-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 14px;
  }

  .lw-method-card::before {
    content: none;
  }

  .lw-method-card__content {
    padding-left: 0;
  }

  .lw-method-grid::before,
  .lw-method-grid::after {
    content: none;
  }

  .lw-funding-box {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .lw-funding-side {
    padding: 14px;
    border-radius: 20px;
  }

  .lw-funding-note {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .lw-funding-note strong {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .lw-funding-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
  }

  .lw-learning-tabs {
    gap: 8px;
  }

  .lw-learning-tab {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.9rem;
  }

  .lw-hero-empty-content h1 {
    font-size: clamp(1.05rem, 6vw, 1.55rem);
    line-height: 1.28;
  }

  .lw-hero-empty-content .lw-btn {
    width: auto;
    max-width: none;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .lw-hero-stage {
    padding: 8px;
    gap: 8px;
  }

  .lw-hero-grid {
    min-height: calc(100dvh - (var(--header-offset) + 12px));
    padding: 8px;
  }

  .lw-hero-column-main {
    padding: 12px;
  }

  .lw-hero-kicker {
    font-size: 0.72rem;
  }

  .lw-hero-column-main h1 {
    font-size: clamp(1.22rem, 6.8vw, 1.85rem);
    line-height: 1.16;
  }

  .lw-hero-sub {
    font-size: 0.92rem;
    line-height: 1.44;
  }

  .lw-hero-tags span {
    font-size: 0.75rem;
    padding: 5px 9px;
  }

  .lw-hero-actions {
    flex-direction: column;
  }

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

  .lw-info-card {
    padding: 12px;
  }

  .lw-info-card p {
    font-size: 0.9rem;
  }

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

  .lw-funding-box,
  .lw-community-wrap {
    padding: 20px;
  }

  .lw-section {
    padding: 64px 0;
  }

  .lw-footer-shell {
    padding: 0;
    border-radius: 0;
  }

  .lw-footer-panel {
    padding: 14px 0;
  }

  .lw-footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.lw-info-lang {
  position: relative;
  z-index: 6;
  flex: 0 0 auto;
  margin-right: 10px;
  margin-left: 8px;
}

.lw-info-lang .lw-info-lang-btn {
  border-color: rgba(0, 4, 58, 0.14);
  background: #ffffff;
  color: #00043A;
  box-shadow: none;
  padding: 5px 10px;
  font-size: 0.74rem;
}

.lw-info-lang .lw-info-lang-btn i {
  color: #00043A;
  font-size: 0.75rem;
}

.lw-info-lang .lang-select__menu {
  top: calc(100% + 6px);
  min-width: 160px;
  border-color: rgba(0, 41, 98, 0.2);
}

@media (max-width: 991.98px) {
  .lw-ticker {
    overflow: visible;
  }

  .lw-ticker-track {
    min-width: 0;
    will-change: auto;
  }

  .lw-info-lang .lw-info-lang-btn {
    padding: 5px 7px;
    min-width: 36px;
  }

  .lw-info-lang .lw-info-lang-btn span,
  .lw-info-lang .lw-info-lang-btn .fa-chevron-down {
    display: none;
  }
}

/* Responsive hardening for all pages using the lw layout */
body.home,
body.home .home-main {
  max-width: 100%;
  overflow-x: clip;
}

body.home img,
body.home video,
body.home svg,
body.home canvas,
body.home iframe {
  max-width: 100%;
  height: auto;
}

body.home iframe,
body.home embed,
body.home object {
  width: 100%;
}

body.home table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

:where(
  .lw-main-menu,
  .lw-pill-nav .navbar-collapse,
  .lw-hero-stage,
  .lw-article-intro-grid,
  .lw-domain-shell,
  .lw-domain-topic-list,
  .lw-contact-hero,
  .lw-recruit-hero,
  .lw-form-grid,
  .lw-card-grid,
  .lw-method-grid,
  .lw-stats,
  .lw-footer-top,
  .lw-footer-grid
) > * {
  min-width: 0;
}

@media (min-width: 1200px) and (max-width: 1539.98px) {
  .lw-top-inner {
    gap: 12px;
    min-height: 68px;
  }

  .lw-pill-nav {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 0;
  }

  .lw-pill-nav .navbar-collapse {
    min-height: 60px;
  }

  .lw-main-menu {
    gap: 7px;
    justify-content: center;
    min-height: 60px;
    padding: 4px 16px;
  }

  .lw-nav-actions {
    gap: 6px;
    padding: 0;
    min-height: 0;
  }

  .lw-nav-actions .lw-nav-lang .lw-nav-lang-btn {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .lw-pill-nav .navbar-nav .nav-link {
    font-size: 0.93rem;
    padding: 9px 5px;
  }

  .lw-nav-secondary {
    min-height: 30px;
    padding: 4px 13px;
    font-size: 0.82rem;
  }

  .lw-nav-contact {
    min-height: 30px;
    padding: 4px 14px;
    font-size: 0.84rem;
  }
}

@media (min-width: 1200px) {
  body.home .lw-top-inner {
    min-height: 62px;
    padding-top: 0;
    padding-bottom: 0;
  }

  body.home .lw-pill-nav .navbar-collapse {
    min-height: 52px;
    align-items: center;
  }

  body.home .lw-nav-actions {
    align-items: center;
  }

  body.home .lw-header-logo {
    top: 50%;
    transform: translateY(-50%);
  }

  body.home .lw-wordmark {
    color: #00043A;
    text-shadow: none;
  }

  body.home .lw-top.is-scrolled .lw-wordmark {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 4, 58, 0.22);
  }

  body.home .lw-main-menu {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.home .lw-pill-nav .navbar-nav .nav-link,
  body.home .lw-pill-nav .navbar-nav .nav-link:hover,
  body.home .lw-pill-nav .navbar-nav .nav-link.active,
  body.home .lw-pill-nav .navbar-nav .show > .nav-link {
    color: #00043A !important;
    background: transparent;
    opacity: 1;
    text-shadow: none;
  }

  body.home .lw-pill-nav .dropdown-toggle::after {
    color: #00043A;
  }

  body.home .lw-top.is-scrolled .lw-pill-nav .navbar-nav .nav-link,
  body.home .lw-top.is-scrolled .lw-pill-nav .navbar-nav .nav-link:hover,
  body.home .lw-top.is-scrolled .lw-pill-nav .navbar-nav .nav-link.active,
  body.home .lw-top.is-scrolled .lw-pill-nav .navbar-nav .show > .nav-link {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 4, 58, 0.28);
  }

  body.home .lw-top.is-scrolled .lw-pill-nav .dropdown-toggle::after {
    color: #ffffff;
  }

  .lw-pill-nav .navbar-collapse {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 24px;
    width: 100%;
  }

  .lw-main-menu {
    grid-column: 2;
    justify-self: center;
  }

  .lw-nav-actions {
    grid-column: 3;
    justify-self: end;
    margin-left: auto;
    margin-right: clamp(10px, 1.6vw, 24px);
  }
}

@media (max-width: 1199.98px) {
  .lw-pill-nav .dropdown-menu {
    box-shadow: none;
  }

  .lw-pill-nav .dropdown-item {
    white-space: normal;
    line-height: 1.3;
  }

  .lw-about-bubble {
    width: min(560px, 100%);
    margin: 22px auto 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body.home {
    --header-offset: 108px;
  }

  .lw-section {
    padding: 56px 0;
  }

  .lw-footer-section {
    padding: 34px 0 24px;
  }

  .lw-footer-logo {
    width: min(100%, 200px);
    height: 138px;
  }

  .lw-footer-brand-col,
  .lw-footer-subline,
  .lw-footer-email {
    max-width: 100%;
  }

  .lw-footer-email {
    width: fit-content;
  }

  .lw-footer-shell {
    padding: 0;
    border-radius: 0;
  }

  .lw-footer-brand-col,
  .lw-footer-column {
    padding: 0;
  }

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

  .lw-nav-contact {
    font-size: 0.95rem;
  }

  .lw-about-bubble {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .lw-footer-logo {
    width: min(100%, 170px);
    height: 118px;
  }

  .lw-header-logo-image {
    max-height: 96px;
  }

  .lw-wordmark {
    font-size: clamp(1.52rem, 8vw, 1.74rem);
  }

  .lw-pill-nav {
    border-radius: 16px;
    padding: 8px 10px;
  }

  .lw-pill-nav .navbar-nav .nav-link {
    padding: 9px 8px;
    font-size: 0.95rem;
  }

  .lw-about-bubble {
    padding: 16px;
    border-radius: 20px;
  }

  .lw-about-bubble h2 {
    max-width: none;
  }

  .lw-nav-contact {
    min-height: 40px;
    min-width: 0;
    padding: 9px 14px;
    font-size: 0.92rem;
  }
}

.lw-nav-link-icon,
.lw-tablet-drawer-search,
.lw-tablet-drawer-section-label,
.lw-tablet-drawer-contact-card {
  display: none;
}

.lw-tablet-drawer-head,
.lw-tablet-nav-backdrop {
  display: none;
}

.lw-mobile-menu-trigger {
  display: none;
}

.lw-mobile-drawer,
.lw-mobile-drawer__backdrop {
  display: none;
}

/* Tablet drawer navbar style (logo left, menu right) */
@media (max-width: 1199.98px) {
  body.home {
    --header-offset: 132px;
  }

  .lw-top {
    top: 6px;
  }

  .lw-info-bar {
    height: 34px;
    padding: 0 12px;
  }

  .lw-ib-email span {
    display: none;
  }


  .lw-top {
    padding: 6px 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .lw-top.is-scrolled {
    padding-top: 1px;
    padding-bottom: 2px;
    background-color: rgba(0, 4, 58, 0.96);
    background-image:
      radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 1.15px, transparent 1.35px);
    background-size: 18px 18px;
    background-position: 0 0;
    box-shadow: 0 10px 24px rgba(0, 8, 60, 0.24);
    backdrop-filter: blur(8px);
  }

  .lw-top-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container.lw-top-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .lw-top.is-scrolled .lw-info-wrap {
    display: block;
    margin-bottom: 8px;
  }

  .lw-top.is-scrolled .lw-info-bar {
    background: rgba(255, 255, 255, 0.97);
    border-top-color: rgba(0, 4, 58, 0.1);
    border-bottom-color: rgba(0, 4, 58, 0.1);
    padding: 5px 0;
    box-shadow: 0 10px 24px rgba(0, 41, 98, 0.12);
  }

  .lw-top.is-scrolled .lw-info-lang {
    display: none;
  }

  .lw-top.is-scrolled .lw-ticker-item {
    min-height: 24px;
    padding: 2px 10px;
    font-size: 0.72rem;
  }

  .lw-top.is-scrolled .container.lw-top-inner {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 2px 16px 0;
    border-radius: 0;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
    box-shadow: none;
  }

  .lw-top.is-scrolled .lw-top-inner {
    gap: 10px;
  }

  .lw-header-logo {
    padding: 0;
    margin-right: auto;
    margin-top: -8px;
    margin-bottom: -8px;
    align-self: center;
    transition: transform 0.28s ease;
  }

  .lw-header-logo-image {
    max-height: 112px;
  }

  .lw-wordmark {
    font-size: clamp(1.8rem, 5.2vw, 2.2rem);
  }

  .lw-pill-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
  }

  .lw-pill-nav .navbar-collapse {
    position: fixed;
    top: 18px;
    left: 0;
    right: auto;
    display: flex !important;
    flex-direction: column;
    width: min(88vw, 360px);
    height: calc(100dvh - 36px);
    max-height: calc(100dvh - 36px);
    overflow: hidden auto;
    border-radius: 0 32px 32px 0;
    border: 1px solid rgba(0, 4, 58, 0.05);
    border-left: 0;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 24px 0 50px rgba(0, 4, 58, 0.12);
    padding: 0;
    margin-left: 0;
    z-index: 2400;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-108%);
    transition: transform 0.44s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.44s;
  }

  .lw-pill-nav .navbar-collapse.show,
  .lw-pill-nav .navbar-collapse.collapsing {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lw-pill-nav .navbar-collapse.collapsing {
    height: 100dvh !important;
  }

  .lw-tablet-drawer-head {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    padding: 22px 22px 12px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 4, 58, 0.06);
    min-height: 0;
  }

  .lw-tablet-drawer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .lw-tablet-drawer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    margin: 0;
  }

  .lw-tablet-drawer-logo {
    display: block;
    width: 76px;
    max-width: 76px;
    height: auto;
    object-fit: contain;
    transform: none;
    filter: none;
  }

  .lw-tablet-drawer-search {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    margin-top: 20px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 4, 58, 0.08);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 4, 58, 0.06);
  }

  .lw-tablet-drawer-search__icon {
    color: rgba(0, 4, 58, 0.54);
    font-size: 0.95rem;
  }

  .lw-tablet-drawer-search__text {
    color: rgba(0, 4, 58, 0.42);
    font-size: 0.94rem;
    font-weight: 500;
  }

  .lw-tablet-drawer-search__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border-radius: 12px;
    background: #f5f6fb;
    color: rgba(0, 4, 58, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .lw-tablet-drawer-section-label {
    margin: 12px 0 0;
    padding-left: 2px;
    color: rgba(0, 4, 58, 0.34);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .lw-tablet-drawer-close {
    position: static;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #f1f2f7;
    color: rgba(0, 4, 58, 0.52);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: background 0.18s ease, transform 0.18s ease;
  }

  .lw-tablet-drawer-close:hover {
    background: #e7e9f3;
    color: #00043A;
    transform: translateY(-1px);
  }

  .lw-tablet-drawer-close i {
    font-size: 1rem;
  }

  .lw-tablet-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(0, 4, 58, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
    z-index: 2300;
  }

  .lw-top.is-tablet-nav-open .lw-tablet-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease;
  }

  body.lw-tablet-nav-open {
    overflow: hidden;
  }

  .lw-nav-lang {
    margin: 0;
  }

  .lw-nav-lang .lw-nav-lang-btn {
    min-height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 41, 98, 0.23);
    background: #f3f6fb;
    color: #001c57;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    gap: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .lw-nav-lang .lw-nav-lang-btn i {
    color: #001c57;
    font-size: 1rem;
  }

  .lw-nav-lang .lang-select__menu {
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    min-width: 180px;
  }

  .lw-nav-menu-toggle {
    width: 58px;
    height: 46px;
    margin: 0 !important;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .lw-nav-menu-toggle:hover {
    transform: translateY(-1px);
    opacity: 0.9;
  }

  .lw-top.is-scrolled .lw-header-logo-image {
    max-height: 120px;
  }

  .lw-top.is-scrolled .lw-header-logo {
    transform: none;
    transform-origin: left center;
  }

  .lw-top.is-scrolled .lw-nav-menu-toggle {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .lw-top.is-scrolled .lw-nav-menu-toggle:hover {
    background: transparent;
  }

  .lw-top.is-scrolled .lw-nav-menu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
  }

  .lw-nav-menu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(0, 78, 137, 0.16);
  }

  .lw-menu-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 42px;
  }

  .lw-menu-icon__line {
    display: block;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: #060a4d;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
  }

  .lw-menu-icon__line--top {
    width: 58%;
  }

  .lw-menu-icon__line--middle {
    width: 100%;
  }

  .lw-menu-icon__line--bottom {
    width: 42%;
  }

  .lw-top.is-scrolled .lw-menu-icon__line {
    background: #ffffff;
  }

  .lw-main-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 16px 14px 0;
    margin: 0 !important;
    min-height: 0;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .lw-main-menu > .nav-item,
  .lw-main-menu > .nav-link,
  .lw-main-menu .nav-item.dropdown {
    width: 100%;
  }

  .lw-pill-nav .nav-item.dropdown {
    display: grid;
    gap: 0;
  }

  .lw-pill-nav .nav-item.dropdown.lw-nav-split {
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
  }

  .lw-pill-nav .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    min-height: 60px;
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    color: #00043A !important;
    border: 1px solid transparent;
    background: transparent !important;
    letter-spacing: -0.01em;
    box-shadow: none;
    transition: color 0.16s ease, transform 0.16s ease, opacity 0.16s ease, background 0.16s ease, border-color 0.16s ease;
    text-shadow: none !important;
    opacity: 1 !important;
  }

  .lw-nav-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #f8f8fb;
    color: rgba(0, 4, 58, 0.82);
    font-size: 1rem;
    flex: 0 0 auto;
  }

  .lw-nav-link-label {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lw-pill-nav .lw-nav-split > .nav-link {
    padding-right: 10px;
  }

  .lw-pill-nav .lw-nav-split__toggle,
  .lw-pill-nav .lw-nav-split__toggle:hover,
  .lw-pill-nav .lw-nav-split__toggle.active,
  .lw-pill-nav .show > .lw-nav-split__toggle {
    justify-content: flex-end;
    align-items: center;
    min-height: 60px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: #00043A !important;
    box-shadow: none;
  }

  .lw-pill-nav .lw-nav-split__toggle.active,
  .lw-pill-nav .show > .lw-nav-split__toggle {
    color: #00043A !important;
  }

  .lw-pill-nav .lw-nav-split__toggle::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .lw-pill-nav .show > .lw-nav-split__toggle::before {
    transform: rotate(180deg);
  }

  .lw-pill-nav .navbar-nav .nav-link:hover,
  .lw-pill-nav .lw-nav-split__toggle:hover {
    color: #00043A !important;
    transform: translateX(2px);
  }

  .lw-pill-nav .nav-item.dropdown.show > .nav-link,
  .lw-pill-nav .navbar-nav .nav-link:hover,
  .lw-pill-nav .navbar-nav .nav-link.active {
    background: #f6f7fb !important;
    border-color: rgba(0, 4, 58, 0.04);
  }

  .lw-pill-nav .navbar-nav .nav-link.active {
    color: #00043A !important;
    font-weight: 700;
    opacity: 1;
  }

  .lw-pill-nav .lw-nav-split__toggle:hover,
  .lw-pill-nav .lw-nav-split__toggle.active,
  .lw-pill-nav .show > .lw-nav-split__toggle {
    padding-left: 0;
  }

  .lw-pill-nav .dropdown-toggle::after {
    display: none;
  }

  .lw-nav-actions {
    display: none;
  }

  .lw-nav-actions .lw-nav-lang {
    display: none;
  }

  .lw-nav-actions .lw-nav-lang .lw-nav-lang-btn {
    display: none;
  }

  .lw-nav-actions .lw-nav-lang .lw-nav-lang-btn i {
    display: none;
  }

  .lw-nav-actions .lw-nav-lang .lang-select__menu {
    display: none;
  }

  .lw-nav-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 4, 58, 0.1);
    color: #00043A !important;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(0, 4, 58, 0.05);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  .lw-nav-secondary:hover {
    background: #ffffff;
    border-color: rgba(0, 4, 58, 0.18);
    color: #00043A !important;
    transform: translateY(-1px);
  }

  .lw-pill-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin: 2px 0 14px 54px !important;
    border-radius: 18px;
    border: 1px solid rgba(0, 4, 58, 0.06) !important;
    box-shadow: 0 18px 38px rgba(0, 4, 58, 0.08);
    padding: 8px;
    background: #ffffff;
    display: none;
    gap: 2px;
  }

  .lw-pill-nav .dropdown-menu.show {
    display: grid !important;
  }

  .lw-pill-nav .dropdown-item {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(0, 4, 58, 0.72) !important;
    white-space: normal;
    border: 0;
    background: transparent;
    transition: color 0.14s ease, transform 0.14s ease, background 0.14s ease;
  }

  .lw-pill-nav .dropdown-item:hover {
    background: #f6f7fb;
    color: #00043A !important;
    transform: translateX(2px);
  }

  .lw-nav-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: auto;
    padding: 16px 14px 14px;
    border-top: 1px solid rgba(0, 4, 58, 0.06);
  }

  .lw-tablet-drawer-contact-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 4, 58, 0.07);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 4, 58, 0.05);
  }

  .lw-tablet-drawer-contact-card__media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f6f7fb;
    color: #00043A;
    font-size: 1rem;
  }

  .lw-tablet-drawer-contact-card__body {
    display: grid;
    gap: 3px;
    min-width: 0;
  }

  .lw-tablet-drawer-contact-card__body strong {
    color: #00043A;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .lw-tablet-drawer-contact-card__body span {
    color: rgba(0, 4, 58, 0.46);
    font-size: 0.8rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lw-nav-contact,
  .lw-nav-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .lw-nav-contact:hover {
    transform: translateY(-1px);
  }

  .lw-nav-contact {
    background: #00043A;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(0, 4, 58, 0.14);
  }

  .lw-nav-contact:hover {
    background: #09106a;
    color: #ffffff !important;
  }

  .lw-nav-secondary {
    border: 1px solid rgba(0, 4, 58, 0.08);
    background: #f7f8fc;
    color: #00043A !important;
  }

  .lw-nav-secondary:hover {
    background: #eef1f8;
    color: #00043A !important;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .lw-pill-nav .navbar-collapse {
    top: 10px;
    width: min(92vw, 420px);
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 0 32px 32px 0;
  }

  .lw-tablet-drawer-head {
    padding: 22px 26px 24px;
    border-bottom-color: rgba(0, 4, 58, 0.08);
  }

  .lw-tablet-drawer-topbar {
    display: grid;
    justify-items: center;
    gap: 0;
  }

  .lw-tablet-drawer-logo-wrap {
    width: 100%;
    justify-content: center;
    margin-top: 52px;
  }

  .lw-tablet-drawer-logo {
    width: min(100%, 132px);
    max-width: 132px;
  }

  .lw-tablet-drawer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #e8e8ee;
    color: #00043A;
  }

  .lw-tablet-drawer-close i {
    font-size: 1.35rem;
  }

  .lw-tablet-drawer-search {
    display: none;
  }

  .lw-tablet-drawer-section-label {
    display: block;
    margin: 28px auto 0;
    width: calc(100% - 32px);
    height: 1px;
    padding-left: 0;
    overflow: hidden;
    color: transparent;
    background: rgba(0, 4, 58, 0.12);
  }

  .lw-main-menu {
    padding: 22px 20px 0;
  }

  .lw-pill-nav .navbar-nav .nav-link {
    gap: 0;
    min-height: 74px;
    border-radius: 0;
    padding: 12px 0;
    font-size: 1.04rem;
    font-weight: 700;
    border: 0;
    background: transparent !important;
  }

  .lw-nav-link-icon {
    display: none;
  }

  .lw-pill-nav .nav-item.dropdown.lw-nav-split {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .lw-pill-nav .lw-nav-split__toggle,
  .lw-pill-nav .lw-nav-split__toggle:hover,
  .lw-pill-nav .lw-nav-split__toggle.active,
  .lw-pill-nav .show > .lw-nav-split__toggle {
    min-height: 74px;
  }

  .lw-pill-nav .lw-nav-split__toggle::before {
    content: "↙";
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .lw-pill-nav .show > .lw-nav-split__toggle::before {
    transform: rotate(90deg);
  }

  .lw-pill-nav .nav-item.dropdown.show > .nav-link,
  .lw-pill-nav .navbar-nav .nav-link:hover,
  .lw-pill-nav .navbar-nav .nav-link.active {
    background: transparent !important;
    border-color: transparent;
  }

  .lw-pill-nav .dropdown-menu {
    margin: -4px 0 16px !important;
    border-radius: 24px;
    border: 2px solid rgba(203, 213, 233, 0.8) !important;
    box-shadow: none;
    padding: 16px 18px;
    background: #f7f9ff;
  }

  .lw-pill-nav .dropdown-item {
    min-height: 56px;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00043A !important;
  }

  .lw-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(0, 4, 58, 0.06);
  }

  .lw-tablet-drawer-contact-card {
    display: none;
  }

  .lw-nav-contact,
  .lw-nav-secondary {
    min-height: 50px;
    border-radius: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  body.home {
    --header-offset: 112px;
  }

  .lw-pill-nav,
  .lw-tablet-nav-backdrop {
    display: none !important;
  }

  .lw-hero-empty-content {
    width: min(100%, calc(100% - 12px));
    transform: translateY(-20px);
  }

  .lw-hero-empty-content h1 {
    font-size: clamp(1.2rem, 4.5vw, 1.86rem);
    line-height: 1.14;
    letter-spacing: -0.055em;
  }

  .lw-top-inner,
  .lw-top.is-scrolled .container.lw-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    gap: 10px;
    margin-inline: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .lw-top {
    padding: 0;
  }

  .lw-info-bar {
    height: auto;
    padding: 6px 10px;
    justify-content: center;
  }

  .lw-ib-center {
    position: static;
    left: auto;
    transform: none;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    animation: none;
  }

  .lw-ib-email {
    gap: 5px;
    font-size: 0.68rem;
  }

  .lw-ib-email span {
    display: inline;
  }

  .lw-ib-email i {
    font-size: 0.68rem;
  }

  .lw-ib-pipe {
    height: 12px;
  }

  .lw-ib-socials {
    gap: 0;
  }

  .lw-ib-social {
    width: 24px;
    height: 24px;
  }

  .lw-top.is-scrolled {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lw-top.is-scrolled .container.lw-top-inner {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 0 10px;
  }

  .lw-top.is-scrolled .lw-header-logo-image {
    max-height: 90px;
  }

  .lw-top.is-scrolled .lw-header-logo {
    transform: none;
  }

  .lw-header-logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-top: -10px;
    margin-bottom: -10px;
    line-height: 0;
    align-self: center;
  }

  .lw-header-logo-stack {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
  }

  .lw-top.is-scrolled .lw-info-bar {
    padding: 8px 10px;
  }

  .lw-wordmark {
    font-size: clamp(1.56rem, 8vw, 1.9rem);
  }

  .lw-header-logo-image {
    max-height: 90px;
    transform: none;
  }

  .lw-mobile-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
    align-self: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .lw-mobile-menu-trigger:hover {
    transform: translateY(-1px);
    opacity: 0.9;
  }

  .lw-mobile-menu-trigger:focus {
    box-shadow: 0 0 0 3px rgba(0, 78, 137, 0.16);
  }

  .lw-top.is-scrolled .lw-mobile-menu-trigger:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
  }

  .lw-mobile-menu-icon {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 7px;
    width: 34px;
  }

  .lw-mobile-menu-icon__line {
    display: block;
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: #060a4d;
  }

  .lw-mobile-menu-icon__line--top {
    width: 58%;
    align-self: flex-end;
  }

  .lw-mobile-menu-icon__line--middle {
    width: 100%;
  }

  .lw-mobile-menu-icon__line--bottom {
    width: 64%;
    align-self: flex-start;
  }

  .lw-top.is-scrolled .lw-mobile-menu-icon__line {
    background: #ffffff;
  }

  .lw-mobile-drawer {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(calc(100vw - 24px), 372px);
    max-width: 372px;
    z-index: 2600;
    pointer-events: none;
    visibility: hidden;
  }

  .lw-mobile-drawer__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden auto;
    padding: 18px 20px 34px;
    background: rgba(255, 255, 255, 0.985);
    border-right: 1px solid rgba(198, 210, 232, 0.74);
    border-bottom: 1px solid rgba(198, 210, 232, 0.74);
    border-radius: 0 0 34px 0;
    box-shadow: 12px 0 26px rgba(0, 4, 58, 0.08);
    transform: translateX(-104%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lw-mobile-drawer__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2550;
    border: 0;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0s linear 0.24s;
  }

  .lw-top.is-mobile-drawer-open .lw-mobile-drawer {
    pointer-events: auto;
    visibility: visible;
  }

  .lw-top.is-mobile-drawer-open .lw-mobile-drawer__panel {
    transform: translateX(0);
  }

  .lw-top.is-mobile-drawer-open .lw-mobile-drawer__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.24s ease;
  }

  body.lw-mobile-drawer-open {
    overflow: hidden;
  }

  .lw-mobile-drawer__top {
    display: grid;
    gap: 4px;
    padding: 0 0 2px;
  }

  .lw-mobile-drawer__close {
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 18px;
    background: #ebebf1;
    color: #050a4b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }

  .lw-mobile-drawer__close i {
    font-size: 1.12rem;
    line-height: 1;
  }

  .lw-mobile-drawer__brand {
    display: flex;
    justify-content: center;
    padding: 0;
    transform: translateY(-16px);
  }

  .lw-mobile-drawer__brand-logo {
    width: 176px;
    max-width: 68%;
    height: auto;
    object-fit: contain;
  }

  .lw-mobile-drawer__cta-row {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 10px;
    align-items: center;
    padding: 2px 0 0;
    border-top: 1px solid rgba(207, 214, 229, 0.78);
  }

  .lw-mobile-drawer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: #050a4b;
    border: 2px solid #2348b9;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 4, 58, 0.12);
    appearance: none;
    -webkit-appearance: none;
  }

  .lw-mobile-drawer__cta:link,
  .lw-mobile-drawer__cta:visited,
  .lw-mobile-drawer__cta:hover,
  .lw-mobile-drawer__cta:active,
  .lw-mobile-drawer__cta:focus {
    background: #050a4b;
    border-color: #2348b9;
    color: #ffffff !important;
    text-decoration: none;
  }

  .lw-mobile-drawer__divider {
    height: 1px;
    margin: 0 -20px 10px;
    background: rgba(207, 214, 229, 0.72);
  }

  .lw-mobile-drawer__nav {
    display: grid;
    gap: 2px;
    padding-top: 10px;
  }

  .lw-mobile-drawer-link {
    display: block;
    width: 100%;
    padding: 12px 24px 12px 18px;
    color: #1b225f !important;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    text-decoration: none;
  }

  .lw-mobile-drawer-link.active {
    color: #11185a !important;
  }

  .lw-mobile-drawer-group {
    display: grid;
    gap: 8px;
  }

  .lw-mobile-drawer-group__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
  }

  .lw-mobile-drawer-group__toggle {
    width: 28px;
    height: 28px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #50568a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .lw-mobile-drawer-group__arrow {
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.18s ease;
  }

  .lw-mobile-drawer-group.is-open .lw-mobile-drawer-group__arrow {
    transform: rotate(90deg);
    color: #050a4b;
  }

  .lw-mobile-drawer-group__panel {
    display: grid;
    gap: 10px;
    margin: 0 0 8px;
    padding: 18px 16px 16px;
    border-radius: 24px;
    border: 2px solid #d0daea;
    background: #f9fbff;
  }

  .lw-mobile-drawer-subitem {
    display: block;
    padding: 10px 20px;
    border-radius: 18px;
    color: #11185a !important;
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .lw-mobile-drawer-subitem.active {
    background: #dce7f5;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .lw-pill-nav,
  .lw-tablet-nav-backdrop {
    display: none !important;
  }

  .lw-mobile-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
    align-self: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .lw-mobile-menu-trigger:hover {
    transform: translateY(-1px);
    opacity: 0.9;
  }

  .lw-mobile-menu-trigger:focus {
    box-shadow: 0 0 0 3px rgba(0, 78, 137, 0.16);
  }

  .lw-top.is-scrolled .lw-mobile-menu-trigger:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
  }

  .lw-mobile-menu-icon {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    width: 36px;
  }

  .lw-mobile-menu-icon__line {
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #060a4d;
  }

  .lw-mobile-menu-icon__line--top {
    width: 58%;
    align-self: flex-end;
  }

  .lw-mobile-menu-icon__line--middle {
    width: 100%;
  }

  .lw-mobile-menu-icon__line--bottom {
    width: 64%;
    align-self: flex-start;
  }

  .lw-top.is-scrolled .lw-mobile-menu-icon__line {
    background: #ffffff;
  }

  .lw-mobile-drawer {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(calc(100vw - 24px), 420px);
    z-index: 2600;
    pointer-events: none;
    visibility: hidden;
  }

  .lw-mobile-drawer__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden auto;
    padding: 18px 20px 34px;
    background: rgba(255, 255, 255, 0.985);
    border-right: 1px solid rgba(198, 210, 232, 0.74);
    border-bottom: 1px solid rgba(198, 210, 232, 0.74);
    border-radius: 0 0 34px 0;
    box-shadow: 12px 0 26px rgba(0, 4, 58, 0.08);
    transform: translateX(-104%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lw-mobile-drawer__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2550;
    border: 0;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0s linear 0.24s;
  }

  .lw-top.is-mobile-drawer-open .lw-mobile-drawer {
    pointer-events: auto;
    visibility: visible;
  }

  .lw-top.is-mobile-drawer-open .lw-mobile-drawer__panel {
    transform: translateX(0);
  }

  .lw-top.is-mobile-drawer-open .lw-mobile-drawer__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.24s ease;
  }

  body.lw-mobile-drawer-open {
    overflow: hidden;
  }

  .lw-mobile-drawer__top {
    display: grid;
    gap: 4px;
    padding: 0 0 2px;
  }

  .lw-mobile-drawer__close {
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 18px;
    background: #ebebf1;
    color: #050a4b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }

  .lw-mobile-drawer__close i {
    font-size: 1.12rem;
    line-height: 1;
  }

  .lw-mobile-drawer__brand {
    display: flex;
    justify-content: center;
    padding: 0;
    transform: translateY(-10px);
  }

  .lw-mobile-drawer__brand-logo {
    width: min(100%, 132px);
    max-width: 132px;
    height: auto;
    object-fit: contain;
  }

  .lw-mobile-drawer__cta-row {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 10px;
    align-items: center;
    padding: 10px 0 0;
    border-top: 1px solid rgba(207, 214, 229, 0.78);
  }

  .lw-mobile-drawer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 999px;
    background: #050a4b;
    border: 2px solid #2348b9;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 4, 58, 0.12);
    appearance: none;
    -webkit-appearance: none;
  }

  .lw-mobile-drawer__cta:link,
  .lw-mobile-drawer__cta:visited,
  .lw-mobile-drawer__cta:hover,
  .lw-mobile-drawer__cta:active,
  .lw-mobile-drawer__cta:focus {
    background: #050a4b;
    border-color: #2348b9;
    color: #ffffff !important;
    text-decoration: none;
  }

  .lw-mobile-drawer__divider {
    height: 1px;
    margin: 0 -28px 14px;
    background: rgba(207, 214, 229, 0.72);
  }

  .lw-mobile-drawer__nav {
    display: grid;
    gap: 2px;
    padding-top: 14px;
  }

  .lw-mobile-drawer-link {
    display: block;
    width: 100%;
    padding: 16px 28px 16px 0;
    color: #1b225f !important;
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.03em;
    text-decoration: none;
  }

  .lw-mobile-drawer-link.active {
    color: #11185a !important;
  }

  .lw-mobile-drawer-group {
    display: grid;
    gap: 8px;
  }

  .lw-mobile-drawer-group__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 10px;
  }

  .lw-mobile-drawer-group__toggle {
    width: 42px;
    height: 42px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #50568a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .lw-mobile-drawer-group__arrow {
    font-size: 1.65rem;
    line-height: 1;
    transition: transform 0.18s ease;
  }

  .lw-mobile-drawer-group.is-open .lw-mobile-drawer-group__arrow {
    transform: rotate(90deg);
    color: #050a4b;
  }

  .lw-mobile-drawer-group__panel {
    display: grid;
    gap: 10px;
    margin: 0 0 8px;
    padding: 18px;
    border-radius: 24px;
    border: 2px solid #d0daea;
    background: #f9fbff;
  }

  .lw-mobile-drawer-subitem {
    display: block;
    padding: 12px 18px;
    border-radius: 18px;
    color: #11185a !important;
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  .lw-mobile-drawer-subitem.active {
    background: #dce7f5;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .lw-mobile-drawer {
    width: min(36vw, 520px);
  }

  .lw-mobile-drawer__panel {
    padding: 18px 28px 28px;
    border-radius: 0 0 38px 0;
  }

  .lw-mobile-drawer__close {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .lw-mobile-drawer__close i {
    font-size: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  .lw-header-logo {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lw-header-logo-image {
    max-height: 72px;
  }
}

@media (max-width: 379.98px) {
  .lw-mobile-drawer__panel {
    padding-inline: 16px;
  }

  .lw-mobile-drawer__cta-row {
    grid-template-columns: 1fr;
  }

  .lw-mobile-drawer__cta {
    width: 100%;
    font-size: 0.86rem;
    padding-inline: 12px;
  }

  .lw-mobile-drawer__divider {
    margin-inline: -16px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .lw-header-logo {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lw-header-logo-image {
    max-height: 84px;
  }
}

/* =============================================
   NB-CARD — shared card component
   Used on: actualites.html, index.html
   ============================================= */
.nb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nb-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 4, 58, .08);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nb-card:hover {
  border-color: rgba(0, 4, 58, .16);
  box-shadow: 0 14px 36px rgba(0, 41, 98, .1);
  transform: translateY(-3px);
}

.nb-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 4, 58, .04);
  flex-shrink: 0;
}
.nb-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s;
}
.nb-card:hover .nb-card__img img { transform: scale(1.04); }

.nb-card__ph {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47,109,244,.08), rgba(47,109,244,.18));
  flex-shrink: 0;
}
.nb-card__ph span {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .22);
  letter-spacing: -.03em;
  line-height: 1;
}

.nb-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
  gap: 8px;
}
.nb-card__tag {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2f6df4;
}
.nb-card__title {
  margin: 0;
  font-size: .98rem;
  font-weight: 700;
  color: #00043A;
  line-height: 1.44;
  letter-spacing: -.012em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nb-card__lead {
  margin: 0;
  font-size: .83rem;
  color: rgba(0, 4, 58, .5);
  line-height: 1.66;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nb-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 4, 58, .06);
}
.nb-card__date {
  font-size: .73rem;
  color: rgba(0, 4, 58, .34);
}
.nb-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 4, 58, .13);
  color: rgba(0, 4, 58, .45);
  font-size: .62rem;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  flex-shrink: 0;
}
.nb-card:hover .nb-card__btn {
  background: #00043A;
  border-color: #00043A;
  color: #fff;
  transform: rotate(-45deg);
}

.nb-card[data-h="1"] { display: none !important; }

@media (max-width: 991px) {
  .nb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .nb-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== NEWSLETTER SECTION ===== */
.lw-nl-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00043A 0%, #0c1f6e 100%);
}
.lw-nl-shell {
  display: flex;
  align-items: center;
  gap: 64px;
}
.lw-nl-text { flex: 1; }
.lw-nl-kicker {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.lw-nl-heading {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}
.lw-nl-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.72;
  max-width: 360px;
  margin: 0;
}
.lw-nl-form { flex: 1; max-width: 460px; }
.lw-nl-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.lw-nl-input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .92rem;
  transition: border-color .18s, background .18s;
}
.lw-nl-input::placeholder { color: rgba(255,255,255,.35); }
.lw-nl-input:focus { outline: none; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); }
.lw-nl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #00043A;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .18s, transform .18s;
}
.lw-nl-btn:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.lw-nl-btn:disabled { opacity: .6; cursor: not-allowed; }
.lw-nl-msg {
  margin-top: 10px;
  font-size: .84rem;
  padding: 10px 14px;
  border-radius: 8px;
}
.lw-nl-msg.is-success { background: rgba(26,127,55,.18); color: #b8f0cb; }
.lw-nl-msg.is-error   { background: rgba(217,48,37,.18); color: #ffcccb; }
@media (max-width: 960px) {
  .lw-nl-shell { flex-direction: column; align-items: stretch; gap: 36px; }
  .lw-nl-sub { max-width: 100%; }
  .lw-nl-form { max-width: 100%; }
}
@media (max-width: 575px) {
  .lw-nl-section { padding: 60px 0; }
}

/* ===== TOAST NOTIFICATIONS ===== */
#lw-toast-wrap {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.lw-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,4,58,.16), 0 2px 8px rgba(0,4,58,.06);
  min-width: 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  transition: transform .32s cubic-bezier(.34,1.28,.64,1), opacity .22s ease;
}
.lw-toast.is-in { transform: translateX(0); opacity: 1; }
.lw-toast__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}
.lw-toast--success .lw-toast__icon { background: rgba(26,127,55,.1); color: #1a7f37; }
.lw-toast--error   .lw-toast__icon { background: rgba(217,48,37,.1); color: #d93025; }
.lw-toast__msg {
  flex: 1;
  font-size: .88rem;
  color: rgba(0,4,58,.82);
  line-height: 1.55;
  margin: 0;
  padding-top: 8px;
}
.lw-toast__close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,4,58,.06);
  color: rgba(0,4,58,.38);
  font-size: .72rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .15s;
  margin-top: 4px;
}
.lw-toast__close:hover { background: rgba(0,4,58,.12); }
.lw-toast__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
  border-radius: 0 0 16px 16px;
  animation: toast-bar 5s linear forwards;
}
.lw-toast--success .lw-toast__bar { background: #1a7f37; }
.lw-toast--error   .lw-toast__bar { background: #d93025; }
@keyframes toast-bar { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@media (max-width: 575px) {
  #lw-toast-wrap { top: auto; bottom: 20px; right: 16px; left: 16px; }
  .lw-toast { min-width: 0; max-width: 100%; transform: translateY(calc(100% + 24px)); }
  .lw-toast.is-in { transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════════════════════════
   DEVIS — Hero ghost button
   ══════════════════════════════════════════════════════════════════════════ */
.lw-btn-hero-ghost {
  border-radius: 10px;
  border: 1.5px solid rgba(0, 4, 58, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: #00043A;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 4, 58, 0.07);
  backdrop-filter: blur(4px);
}

.lw-btn-hero-ghost:hover {
  color: #00043A;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(47, 109, 244, 0.32);
  box-shadow: 0 8px 22px rgba(0, 4, 58, 0.1);
}

/* ══════════════════════════════════════════════════════════════════════════
   DEVIS — CTA band section
   ══════════════════════════════════════════════════════════════════════════ */
.lw-devis-cta {
  padding-top: 0;
  padding-bottom: 56px;
}

.lw-devis-cta__band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 5.5vw, 70px) clamp(36px, 6vw, 80px);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 94% 15%, rgba(47, 109, 244, 0.42) 0%, transparent 50%),
    radial-gradient(ellipse at 8%  88%, rgba(91, 139, 247, 0.22) 0%, transparent 46%),
    linear-gradient(155deg, #00043A 0%, #040d50 58%, #0e1f7a 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 2px 4px rgba(0, 4, 58, 0.04),
    0 32px 72px rgba(0, 4, 58, 0.18);
  isolation: isolate;
}

/* Dot-grid texture */
.lw-devis-cta__band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

.lw-devis-cta__content,
.lw-devis-cta__actions {
  position: relative;
  z-index: 1;
}

.lw-devis-cta__content {
  display: grid;
  gap: 13px;
}

.lw-devis-cta__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #93bfff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.lw-devis-cta__kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

.lw-devis-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lw-devis-cta__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.72;
  max-width: 50ch;
}

.lw-devis-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@keyframes ctaShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.lw-devis-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 36px;
  border-radius: 14px;
  white-space: nowrap;
  background: linear-gradient(90deg, #1240c4 0%, #2f6df4 30%, #5b8bf7 50%, #2f6df4 70%, #1240c4 100%);
  background-size: 200% auto;
  animation: ctaShimmer 5s linear infinite;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.02rem;
  font-family: inherit;
  text-decoration: none;
  border: 0;
  box-shadow: 0 14px 34px rgba(47, 109, 244, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lw-devis-cta__btn:hover {
  color: #ffffff;
  animation-duration: 1.8s;
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(47, 109, 244, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.lw-devis-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.lw-devis-cta__link:hover { color: rgba(255, 255, 255, 0.82); }
.lw-devis-cta__link i { font-size: 0.8rem; }

/* Responsive */
@media (max-width: 991.98px) {
  .lw-devis-cta { padding-bottom: 44px; }
  .lw-devis-cta__band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(34px, 7vw, 56px) clamp(22px, 5vw, 52px);
    gap: 28px;
  }
  .lw-devis-cta__kicker { justify-content: center; }
  .lw-devis-cta__sub { max-width: none; }
  .lw-devis-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .lw-devis-cta__band { border-radius: 20px; padding: 28px 20px; }
  .lw-devis-cta__btn { min-height: 50px; padding: 0 24px; font-size: 0.96rem; }
  .lw-devis-cta__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .lw-devis-cta__btn { animation: none !important; }
}
