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

html {
  font-size: 62.5%;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1.65;
  color: #3F4A5C;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: 0;
}

strong, b {
  font-weight: 700;
}

::selection {
  background: rgba(0, 168, 234, 0.3);
}

:focus-visible {
  outline: 3px solid rgba(0, 168, 234, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4, .h1, .h2, .h3 {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: #0F2559;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

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

h2, .h2 {
  font-size: clamp(2.9rem, 3.6vw, 4.4rem);
}

h3, .h3 {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
}

p + p {
  margin-top: 1.4rem;
}

.lead {
  font-size: clamp(1.8rem, 1.6vw, 2.1rem);
  line-height: 1.6;
  color: #3F4A5C;
}

.muted {
  color: #6B7787;
}

.text-white {
  color: #FFFFFF !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0A70B4;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #C40C0F, #00A8EA);
}
.eyebrow--light {
  color: #00A8EA;
}
.eyebrow--red {
  color: #C40C0F;
}
.eyebrow--center {
  justify-content: center;
}

.mark {
  position: relative;
  color: #0A70B4;
}
.mark--red {
  color: #C40C0F;
}
.mark--cyan {
  color: #00A8EA;
}

.container {
  width: 100%;
  max-width: 124rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}
@media (max-width: 560px) {
  .container {
    padding: 0 1.6rem;
  }
}

.container--narrow {
  max-width: 92rem;
}

.container--wide {
  max-width: 144rem;
}

.section {
  position: relative;
  padding: 9.6rem 0;
}
@media (max-width: 820px) {
  .section {
    padding: 6.4rem 0;
  }
}
.section--sm {
  padding: 6.4rem 0;
}
@media (max-width: 820px) {
  .section--sm {
    padding: 4.8rem 0;
  }
}
.section--soft {
  background: #F7F8FB;
}
.section--blue {
  background: #F1F6FD;
}
.section--navy {
  background: #0F2559;
  color: rgba(255, 255, 255, 0.86);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 {
  color: #FFFFFF;
}
.section--navy .eyebrow {
  color: #00A8EA;
}
.section--dark-gradient {
  background: radial-gradient(120% 120% at 100% 0%, #1D4494 0%, #15347A 40%, #0B1C45 100%);
  color: rgba(255, 255, 255, 0.88);
}
.section--dark-gradient h1, .section--dark-gradient h2, .section--dark-gradient h3, .section--dark-gradient h4 {
  color: #FFFFFF;
}
.section--dark-gradient .eyebrow {
  color: #00A8EA;
}

.section-head {
  max-width: 76rem;
  margin-bottom: 4.8rem;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .eyebrow {
  justify-content: center;
}
.section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3.2rem;
  flex-wrap: wrap;
}
.section-head--split > div {
  max-width: 70rem;
}
.section-head p {
  margin-top: 1.6rem;
}
.section-head h2 {
  max-width: 100%;
}

.grid {
  display: grid;
  gap: 2.4rem;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1080px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6.4rem;
  align-items: center;
}
@media (max-width: 1080px) {
  .split {
    gap: 4.8rem;
  }
}
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .split--reverse .split__media {
    order: -1;
  }
}
.split--reverse .split__media {
  order: -1;
}
@media (max-width: 820px) {
  .split--reverse .split__media {
    order: -1;
  }
}

.btn {
  --bg: #15347A;
  --fg: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2.8rem;
  border-radius: 99rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid transparent;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.btn i {
  font-size: 1.4rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(21, 52, 122, 0.28);
}
.btn:hover i {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(0);
}
.btn--red {
  --bg: #C40C0F;
}
.btn--red:hover {
  box-shadow: 0 12px 28px rgba(196, 12, 15, 0.28);
  background: #A80A0C;
}
.btn--cyan {
  --bg: #00A8EA;
  --fg: #FFFFFF;
}
.btn--cyan:hover {
  background: rgb(0%, 57.2669683258%, 79.7647058824%);
  box-shadow: 0 12px 28px rgba(0, 168, 234, 0.3);
}
.btn--white {
  --bg: #FFFFFF;
  --fg: #15347A;
}
.btn--white:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.btn--outline {
  --bg: transparent;
  --fg: #15347A;
  border-color: #C5D6F0;
}
.btn--outline:hover {
  border-color: #15347A;
  box-shadow: none;
  background: #F1F6FD;
}
.btn--outline-light {
  --bg: transparent;
  --fg: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline-light:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.btn--ghost {
  --bg: transparent;
  --fg: #0A70B4;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover {
  box-shadow: none;
  transform: none;
  color: #15347A;
}
.btn--ghost:hover i {
  transform: translateX(4px);
}
.btn--whatsapp {
  --bg: #25D366;
}
.btn--whatsapp:hover {
  background: rgb(12.7194813409%, 72.5354206199%, 35.064516129%);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}
.btn--lg {
  padding: 1.8rem 3.4rem;
  font-size: 1.6rem;
}
.btn--sm {
  padding: 1.1rem 2rem;
  font-size: 1.4rem;
}
.btn--block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}
.btn-group--center {
  justify-content: center;
}

.card {
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 2.4rem;
  padding: 3.2rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
  border-color: #C5D6F0;
}
.card h3 {
  margin-bottom: 1rem;
}
.card p {
  font-size: 1.6rem;
}

.icon-box {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.6rem 1.6rem 1.6rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #15347A;
  background: #F1F6FD;
  margin-bottom: 2.4rem;
}
.icon-box--red {
  color: #C40C0F;
  background: #FCEBEB;
}
.icon-box--cyan {
  color: #0A70B4;
  background: #E3F5FD;
}
.icon-box--navy {
  color: #FFFFFF;
  background: #15347A;
}
.icon-box--sm {
  width: 4.4rem;
  height: 4.4rem;
  font-size: 1.8rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.4rem;
  border-radius: 99rem;
  background: #F1F6FD;
  color: #15347A;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge--red {
  background: #FCEBEB;
  color: #C40C0F;
}
.badge--cyan {
  background: #E3F5FD;
  color: #0A70B4;
}
.badge--light {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge--outline {
  background: transparent;
  border: 1px solid #C5D6F0;
}

.check-list {
  display: grid;
  gap: 1.2rem;
}
.check-list li {
  position: relative;
  padding-left: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.55;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #E3F5FD;
  color: #0A70B4;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.2rem;
}
@media (max-width: 820px) {
  .check-list--2col {
    grid-template-columns: 1fr;
  }
}
.check-list--light li {
  color: rgba(255, 255, 255, 0.9);
}
.check-list--light li::before {
  background: rgba(255, 255, 255, 0.14);
  color: #00A8EA;
}

.media {
  position: relative;
  border-radius: 2.4rem 2.4rem 2.4rem 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3.2;
}
.media--tall img {
  aspect-ratio: 4/4.6;
}
.media--wide img {
  aspect-ratio: 16/9;
}
.media--square img {
  aspect-ratio: 1;
}
.media--alt {
  border-radius: 2.4rem 0 2.4rem 2.4rem;
}

.float-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 1.6rem;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.4rem;
  color: #0F2559;
  z-index: 2;
}
.float-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
}
.float-card span {
  font-size: 1.25rem;
  color: #6B7787;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}
@media (max-width: 560px) {
  .float-card {
    padding: 1rem 1.2rem;
  }
  .float-card strong {
    font-size: 1.4rem;
  }
}

.accordion {
  display: grid;
  gap: 1.2rem;
}
.accordion__item {
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 1.6rem;
  overflow: hidden;
  transition: border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion__item.is-open {
  border-color: #C5D6F0;
  box-shadow: 0 1px 2px rgba(11, 28, 69, 0.06), 0 2px 8px rgba(11, 28, 69, 0.06);
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
  background: #15347A;
  color: #FFFFFF;
}
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 2rem 2.4rem;
  text-align: left;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #0F2559;
}
.accordion__icon {
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #F1F6FD;
  color: #15347A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion__panel > div {
  overflow: hidden;
}
.accordion__panel p, .accordion__panel ul {
  padding: 0 2.4rem;
}
.accordion__panel ul {
  margin-top: 1rem;
}
.is-open .accordion__panel {
  grid-template-rows: 1fr;
}
.accordion__body {
  padding-bottom: 2.4rem;
  font-size: 1.6rem;
}
.accordion__body p:first-child {
  padding-top: 0.2rem;
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.6rem;
  background: #EEF1F6;
  border-radius: 99rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 3.2rem;
}
@media (max-width: 560px) {
  .tabs__nav {
    border-radius: 1.6rem;
    width: 100%;
  }
}
.tabs__btn {
  padding: 1rem 2rem;
  border-radius: 99rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #3F4A5C;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.tabs__btn:hover {
  color: #15347A;
}
.tabs__btn.is-active {
  background: #FFFFFF;
  color: #15347A;
  box-shadow: 0 1px 2px rgba(11, 28, 69, 0.06), 0 2px 8px rgba(11, 28, 69, 0.06);
}
@media (max-width: 560px) {
  .tabs__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
.tabs__panel {
  display: none;
}
.tabs__panel.is-active {
  display: block;
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.form {
  display: grid;
  gap: 1.6rem;
}
.form__row {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 560px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form label {
  display: block;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0F2559;
  margin-bottom: 0.6rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 1.4rem 1.6rem;
  border-radius: 0.8rem;
  border: 1.5px solid #DDE3EC;
  background: #FFFFFF;
  font-size: 1.6rem;
  color: #172033;
  transition: border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.form input::placeholder, .form textarea::placeholder, .form select::placeholder {
  color: #C3CBD8;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: #0A70B4;
  box-shadow: 0 0 0 4px rgba(0, 168, 234, 0.16);
}
.form textarea {
  min-height: 14rem;
  resize: vertical;
}
.form__check {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.4rem;
  color: #6B7787;
}
.form__check input {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
  accent-color: #15347A;
}
.form__hint {
  font-size: 1.3rem;
  color: #6B7787;
}
.form__feedback {
  display: none;
  padding: 1.4rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.5rem;
}
.form__feedback.is-ok {
  display: block;
  background: rgba(31, 157, 85, 0.1);
  color: rgb(8.8589904047%, 44.8664997914%, 24.2907801418%);
}
.form__feedback.is-error {
  display: block;
  background: #FCEBEB;
  color: #C40C0F;
}

.dots-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(21, 52, 122, 0.09) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  mask-image: radial-gradient(60% 60% at 80% 20%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(60% 60% at 80% 20%, #000 0%, transparent 100%);
}

.whats-float {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 90;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.whats-float:hover {
  transform: scale(1.08);
}
.whats-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
}
@media (max-width: 560px) {
  .whats-float {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 5.4rem;
    height: 5.4rem;
    font-size: 2.6rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: #15347A;
  color: #FFFFFF;
  padding: 1rem 1.6rem;
  border-radius: 0.8rem;
  z-index: 200;
}
.skip-link:focus {
  top: 1rem;
}

.whats-float {
  gap: 1rem;
  padding: 0 2rem 0 1.4rem;
  width: auto;
  border-radius: 99rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.whats-float__label {
  font-size: 1.5rem;
}
.whats-float i {
  font-size: 2.6rem;
}
.whats-float::after {
  border-radius: 99rem;
  inset: -5px;
}
@media (max-width: 560px) {
  .whats-float {
    padding: 0;
    width: 5.6rem;
  }
  .whats-float__label {
    display: none;
  }
  .whats-float i {
    font-size: 2.8rem;
  }
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  visibility: hidden;
  pointer-events: none;
}
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 69, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lead-modal__card {
  position: relative;
  width: min(56rem, 100%);
  max-height: calc(100vh - 3.2rem);
  overflow-y: auto;
  background: #FFFFFF;
  border-radius: 3.2rem;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
  padding: 3.2rem;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
@media (max-width: 560px) {
  .lead-modal__card {
    padding: 2.4rem 2rem;
    border-radius: 2.4rem;
  }
}
.lead-modal__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #EEF1F6;
  color: #15347A;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-modal__close:hover {
  background: #15347A;
  color: #FFFFFF;
}
.lead-modal__head {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  margin-bottom: 2.4rem;
  padding-right: 3.6rem;
}
.lead-modal__head h3 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}
.lead-modal__head p {
  font-size: 1.45rem;
  color: #6B7787;
}
.lead-modal__icon {
  flex-shrink: 0;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.6rem 1.6rem 1.6rem 0.5rem;
  background: rgba(37, 211, 102, 0.14);
  color: #128C4A;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}
.lead-modal.is-open .lead-modal__backdrop {
  opacity: 1;
}
.lead-modal.is-open .lead-modal__card {
  transform: none;
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 1.2rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.6rem;
  pointer-events: none;
  transition: top 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 560px) {
  .header {
    top: 0.8rem;
    padding: 0 0.8rem;
  }
}
.header__pill {
  pointer-events: auto;
  max-width: 124rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  min-height: 7.2rem;
  padding: 0.8rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 36px rgba(11, 28, 69, 0.14);
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 560px) {
  .header__pill {
    min-height: 6.2rem;
    padding: 0.6rem;
  }
}
.header.is-scrolled .header__pill {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 16px 44px rgba(11, 28, 69, 0.2);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem 0 1.4rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__logo:hover {
  transform: translateY(-1px);
}
.header__logo img {
  height: 5rem;
  width: auto;
}
@media (max-width: 1080px) {
  .header__logo img {
    height: 4.4rem;
  }
}
@media (max-width: 560px) {
  .header__logo img {
    height: 3.8rem;
  }
}
@media (max-width: 560px) {
  .header__logo {
    padding-left: 1rem;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.header__nav > li {
  position: relative;
}
.header__nav > li > a, .header__nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem;
  border-radius: 99rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: #0F2559;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__nav > li > a i, .header__nav > li > button i {
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  color: #6B7787;
}
.header__nav > li > a:hover, .header__nav > li > a.is-active, .header__nav > li > button:hover, .header__nav > li > button.is-active {
  background: rgba(21, 52, 122, 0.08);
  color: #15347A;
}
.header__nav > li:hover > button i, .header__nav > li.is-open > button i {
  transform: rotate(180deg);
}
@media (max-width: 1080px) {
  .header__nav > li > a, .header__nav > li > button {
    padding: 0.9rem 1.1rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 960px) {
  .header__nav {
    display: none;
  }
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 27rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2.4rem;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
  padding: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: 0;
  right: 0;
  height: 1.4rem;
}
.header__dropdown li a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  border-radius: 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0F2559;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__dropdown li a i {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F6FD;
  color: #0A70B4;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.header__dropdown li a small {
  display: block;
  font-weight: 500;
  color: #6B7787;
  font-size: 1.25rem;
}
.header__dropdown li a:hover {
  background: #F1F6FD;
  color: #0A70B4;
}
.header__dropdown li + li {
  margin-top: 0.2rem;
}
.header__nav > li:hover .header__dropdown, .header__nav > li.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 560px) {
  .header__actions .btn {
    display: none;
  }
}
.header__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: 0.4rem;
}
.header__social a {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 52, 122, 0.16);
  color: #15347A;
  font-size: 1.5rem;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__social a:hover {
  background: #15347A;
  border-color: #15347A;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.header__social a.is-whats:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}
@media (max-width: 1040px) {
  .header__social a {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 960px) {
  .header__social {
    display: none;
  }
}
.header__burger {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #15347A;
  color: #FFFFFF;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 960px) {
  .header__burger {
    display: inline-flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 69, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(42rem, 92vw);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #EEF1F6;
}
.mobile-menu__head img {
  height: 3.6rem;
}
.mobile-menu__head button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #EEF1F6;
  color: #15347A;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__list {
  padding: 1.2rem 1.2rem 2rem;
}
.mobile-menu__list > li {
  border-bottom: 1px solid #EEF1F6;
}
.mobile-menu__list > li > a, .mobile-menu__list > li > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #0F2559;
  text-align: left;
}
.mobile-menu__list > li > a i, .mobile-menu__list > li > button i {
  color: #6B7787;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu__list > li.is-open > button i {
  transform: rotate(180deg);
}
.mobile-menu__list > li > a.is-active {
  color: #0A70B4;
}
.mobile-menu__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu__sub > div {
  overflow: hidden;
}
.mobile-menu__sub a {
  display: block;
  padding: 1.1rem 1rem 1.1rem 2.4rem;
  font-size: 1.55rem;
  font-weight: 600;
  color: #3F4A5C;
  border-left: 2px solid #E2EBF8;
  margin-left: 1rem;
}
.mobile-menu__sub a:hover {
  color: #0A70B4;
}
.mobile-menu__sub > div > a:last-child {
  margin-bottom: 1.2rem;
}
li.is-open .mobile-menu__sub {
  grid-template-rows: 1fr;
}
.mobile-menu__footer {
  margin-top: auto;
  padding: 2rem;
  background: #F7F8FB;
  display: grid;
  gap: 1.2rem;
}
.mobile-menu__footer p {
  font-size: 1.4rem;
  color: #6B7787;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.mobile-menu__footer p i {
  color: #0A70B4;
}
.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #15347A 0%, #1D4494 55%, #0A70B4 100%);
  color: #FFFFFF;
  padding: 6.4rem 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -12rem;
  top: -14rem;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 234, 0.45), transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  left: -8rem;
  bottom: -18rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 12, 15, 0.35), transparent 70%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #FFFFFF;
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  max-width: 60rem;
}
.cta-band p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58rem;
}

.footer {
  background: #0B1C45;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.5rem;
}
.footer__main {
  padding: 9.6rem 0 4.8rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 4.8rem;
}
@media (max-width: 1080px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.footer__brand img {
  height: 5.2rem;
  width: auto;
  margin-bottom: 2.4rem;
}
.footer__brand p {
  max-width: 34rem;
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.footer__logos span {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logos span img {
  height: 3.6rem;
  width: auto;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 99rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.footer__badges span i {
  color: #00A8EA;
}
.footer h4 {
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.footer__links li + li {
  margin-top: 1rem;
}
.footer__links a {
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__links a:hover {
  color: #FFFFFF;
  padding-left: 0.4rem;
}
.footer__contact {
  display: grid;
  gap: 1.6rem;
}
.footer__contact li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.footer__contact i {
  color: #00A8EA;
  margin-top: 0.4rem;
  width: 1.6rem;
  text-align: center;
}
.footer__contact strong {
  color: #FFFFFF;
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
}
.footer__contact a:hover {
  color: #FFFFFF;
}
.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.footer__social a {
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__social a:hover {
  background: #0A70B4;
  transform: translateY(-3px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.4rem 0;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.footer__bottom a:hover {
  color: #FFFFFF;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 80% at 100% 0%, rgba(0, 168, 234, 0.16) 0%, transparent 60%), radial-gradient(50% 60% at 0% 100%, rgba(21, 52, 122, 0.08) 0%, transparent 60%), linear-gradient(180deg, #F1F6FD 0%, #FFFFFF 100%);
  padding: 14rem 0 13rem;
}
@media (max-width: 820px) {
  .hero {
    padding: 11rem 0 10rem;
  }
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6.4rem;
  align-items: center;
  position: relative;
}
@media (max-width: 1080px) {
  .hero .container {
    gap: 3.2rem;
  }
}
@media (max-width: 820px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__content h1 {
  margin: 1.4rem 0 2rem;
  max-width: 62rem;
}
.hero__content .lead {
  max-width: 56rem;
}
.hero__content .btn-group {
  margin-top: 3.2rem;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid #E2EBF8;
  font-size: 1.4rem;
  color: #6B7787;
}
.hero__proof strong {
  color: #0F2559;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}
.hero__proof-logos {
  display: flex;
  gap: 0.6rem;
}
.hero__proof-logos span {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  box-shadow: 0 1px 2px rgba(11, 28, 69, 0.06), 0 2px 8px rgba(11, 28, 69, 0.06);
}
.hero__proof-logos span:nth-child(1) {
  background: #15347A;
}
.hero__proof-logos span:nth-child(2) {
  background: #0A70B4;
  margin-left: -1.2rem;
}
.hero__proof-logos span:nth-child(3) {
  background: #C40C0F;
  margin-left: -1.2rem;
}
.hero__visual {
  position: relative;
  z-index: 1;
  padding: 2rem 3rem 3rem 0;
}
@media (max-width: 820px) {
  .hero__visual {
    padding: 0 0 3rem 0;
    max-width: 56rem;
  }
}
.hero__img {
  position: relative;
  border-radius: 3.2rem 3.2rem 3.2rem 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/4.4;
}
@media (max-width: 820px) {
  .hero__img img {
    aspect-ratio: 4/3.4;
  }
}
.hero__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 28, 69, 0.35) 100%);
}
.hero__shape {
  position: absolute;
  right: 0;
  top: -1rem;
  width: 62%;
  height: 62%;
  border-radius: 3.2rem 3.2rem 0 3.2rem;
  background: linear-gradient(135deg, #15347A, #0A70B4);
  z-index: -1;
  opacity: 0.95;
}
.hero__shape--red {
  left: -2rem;
  bottom: 0;
  top: auto;
  right: auto;
  width: 40%;
  height: 34%;
  border-radius: 3.2rem 0 3.2rem 3.2rem;
  background: #C40C0F;
  opacity: 0.9;
}
.hero .float-card--a {
  top: 3.6rem;
  left: -3rem;
  animation: floatY 6s ease-in-out infinite;
}
@media (max-width: 820px) {
  .hero .float-card--a {
    left: 0;
  }
}
.hero .float-card--b {
  bottom: 6rem;
  right: 0;
  animation: floatY 7s ease-in-out infinite reverse;
}
@media (max-width: 560px) {
  .hero .float-card--b {
    bottom: 4rem;
  }
}
.hero .float-card--c {
  bottom: -1.4rem;
  left: 20%;
}
@media (max-width: 820px) {
  .hero .float-card--c {
    display: none;
  }
}

.stats {
  position: relative;
  z-index: 3;
  padding: 0 2.4rem;
  margin-top: -7.2rem;
}
@media (max-width: 560px) {
  .stats {
    padding: 0 1.6rem;
    margin-top: -6rem;
  }
}
.stats__card {
  position: relative;
  max-width: 124rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 2.8rem;
  background: linear-gradient(120deg, #0B1C45 0%, #15347A 45%, #1D4494 100%);
  box-shadow: 0 30px 70px -20px rgba(21, 52, 122, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
}
.stats__card::before {
  content: "";
  position: absolute;
  right: -12rem;
  top: -16rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 234, 0.45), transparent 65%);
  pointer-events: none;
}
.stats__card::after {
  content: "";
  position: absolute;
  left: -10rem;
  bottom: -20rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 12, 15, 0.35), transparent 65%);
  pointer-events: none;
}
@media (max-width: 1080px) {
  .stats__card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .stats__card {
    grid-template-columns: 1fr;
    border-radius: 2.4rem;
  }
}
.stats__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem 2.4rem;
  border-radius: 2rem;
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats__item:hover {
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 1080px) {
  .stats__item {
    padding: 2rem;
  }
}
.stats__item .icon-box {
  margin: 0;
  flex-shrink: 0;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.6rem 1.6rem 1.6rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #00A8EA;
  font-size: 2rem;
}
.stats__item .num {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 3vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stats__item .num small {
  font-size: 0.5em;
  color: #00A8EA;
  font-weight: 800;
  margin-left: 0.2rem;
}
.stats__item p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.35rem;
  line-height: 1.35;
}

.why .grid {
  gap: 2rem;
}
.why__card {
  position: relative;
  padding: 3.2rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 2.4rem;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.why__card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #15347A, #00A8EA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
  border-color: #C5D6F0;
}
.why__card:hover::after {
  transform: scaleX(1);
}
.why__card h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}
.why__card p {
  font-size: 1.55rem;
  color: #6B7787;
}
.why__card .num {
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #C3CBD8;
}

.courses__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 46rem;
  border-radius: 2.4rem;
  overflow: hidden;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
  isolation: isolate;
}
.courses__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -2;
}
.courses__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 28, 69, 0.05) 0%, rgba(11, 28, 69, 0.55) 55%, rgba(11, 28, 69, 0.92) 100%);
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.courses__card:hover img {
  transform: scale(1.06);
}
.courses__card__top {
  padding: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.courses__card__body {
  margin-top: auto;
  padding: 2.4rem 3.2rem 3.2rem;
}
.courses__card__body h3 {
  color: #FFFFFF;
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}
.courses__card__body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.5rem;
  max-width: 34rem;
}
.courses__card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.6rem 0 2rem;
}
.courses__card__meta span {
  font-size: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.courses__card .flag {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.courses__card .btn {
  align-self: flex-start;
}
.courses__phases {
  margin-top: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.courses__phases > span {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: #0F2559;
  font-size: 1.4rem;
  margin-right: 0.6rem;
}
.courses__phases a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.6rem;
  border-radius: 99rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0F2559;
  transition: border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.courses__phases a small {
  color: #6B7787;
  font-weight: 600;
}
.courses__phases a:hover {
  border-color: #0A70B4;
  color: #0A70B4;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(11, 28, 69, 0.06), 0 2px 8px rgba(11, 28, 69, 0.06);
}

.method__points {
  display: grid;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.method__point {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  padding: 1.8rem 2rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.method__point:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}
.method__point .icon-box {
  margin: 0;
  background: rgba(0, 168, 234, 0.16);
  color: #00A8EA;
}
.method__point h4 {
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}
.method__point p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}
.method__media {
  position: relative;
}
.method__media .media {
  border-radius: 2.4rem 0 2.4rem 2.4rem;
}
.method__media .float-card {
  background: #FFFFFF;
}
.method__word {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
}
@media (max-width: 560px) {
  .method__word {
    grid-template-columns: repeat(2, 1fr);
  }
}
.method__word span {
  text-align: center;
  padding: 1.4rem 0.6rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #00A8EA;
}
.method__word span small {
  display: block;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.pillars .grid {
  gap: 2.4rem;
}
.pillars__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2.4rem;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  min-height: 40rem;
}
@media (max-width: 560px) {
  .pillars__card {
    grid-template-columns: 1fr;
  }
}
.pillars__card__media {
  position: relative;
}
.pillars__card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 24rem;
}
.pillars__card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0));
}
.pillars__card__body {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pillars__card__body h3 {
  font-size: 2.4rem;
  margin: 1.2rem 0 1rem;
}
.pillars__card__body p {
  font-size: 1.55rem;
}
.pillars__card__body .btn {
  margin-top: 2.4rem;
  align-self: flex-start;
}
.pillars__card--navy {
  background: #15347A;
  border-color: #15347A;
  color: rgba(255, 255, 255, 0.85);
}
.pillars__card--navy h3 {
  color: #FFFFFF;
}
.pillars__card--navy .eyebrow {
  color: #00A8EA;
}
.pillars__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  border-radius: 1.4rem;
  background: #15347A;
  margin-bottom: 1.6rem;
  align-self: flex-start;
}
.pillars__logo img {
  height: 4.4rem;
  width: auto;
}
.pillars__card--navy .pillars__logo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.pillars__card--navy .pillars__logo img {
  height: 5.6rem;
}
.pillars__levels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.pillars__levels span {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  background: #F1F6FD;
  color: #15347A;
}
.pillars__card--navy .pillars__levels span {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.spaces__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(30rem, 1fr);
  gap: 2rem;
  overflow-x: auto;
  padding: 0.4rem 0.4rem 2.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #C5D6F0 transparent;
}
.spaces__scroller::-webkit-scrollbar {
  height: 6px;
}
.spaces__scroller::-webkit-scrollbar-thumb {
  background: #C5D6F0;
  border-radius: 6px;
}
@media (min-width: 1321px) {
  .spaces__scroller {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
}
.spaces__card {
  scroll-snap-align: start;
  border-radius: 2.4rem;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.spaces__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
}
.spaces__card:hover img {
  transform: scale(1.05);
}
.spaces__card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.spaces__card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.spaces__card__img .icon-box {
  position: absolute;
  left: 1.6rem;
  bottom: -2.4rem;
  margin: 0;
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
  background: #FFFFFF;
}
.spaces__card__body {
  padding: 3.6rem 2.4rem 2.4rem;
}
.spaces__card__body h3 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}
.spaces__card__body p {
  font-size: 1.5rem;
  color: #6B7787;
}

.app {
  overflow-x: clip;
}
.app__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3.2rem;
}
@media (max-width: 560px) {
  .app__features {
    grid-template-columns: 1fr;
  }
}
.app__feature {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-radius: 1.6rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  font-size: 1.45rem;
  font-weight: 600;
  color: #0F2559;
}
.app__feature .icon-box {
  margin: 0;
}
.app__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}
.app__platforms span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.6rem;
  border-radius: 99rem;
  background: #0B1C45;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
}
.app__platforms span i {
  font-size: 1.6rem;
}
.app__phone {
  position: relative;
  width: min(32rem, 80%);
  margin: 0 auto;
  aspect-ratio: 9/18.5;
  border-radius: 4.4rem;
  background: #0B1C45;
  padding: 1.2rem;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.app__phone::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 2.6rem;
  background: #0B1C45;
  border-radius: 0 0 1.6rem 1.6rem;
  z-index: 3;
}
.app__phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 3.4rem;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
}
.app__phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.app__phone__ui {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 52, 122, 0.15), rgba(11, 28, 69, 0.85) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.8rem;
}
.app__phone__ui > div {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0F2559;
}
.app__phone__ui > div i {
  color: #0A70B4;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: #F1F6FD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.app__phone__ui > div small {
  display: block;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  color: #6B7787;
  font-size: 1.1rem;
}
.app__blob {
  position: absolute;
  inset: 8% -10% auto;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 168, 234, 0.35), rgba(21, 52, 122, 0.08) 60%, transparent 80%);
  z-index: -1;
  filter: blur(20px);
}

.exchange-teaser {
  position: relative;
  border-radius: 3.2rem;
  overflow: hidden;
  min-height: 48rem;
  display: flex;
  align-items: flex-end;
  color: #FFFFFF;
  isolation: isolate;
}
.exchange-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: -2;
}
.exchange-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 28, 69, 0.9) 0%, rgba(11, 28, 69, 0.5) 55%, rgba(11, 28, 69, 0.15) 100%);
}
.exchange-teaser__body {
  padding: 4.8rem;
  max-width: 62rem;
}
.exchange-teaser__body h2 {
  color: #FFFFFF;
  margin: 1.2rem 0 1.6rem;
}
.exchange-teaser__body p {
  color: rgba(255, 255, 255, 0.85);
}
.exchange-teaser__body .btn-group {
  margin-top: 2.4rem;
}
@media (max-width: 560px) {
  .exchange-teaser__body {
    padding: 3.2rem 2.4rem;
  }
}
.exchange-teaser__partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.exchange-teaser__partners span {
  font-size: 1.3rem;
  padding: 0.6rem 1.2rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.langs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 820px) {
  .langs-strip {
    grid-template-columns: 1fr;
  }
}
.langs-strip a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 1.6rem;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.langs-strip a strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: #0F2559;
  font-size: 1.7rem;
}
.langs-strip a small {
  color: #6B7787;
  font-size: 1.35rem;
}
.langs-strip a .flag {
  font-size: 2.6rem;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.4rem;
  background: #F1F6FD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.langs-strip a i.fa-arrow-right {
  margin-left: auto;
  color: #C3CBD8;
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.langs-strip a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
  border-color: #C5D6F0;
}
.langs-strip a:hover i.fa-arrow-right {
  color: #0A70B4;
  transform: translateX(4px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(90% 120% at 100% 0%, #1D4494 0%, #15347A 45%, #0B1C45 100%);
  color: #FFFFFF;
  padding: 14rem 0 9.6rem;
}
@media (max-width: 820px) {
  .page-hero {
    padding: 11rem 0 6.4rem;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(70% 90% at 90% 10%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 90% at 90% 10%, #000, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -20rem;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 234, 0.32), transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero--split .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6.4rem;
  align-items: center;
}
@media (max-width: 820px) {
  .page-hero--split .container {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.page-hero h1 {
  color: #FFFFFF;
  margin: 1.4rem 0 1.8rem;
  max-width: 70rem;
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 62rem;
}
.page-hero .eyebrow {
  color: #00A8EA;
}
.page-hero .btn-group {
  margin-top: 3.2rem;
}
.page-hero__media {
  position: relative;
}
.page-hero__media .media {
  border-radius: 2.4rem 2.4rem 2.4rem 0;
}
.page-hero__media .media img {
  aspect-ratio: 5/4;
}
@media (max-width: 820px) {
  .page-hero__media {
    max-width: 54rem;
  }
}
.page-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a:hover {
  color: #FFFFFF;
}
.breadcrumb i {
  font-size: 1rem;
}
.breadcrumb span:last-child {
  color: #00A8EA;
  font-weight: 600;
}

.timeline {
  position: relative;
  display: grid;
  gap: 2.4rem;
  padding-left: 3.6rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(180deg, #C40C0F, #15347A, #00A8EA);
  border-radius: 2px;
}
.timeline__item {
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -3.2rem;
  top: 0.4rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #15347A;
  box-shadow: 0 0 0 4px rgba(0, 168, 234, 0.2);
}
.timeline__item span {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  color: #0A70B4;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline__item h4 {
  margin: 0.4rem 0 0.6rem;
}
.timeline__item p {
  font-size: 1.55rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1080px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}
.values__card {
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.values__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
}
.values__card h3 {
  font-size: 1.8rem;
  margin: 1.6rem 0 0.6rem;
}
.values__card p {
  font-size: 1.5rem;
  color: #6B7787;
}
.values__card .icon-box {
  margin-bottom: 0;
}

.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1080px) {
  .mvv {
    grid-template-columns: 1fr;
  }
}
.mvv__card {
  position: relative;
  padding: 3.2rem;
  border-radius: 2.4rem;
  color: #FFFFFF;
  overflow: hidden;
  min-height: 30rem;
  display: flex;
  flex-direction: column;
}
.mvv__card::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.mvv__card h3 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin: 1.4rem 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mvv__card h3 i {
  font-size: 1.8rem;
  opacity: 0.8;
}
.mvv__card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.55rem;
}
.mvv__card span.tag {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.mvv__card--navy {
  background: linear-gradient(145deg, #15347A, #0B1C45);
}
.mvv__card--blue {
  background: linear-gradient(145deg, #0A70B4, #1D4494);
}
.mvv__card--red {
  background: linear-gradient(145deg, #C40C0F, rgb(54.2473604827%, 3.3212669683%, 4.1515837104%));
}

.diff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (max-width: 820px) {
  .diff-list {
    grid-template-columns: 1fr;
  }
}
.diff-list__item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  padding: 2rem 2.2rem;
  border-radius: 1.6rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  transition: border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.diff-list__item:hover {
  border-color: #C5D6F0;
  box-shadow: 0 1px 2px rgba(11, 28, 69, 0.06), 0 2px 8px rgba(11, 28, 69, 0.06);
}
.diff-list__item .icon-box {
  margin: 0;
}
.diff-list__item h4 {
  margin-bottom: 0.4rem;
  font-size: 1.65rem;
}
.diff-list__item p {
  font-size: 1.5rem;
  color: #6B7787;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 820px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.gallery figure {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #15347A;
}
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4rem 2rem 2rem;
  color: #FFFFFF;
  background: linear-gradient(180deg, transparent, rgba(11, 28, 69, 0.9));
}
.gallery figure figcaption h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}
.gallery figure figcaption p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
.gallery figure:hover img {
  transform: scale(1.06);
}
.gallery figure.is-wide {
  grid-column: span 2;
}
@media (max-width: 560px) {
  .gallery figure.is-wide {
    grid-column: span 1;
  }
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1080px) {
  .phase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .phase-grid {
    grid-template-columns: 1fr;
  }
}

.phase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 2.4rem;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 28, 69, 0.1);
  border-color: #C5D6F0;
}
.phase-card:hover img {
  transform: scale(1.05);
}
.phase-card:hover .btn i {
  transform: translateX(4px);
}
.phase-card__img {
  position: relative;
  aspect-ratio: 16/9.5;
  overflow: hidden;
}
.phase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.phase-card__img .badge {
  position: absolute;
  left: 1.6rem;
  top: 1.6rem;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(11, 28, 69, 0.06), 0 2px 8px rgba(11, 28, 69, 0.06);
}
.phase-card__body {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.phase-card__body h3 {
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
}
.phase-card__body p {
  font-size: 1.5rem;
  color: #6B7787;
}
.phase-card__body .btn {
  margin-top: auto;
  padding-top: 1.6rem;
  align-self: flex-start;
}
.phase-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
}
.phase-card__meta span {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 0.6rem;
  background: #F1F6FD;
  color: #15347A;
}
.phase-card--highlight {
  border-color: #15347A;
  box-shadow: 0 16px 40px rgba(21, 52, 122, 0.28);
}

.level-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1080px) {
  .level-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .level-steps {
    grid-template-columns: 1fr;
  }
}
.level-steps__item {
  position: relative;
  padding: 2.4rem;
  border-radius: 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
}
.level-steps__item .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem 1.2rem 1.2rem 0.3rem;
  background: #15347A;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 1.6rem;
}
.level-steps__item h4 {
  margin-bottom: 0.6rem;
}
.level-steps__item p {
  font-size: 1.45rem;
  color: #6B7787;
}
.level-steps__item .cefr {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  color: #00A8EA;
  font-size: 1.4rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1080px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}
.info-cards__card {
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
}
.info-cards__card h3 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.9rem;
  margin-bottom: 1.4rem;
}
.info-cards__card h3 .icon-box {
  margin: 0;
}
.info-cards__card p {
  font-size: 1.5rem;
}
.info-cards__card ul {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}
.info-cards__card ul li {
  font-size: 1.5rem;
  display: flex;
  gap: 0.8rem;
}
.info-cards__card ul li i {
  color: #0A70B4;
  margin-top: 0.4rem;
  font-size: 1.2rem;
}
.info-cards__card--navy {
  background: #15347A;
  border-color: #15347A;
  color: rgba(255, 255, 255, 0.86);
}
.info-cards__card--navy h3 {
  color: #FFFFFF;
}
.info-cards__card--navy ul li i {
  color: #00A8EA;
}
.info-cards__card--navy .icon-box {
  background: rgba(255, 255, 255, 0.12);
  color: #00A8EA;
}

.cert-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.2rem;
}
@media (max-width: 820px) {
  .cert-path {
    grid-template-columns: 1fr;
  }
}
.cert-path__item {
  padding: 2.4rem;
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cert-path__item span {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  color: #00A8EA;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.cert-path__item h4 {
  color: #FFFFFF;
  font-size: 1.9rem;
  margin: 0.6rem 0 0.4rem;
}
.cert-path__item p {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.75);
}
.cert-path__item strong {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.8rem;
  background: #FFFFFF;
  color: #15347A;
  font-size: 1.35rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.skills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 820px) {
  .skills {
    grid-template-columns: repeat(2, 1fr);
  }
}
.skills__item {
  text-align: center;
  padding: 2.4rem 1.6rem;
  border-radius: 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
}
.skills__item .icon-box {
  margin: 0 auto 1.4rem;
}
.skills__item h4 {
  margin-bottom: 0.4rem;
}
.skills__item p {
  font-size: 1.4rem;
  color: #6B7787;
}

.other-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.other-phases a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.8rem;
  border-radius: 99rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0F2559;
  transition: border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.other-phases a small {
  color: #6B7787;
  font-weight: 600;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}
.other-phases a:hover {
  border-color: #0A70B4;
  color: #0A70B4;
  transform: translateY(-2px);
}
.other-phases a.is-current {
  background: #15347A;
  border-color: #15347A;
  color: #FFFFFF;
}
.other-phases a.is-current small {
  color: rgba(255, 255, 255, 0.7);
}

.exam-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 2.4rem;
  border: 1px solid #DDE3EC;
  background: #FFFFFF;
  font-size: 1.5rem;
}
.exam-table th, .exam-table td {
  padding: 1.6rem 2rem;
  text-align: left;
  border-bottom: 1px solid #EEF1F6;
}
.exam-table th {
  background: #15347A;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.exam-table tr:last-child td {
  border-bottom: 0;
}
.exam-table td strong {
  color: #0F2559;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}
.exam-table .cefr {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 0.6rem;
  background: #E3F5FD;
  color: #0A70B4;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
}
@media (max-width: 560px) {
  .exam-table th:nth-child(3), .exam-table td:nth-child(3) {
    display: none;
  }
}

.table-wrap {
  overflow-x: auto;
}

.unesco-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1080px) {
  .unesco-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .unesco-pillars {
    grid-template-columns: 1fr;
  }
}
.unesco-pillars__item {
  padding: 2.4rem;
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.unesco-pillars__item .icon-box {
  margin: 0 auto 1.4rem;
  background: rgba(0, 168, 234, 0.16);
  color: #00A8EA;
}
.unesco-pillars__item h4 {
  color: #FFFFFF;
}
.unesco-pillars__item p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

.trip-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 820px) {
  .trip-highlights {
    grid-template-columns: 1fr;
  }
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}
.partners-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: 1.6rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: #0F2559;
  font-size: 1.5rem;
}
.partners-row span i {
  color: #0A70B4;
}

.quiz {
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 3.2rem;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
  overflow: hidden;
}
.quiz__head {
  padding: 2rem 3.2rem;
  background: #15347A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.quiz__head strong {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
}
.quiz__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding: 0.6rem 1.2rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.12);
}
.quiz__timer i {
  color: #00A8EA;
}
.quiz__timer.is-warning {
  background: #C40C0F;
}
.quiz__progress {
  height: 6px;
  background: #EEF1F6;
}
.quiz__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0A70B4, #00A8EA);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz__body {
  padding: 3.2rem 3.2rem;
}
@media (max-width: 560px) {
  .quiz__body {
    padding: 2.4rem 2rem;
  }
}
.quiz__step {
  display: none;
}
.quiz__step.is-active {
  display: block;
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz__q {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 700;
  color: #0F2559;
  margin: 0.8rem 0 2.4rem;
  line-height: 1.35;
}
.quiz__q .blank {
  display: inline-block;
  min-width: 7rem;
  border-bottom: 3px solid #00A8EA;
  margin: 0 0.3rem;
  vertical-align: bottom;
}
.quiz__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 560px) {
  .quiz__options {
    grid-template-columns: 1fr;
  }
}
.quiz__opt {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  border-radius: 1.6rem;
  border: 2px solid #DDE3EC;
  background: #FFFFFF;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
  color: #3F4A5C;
  transition: border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.quiz__opt span.key {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: #EEF1F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #15347A;
  flex-shrink: 0;
}
.quiz__opt:hover {
  border-color: #C5D6F0;
  transform: translateY(-2px);
}
.quiz__opt.is-selected {
  border-color: #15347A;
  background: #F1F6FD;
  color: #0F2559;
}
.quiz__opt.is-selected span.key {
  background: #15347A;
  color: #FFFFFF;
}
.quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
  flex-wrap: wrap;
}
.quiz__nav small {
  color: #6B7787;
  font-size: 1.35rem;
}
.quiz__result {
  text-align: center;
  padding: 2.4rem 0;
}
.quiz__result .score {
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 800;
  color: #15347A;
  line-height: 1;
}
.quiz__result .score small {
  font-size: 0.4em;
  color: #6B7787;
  font-weight: 700;
}
.quiz__result .level {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 1.6rem 0;
  padding: 1rem 2rem;
  border-radius: 99rem;
  background: #E3F5FD;
  color: #0A70B4;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
}
.quiz__result p {
  max-width: 56rem;
  margin: 0 auto;
}
.quiz__result .btn-group {
  margin-top: 2.4rem;
}
.quiz__intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 560px) {
  .quiz__intro-grid {
    grid-template-columns: 1fr;
  }
}
.quiz__intro-grid div {
  padding: 1.4rem 1.6rem;
  border-radius: 1.6rem;
  background: #F7F8FB;
  border: 1px solid #DDE3EC;
  font-size: 1.4rem;
  color: #6B7787;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.quiz__intro-grid div i {
  color: #0A70B4;
  font-size: 1.6rem;
}
.quiz__intro-grid div strong {
  display: block;
  color: #0F2559;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
@media (max-width: 820px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}
.how-steps__item {
  position: relative;
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
}
.how-steps__item::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 5.6rem;
  line-height: 1;
  color: #E2EBF8;
  position: absolute;
  right: 2rem;
  top: 1.6rem;
}
.how-steps__item .icon-box {
  margin-bottom: 1.6rem;
}
.how-steps__item h3 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}
.how-steps__item p {
  font-size: 1.5rem;
  color: #6B7787;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.8rem;
  align-items: start;
}
@media (max-width: 1080px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 3.2rem;
  padding: 4.8rem;
  box-shadow: 0 24px 60px rgba(11, 28, 69, 0.16);
}
@media (max-width: 560px) {
  .contact-card {
    padding: 2.4rem;
  }
}
.contact-card h2 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}
.contact-card > p {
  color: #6B7787;
  margin-bottom: 2.4rem;
  font-size: 1.55rem;
}

.contact-info {
  display: grid;
  gap: 1.6rem;
}
.contact-info__item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  padding: 2rem 2.2rem;
  border-radius: 2.4rem;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
}
.contact-info__item .icon-box {
  margin: 0;
}
.contact-info__item h4 {
  margin-bottom: 0.4rem;
}
.contact-info__item p, .contact-info__item a {
  font-size: 1.5rem;
  color: #3F4A5C;
  display: block;
}
.contact-info__item a:hover {
  color: #0A70B4;
}
.contact-info__item small {
  color: #6B7787;
  font-size: 1.3rem;
}

.units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 820px) {
  .units {
    grid-template-columns: 1fr;
  }
}
.units__card {
  border-radius: 2.4rem;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #DDE3EC;
}
.units__card iframe {
  width: 100%;
  height: 26rem;
  border: 0;
  display: block;
  filter: saturate(0.9);
}
.units__card__body {
  padding: 2.4rem;
}
.units__card__body h3 {
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.units__card__body h3 .badge {
  font-size: 1.15rem;
}
.units__card__body p {
  font-size: 1.5rem;
}
.units__card__body .btn {
  margin-top: 1.6rem;
}

.hours {
  display: grid;
  gap: 1rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed #DDE3EC;
  font-size: 1.5rem;
}
.hours li strong {
  color: #0F2559;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}
.hours li:last-child {
  border-bottom: 0;
}

.two-col-text {
  columns: 2;
  column-gap: 4.8rem;
  font-size: 1.6rem;
}
.two-col-text p {
  break-inside: avoid;
}
@media (max-width: 820px) {
  .two-col-text {
    columns: 1;
  }
}

.note {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.8rem 2.2rem;
  border-radius: 1.6rem;
  background: #E3F5FD;
  color: #0F2559;
  font-size: 1.5rem;
  border-left: 4px solid #00A8EA;
}
.note i {
  color: #0A70B4;
  margin-top: 0.3rem;
}
.note--red {
  background: #FCEBEB;
  border-left-color: #C40C0F;
}
.note--red i {
  color: #C40C0F;
}
