/* ============ UMES Design Tokens ============ */
:root {
  --umes-blue: #075987;
  --umes-dark: #053f61;
  --umes-sky: #0798d5;
  --umes-light: #eaf5fb;
  --umes-soft: #f5f9fc;
  --slate-950: #07111f;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 20px 50px rgba(7, 17, 31, .12);
}

/* ============ UMES shared site header (topbar, navbar, mobile menu) ============ */

* {
  font-family: 'Inter', sans-serif;
}

/* ============ Topbar & navigation ============ */
    .topbar {
      background:
        linear-gradient(90deg, #008036 0%, #075987 45%, #0798d5 100%) 0 0 / 100% 4px no-repeat,
        radial-gradient(720px 320px at 90% -40%, rgba(0, 138, 54, .22), transparent 60%),
        radial-gradient(620px 300px at 6% 135%, rgba(7, 152, 213, .18), transparent 55%),
        linear-gradient(180deg, #075987 0%, #053f61 100%);
      color: #fff;
      font-size: 13px;
      position: relative;
    }
    .topbar .container {
      display: flex;
      gap: 20px;
      justify-content: space-between;
      align-items: center;
      padding: 9px 0;
      flex-wrap: wrap;
    }
    .topbar-loc,
    .topbar-contact {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    .topbar-loc svg {
      width: 14px;
      height: 14px;
      fill: #fff;
      flex-shrink: 0;
    }
    .topbar-contact {
      gap: 14px;
      flex-wrap: wrap;
    }
    .topbar-contact a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #fff;
      text-decoration: none;
      transition: opacity .2s;
    }
    .topbar-contact a:hover { opacity: .8; text-decoration: underline; }
    .topbar-contact svg {
      width: 14px;
      height: 14px;
      fill: #fff;
      flex-shrink: 0;
    }
    .topbar-sep {
      width: 1px;
      height: 14px;
      background: rgba(255, 255, 255, .45);
      flex-shrink: 0;
    }
    a.topbar-loc { text-decoration: none; transition: opacity .2s; }
    a.topbar-loc:hover { opacity: .85; text-decoration: underline; }
    .topbar-social {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .topbar-social a {
      display: inline-flex;
      align-items: center;
      color: #fff;
      opacity: .92;
      transition: opacity .2s, transform .2s;
    }
    .topbar-social a:hover { opacity: 1; transform: translateY(-1px); }
    .topbar-social svg { width: 15px; height: 15px; fill: #fff; }
    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(252, 249, 243, .97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #ece6db;
      box-shadow: 0 6px 24px rgba(7, 17, 31, .05);
      transition: box-shadow .3s ease;
    }
    .navbar::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 2px;
      background: linear-gradient(90deg, #008036 0%, #075987 45%, #0798d5 100%);
      opacity: .55;
      pointer-events: none;
    }
    .navbar.scrolled {
      box-shadow: 0 10px 32px rgba(7, 17, 31, .12);
    }
    .nav-inner {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .logo img { height: 40px; width: auto; }
    .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
      font-size: 14px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      color: var(--umes-blue);
      white-space: nowrap;
    }
    .nav-links > a,
    .nav-item > .nav-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 10px 2px;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      color: var(--umes-blue);
      transition: color .2s;
    }
    .nav-links > a:after,
    .nav-item > .nav-toggle:after {
      content: "";
      position: absolute;
      left: 50%;
      right: 50%;
      bottom: 0;
      height: 3px;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
      opacity: 0;
      transition: left .28s ease, right .28s ease, opacity .28s ease;
    }
    .nav-links > a:hover,
    .nav-item:hover > .nav-toggle { color: var(--umes-dark); }
    .nav-links > a:hover:after,
    .nav-item:hover > .nav-toggle:after {
      left: 0;
      right: 0;
      opacity: 1;
    }
    .nav-links > a.active,
    .nav-item > .nav-toggle.active {
      color: var(--umes-dark);
    }
    .nav-links > a.active:after,
    .nav-item > .nav-toggle.active:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--umes-dark), var(--umes-sky));
      opacity: 1;
    }
    .nav-item {
      position: relative;
    }
    .caret {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      font-size: 11px;
      line-height: 1;
      border-radius: 50%;
      background: rgba(7, 89, 135, .1);
      color: var(--umes-blue);
      flex-shrink: 0;
      transition: transform .3s cubic-bezier(.34, 1.2, .64, 1), background .2s ease, color .2s ease, box-shadow .2s ease;
    }
    .nav-item:hover > .nav-toggle .caret {
      transform: rotate(180deg);
      background: var(--umes-sky);
      color: #fff;
      box-shadow: 0 4px 10px rgba(7, 152, 213, .35);
    }
    .nav-item.open > .nav-toggle .caret {
      transform: rotate(180deg);
      background: var(--umes-blue);
      color: #fff;
      box-shadow: 0 4px 10px rgba(7, 89, 135, .4);
    }
    .dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 260px;
      background:
        radial-gradient(720px 320px at 90% -40%, rgba(0, 138, 54, .22), transparent 60%),
        radial-gradient(620px 300px at 6% 135%, rgba(7, 152, 213, .18), transparent 55%),
        linear-gradient(180deg, #075987 0%, #053f61 100%);
      border: 1px solid rgba(95, 211, 255, .16);
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(2, 12, 22, .5);
      padding: 10px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .22s ease, transform .22s ease, visibility .22s;
      z-index: 70;
    }
    .dropdown:before {
      content: "";
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: #075987;
      border-left: 1px solid rgba(95, 211, 255, .16);
      border-top: 1px solid rgba(95, 211, 255, .16);
    }
    .nav-item.open .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown a {
      position: relative;
      display: block;
      padding: 10px 14px 10px 38px;
      border-radius: 12px;
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: rgba(234, 246, 255, .85);
      transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .dropdown a::before {
      content: "";
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #9ff2c9;
      opacity: 0;
      transition: opacity .18s ease, transform .18s ease;
    }
    .dropdown a:hover {
      background: linear-gradient(90deg, rgba(0, 138, 54, .2), rgba(7, 89, 135, .3));
      color: #9ff2c9;
      transform: translateX(3px);
    }
    .dropdown a:hover::before {
      opacity: 1;
      transform: translateY(-50%) scale(1.2);
    }
    .dropdown a:active {
      transform: translateX(1px) scale(.97);
    }
    .dropdown a:focus-visible {
      outline: 2px solid var(--umes-sky);
      outline-offset: -2px;
    }
    .dropdown a:after { display: none; }
    .dropdown a.active {
      color: #9ff2c9;
      background: linear-gradient(90deg, rgba(0, 138, 54, .2), rgba(7, 89, 135, .3));
    }
    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-shrink: 0;
    }
    .btn-care {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #075987, #0798d5);
      color: #fff;
      border: 0;
      border-radius: 999px;
      padding: 12px 22px;
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      box-shadow: 0 8px 20px rgba(7, 152, 213, .28);
      transition: box-shadow .25s, transform .25s;
      overflow: hidden;
      position: relative;
    }
    .btn-care::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
      transition: left .4s ease;
    }
    .btn-care:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(7, 152, 213, .38);
    }
    .btn-care:hover::after { left: 100%; }
    .btn-care svg {
      width: 17px;
      height: 17px;
    }
    .mobile-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 110;
      background: none;
      border: none;
      padding: 8px;
    }
    .mobile-toggle span {
      width: 24px;
      height: 2.5px;
      background: var(--umes-blue);
      transition: all .3s ease;
      border-radius: 2px;
    }
    .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 17, 31, .5);
      backdrop-filter: blur(3px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .35s ease, visibility .35s;
      z-index: 90;
    }
    .mobile-overlay.show {
      opacity: 1;
      visibility: visible;
    }
    .mobile-panel {
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      height: 100vh;
      height: 100dvh;
      width: min(340px, 88vw);
      background:
        radial-gradient(130% 55% at 0% 0%, rgba(7, 152, 213, .3), transparent 58%),
        linear-gradient(180deg, #e6f4fc 0%, #fbf8f2 62%, #f6efe3 100%);
      box-shadow: 24px 0 60px rgba(7, 17, 31, .18);
      transform: translateX(-105%);
      transition: transform .4s cubic-bezier(.22, 1, .36, 1), visibility .4s;
      z-index: 100;
      overflow-y: auto;
      padding: 24px 22px 40px;
      visibility: hidden;
    }
    .mobile-panel.open {
      transform: translateX(0);
      visibility: visible;
    }
    .mob-brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
      padding: 14px 14px;
      border-bottom: 0;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(7, 152, 213, .1));
      border: 1px solid rgba(7, 89, 135, .16);
      box-shadow: 0 12px 28px rgba(7, 89, 135, .14);
    }
    .mob-brand img {
      height: 40px;
      width: auto;
      display: block;
    }
    .mob-close {
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--umes-sky), var(--umes-blue));
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex: none;
      box-shadow: 0 8px 18px rgba(7, 89, 135, .35), inset 0 1px 0 rgba(255, 255, 255, .35);
      transition: transform .3s cubic-bezier(.34,1.4,.64,1), background .2s ease, color .2s ease, box-shadow .2s ease;
    }
    .mob-close:hover {
      background: linear-gradient(135deg, #0798d5, #053f61);
      transform: rotate(90deg) scale(1.06);
      box-shadow: 0 12px 24px rgba(7, 89, 135, .45), inset 0 1px 0 rgba(255, 255, 255, .3);
    }
    .mob-close:active { transform: scale(.94); }
    .mob-close svg { width: 20px; height: 20px; }
    .mob-link {
      position: relative;
      display: flex;
      align-items: center;
      padding: 13px 14px 13px 44px;
      margin-bottom: 6px;
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--slate-700);
      border: 1px solid transparent;
      border-radius: 14px;
      transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .mob-link::before {
      content: "\2192";
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 13px;
      color: var(--umes-sky);
      opacity: 0;
      transition: opacity .2s ease, transform .2s ease;
    }
    .mob-link:hover {
      color: var(--umes-blue);
      background: var(--umes-light);
      border-color: rgba(7, 152, 213, .18);
      box-shadow: 0 8px 18px rgba(7, 89, 135, .1);
      transform: translateX(3px);
    }
    .mob-link:hover::before {
      opacity: 1;
      transform: translateY(-50%) translateX(-3px);
    }
    .mob-link:active {
      transform: translateX(1px) scale(.98);
    }
    .mob-link::after { display: none; }
    .mob-link.mob-link-top {
      font-weight: 400;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: var(--umes-blue);
      padding-left: 14px;
    }
    .mob-link.mob-link-top::before { display: none; }
    .mob-group-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 16px;
      margin: 8px 0;
      background: rgba(7, 89, 135, .06);
      border: 1px solid rgba(7, 89, 135, .12);
      border-radius: 14px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: var(--umes-blue);
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .mob-group-head:hover {
      color: var(--umes-dark);
      background: var(--umes-light);
      border-color: rgba(7, 152, 213, .35);
      box-shadow: 0 8px 18px rgba(7, 89, 135, .12);
    }
    .mob-group-head:active { transform: scale(.98); }
    .mob-group.open .mob-group-head {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      border-color: rgba(7, 89, 135, .4);
      background: linear-gradient(90deg, var(--umes-light), #fff);
    }
    .mob-caret {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      font-size: 10px;
      border-radius: 50%;
      background: var(--umes-light);
      color: var(--umes-blue);
      flex-shrink: 0;
      transition: transform .3s cubic-bezier(.34, 1.2, .64, 1), background .2s ease, color .2s ease;
    }
    .mob-group-head:hover .mob-caret {
      background: var(--umes-sky);
      color: #fff;
    }
    .mob-group.open .mob-caret {
      transform: rotate(180deg);
      background: var(--umes-blue);
      color: #fff;
    }
    .mob-group-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      padding: 0;
    }
    .mob-group.open .mob-group-body { max-height: 560px; }
    .mob-group.open .mob-group-body .mob-link {
      margin-left: 10px;
      margin-right: 10px;
      padding-left: 34px;
    }
    .mob-group-body .mob-link {
      padding: 12px 14px 12px 40px;
      font-size: 14px;
      font-weight: 700;
      color: var(--slate-600);
      border: 1px solid transparent;
    }
    .mob-group-body .mob-link::before { left: 12px; }
    .mob-group-body .mob-link:last-child { margin-bottom: 8px; }
    .mob-group-body .mob-link:hover {
      background: #fff;
      border-color: rgba(7, 152, 213, .18);
      color: var(--umes-blue);
    }
    .mobile-panel .btn-care {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      border-bottom: 0;
      width: 100%;
    }
    @media (max-width: 1100px) {
      .nav-links { gap: 12px; font-size: 12px; }
      .logo img { height: 36px; }
      .btn-care { padding: 11px 16px; font-size: 13px; }
    }
    @media (max-width: 1000px) {
      .nav-links, .nav-actions { display: none; }
      .mobile-toggle { display: flex; }
    }

    /* ============ Header responsive overrides (mobile) ============ */
    @media (max-width: 980px) {
      .nav-links, .nav-actions { display: none; }
      .mobile-toggle { display: flex; }
    }
    @media (max-width: 640px) {
      .topbar .container { gap: 10px; padding: 8px 0; justify-content: center; }
      .topbar-contact { display: none; }
      .topbar-loc { font-size: 11px; }
      .topbar-loc svg { width: 12px; height: 12px; }
      .topbar-social svg { width: 14px; height: 14px; }
    }
    @media (max-width: 400px) {
      .topbar-social { display: none; }
      .logo img { height: 32px; }
      .nav-inner { height: 70px; }
    }

    /* ============ Dropdown & mega-menu polish (click-based) ============ */

    /* active parent indicator + caret rotation */
    .nav-item.open > .nav-toggle,
    .nav-item.open > .nav-toggle:hover { color: var(--umes-dark); }
    .nav-item.open > .nav-toggle:after { left: 0; right: 0; opacity: 1; }
    .nav-item.open > .nav-toggle .caret { transform: rotate(180deg); }

    /* navy & blue/green mega panels (About Us, Products, Resources) */
    .nav-item.mega { position: static; }
    .nav-item.mega > .dropdown {
      left: 0;
      right: 0;
      top: 100%;
      min-width: 0;
      transform: translateY(14px);
      border-radius: 0 0 24px 24px;
      border-left: 0;
      border-right: 0;
      border-top: 0;
      border-bottom: 1px solid rgba(95, 211, 255, .14);
      padding: 0;
      background:
        radial-gradient(720px 320px at 90% -40%, rgba(0, 138, 54, .22), transparent 60%),
        radial-gradient(620px 300px at 6% 135%, rgba(7, 152, 213, .18), transparent 55%),
        linear-gradient(180deg, #075987 0%, #053f61 100%);
      box-shadow: 0 34px 80px rgba(2, 12, 22, .55);
    }
    .nav-item.mega > .dropdown:before { display: none; }
    .nav-item.mega.open > .dropdown { transform: translateY(0); }
    .mega-underline {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #008036 0%, #075987 45%, #0798d5 100%);
      z-index: 1;
    }
    .mega-inner {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 316px;
      gap: 30px;
      align-items: start;
      padding: 30px 0 32px;
    }
    .mega-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 22px;
      align-content: start;
    }
    .mega-cols.cols-3 {
      grid-template-columns: repeat(3, 1fr);
      gap: 6px 16px;
    }
    .mega-item {
      position: relative;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      gap: 14px;
      padding: 12px 14px;
      border-radius: 15px;
      transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .mega-item .mega-ico {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      order: 0;
      align-self: center;
      border-radius: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(95, 211, 255, .22);
      color: #5fd3ff;
      font-size: 17px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, .3);
      overflow: hidden;
      transition: transform .25s cubic-bezier(.34,1.6,.64,1), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .mega-ico i::before {
      transition: transform .25s cubic-bezier(.34,1.6,.64,1);
    }
    .mega-item .mega-text {
      flex: 1 1 auto;
      min-width: 0;
      order: 1;
      text-align: left;
    }
    .mega-item .mega-text strong {
      display: block;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #eaf6ff;
      letter-spacing: 0;
      transition: color .2s ease;
    }
    .mega-item .mega-text small {
      display: block;
      margin-top: 2px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.45;
      color: rgba(234, 246, 255, .68);
      white-space: normal;
      transition: color .2s ease;
    }
    .mega-item:hover {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(159, 242, 201, .28);
      box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
      transform: translateY(-3px);
    }
    .mega-item:hover .mega-ico {
      background: linear-gradient(135deg, #008036, #004AAD);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 10px 22px rgba(0, 128, 54, .4);
      transform: rotate(8deg) scale(1.12);
    }
    .mega-item:hover .mega-text strong { color: #9ff2c9; }
    .mega-item:hover .mega-text small { color: #5fd3ff; }
    .mega-item:active {
      transform: translateY(-1px) scale(.97);
      box-shadow: 0 6px 14px rgba(0, 0, 0, .3);
    }
    .mega-item:focus-visible {
      outline: 2px solid var(--umes-sky);
      outline-offset: 2px;
    }
    .nav-item.mega .dropdown a:hover,
    .nav-item.mega .dropdown a.active {
      background: linear-gradient(90deg, rgba(0, 138, 54, .2), rgba(7, 89, 135, .3));
      color: #9ff2c9;
      transform: translateY(-2px);
    }
    .mega-item:after { display: none !important; }

    /* mega feature / callout card */
    .mega-feature {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: linear-gradient(135deg, #004AAD 0%, #008036 130%);
      color: #fff;
      padding: 26px 24px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
      border: 1px solid rgba(159, 242, 201, .25);
    }
    .mega-feature::after {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 68%);
      pointer-events: none;
    }
    .mega-feature-img {
      width: 100%;
      height: 132px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 16px;
    }

    /* plain (no-blue) feature card, e.g. About */
    .mega-feature.feature-plain {
      display: flex;
      flex-direction: column;
      min-height: 220px;
      padding: 0;
      background: linear-gradient(135deg, #075987, #053f61);
      color: var(--umes-dark);
      box-shadow: 0 14px 32px rgba(0, 0, 0, .4);
      border: 1px solid rgba(95, 211, 255, .2);
    }
    .mega-feature.feature-plain .mega-feature-img {
      width: 100%;
      flex: 1;
      min-height: 0;
      object-fit: cover;
      display: block;
      border-radius: 0;
      margin: 0;
    }

    /* tablet tweaks */
    @media (max-width: 1100px) {
      .mega-inner { grid-template-columns: 1fr 270px; gap: 22px; padding: 26px 0 28px; }
      .mega-cols { gap: 4px 16px; }
      .mega-feature { padding: 22px 18px; }
      .mega-feature h4 { font-size: 16px; }
      .mega-feature p { font-size: 12.5px; }
    }