﻿:root {
  --blue: #0057a8;
  --blue-dark: #003b73;
  --green: #3bb54a;
  --green-dark: #238832;
  --gray: #6e6e6e;
  --ink: #172033;
  --muted: #5e6a7a;
  --line: #dce5ee;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 57, 112, 0.14);
  --radius: 8px;
  --header-height: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 2px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 87, 168, 0.12);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 260px;
  max-height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 28px);
  color: var(--blue-dark);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.lang-btn,
.nav-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.lang-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-btn.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.section-panel {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: calc(var(--header-height) + 58px) clamp(20px, 6vw, 88px) 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  grid-template-rows: 1fr auto;
  gap: 44px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 39, 77, 0.96), rgba(0, 87, 168, 0.83) 55%, rgba(59, 181, 74, 0.78)),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.32), transparent 35%),
    var(--blue);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
}

.hero-content,
.hero-media,
.hero-highlights {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a6efae;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 1.04;
}

h2 {
  max-width: 960px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-media {
  align-self: stretch;
  display: grid;
  place-items: center;
}

.hero-media img {
  width: min(1040px, 128%);
  border-radius: var(--radius);
  opacity: 0.92;
  mix-blend-mode: screen;
}

.hero-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-highlights article {
  min-height: 128px;
  padding: 24px;
  background: rgba(0, 35, 68, 0.25);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 12px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.section-heading {
  margin-bottom: 36px;
}

.about {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.text-block {
  max-width: 980px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-block p {
  margin: 0 0 22px;
}

.identity-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.identity-panel img {
  width: 520px;
  max-width: 200%;
  margin: 0 auto 24px;
}

.identity-panel p {
  margin: 0;
  color: var(--blue-dark);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.mission-grid article,
.compliance-grid article,
.solution-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mission-grid article {
  padding: 28px;
}

.mission-grid p,
.solution-card p,
.compliance-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.values-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(0, 87, 168, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(0, 87, 168, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
}

.solutions {
  background: var(--blue-dark);
}

.solutions h2 {
  color: var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  min-height: 270px;
  padding: 26px;
}

.solution-card.wide {
  grid-column: span 2;
}

.solution-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.regional {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
  background: var(--white);
}

.regional-content p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.map-panel {
  padding: 32px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(0, 57, 112, 0.94), rgba(0, 87, 168, 0.88)),
    var(--blue);
  box-shadow: var(--shadow);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.country-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #dffbe3;
  background: rgba(255, 255, 255, 0.08);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.pillar-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.pillar-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.sustainability {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.96), rgba(255, 255, 255, 0.98)),
    var(--soft);
}

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

.compliance-grid article {
  min-height: 230px;
  padding: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 54px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 36, 72, 0.98), rgba(0, 87, 168, 0.92) 58%, rgba(35, 136, 50, 0.92)),
    var(--blue);
}

.contact h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact dl {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.contact dt {
  color: #b6f3bd;
  font-weight: 900;
}

.contact dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 28, 56, 0.28);
  font: inherit;
}

.contact-form input {
  min-height: 46px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(59, 181, 74, 0.32);
  border-color: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr auto auto auto;
  gap: 22px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.82);
  background: #061d35;
}

.site-footer img {
  width: 210px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-dark);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px auto auto;
  }

  .brand img {
    width: 240px;
    max-height: 48px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 26px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    grid-column: 3;
  }

  .primary-link {
    display: none;
  }

  .hero,
  .regional,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 46px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 4px 12px 4px 10px;
  }

  .brand img {
    width: 220px;
    max-height: 44px;
  }

  .lang-btn {
    width: 34px;
    height: 34px;
  }

  .section-panel {
    padding: calc(var(--header-height) + 38px) 18px 54px;
  }

  h1 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero {
    gap: 26px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    width: min(720px, 128%);
  }

  .hero-highlights,
  .about-grid,
  .mission-grid,
  .solutions-grid,
  .compliance-grid,
  .contact,
  .country-grid {
    grid-template-columns: 1fr;
  }

  .solution-card.wide {
    grid-column: auto;
  }

  .hero-highlights article,
  .solution-card,
  .compliance-grid article {
    min-height: auto;
  }

  .identity-panel,
  .map-panel,
  .contact-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer img {
    width: 200px;
  }
}











/* Header three-zone layout: logo / menu / actions. */
.site-header {
  grid-template-columns: 25% 50% 25% !important;
  gap: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.site-header .brand {
  justify-self: start !important;
  width: 210px !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 210px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  transform: scale(1.8) !important;
  transform-origin: left center !important;
  position: relative !important;
  z-index: 5 !important;
}

.site-header .site-nav {
  grid-column: 2 !important;
  justify-self: center !important;
  width: 100% !important;
  justify-content: center !important;
  gap: clamp(8px, 1vw, 18px) !important;
  font-size: 0.78rem !important;
}

.site-header .header-actions {
  grid-column: 3 !important;
  justify-self: stretch !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

.lang-toggle {
  width: 42px !important;
  height: 28px !important;
  padding: 4px !important;
  display: inline-grid !important;
  place-items: center !important;
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
}

.lang-toggle img {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-toggle span {
  display: none;
}

.primary-link {
  width: 126px !important;
  min-height: 40px !important;
  padding: 2px 14px !important;
  border-radius: 8px !important;
  line-height: 1.05 !important;
  text-align: center !important;
  white-space: normal !important;
  justify-content: center !important;
  font-size: calc(0.95rem - 2px) !important;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 25% 50% 25% !important;
  }

  .site-header .nav-toggle {
    grid-column: 2 !important;
    justify-self: center !important;
  }

  .site-header .site-nav {
    grid-column: 1 / -1 !important;
    width: auto !important;
  }

  .site-header .header-actions {
    grid-column: 3 !important;
  }

  .site-header .primary-link {
    display: inline-flex !important;
  }
}

@media (max-width: 760px) {
  .site-header .brand {
    width: 84px !important;
  }

  .site-header .brand img {
    width: 84px !important;
    transform: scale(1.8) !important;
  }

  .lang-toggle {
    width: 46px !important;
    height: 36px !important;
  }

  .lang-toggle img {
    width: 28px;
  height: 18px;
  }

  .primary-link {
    width: 98px !important;
    min-height: 42px !important;
    padding: 2px 9px !important;
    font-size: calc(0.87rem - 2px) !important;
  }
}







/* Reduce header white space while preserving current logo size. */
.site-header {
  background: rgba(255, 255, 255, 0.18) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
}

.site-header .site-nav a,
.site-header .site-nav {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 32, 70, 0.45);
}

.site-header .nav-toggle span {
  background: #ffffff !important;
}

/* Fully transparent header. */
.site-header {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}



/* Hero annotation refinements. */
.hero h1 {
  font-size: clamp(calc(2rem - 4px), calc(4.8vw - 4px), calc(4.5rem - 4px)) !important;
}

.hero-media {
  align-self: start !important;
  margin-top: 96px !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.hero-copy {
  position: relative !important;
  left: -58% !important;
  width: min(620px, 92vw) !important;
  max-width: none !important;
  margin-top: 28px !important;
  padding: 18px 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: rgba(0, 54, 108, 0.48) !important;
  backdrop-filter: blur(4px) !important;
  text-shadow: 0 1px 3px rgba(0, 28, 58, 0.45) !important;
}

@media (max-width: 1180px) {
  .hero-media {
    margin-top: 18px !important;
  }

  .hero-copy {
    left: 0 !important;
    width: 100% !important;
  }
}

/* Footer logo transparent asset fit. */
.site-footer img {
  background: transparent !important;
  object-fit: contain !important;
}

/* Hero final placement tweaks. */
.hero-media {
  margin-top: 24px !important;
}

.hero-copy {
  left: -60% !important;
  width: min(640px, 44vw) !important;
  margin-top: 26px !important;
  padding: 16px 20px !important;
  background: rgba(0, 87, 168, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 8px !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

@media (max-width: 1180px) {
  .hero-media {
    margin-top: 0 !important;
  }

  .hero-copy {
    left: 0 !important;
    width: 100% !important;
  }
}

/* Hero copy transparent over top-right image area. */
.hero-copy {
  left: -54% !important;
  width: min(420px, 34vw) !important;
  margin-top: -300px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  text-shadow: 0 1px 3px rgba(0, 30, 70, 0.55) !important;
}

@media (max-width: 1180px) {
  .hero-copy {
    left: 0 !important;
    width: 100% !important;
    margin-top: 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }
}

/* Keep header fixed while scrolling. */
.site-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
}

/* Mobile/tablet hero copy over white image area. */
@media (max-width: 1180px) {
  .hero-copy {
    position: absolute !important;
    top: clamp(138px, 23vw, 210px) !important;
    left: clamp(230px, 45vw, 420px) !important;
    width: min(430px, 44vw) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #17324f !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    position: static !important;
    width: 100% !important;
    margin-top: 20px !important;
    color: #ffffff !important;
  }
}

/* Header stays on the first scroll page only. */
.site-header {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
}

/* Keep hero subtitle within the right half of the image. */
.hero-copy {
  left: -78% !important;
  width: min(330px, 27vw) !important;
  margin-top: -315px !important;
  color: #17324f !important;
  font-size: clamp(0.92rem, 1.18vw, 1.08rem) !important;
  line-height: 1.35 !important;
}

@media (max-width: 1180px) {
  .hero-copy {
    left: clamp(280px, 44vw, 390px) !important;
    width: min(330px, 34vw) !important;
    top: clamp(150px, 24vw, 220px) !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    position: static !important;
    width: 100% !important;
    margin-top: 20px !important;
    color: #ffffff !important;
  }
}

/* Hero layout: title aligned with image, buttons below title, square subtitle. */
.hero-content {
  align-self: start !important;
  margin-top: 110px !important;
}

.hero h1 {
  max-width: 520px !important;
}

.hero-actions {
  position: static !important;
  margin-top: 24px !important;
  display: flex !important;
  gap: 14px !important;
  clear: both !important;
}

.hero-copy {
  width: 240px !important;
  min-height: 240px !important;
  aspect-ratio: 1 / 1 !important;
  left: -72% !important;
  margin-top: -318px !important;
  display: flex !important;
  align-items: flex-start !important;
  color: #17324f !important;
  font-size: 1rem !important;
  line-height: 1.42 !important;
  overflow-wrap: normal !important;
}

@media (max-width: 1180px) {
  .hero-content {
    margin-top: 0 !important;
  }

  .hero-copy {
    position: static !important;
    width: 100% !important;
    min-height: auto !important;
    aspect-ratio: auto !important;
    margin-top: 20px !important;
    color: #ffffff !important;
  }
}

/* Final annotation pass: hero title alignment, transparent identity panel, 5 solution cards in one row. */
@media (min-width: 1181px) {
  .hero .eyebrow,
  .hero h1 {
    position: relative !important;
    top: -118px !important;
  }

  .hero .eyebrow {
    margin-bottom: 14px !important;
  }

  .hero h1 {
    max-width: 560px !important;
  }

  .solutions-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .solution-card,
  .solution-card.wide {
    grid-column: auto !important;
    min-height: 390px !important;
    padding: 26px 22px !important;
  }

  .solution-card h3 {
    font-size: 1.05rem !important;
    line-height: 1.22 !important;
  }

  .solution-card p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }
}

.identity-panel {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* External form iframe and about-side image. */
.external-form-frame {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
}

.external-form-frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: transparent;
}

.about-grid {
  align-items: stretch !important;
}

.identity-panel {
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  gap: 22px !important;
  min-height: 100% !important;
}

.identity-panel .about-side-image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  margin: 0 !important;
}

/* Place identity text over the top edge of the about image. */
.identity-panel {
  position: relative !important;
  display: block !important;
}

.identity-panel .about-side-image {
  display: block !important;
}

.identity-panel p {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 86% !important;
  margin: 0 !important;
  padding: 14px 18px !important;
  color: var(--blue-dark) !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-radius: 0 0 8px 8px !important;
}

/* Contact external form final size. */
.external-form-frame {
  min-height: 620px !important;
  display: grid !important;
  place-items: center !important;
}

.external-form-frame iframe {
  width: 610px !important;
  max-width: 100% !important;
  height: 620px !important;
  border: 0 !important;
}
