﻿/* Public portal styles without Bootstrap 3 (landing + Open with Bootstrap 5). */
/* VARIABLES */
.landing-three-cards {
  padding-top: 56px;
  padding-bottom: 24px;
}
.landing-three-cards .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  .landing-three-cards .cards-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
/* When nested inside a band, drop the standalone padding */
.landing-band .landing-three-cards,
.landing-about .landing-three-cards {
  padding-top: 0;
  padding-bottom: 0;
}
.landing-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  background-color: #ffffff;
  border: 1px solid #d3d9de;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Onest', 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.landing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06), 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}
.landing-card .card-top,
.landing-card > .card-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  height: auto;
  min-height: 0;
  color: inherit;
  border-radius: 0;
}
.landing-card .category-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.landing-card .category-icon > svg {
  width: 28px;
  height: 28px;
}
.landing-card .card-body {
  padding: 20px 24px 8px;
  flex: 1 1 auto;
}
.landing-card .title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  font-family: inherit;
}
.landing-card .abstract {
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}
.landing-card .abstract .btn-link {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}
.landing-card .abstract a {
  color: #2563eb;
  font-weight: 500;
}
.landing-card .abstract a:hover {
  text-decoration: underline;
}
.landing-card .abstract ol,
.landing-card .abstract ul {
  padding-left: 20px;
  margin: 8px 0;
}
.landing-card .card-footer {
  margin-top: auto;
  padding: 16px 24px 24px;
  background: transparent;
  border: 0;
  text-align: left;
}
.landing-card .card-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  font-family: inherit;
  letter-spacing: 0.1px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.landing-card .card-button:hover,
.landing-card .card-button:focus {
  background-color: #1d4ed8;
  color: #fff;
  text-decoration: underline;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.landing-card .card-button i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.landing-card .card-button:hover i {
  transform: translateX(3px);
}
.landing-card.blue .category-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.landing-card.blue .card-button {
  background-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.landing-card.blue .card-button:hover,
.landing-card.blue .card-button:focus {
  background-color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.landing-card.blue .abstract a,
.landing-card.blue .abstract .btn-link {
  color: #2563eb;
}
.landing-card.gold .category-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.landing-card.gold .card-button {
  background-color: #d97706;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}
.landing-card.gold .card-button:hover,
.landing-card.gold .card-button:focus {
  background-color: #bb6705;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
}
.landing-card.gold .abstract a,
.landing-card.gold .abstract .btn-link {
  color: #d97706;
}
.landing-card.red .category-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.landing-card.red .card-button {
  background-color: #dc2626;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}
.landing-card.red .card-button:hover,
.landing-card.red .card-button:focus {
  background-color: #c42020;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}
.landing-card.red .abstract a,
.landing-card.red .abstract .btn-link {
  color: #dc2626;
}
@media screen and (max-width: 900px) {
  .landing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* COUNTER inside blue card (informative only â€” action via card-footer button) */
.landing-card .counter {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  color: #0f172a;
  text-align: right;
  line-height: 1.1;
  font-family: inherit;
  cursor: default;
  user-select: none;
}
.landing-card .counter .big {
  font-size: 32px;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.2s ease;
}
.landing-card .counter .counter-details {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 500;
}
.landing-card .counter .counter-details > div {
  margin-top: 2px;
  color: #334155;
}
.landing-card .counter .counter-details > div strong {
  color: #0f172a;
  font-weight: 700;
}
/* SEARCH inside blue card */
.search-wrapper {
  position: relative;
  display: block;
  margin: 8px 0 16px;
  /* Wrapper height equals input height so the button can use top:50% reliably */
}
.search-wrapper .form-control {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 56px 0 18px;
  margin: 0;
  border: 1px solid #d3d9de;
  border-radius: 999px;
  background-color: #f8fafc;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: #0f172a;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.search-wrapper .form-control:focus {
  outline: none;
  border-color: #2563eb;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.search-wrapper .btn-search {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: #2563eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M508.5 481.6l-129-129c-2.3-2.3-5.3-3.5-8.5-3.5h-10.3C395 312 416 262.5 416 208 416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c54.5 0 104-21 141.1-55.2V371c0 3.2 1.3 6.2 3.5 8.5l129 129c4.7 4.7 12.3 4.7 17 0l9.9-9.9c4.7-4.7 4.7-12.3 0-17zM208 384c-97.3 0-176-78.7-176-176S110.7 32 208 32s176 78.7 176 176-78.7 176-176 176z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.search-wrapper .btn-search:hover {
  background-color: #1d4ed8;
  transform: translateY(-50%) scale(1.05);
}
.search-wrapper .btn-search:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}
.search-wrapper ::-webkit-input-placeholder {
  color: #64748b;
}
.search-wrapper :-ms-input-placeholder {
  color: #64748b;
}
.search-wrapper ::placeholder {
  color: #64748b;
}
/* SIDE COLUMN compact variant */
.side-column .landing-card {
  flex: 0 0 100%;
  max-width: 100%;
}
.side-column .landing-card .card-top,
.side-column .landing-card > .card-header {
  padding: 20px 20px 0;
}
.side-column .landing-card .category-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
}
.side-column .landing-card .category-icon > svg {
  width: 22px;
  height: 22px;
}
.side-column .landing-card .card-body {
  padding: 14px 20px 8px;
}
.side-column .landing-card .title {
  font-size: 17px;
  margin-bottom: 8px;
}
.side-column .landing-card .display-items-list {
  margin: 0;
}
.side-column .landing-card .display-items-list > li {
  padding: 0;
}
/* Inline links in body copy: WCAG AA contrast + not color-only */
/* ============ HERO ============ */
.landing-hero {
  position: relative;
  background: linear-gradient(135deg, #eef4ff 0%, #f8fafc 100%);
  overflow: hidden;
  padding: 44px 0 52px;
  /* Visual side ------- */
}
.landing-hero__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  box-sizing: border-box;
}
.landing-hero__content {
  text-align: left;
}
.landing-hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 999px;
}
.landing-hero__title {
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 18px;
}
.landing-hero__lead {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: #334155;
}
.landing-hero__lead a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}
.landing-hero__lead a:hover,
.landing-hero__lead a:focus {
  color: #0f172a;
}
.landing-hero__lead a:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
  border-radius: 2px;
}
.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.landing-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.landing-hero__stat {
  text-align: left;
  display: flex;
  flex-direction: column-reverse;
}
.landing-hero__stat dd,
.landing-hero__stat-value {
  margin: 0 0 2px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
  color: #2563eb;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.landing-hero__stat dt {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: #64748b;
  text-transform: none;
}
.landing-hero__visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-hero__blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0.08) 50%, rgba(37, 99, 235, 0.02) 80%);
  z-index: 0;
}
.landing-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  z-index: 0;
}
.landing-hero__dot--1 {
  width: 12px;
  height: 12px;
  top: 12%;
  right: 22%;
}
.landing-hero__dot--2 {
  width: 8px;
  height: 8px;
  bottom: 18%;
  left: 18%;
  background: rgba(245, 158, 11, 0.35);
}
.landing-hero__visual-main {
  position: relative;
  z-index: 2;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
  color: #2563eb;
}
.landing-hero__visual-main > svg {
  fill: currentColor;
}
.landing-hero__floater {
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}
.landing-hero__floater > svg {
  fill: currentColor;
}
.landing-hero__floater--1 {
  top: 6%;
  left: 8%;
  color: #059669;
  animation: heroFloat 6s ease-in-out infinite;
}
.landing-hero__floater--2 {
  top: 14%;
  right: 6%;
  color: #c08d00;
  animation: heroFloat 6s ease-in-out infinite 1.5s;
}
.landing-hero__floater--3 {
  bottom: 14%;
  left: 4%;
  color: #2563eb;
  animation: heroFloat 6s ease-in-out infinite 3s;
}
.landing-hero__floater--4 {
  bottom: 6%;
  right: 10%;
  width: 52px;
  height: 52px;
  color: #7c3aed;
  animation: heroFloat 6s ease-in-out infinite 4.5s;
}
@media (max-width: 992px) {
  .landing-hero {
    padding: 36px 0 40px;
  }
  .landing-hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .landing-hero__visual {
    height: 280px;
    order: -1;
  }
  .landing-hero__visual-main {
    width: 140px;
    height: 140px;
  }
  .landing-hero__floater {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 576px) {
  .landing-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-hero__actions .btn-portal {
    justify-content: center;
  }
  .landing-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    justify-items: stretch;
    align-items: start;
    text-align: center;
  }

  .landing-hero__stat {
    text-align: center;
    align-items: center;
    width: 100%;
    /* keep desktop column-reverse: dd (number) on top, dt (label) below */
  }

  .landing-hero__stat dd,
  .landing-hero__stat-value {
    font-size: 24px;
    margin: 0 0 4px;
  }

  .landing-hero__stat dt {
    font-size: 11px;
    line-height: 1.25;
    /* reserves 2 lines so all 3 columns end at the same baseline */
    min-height: 2.5em;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* ============ BANDS ============ */
.landing-band {
  padding: 44px 0;
}
.landing-band--white {
  background: #fff;
}
.landing-band--gray {
  background: #f6f6f7;
}
.landing-band__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.landing-band__head {
  margin-bottom: 28px;
  text-align: left;
}
.landing-band__title {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: 'Onest', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.landing-band__title:before {
  content: none;
  display: none;
}
@media (max-width: 576px) {
  .landing-band {
    padding: 36px 0;
  }
  .landing-band__head {
    margin-bottom: 20px;
  }
}
/* ============ LEGACY LANDING-ABOUT (kept for icon/card/grid/highlight styles) ============ */
.landing-about {
  /* 2-column About layout */
  /* Right-side "Principles" panel */
}
.landing-about__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}
.landing-about__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.landing-about__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.landing-about__grid--benefits {
  grid-template-columns: repeat(4, 1fr);
}
.landing-about__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d3d9de;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.landing-about__card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
/* White cards sitting on a surface (gray) band have no border */
.landing-band--gray .landing-about__card,
.landing-band--gray .landing-about__card:hover,
.landing-band--gray .landing-about__mconnect-card,
.landing-band--gray .landing-about__principles {
  border-color: transparent;
}
.landing-about__card h3,
.landing-about__card h4 {
  margin: 14px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}
.landing-about__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}
.landing-about__card--initiative {
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.landing-about__card--initiative p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}
.landing-about__step {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: rgba(37, 99, 235, 0.18);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.landing-about__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  transition: transform 0.2s ease;
}
.landing-about__icon--gold {
  color: #c08d00;
  background: rgba(245, 158, 11, 0.12);
}
.landing-about__icon--green {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}
.landing-about__icon--violet {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}
.landing-about__card:hover .landing-about__icon {
  transform: scale(1.06);
}
.landing-about__highlight {
  position: relative;
  margin: 28px 0 0;
  padding: 20px 24px 20px 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(29, 78, 216, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  text-align: left;
}
.landing-about__highlight strong {
  color: #0f172a;
}
.landing-about__highlight-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  font-size: 22px;
  color: #2563eb;
}
.landing-about__about {
  max-width: 760px;
  margin: 0 0 24px;
  text-align: left;
}
.landing-about__about p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}
.landing-about__about p a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}
.landing-about__about p a:hover,
.landing-about__about p a:focus {
  color: #0f172a;
}
.landing-about__about p a:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
  border-radius: 2px;
}
.landing-about__mconnect-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.landing-about__mconnect-card a {
  color: #1d4ed8;
  font-weight: 600;
}
.landing-about__mconnect-card a:hover {
  text-decoration: underline;
}
.landing-about__mconnect-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.landing-about__mconnect-body {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}
.landing-about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
  padding-bottom: 4px;
}
.landing-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.landing-about__main {
  min-width: 0;
}
.landing-about__principles {
  position: relative;
  background: #fff;
  border: 1px solid #d3d9de;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
}
.landing-about__principles-head {
  margin-bottom: 18px;
}
.landing-about__principles-tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 999px;
}
.landing-about__principles-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  text-transform: none;
  letter-spacing: -0.01em;
}
.landing-about__principles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.landing-about__principle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-radius: 10px;
  transition: background-color 0.15s ease;
}
.landing-about__principle:hover {
  background: #f8fafc;
}
.landing-about__principle + .landing-about__principle {
  border-top: 1px dashed #d3d9de;
}
.landing-about__principle > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.landing-about__principle strong {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.landing-about__principle > div span {
  display: block;
  margin-top: 2px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #334155;
}
.landing-about__principle-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  line-height: 0;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}
.landing-about__principle-icon > svg {
  display: block;
}
.landing-about__principle-icon--blue {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}
.landing-about__principle-icon--green {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}
.landing-about__principle-icon--gold {
  color: #c08d00;
  background: rgba(245, 158, 11, 0.12);
}
.landing-about__principle-icon--violet {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}
@media (max-width: 992px) {
  .landing-about__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 992px) {
  .landing-about__grid--4,
  .landing-about__grid--benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-about__grid--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .landing-about__grid--4,
  .landing-about__grid--benefits,
  .landing-about__grid--3 {
    grid-template-columns: 1fr;
  }
  .landing-about__highlight {
    padding: 18px 18px 18px 48px;
    font-size: 14px;
  }
  .landing-about__highlight-icon {
    left: 18px;
    top: 20px;
    font-size: 18px;
  }
  .landing-about__step {
    font-size: 24px;
  }
  .landing-about__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
/* ============ FAQ (accordion in stil EVO) ============ */
.landing-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.landing-faq__aside {
  position: sticky;
  top: 24px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid #d3d9de;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
}
.landing-faq__aside-head {
  margin-bottom: 18px;
}
.landing-faq__aside-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  line-height: 0;
}
.landing-faq__aside-icon > svg {
  display: block;
  fill: currentColor;
}
.landing-faq__aside-title {
  margin: 0 0 8px;
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  text-transform: none;
}
.landing-faq__aside-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}
.landing-faq__contact {
  list-style: none;
  margin: 16px 0 18px;
  padding: 14px 0;
  border-top: 1px dashed #d3d9de;
  border-bottom: 1px dashed #d3d9de;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.landing-faq__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 6px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: background-color 0.15s ease;
}
.landing-faq__contact-item:hover,
.landing-faq__contact-item:focus {
  background: #f8fafc;
  text-decoration: none;
  color: #0f172a;
}
.landing-faq__contact-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  line-height: 0;
}
.landing-faq__contact-icon > svg {
  display: block;
  fill: currentColor;
}
.landing-faq__contact-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.landing-faq__contact-body strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.landing-faq__contact-body span {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.4;
  margin-top: 2px;
}
.landing-faq__aside-cta {
  width: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .landing-faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .landing-faq__aside {
    position: static;
  }
}
.landing-faq {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.landing-faq__item {
  border-bottom: 1px solid #d9d9d9;
}
.landing-faq__question {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 19px 30px 19px 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #0f172a;
  outline: none;
  transition: color 0.3s linear, padding 0.3s linear, background-color 0.3s linear;
}
.landing-faq__question::-webkit-details-marker {
  display: none;
}
.landing-faq__question::marker {
  display: none;
}
/* plus -> minus */
.landing-faq__question:before,
.landing-faq__question:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #0f172a;
  transition: transform 0.3s linear;
}
.landing-faq__question:after {
  width: 12px;
  height: 2px;
  transform: translateY(-50%);
}
.landing-faq__question:before {
  width: 2px;
  height: 12px;
  transform: translateX(-5px) translateY(-50%);
}
.landing-faq__question:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}
.landing-faq__item:not([open]):hover .landing-faq__question {
  background-color: #f1f1f1;
}
.landing-faq__item[open] .landing-faq__question {
  color: #2563eb;
}
.landing-faq__item[open] .landing-faq__question:before {
  transform: rotate(90deg) translateX(-6px) translateY(50%);
}
.landing-faq__answer {
  padding: 0 0 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #334155;
  animation: faqOpen 0.25s ease;
}
.landing-faq__answer p {
  margin: 0 0 10px;
}
.landing-faq__answer p:last-child {
  margin-bottom: 0;
}
.landing-faq__answer ol,
.landing-faq__answer ul {
  margin: 0;
  padding-left: 22px;
}
.landing-faq__answer ol li,
.landing-faq__answer ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.landing-faq__answer ol li:last-child,
.landing-faq__answer ul li:last-child {
  margin-bottom: 0;
}
.landing-faq__answer a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}
.landing-faq__answer a:hover,
.landing-faq__answer a:focus {
  color: #0f172a;
}
.landing-faq__answer a:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
  border-radius: 2px;
}
.landing-faq__answer strong {
  color: #0f172a;
}
@media (min-width: 992px) {
  .landing-faq__item:not([open]):hover .landing-faq__question {
    padding-left: 16px;
  }
}
@media (max-width: 576px) {
  .landing-faq__question {
    padding: 16px 30px 16px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .landing-faq__answer {
    font-size: 15px;
  }
}
@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============ BUTTONS (CTA variants) ============ */
.btn-portal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  box-sizing: border-box;
  /* Legacy fallback for bare .btn-portal (no modifier) */
}
.btn-portal--primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-portal--primary:hover,
.btn-portal--primary:focus {
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}
.btn-portal--ghost {
  background: #fff;
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.3);
}
.btn-portal--ghost:hover,
.btn-portal--ghost:focus {
  background: rgba(37, 99, 235, 0.06);
  color: #1d4ed8;
  text-decoration: none;
  border-color: rgba(37, 99, 235, 0.5);
}
.btn-portal:not(.btn-portal--primary):not(.btn-portal--ghost) {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-portal:not(.btn-portal--primary):not(.btn-portal--ghost):hover,
.btn-portal:not(.btn-portal--primary):not(.btn-portal--ghost):focus {
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
/* VARIABLES*/
.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}
.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}
.MultiCarousel .MultiCarousel-inner .item {
  float: left;
  text-align: center;
  padding: 20px;
}
.MultiCarousel .MultiCarousel-inner .item > div {
  text-align: center;
  padding: 10px;
  margin: 10px;
  background: #f1f1f1;
  color: #666;
}
.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 30px);
}
.MultiCarousel .leftLst {
  left: 0;
}
.MultiCarousel .leftLst > i {
  font: normal 12px/1.4 FontAwesome;
}
.MultiCarousel .rightLst {
  right: 0;
}
.MultiCarousel .rightLst > i {
  font: normal 12px/1.4 FontAwesome;
}
.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
  pointer-events: none;
  background: #ccc;
}
.round-image-container {
  border-radius: 50%;
  border: none;
  height: 120px;
  width: 120px;
  margin: 0 auto 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .round-image-container {
    width: 70px;
    height: 70px;
  }
}
h4 {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  h4 {
    max-width: 250px;
    margin: 0 auto;
    font-size: 11px;
  }
}

/* ============================================================
   Landing visual refresh — borderless cards, gray surfaces,
   white icon shapes, square buttons (see homepage requests)
   ============================================================ */

/* Cards under hero: light-gray background, no border, no shadow */
.landing-card,
.landing-card:hover {
  background-color: #f4f6f8;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
/* The 3 category icons sit on a white shape */
.landing-card .category-icon,
.landing-card.blue .category-icon,
.landing-card.gold .category-icon,
.landing-card.red .category-icon {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
/* Search field white inside */
.search-wrapper .form-control {
  background-color: #ffffff;
}
/* Card buttons square (colour preserved) */
.landing-card .card-button {
  border-radius: 8px;
}

/* White cards on a gray (surface) band: no border, no shadow */
.landing-band--gray .landing-about__card,
.landing-band--gray .landing-about__card:hover,
.landing-band--gray .landing-about__mconnect-card,
.landing-band--gray .landing-about__principles {
  border-color: transparent;
  box-shadow: none;
}
.landing-band--gray .landing-about__card:hover {
  transform: none;
}

/* "Trei direcții" (initiatives) on white band: gray cards, white numbers, white icon shapes */
.landing-about__card--initiative,
.landing-about__card--initiative:hover {
  background: #f4f6f8;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.landing-about__card--initiative .landing-about__step {
  color: #ffffff;
}
.landing-about__card--initiative .landing-about__icon,
.landing-about__card--initiative .landing-about__icon--gold,
.landing-about__card--initiative .landing-about__icon--green,
.landing-about__card--initiative .landing-about__icon--violet {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

/* FAQ: questions column a touch narrower + more gap; aside gray, no border/shadow */
.landing-faq-layout {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 48px;
}
.landing-faq__aside {
  background: #f4f6f8;
  border-color: transparent;
  box-shadow: none;
}

/* ============================================================
   Design-review follow-ups — buttons, inline links, card icons
   (homepage requests p.1–p.4; mconnect-like, less colourful)
   ============================================================ */

/* (1) Secondary (ghost) button: borderless, like mconnect */
.btn-portal--ghost {
  border-color: transparent;
  box-shadow: none;
}
.btn-portal--ghost:hover,
.btn-portal--ghost:focus {
  border-color: transparent;
  background: rgba(37, 99, 235, 0.06);
}

/* (3) Primary button: black (defines the primary style site-wide) */
.btn-portal--primary {
  background: #121212;
  box-shadow: none;
}
.btn-portal--primary:hover,
.btn-portal--primary:focus {
  background: #000000;
  box-shadow: none;
}

/* (2) Inline links in body copy: regular weight + text colour (not colourful) */
.landing-hero__lead a,
.landing-about__about p a,
.landing-about__about a,
.landing-about__mconnect-body a,
.landing-faq__answer a,
.landing-card.blue .abstract a,
.landing-card.gold .abstract a,
.landing-card.red .abstract a,
.landing-card .abstract a,
.landing-card .abstract .btn-link {
  color: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.landing-hero__lead a:hover,
.landing-hero__lead a:focus,
.landing-about__about p a:hover,
.landing-about__about p a:focus,
.landing-about__mconnect-body a:hover,
.landing-about__mconnect-body a:focus,
.landing-faq__answer a:hover,
.landing-faq__answer a:focus,
.landing-card .abstract a:hover,
.landing-card .abstract a:focus {
  color: inherit;
}

/* (3) Cards under hero: all category icons blue */
.landing-card.blue .category-icon,
.landing-card.gold .category-icon,
.landing-card.red .category-icon {
  color: #2563eb;
}

/* (3) Cards under hero: all buttons primary black */
.landing-card.blue .card-button,
.landing-card.gold .card-button,
.landing-card.red .card-button,
.landing-card .card-button {
  background-color: #121212;
  box-shadow: none;
}
.landing-card.blue .card-button:hover,
.landing-card.blue .card-button:focus,
.landing-card.gold .card-button:hover,
.landing-card.gold .card-button:focus,
.landing-card.red .card-button:hover,
.landing-card.red .card-button:focus,
.landing-card .card-button:hover,
.landing-card .card-button:focus {
  background-color: #000000;
  box-shadow: none;
}
