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

/*  DESIGN TOKENS — Warm Professional */
:root {
  --primary: #1A365D;
  --primary-dark: #0F2440;
  --primary-light: #2D4F7A;
  --teal: #0A7C8F;
  --teal-dark: #065F6E;
  --teal-light: #E1F0F2;
  --gold: #D4A14A;
  --gold-dark: #B8893A;
  --gold-light: #F8F1E0;
  --white: #FFFFFF;
  --light-grey: #F5F6F8;
  --mega-bg: #EDEFF3;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A5A;
  --text-muted: #7A7A8A;
  --nav-text: #333333;
  --overlay: rgba(0, 0, 0, 0.45);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
  --burgundy: #1A365D;
  --burgundy-dark: #0F2440;
  --yellow: #D4A14A;
  --yellow-dark: #B8893A;
}

/*  BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--nav-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== SKIP LINK (NEW) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ===== BACK TO HOME BUTTON (NEW) ===== */
.back-to-home {
  padding: 1rem 2rem;
  background: var(--light-grey);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: var(--nav-h);
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.back-home-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-home-btn:hover {
  color: var(--teal);
  background: rgba(10, 124, 143, 0.08);
}

.back-home-btn:hover svg {
  transform: translateX(-4px);
}

/*  HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/*  LOGO */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: block;
}

.site-logo__img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/*  PRIMARY NAV */
.primary-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.primary-nav__item {
  position: relative;
}

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 2px;
  transition: color 0.2s ease;
  position: relative;
}

.primary-nav__link:hover {
  color: var(--primary);
}

.primary-nav__link--active {
  color: var(--primary);
  font-weight: 600;
}

/* Dropdown arrow */
.primary-nav__link--has-dropdown::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.2s ease;
  order: 1;
}

.primary-nav__item:hover .primary-nav__link--has-dropdown::before {
  transform: rotate(180deg);
}

/* Underline */
.primary-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform-origin: var(--underline-origin, 0%);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.primary-nav__item:hover>.primary-nav__link::after {
  transform: scaleX(1);
}

.primary-nav__item:hover>.primary-nav__link {
  color: var(--primary);
}

/*  MEGA MENU */
.mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -34px;
  min-width: 65vw;
  background: var(--mega-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 500;
  border-radius: 8px;
}

.primary-nav__item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  display: flex;
  gap: 3rem;
  padding: 2rem;
  align-items: flex-start;
}

.mega-menu__cols-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem;
  flex: 1;
  padding: 0;
}

.mega-menu__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.3;
  padding-top: 4px;
}

.mega-menu__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__link {
  display: block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  line-height: 1.4;
}

.mega-menu__link:hover {
  color: var(--primary);
  border-bottom-color: var(--gold);
}

.mega-menu__col--featured {
  flex-shrink: 0;
  width: 220px;
}

.mega-menu__figure {
  margin: 0;
  width: 100%;
}

.mega-menu__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.mega-menu__caption {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

/*  SIMPLE DROPDOWN */
.simple-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  background: var(--mega-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 500;
  border-radius: 8px;
}

.primary-nav__item:hover .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.simple-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-dropdown__link {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.simple-dropdown__link:hover {
  background: rgba(26, 54, 93, 0.05);
  color: var(--primary);
}

/*  NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== SEARCH MODAL ===== */

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.search-modal[hidden] {
  display: none;
}

.nav-actions__search svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: var(--nav-text);
}

.search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.search-modal__box {
  position: relative;
  background: var(--white);
  max-width: 640px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.search-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.search-modal__close:hover {
  color: #333;
}

.search-modal__form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
}

.search-modal__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--primary);
  background: transparent;
}

.search-modal__input::placeholder {
  color: #aaa;
}

.search-modal__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 4px;
}

.search-modal__submit svg {
  width: 24px;
  height: 24px;
}

.search-modal__hint {
  margin-top: 16px;
  font-size: 13px;
  color: #999;
  text-align: center;
}

.search-modal__hint kbd {
  background: var(--light-grey);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-body);
}

/* ===== LANGUAGE DROPDOWN ===== */
.nav-actions__lang-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-actions__globe {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--nav-text);
  transition: color 0.2s;
}

.nav-actions__globe:hover {
  color: var(--primary);
}

.nav-actions__globe svg {
  width: 18px;
  height: 18px;
}

.nav-actions__lang-code {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--nav-text);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 500;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lang-dropdown[hidden] {
  display: none;
}

.lang-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--nav-text);
  cursor: default;
}

.lang-dropdown__item--active {
  background: rgba(26, 54, 93, 0.04);
  color: var(--primary);
  font-weight: 600;
}

.lang-dropdown__item--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lang-dropdown__check {
  color: var(--teal);
  font-weight: 700;
}

.lang-dropdown__coming {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  background: var(--light-grey);
  padding: 2px 8px;
  border-radius: 12px;
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-subscribe:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-actions__linkedin {
  display: flex;
  align-items: center;
  color: var(--nav-text);
  text-decoration: none;
  padding: 8px;
  transition: color 0.2s;
}

.nav-actions__linkedin:hover {
  color: var(--primary);
}

.nav-actions__linkedin svg {
  width: 18px;
  height: 18px;
}

.nav-actions__globe {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--nav-text);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.nav-actions__globe:hover {
  color: var(--primary);
}

.nav-actions__globe svg {
  width: 18px;
  height: 18px;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.12);
}

/*  MOBILE TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*  MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  z-index: 999;
  padding: 8px 0 32px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__link {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--nav-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-menu__link:hover {
  color: var(--primary);
  background: rgba(26, 54, 93, 0.04);
}

/* ===== MOBILE MENU HOME LINK (NEW) ===== */
.mobile-menu__link--home {
  font-weight: 600;
  color: var(--primary);
  background: rgba(26, 54, 93, 0.04);
}

.mobile-menu__link--home:hover {
  background: rgba(26, 54, 93, 0.10);
  color: var(--primary-dark);
}

/*  HERO */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  margin-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bgimg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__trust {
  font-size: 110%;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.4px;
  text-align: left;
  color: rgba(255, 255, 255, 0.90);
  max-width: 100%;
  padding-bottom: 2rem;
  margin: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.10;
  color: var(--white);
  width: 90%;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.hero__headline strong {
  font-weight: 600;
}

.hero__headline span {
  font-weight: 300;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: scale(0.98);
}

/*  BOTTOM BAR — Insights Strip */
.bottom-bar {
  width: 100%;
  background: var(--primary);
  padding: 40px 0 0 0;
  overflow: hidden;
}

.bottom-bar .insights-strip__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.10);
  padding: 40px 24px 20px 24px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.bottom-bar .insights-strip__inner::-webkit-scrollbar {
  height: 4px;
}

.bottom-bar .insights-strip__inner::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.bottom-bar .insights-strip__inner::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.bottom-bar .insights-strip__inner::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.bottom-bar .insights-strip__inner.is-grabbing {
  cursor: grabbing;
}

.bottom-bar .insights-strip__item {
  min-width: 280px;
  max-width: 280px;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex-shrink: 0;
}

.bottom-bar .insights-strip__item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 24px;
}

.bottom-bar .insights-strip__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
}

.bottom-bar .insights-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.2s ease;
}

.bottom-bar .insights-strip__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.bottom-bar .insights-strip__link:hover {
  color: var(--white);
}

.bottom-bar .insights-strip__link:hover svg {
  transform: translateX(6px);
}

/*  SHARED SECTION UTILITIES */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

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

/* Shared buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-primary--white:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline:hover svg {
  transform: translateX(4px);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-dark svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-dark:hover svg {
  transform: translateX(4px);
}

.btn-outline--white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline--white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

/*  SECTION 1 — WHO WE ARE */
.who-we-are {
  background: var(--primary-dark);
  padding: 100px 24px;
  text-align: center;
}

.who-we-are__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.who-we-are__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.who-we-are__headline strong {
  font-weight: 800;
}

.who-we-are .section-label {
  color: var(--gold);
}

.who-we-are__body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 640px;
}

.who-we-are .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.who-we-are .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--gold);
  color: var(--white);
}

/*  SECTION 2 — OUR ECOSYSTEM */
.ecosystem {
  background: var(--light-grey);
  padding: 100px 24px;
}

.ecosystem__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ecosystem__card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecosystem__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 54, 93, 0.10);
}

.ecosystem__card:active {
  transform: scale(0.98);
}

.ecosystem__card--featured {
  background: var(--primary);
  border-color: transparent;
}

.ecosystem__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 54, 93, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.ecosystem__card--featured .ecosystem__card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.ecosystem__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.ecosystem__card--featured .ecosystem__card-icon svg {
  stroke: var(--white);
}

.ecosystem__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.ecosystem__card--featured .ecosystem__card-title {
  color: var(--white);
}

.ecosystem__card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.ecosystem__card--featured .ecosystem__card-desc {
  color: rgba(255, 255, 255, 0.78);
}

.ecosystem__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.ecosystem__card--featured .ecosystem__card-link {
  color: var(--gold);
}

.ecosystem__card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.ecosystem__card-link:hover svg {
  transform: translateX(4px);
}

/*  SECTION 3 — FLAGSHIP SOLUTIONS */
.flagship {
  background: var(--white);
  padding: 100px 24px;
}

.flagship__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.flagship__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flagship__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
}

.flagship__card--dark {
  background: var(--primary);
}

.flagship__card--light {
  background: var(--light-grey);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.flagship__card-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.flagship__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(10, 124, 143, 0.10);
  padding: 6px 12px;
  border-radius: 4px;
  align-self: flex-start;
}

.flagship__card--dark .flagship__tag {
  background: rgba(212, 161, 74, 0.20);
  color: var(--gold);
}

.flagship__card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.flagship__card--dark .flagship__card-title {
  color: var(--white);
}

.flagship__card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

.flagship__card--dark .flagship__card-desc {
  color: rgba(255, 255, 255, 0.78);
}

.flagship__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flagship__features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.flagship__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.flagship__card--dark .flagship__features li {
  color: rgba(255, 255, 255, 0.72);
}

.flagship__card--dark .flagship__features li::before {
  background: var(--gold);
}

.flagship__card-img {
  overflow: hidden;
}

.flagship__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.flagship__card:hover .flagship__card-img img {
  transform: scale(1.05);
}

/*  SECTION 4 — WHY MONVALEN */
.why-monvalen {
  background: var(--light-grey);
  padding: 100px 24px;
}

.why-monvalen__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-monvalen .section-title {
  text-align: center;
}

.why-monvalen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.why-monvalen__stat {
  padding: 48px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}

.why-monvalen__stat:hover {
  background: rgba(26, 54, 93, 0.03);
}

.why-monvalen__stat:last-child {
  border-right: none;
}

.why-monvalen__number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.why-monvalen__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.why-monvalen__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/*  SECTION 5 — FEATURED INSIGHTS */
.featured-insights {
  background: var(--white);
  padding: 100px 24px;
}

.featured-insights__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.insight-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 54, 93, 0.10);
}

.insight-card:active {
  transform: scale(0.98);
}

.insight-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.insight-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-card__img {
  transform: scale(1.05);
}

.insight-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  padding: 5px 10px;
  border-radius: 4px;
}

.insight-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.insight-card__excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: gap 0.2s ease;
}

.insight-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.insight-card__link:hover svg {
  transform: translateX(4px);
}

.featured-insights__cta {
  text-align: center;
}

/*  SECTION 6 — CALL TO ACTION */
.cta-section {
  background: var(--primary);
  padding: 100px 24px;
  text-align: center;
}

.cta-section__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-section__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cta-section__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  max-width: 580px;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ===== CONTACT SECTION (NEW) ===== */
.contact-section {
  background: var(--light-grey);
  padding: 100px 24px;
}

.contact-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--nav-text);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 124, 143, 0.08);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.btn-primary--full {
  width: 100%;
  justify-content: center;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info__card--social {
  align-items: center;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 54, 93, 0.06);
  border-radius: 8px;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.contact-info__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info__link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info__link:hover {
  color: var(--teal);
}

.contact-info__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--nav-text);
}

.contact-info__social {
  display: flex;
  gap: 16px;
}

.contact-info__social a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info__social a:hover {
  color: var(--primary);
}

/* Contact section responsive */
@media (max-width: 900px) {
  .contact-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 24px 16px;
  }

  .contact-info__card {
    padding: 16px;
  }

  .contact-info__social {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/*  SECTION 7 — FOOTER */
.site-footer {
  background: #0D1A2E;
}

.site-footer__top {
  padding: 80px 24px 60px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo__img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social__link:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.footer-social__link svg {
  width: 16px;
  height: 16px;
}

.footer-col__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__link {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s ease;
  line-height: 1.4;
}

.footer-col__link:hover {
  color: var(--white);
}

.footer-col__links--contact {
  gap: 14px;
}

.footer-col__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col__links--contact svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.30);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.footer-newsletter {
  margin-top: 24px;
}

.footer-newsletter__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.40);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-newsletter__form {
  display: flex;
  gap: 0;
}

.footer-newsletter__input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.footer-newsletter__input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter__btn {
  padding: 10px 14px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-newsletter__btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.footer-newsletter__btn svg {
  width: 16px;
  height: 16px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
}

.site-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.footer-legal__link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal__link:hover {
  color: var(--white);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 1024px) {
  .ecosystem__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem__card:last-child {
    grid-column: span 2;
  }

  .why-monvalen__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-monvalen__stat:nth-child(2) {
    border-right: none;
  }

  .why-monvalen__stat:nth-child(3) {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .why-monvalen__stat:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-right: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-col--brand {
    grid-column: span 3;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
}

@media (max-width: 900px) {

  /* Hide desktop nav */
  .primary-nav,
  .nav-actions__search,
  .nav-actions__linkedin,
  .nav-actions__globe,
  .nav-divider,
  .btn-subscribe {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero__content {
    padding: 0 32px;
  }

  .hero__trust {
    font-size: 14px;
  }

  .mega-menu,
  .simple-dropdown {
    display: none;
  }

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

  .flagship__card-img {
    height: 260px;
  }

  .flagship__card--light .flagship__card-img {
    order: -1;
  }

  .flagship__card-content {
    padding: 40px 32px;
  }

  .featured-insights__grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-insights__grid .insight-card:last-child {
    grid-column: span 2;
  }

  .bottom-bar .insights-strip__inner {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 32px 20px 16px 20px;
  }

  .bottom-bar .insights-strip__item {
    min-width: 240px;
    max-width: 240px;
    padding: 0 24px 0 0;
    margin-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
  }

  .bottom-bar .insights-strip__item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  /* Back to home button responsive */
  .back-to-home {
    padding: 0.75rem 1.25rem;
  }

  .back-home-btn {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ecosystem__grid {
    grid-template-columns: 1fr;
  }

  .ecosystem__card:last-child {
    grid-column: span 1;
  }

  .why-monvalen__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col--brand {
    grid-column: span 2;
    flex-direction: column;
    gap: 20px;
  }

  .who-we-are {
    padding: 80px 20px;
  }

  /* Mobile menu link font size */
  .mobile-menu__link {
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 600px) {

  .who-we-are,
  .ecosystem,
  .flagship,
  .why-monvalen,
  .featured-insights,
  .cta-section {
    padding: 64px 16px;
  }

  .ecosystem__grid,
  .featured-insights__grid {
    grid-template-columns: 1fr;
  }

  .featured-insights__grid .insight-card:last-child {
    grid-column: span 1;
  }

  .why-monvalen__grid {
    grid-template-columns: 1fr;
  }

  .why-monvalen__stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 24px;
  }

  .why-monvalen__stat:last-child {
    border-bottom: none;
  }

  .cta-section__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-section__actions .btn-primary,
  .cta-section__actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col--brand {
    grid-column: span 1;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero__content {
    padding: 0 20px;
    justify-content: flex-end;
    padding-bottom: 60px;
  }

  .hero__headline {
    font-size: 32px;
    width: 100%;
  }

  .hero__trust {
    font-size: 13px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .btn-cta {
    padding: 12px 24px;
    font-size: 13px;
  }

  .bottom-bar .insights-strip__inner {
    padding: 24px 16px 12px 16px;
  }

  .bottom-bar .insights-strip__item {
    min-width: 200px;
    max-width: 200px;
    padding: 0 16px 0 0;
    margin-right: 16px;
  }

  .bottom-bar .insights-strip__title {
    font-size: 13px;
  }

  /* Skip link responsive */
  .skip-link {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 400px) {
  .hero__headline {
    font-size: 26px;
  }

  .hero__trust {
    font-size: 12px;
  }

  .btn-cta {
    padding: 10px 20px;
    font-size: 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .who-we-are__headline {
    font-size: 26px;
  }

  .back-home-btn {
    font-size: 12px;
    padding: 0.4rem 0.8rem;
  }

  .back-home-btn svg {
    width: 15px;
    height: 15px;
  }
}

/*  FADE-IN ANIMATIONS (for JS) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ecosystem__card,
.insight-card,
.why-monvalen__stat {
  transition-delay: 0ms;
}

/*  REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .fade-up.is-visible {
    opacity: 1;
    transform: none;
  }
}