﻿:root {
      --blue: #07149e;
      --deep: #020b28;
      --navy: #001848;
      --cyan: #00d8ff;
      --text: #061082;
      --soft: #f6f8ff;
      --line: #cfd6ef;
      --white: #ffffff;
      --shadow: 0 14px 34px rgba(0, 15, 80, 0.17);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 12% 20%, rgba(0, 216, 255, 0.08), transparent 22rem),
        linear-gradient(90deg, #ffffff, #f4f7ff 54%, #ffffff);
      color: var(--text);
      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 1.35;
      overflow-x: hidden;
    }

    body.modal-open {
      overflow: hidden;
    }

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

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

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

    [hidden] {
      display: none !important;
    }

    .site-header {
      background: var(--white);
      box-shadow: 0 1px 0 rgba(0, 0, 60, 0.08);
    }

    .header-inner {
      width: min(1230px, calc(100% - 42px));
      min-height: 82px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      width: 178px;
      display: block;
      line-height: 0;
    }

    .logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .mobile-top-contact {
      display: none;
    }

    .langs {
      display: flex;
      gap: 18px;
    }

    .lang {
      display: grid;
      justify-items: center;
      gap: 4px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
    }

    .flag {
      width: 36px;
      height: 23px;
      border: 1px solid #d6d9e8;
      background: #fff;
      overflow: hidden;
      position: relative;
    }

    .flag.chile {
      background: linear-gradient(#ffffff 0 50%, #d52b1e 50% 100%);
    }

    .flag.chile::before {
      content: "";
      position: absolute;
      inset: 0 auto 50% 0;
      width: 40%;
      background: #0039a6;
    }

    .flag.chile::after {
      content: "*";
      position: absolute;
      left: 3px;
      top: 1px;
      color: #fff;
      font-size: 8px;
      line-height: 1;
    }

    .flag.usa {
      background: #fff url("assets/flags/usa-flag.jpg") center / cover no-repeat;
    }

    .flag.usa::before {
      content: none;
    }

    .flag.usa::after {
      content: none;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 0;
      border-radius: 8px;
      padding: 0 18px;
      background: var(--blue);
      color: var(--white);
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 7px 16px rgba(7, 20, 158, 0.22);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
      background: #0b1ac0;
      box-shadow: 0 10px 22px rgba(7, 20, 158, 0.28);
      outline: none;
    }

    .calendar-icon,
    .chat-icon {
      width: 24px;
      height: 24px;
      border: 2px solid currentColor;
      border-radius: 4px;
      position: relative;
      flex: 0 0 auto;
    }

    .calendar-icon::before,
    .calendar-icon::after {
      content: "";
      position: absolute;
      background: currentColor;
    }

    .calendar-icon::before {
      left: 4px;
      right: 4px;
      top: 6px;
      height: 2px;
    }

    .calendar-icon::after {
      width: 4px;
      height: 4px;
      left: 5px;
      top: 11px;
      box-shadow: 6px 0 currentColor, 12px 0 currentColor, 0 6px currentColor, 6px 6px currentColor, 12px 6px currentColor;
    }

    .hero {
      height: clamp(400px, 31vw, 540px);
      background: #00091f;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("assets/hero-clean-muted.png");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      filter: saturate(0.58) brightness(0.76) contrast(0.92);
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0, 8, 28, 0.92) 0%, rgba(0, 12, 38, 0.78) 31%, rgba(0, 16, 48, 0.24) 58%, rgba(0, 10, 34, 0.1)),
        linear-gradient(180deg, rgba(0, 12, 40, 0.08), rgba(0, 8, 30, 0.24)),
        rgba(3, 15, 43, 0.2);
      z-index: 0;
    }

    .hero-content {
      width: min(1230px, calc(100% - 42px));
      height: clamp(400px, 31vw, 540px);
      margin: 0 auto;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      width: min(760px, 58%);
      max-width: 760px;
      color: var(--white);
    }

    .hero-copy h1 {
      margin: 0;
      font-size: clamp(38px, 3.35vw, 54px);
      line-height: 1.12;
      letter-spacing: 0.3px;
      text-transform: uppercase;
    }

    .hero-line {
      width: 48px;
      height: 5px;
      margin: 18px 0;
      background: #33bccb;
      border-radius: 3px;
    }

    .hero-copy p {
      margin: 0;
      font-size: clamp(21px, 1.7vw, 27px);
      line-height: 1.28;
      max-width: 570px;
      overflow-wrap: normal;
    }

    .desktop-reference-copy {
      visibility: visible;
      text-shadow: 0 2px 9px rgba(0, 0, 0, 0.72);
    }

    .section {
      width: min(1220px, calc(100% - 42px));
      margin: 0 auto;
    }

    .value {
      padding: 13px 0 18px;
      text-align: center;
    }

    .section-title {
      margin: 0 auto 10px;
      color: var(--blue);
      font-size: clamp(22px, 2.1vw, 28px);
      line-height: 1.05;
      font-weight: 900;
      text-align: center;
      text-transform: uppercase;
    }

    .title-line {
      width: 43px;
      height: 3px;
      margin: 0 auto 18px;
      background: var(--cyan);
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      align-items: stretch;
    }

    .value-item {
      min-height: 142px;
      display: grid;
      align-content: start;
      justify-items: center;
      padding: 0 30px;
      border-right: 1px solid var(--line);
    }

    .value-item:last-child {
      border-right: 0;
    }

    .value-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
      color: var(--blue);
    }

    .value-item h3 {
      margin: 0 0 8px;
      color: var(--blue);
      font-size: 15px;
      text-transform: uppercase;
    }

    .value-item p {
      max-width: 180px;
      margin: 0;
      color: var(--blue);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.45;
    }

    .services {
      padding: 3px 0 17px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px 28px;
      margin-top: 10px;
    }

    .service-card {
      min-height: 184px;
      border: 1px solid rgba(51, 188, 203, 0.48);
      border-radius: 9px;
      padding: 0;
      background:
        radial-gradient(circle at 50% 27%, rgba(255, 255, 255, 0.1), transparent 32%),
        linear-gradient(180deg, #0b2d73 0%, #072764 42%, #061b4e 100%);
      color: var(--white);
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 16px 30px rgba(0, 17, 68, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
      position: relative;
      isolation: isolate;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .service-card img {
      display: none;
    }

    .service-card img::before {
      content: "";
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 3px solid transparent;
      border-radius: inherit;
      pointer-events: none;
      z-index: 3;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .service-card:hover,
    .service-card:focus-visible,
    .service-card.active {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(0, 17, 68, 0.24);
      outline: none;
    }

    .service-card.active::after,
    .service-card:focus-visible::after {
      border-color: var(--cyan);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
    }

    .card-label {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: grid;
      grid-template-rows: auto auto;
      place-items: center;
      gap: 14px;
      padding: 24px;
      color: var(--white);
      font-size: clamp(21px, 2.2vw, 28px);
      font-weight: 900;
      line-height: 1.16;
      text-align: center;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
      white-space: normal;
      pointer-events: none;
    }

    .service-card.image-loaded .card-label {
      opacity: 1;
    }

    .service-card.image-missing img {
      opacity: 0;
    }

    .service-panel {
      max-height: 0;
      margin-top: 0;
      overflow: hidden;
      border-radius: 9px;
      background: #ffffff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(-8px);
      transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin-top 220ms ease;
    }

    .service-panel.open {
      max-height: 520px;
      margin-top: 20px;
      opacity: 1;
      transform: translateY(0);
    }

    .service-panel-inner {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 22px;
      align-items: center;
      padding: 22px 24px;
    }

    .service-panel h3 {
      margin: 0 0 8px;
      color: var(--blue);
      font-size: 28px;
      line-height: 1.1;
    }

    .service-panel h4 {
      margin: 0 0 6px;
      color: var(--blue);
      font-size: 16px;
      text-transform: uppercase;
    }

    .service-panel ul {
      margin: 0;
      padding-left: 18px;
      color: #071165;
      font-size: 16px;
      font-weight: 700;
    }

    .service-panel p {
      margin: 0;
      color: #071165;
      font-size: 16px;
      font-weight: 700;
    }

    .metrics {
      padding: 0 0 16px;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1.08fr 1.05fr 1.15fr;
      gap: 0;
    }

    .metric {
      min-height: 92px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 10px;
      align-items: center;
      padding: 0 16px;
      border-right: 1px solid var(--line);
      color: var(--blue);
      font-weight: 800;
    }

    .metric:last-child {
      border-right: 0;
    }

    .metric-icon {
      width: 48px;
      height: 48px;
      font-size: 28px;
      display: grid;
      place-items: center;
      color: var(--blue);
    }

    .metric strong {
      display: block;
      font-size: 32px;
      line-height: 0.9;
    }

    .metric span {
      display: block;
      font-size: 13px;
      line-height: 1.24;
    }

    .recognition {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      align-items: center;
      min-height: 96px;
      margin-bottom: 5px;
      border-radius: 7px;
      background: linear-gradient(90deg, #020b28, #04143c);
      color: var(--white);
      overflow: hidden;
    }

    .recognition-item {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 10px 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.28);
    }

    .recognition-item:last-child {
      border-right: 0;
    }

    .recognition-title {
      margin: 0;
      color: var(--white);
      font-size: 16px;
      font-weight: 400;
      text-align: center;
      text-transform: uppercase;
    }

    .agri {
      font-size: 34px;
      font-weight: 900;
      line-height: 0.86;
      letter-spacing: -1px;
    }

    .recognition p {
      margin: 0;
      color: var(--white);
      font-size: 14px;
      line-height: 1.3;
    }

    .projects {
      padding-bottom: 18px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .project-item {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .project-card {
      display: grid;
      grid-template-columns: 42% 1fr;
      min-height: 132px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.74);
      overflow: hidden;
      padding: 0;
      cursor: pointer;
      text-align: left;
      box-shadow: 0 10px 22px rgba(0, 17, 68, 0.08);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .project-card:hover,
    .project-card:focus-visible,
    .project-item.open .project-card {
      border-color: rgba(51, 188, 203, 0.7);
      box-shadow: 0 14px 28px rgba(0, 17, 68, 0.14);
      transform: translateY(-1px);
      outline: none;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.72) brightness(0.82);
    }

    .project-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      padding: 9px 10px;
    }

    .project-copy strong {
      margin: 0 0 4px;
      color: var(--blue);
      font-size: 15px;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .project-copy span {
      margin: 0;
      color: var(--blue);
      font-size: 13px;
      line-height: 1.18;
      font-weight: 500;
    }

    .project-copy em {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      font-style: normal;
    }

    .project-panel {
      grid-column: 1 / -1;
      max-height: 0;
      margin-top: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-8px);
      transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin-top 220ms ease;
    }

    .project-item.open .project-panel,
    .project-panel.open {
      max-height: 1600px;
      margin-top: 12px;
      opacity: 1;
      transform: translateY(0);
    }

    .project-panel-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(360px, 48%) 1fr;
      gap: 22px;
      padding: 20px;
      border: 1px solid rgba(51, 188, 203, 0.35);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 14px 28px rgba(0, 17, 68, 0.11);
    }

    .project-panel-inner > img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: contain;
      background: #051432;
      border-radius: 7px;
    }

    .project-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(0, 27, 115, 0.22);
      border-radius: 50%;
      background: #001b73;
      color: #ffffff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 8px 16px rgba(0, 17, 68, 0.14);
    }

    .project-detail-copy {
      padding-right: 34px;
      color: var(--blue);
    }

    .project-detail-copy h3 {
      margin: 0 0 8px;
      color: var(--blue);
      font-size: 23px;
      line-height: 1.08;
      text-transform: uppercase;
    }

    .project-detail-copy p {
      margin: 0 0 10px;
      color: var(--blue);
      font-size: 15px;
      line-height: 1.35;
      font-weight: 500;
    }

    .project-detail-copy .project-summary {
      font-size: 17px;
      font-weight: 500;
    }

    .project-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .project-link-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 16px;
      border: 1px solid rgba(0, 27, 115, 0.28);
      border-radius: 6px;
      background: #001b73;
      color: #ffffff;
      font-size: 13px;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 8px 16px rgba(0, 17, 68, 0.12);
    }

    .project-placeholder-note {
      opacity: 0.72;
    }

    .cta-strip {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 22px;
      align-items: center;
      min-height: 70px;
      margin-bottom: 0;
      padding: 12px 22px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: rgba(246, 248, 255, 0.92);
    }

    .chat-icon {
      width: 54px;
      height: 36px;
      border-radius: 6px;
      color: var(--blue);
    }

    .chat-icon::before {
      content: "";
      position: absolute;
      left: 11px;
      right: 11px;
      top: 14px;
      height: 4px;
      border-radius: 8px;
      background: currentColor;
      box-shadow: 9px 0 currentColor, 18px 0 currentColor;
    }

    .chat-icon::after {
      content: "";
      position: absolute;
      left: 10px;
      bottom: -9px;
      border-width: 9px 8px 0 0;
      border-style: solid;
      border-color: currentColor transparent transparent transparent;
    }

    .cta-copy h2 {
      margin: 0;
      color: var(--blue);
      font-size: 28px;
      line-height: 1.05;
    }

    .cta-copy p {
      margin: 2px 0 0;
      color: var(--blue);
      font-size: 17px;
      font-weight: 700;
    }

    .footer {
      background: linear-gradient(90deg, #020b28, #04143c);
      color: var(--white);
    }

    .footer-inner {
      width: min(1220px, calc(100% - 42px));
      margin: 0 auto;
      padding: 18px 0 10px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.45fr 1fr 1fr 1.2fr;
      gap: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col {
      padding-right: 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .footer-col:last-child {
      border-right: 0;
    }

    .footer-logo {
      width: 188px;
      margin-bottom: 12px;
      padding: 5px 7px;
      border-radius: 5px;
      background: #ffffff;
    }

    .footer-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .footer p,
    .footer a,
    .footer li {
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      line-height: 1.45;
    }

    .footer h3 {
      margin: 0 0 9px;
      color: var(--white);
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .footer ul {
      display: grid;
      gap: 3px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .socials {
      display: flex;
      gap: 11px;
      margin-top: 10px;
    }

    .socials span {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.65);
      border-radius: 50%;
      font-size: 13px;
      font-weight: 900;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 10px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
    }

    .legal {
      display: flex;
      gap: 20px;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(1, 7, 32, 0.7);
    }

    .modal.open {
      display: flex;
    }

    .modal-card {
      width: min(720px, 100%);
      max-height: calc(100vh - 36px);
      overflow: auto;
      border-radius: 10px;
      background: var(--white);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
      animation: modalIn 180ms ease both;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 22px;
      border-bottom: 1px solid var(--line);
      background: var(--soft);
    }

    .modal-head h2 {
      margin: 0;
      color: var(--blue);
      font-size: 24px;
      line-height: 1.1;
    }

    .close-modal {
      width: 38px;
      height: 38px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      color: var(--blue);
      font-size: 24px;
      cursor: pointer;
    }

    .advisory-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 22px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: 7px;
      padding: 10px 11px;
      color: #071165;
      background: var(--white);
    }

    textarea {
      min-height: 104px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: 2px solid rgba(0, 216, 255, 0.7);
      outline-offset: 1px;
    }

    .hidden {
      display: none !important;
    }

    .form-note {
      grid-column: 1 / -1;
      min-height: 20px;
      margin: 0;
      color: #b50029;
      font-size: 13px;
      font-weight: 800;
    }

    .form-actions {
      grid-column: 1 / -1;
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      .header-inner {
        width: calc(100% - 24px);
        max-width: 680px;
        min-height: 72px;
        gap: 12px;
      }

      .logo {
        width: 150px;
      }

      .header-actions {
        gap: 10px;
      }

      .langs {
        gap: 8px;
      }

      .lang {
        font-size: 12px;
      }

      .flag {
        width: 28px;
        height: 19px;
        font-size: 16px;
      }

      .header-actions .btn {
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
      }

      .hero {
        height: 455px;
        background-position: 95% top;
      }

      .hero-content {
        height: 455px;
        align-items: end;
        padding-bottom: 22px;
      }

      .desktop-reference-copy {
        visibility: visible;
        max-width: 520px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        text-shadow: 0 2px 9px rgba(0, 0, 0, 0.78);
      }

      .value-grid,
      .services-grid,
      .metrics-grid,
      .recognition,
      .projects-grid,
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .value-item:nth-child(2),
      .metric:nth-child(2),
      .metric:nth-child(4),
      .recognition-item:nth-child(2),
      .footer-col:nth-child(2) {
        border-right: 0;
      }

      .service-panel-inner {
        grid-template-columns: 1fr;
      }

      .cta-strip {
        grid-template-columns: 66px 1fr;
      }

      .cta-strip .btn {
        grid-column: 1 / -1;
        width: 100%;
      }
    }

    @media (max-width: 620px) {
      body {
        font-size: 15px;
      }

      .header-inner {
        min-height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: stretch;
      }

      .logo {
        margin: 0 auto;
        justify-items: center;
        text-align: center;
      }

      .header-actions {
        justify-content: center;
        flex-wrap: wrap;
      }

      .header-actions .btn {
        width: 100%;
        min-height: 48px;
      }

      .hero,
      .hero-content {
        height: 520px;
      }

      .hero {
        background-size: auto 430px;
        background-position: 76% top;
        background-color: #020b28;
      }

      .hero-content,
      .section,
      .footer-inner {
        width: calc(100% - 24px);
        max-width: 520px;
      }

      .desktop-reference-copy {
        width: 100%;
        max-width: 100%;
      }

      .hero-copy.desktop-reference-copy {
        max-width: none;
      }

      .hero-copy.desktop-reference-copy {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 18px;
        width: auto;
      }

      .hero-copy h1 {
        font-size: 22px;
        line-height: 1.18;
        max-width: 330px;
      }

      .hero-copy p {
        font-size: 14px;
        line-height: 1.28;
        max-width: 340px;
        overflow-wrap: break-word;
      }

      .value-grid,
      .services-grid,
      .metrics-grid,
      .recognition,
      .projects-grid,
      .footer-grid,
      .advisory-form {
        grid-template-columns: 1fr;
      }

      .value-item,
      .metric,
      .recognition-item,
      .footer-col {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .recognition-item,
      .footer-col {
        border-bottom-color: rgba(255, 255, 255, 0.2);
      }

      .value-item {
        padding: 18px 20px;
      }

      .service-card,
      .service-card img {
        min-height: 148px;
      }

      .metric {
        min-height: 72px;
      }

      .project-card {
        grid-template-columns: 42% 1fr;
      }

      .project-panel-inner {
        grid-template-columns: 1fr;
      }

      .project-panel-inner > img {
        min-height: 180px;
      }

      .cta-strip {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .form-actions {
        justify-content: stretch;
      }

      .form-actions .btn {
        width: 100%;
      }
    }

    @media (min-width: 621px) {
      .site-header .mobile-top-contact {
        display: none !important;
      }
    }

    /* Operational refinements requested after mobile review. */
    .service-item {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .service-card {
      width: 100%;
    }

    .service-card img {
      opacity: 0.88;
      filter: saturate(1.1) brightness(0.9);
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%, rgba(0, 0, 0, 0.16));
      pointer-events: none;
    }

    .service-card.image-loaded .card-label {
      opacity: 1;
    }

    .card-label {
      grid-template-rows: auto auto;
      gap: 12px;
      font-size: clamp(24px, 2.35vw, 31px);
    }

    .service-icon {
      width: 58px;
      height: 58px;
      display: inline-grid;
      place-items: center;
      border: 2px solid var(--white);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
      position: relative;
      color: var(--white);
    }

    .service-icon::before,
    .service-icon::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      border-color: currentColor;
      box-sizing: border-box;
      color: currentColor;
    }

    .icon-tech::before {
      width: 28px;
      height: 28px;
      border: 3px solid currentColor;
      border-radius: 50%;
      transform: translate(-58%, -58%);
    }

    .icon-tech::after {
      width: 17px;
      height: 3px;
      background: currentColor;
      border: 0;
      border-radius: 4px;
      transform: translate(16%, 18%) rotate(45deg);
    }

    .icon-innovation::before {
      width: 30px;
      height: 30px;
      border: 3px solid currentColor;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .icon-innovation::after {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
      border: 0;
      box-shadow: -13px 0 currentColor, 13px 0 currentColor, 0 -13px currentColor, 0 13px currentColor;
      transform: translate(-50%, -50%);
    }

    .icon-ip::before {
      width: 26px;
      height: 34px;
      border: 3px solid currentColor;
      border-radius: 2px 2px 8px 8px;
      transform: translate(-50%, -50%);
    }

    .icon-ip::after {
      width: 16px;
      height: 16px;
      border: 3px solid currentColor;
      border-radius: 50%;
      transform: translate(-50%, -54%);
    }

    .icon-offshore::before {
      width: 35px;
      height: 18px;
      border: 3px solid currentColor;
      border-radius: 50%;
      transform: translate(-50%, -50%) rotate(-8deg);
    }

    .icon-offshore::after {
      width: 34px;
      height: 10px;
      border-top: 3px solid currentColor;
      transform: translate(-50%, 8px);
    }

    .icon-models::before {
      width: 34px;
      height: 28px;
      border-left: 3px solid currentColor;
      border-bottom: 3px solid currentColor;
      transform: translate(-50%, -50%);
    }

    .icon-models::after {
      width: 28px;
      height: 17px;
      border-top: 3px solid currentColor;
      border-right: 3px solid currentColor;
      transform: translate(-44%, -58%) skewY(-22deg);
    }

    .icon-other::before,
    .icon-other::after {
      width: 22px;
      height: 4px;
      background: currentColor;
      border: 0;
      border-radius: 10px;
      transform: translate(-50%, -50%);
    }

    .icon-other::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .icon-industry::before {
      width: 32px;
      height: 32px;
      border: 3px solid currentColor;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .icon-industry::after {
      width: 29px;
      height: 20px;
      border: 0;
      border-left: 3px solid currentColor;
      border-right: 3px solid currentColor;
      border-bottom: 3px solid currentColor;
      background:
        radial-gradient(circle, currentColor 0 3px, transparent 4px),
        radial-gradient(circle, currentColor 0 3px, transparent 4px),
        radial-gradient(circle, currentColor 0 3px, transparent 4px);
      background-position: center top, left bottom, right bottom;
      background-repeat: no-repeat;
      background-size: 8px 8px;
      transform: translate(-50%, -42%);
    }

    .icon-regulatory::before {
      width: 28px;
      height: 34px;
      border: 3px solid currentColor;
      border-radius: 4px;
      transform: translate(-50%, -50%);
    }

    .icon-regulatory::after {
      width: 18px;
      height: 10px;
      border-left: 3px solid currentColor;
      border-bottom: 3px solid currentColor;
      transform: translate(-50%, -34%) rotate(-45deg);
    }

    .service-item.open .service-panel {
      max-height: 850px;
      margin-top: 14px;
      opacity: 1;
      transform: translateY(0);
    }

    .service-panel {
      background: rgba(255, 255, 255, 0.97);
    }

    .service-panel-inner {
      grid-template-columns: 1fr;
      align-items: start;
      gap: 15px;
    }

    .service-panel h3 {
      font-size: 24px;
    }

    .consulting-list {
      display: grid;
      gap: 9px;
    }

    .consulting-option {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 9px;
      align-items: start;
      color: #071165;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.25;
      cursor: pointer;
    }

    .consulting-option input {
      width: 18px;
      height: 18px;
      accent-color: var(--blue);
      margin-top: 1px;
    }

    .other-advisory-field {
      display: grid;
      gap: 6px;
      padding-left: 29px;
    }

    .other-advisory-field label {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .other-advisory-field textarea {
      min-height: 82px;
      resize: vertical;
      border: 1px solid var(--line);
      border-radius: 7px;
      padding: 9px 10px;
      color: var(--blue);
      background: #ffffff;
    }

    .metric-icon {
      border: 2px solid currentColor;
      border-radius: 50%;
      position: relative;
    }

    .metric-icon::before,
    .metric-icon::after {
      content: "";
      position: absolute;
      color: currentColor;
    }

    .icon-years::before {
      width: 15px;
      height: 15px;
      border: 2px solid currentColor;
      border-radius: 50%;
      left: 14px;
      top: 8px;
    }

    .icon-years::after {
      width: 26px;
      height: 16px;
      border: 2px solid currentColor;
      border-top: 0;
      border-radius: 0 0 16px 16px;
      left: 9px;
      bottom: 9px;
    }

    .icon-patents::before {
      width: 24px;
      height: 30px;
      border: 2px solid currentColor;
      border-radius: 2px;
      left: 11px;
      top: 8px;
    }

    .icon-patents::after {
      width: 12px;
      height: 12px;
      border: 2px solid currentColor;
      border-radius: 50%;
      left: 17px;
      top: 15px;
    }

    .icon-awards::before {
      width: 18px;
      height: 18px;
      border: 2px solid currentColor;
      border-radius: 50%;
      left: 13px;
      top: 8px;
    }

    .icon-awards::after {
      width: 18px;
      height: 22px;
      border-left: 7px solid currentColor;
      border-right: 7px solid currentColor;
      border-bottom: 12px solid transparent;
      left: 12px;
      bottom: 6px;
    }

    .icon-countries::before {
      width: 26px;
      height: 26px;
      border: 2px solid currentColor;
      border-radius: 50%;
      left: 9px;
      top: 9px;
    }

    .icon-countries::after {
      width: 2px;
      height: 30px;
      background: currentColor;
      left: 23px;
      top: 7px;
      box-shadow: -10px 13px 0 -1px currentColor, 10px 13px 0 -1px currentColor;
    }

    .icon-commercial::before {
      width: 31px;
      height: 17px;
      border-left: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      left: 8px;
      top: 18px;
    }

    .icon-commercial::after {
      width: 24px;
      height: 2px;
      background: currentColor;
      transform: rotate(-28deg);
      left: 15px;
      top: 21px;
      box-shadow: 15px -6px 0 -1px currentColor;
    }

    .projects-actions {
      display: flex;
      justify-content: center;
      margin-top: 14px;
    }

    .btn.secondary {
      background: #ffffff;
      color: var(--blue);
      border: 2px solid var(--blue);
      box-shadow: none;
    }

    .extra-projects {
      margin-top: 14px;
    }

    .project-placeholder {
      grid-template-columns: 1fr;
      min-height: 118px;
    }

    .modal-card {
      background: #34a9df;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .modal-head h2,
    .field label,
    .form-note {
      color: var(--white);
    }

    .close-modal {
      background: #ffffff;
      color: var(--blue);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .modal .field input,
    .modal .field select,
    .modal .field textarea {
      background: #ffffff;
      color: var(--blue);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .modal .form-actions .btn {
      background: #ffffff;
      color: var(--blue);
      box-shadow: none;
    }

    .top-advisory.is-back .calendar-icon {
      display: none;
    }

    .footer-logo {
      width: 214px;
      background: transparent;
      padding: 0;
    }

    .footer-logo img {
      filter: none;
    }

    @media (max-width: 900px) {
      .service-panel-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      .site-header {
        position: relative;
      }

      .header-inner {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: space-between;
        gap: 10px 0;
        position: static;
      }

      .logo {
        width: 148px;
        margin: 0;
        justify-self: start;
      }

      .header-actions {
        display: contents;
      }

      .langs {
        grid-column: 2;
        justify-self: end;
        margin-left: auto;
        position: absolute;
        top: 24px;
        right: auto;
        left: calc(100vw - 160px);
        z-index: 2;
      }

      .header-actions .btn {
        grid-column: 1 / -1;
        justify-self: stretch;
      }

      .hero,
      .hero-content {
        height: min(695px, max(620px, calc(100vw * 1.777)));
      }

      .hero {
        background: #00091f;
      }

      .hero::before {
        background-image: url("assets/hero-clean-muted.png");
        background-size: cover;
        background-position: 61% center;
      }

      .hero::after {
        background:
          linear-gradient(180deg, rgba(0, 8, 28, 0.9) 0%, rgba(0, 10, 32, 0.42) 44%, rgba(0, 8, 28, 0.92) 100%),
          linear-gradient(90deg, rgba(0, 8, 28, 0.74), rgba(0, 14, 42, 0.16) 58%, rgba(0, 8, 28, 0.16)),
          rgba(3, 15, 43, 0.16);
      }

      .hero-content {
        width: calc(100% - 48px);
        align-items: flex-start;
        padding-top: 34px;
      }

      .hero-copy.desktop-reference-copy {
        display: block;
        visibility: visible;
        width: 100%;
        max-width: none;
      }

      .hero-copy h1 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.12;
      }

      .hero-line {
        margin: 14px 0;
      }

      .hero-copy p {
        max-width: 92%;
        font-size: clamp(17px, 4.8vw, 20px);
        line-height: 1.3;
      }

      .card-label {
        font-size: 25px;
      }

      .service-icon {
        width: 54px;
        height: 54px;
      }

      .service-card,
      .service-card img {
        min-height: 172px;
      }

      .service-item.open .service-panel {
        max-height: 960px;
      }

      .project-placeholder {
        min-height: 112px;
      }
    }

    /* Authoritative mobile header reset: one real button, no duplicate, no calendar. */
    @media (max-width: 620px) {
      .site-header {
        min-height: 76px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
      }

      .site-header .header-inner {
        width: calc(100% - 20px) !important;
        max-width: none !important;
        min-height: 76px !important;
        margin: 0 auto !important;
        padding: 8px 0 !important;
        display: grid !important;
        grid-template-columns: 104px minmax(74px, 1fr) 76px !important;
        align-items: center !important;
        gap: 8px !important;
      }

      .site-header .logo {
        grid-column: 1 !important;
        width: 104px !important;
        margin: 0 !important;
        justify-self: start !important;
      }

      .site-header .header-actions {
        grid-column: 2 / 4 !important;
        position: static !important;
        inset: auto !important;
        width: auto !important;
        margin: 0 !important;
        display: grid !important;
        grid-template-columns: minmax(74px, 1fr) 76px !important;
        align-items: center !important;
        gap: 8px !important;
        transform: none !important;
      }

      .site-header .langs {
        grid-column: 1 !important;
        position: static !important;
        width: auto !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        justify-self: center !important;
        gap: 9px !important;
        transform: none !important;
      }

      .site-header .lang {
        font-size: 10px !important;
        gap: 3px !important;
      }

      .site-header .flag {
        width: 26px !important;
        height: 18px !important;
      }

      .site-header .top-advisory {
        grid-column: 2 !important;
        position: static !important;
        inset: auto !important;
        width: 76px !important;
        max-width: 76px !important;
        min-height: 34px !important;
        margin: 0 !important;
        padding: 0 7px !important;
        justify-self: end !important;
        font-size: 10px !important;
        line-height: 1 !important;
        border-radius: 7px !important;
        white-space: nowrap !important;
        transform: none !important;
      }

      .site-header .top-advisory .calendar-icon {
        display: none !important;
      }
    }

    .value-grid,
    .value-item {
      background: #ffffff !important;
    }

    .service-panel-inner {
      position: relative;
    }

    .service-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(0, 27, 115, 0.22);
      border-radius: 50%;
      background: #001b73;
      color: #ffffff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 8px 16px rgba(0, 17, 68, 0.14);
    }

    .recognition-action {
      flex-direction: column;
      gap: 7px;
      text-align: center;
    }

    .recognition-item:nth-child(3) {
      border-right: 0;
    }

    .recognition-toggle {
      min-height: 24px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: 5px;
      padding: 0 9px;
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
    }

    .recognition-panel {
      grid-column: 1 / -1;
      background: #ffffff;
      color: var(--blue);
    }

    .recognition-panel-inner {
      position: relative;
      padding: 20px 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: inset 0 1px 0 rgba(0, 27, 115, 0.08);
    }

    .recognition-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(0, 27, 115, 0.22);
      border-radius: 50%;
      background: #001b73;
      color: #ffffff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 8px 16px rgba(0, 17, 68, 0.14);
    }

    .awards-panel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      padding-right: 52px;
    }

    .award-card {
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .award-card img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: 7px;
      background: #f3f6fb;
    }

    .award-image-button {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: zoom-in;
    }

    .award-lightbox {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: grid;
      place-items: center;
      padding: 22px;
      background: rgba(2, 11, 40, 0.86);
    }

    .award-lightbox img {
      max-width: min(100%, 1100px);
      max-height: 88vh;
      object-fit: contain;
      border-radius: 7px;
      background: #ffffff;
    }

    .award-lightbox-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      background: rgba(2, 11, 40, 0.72);
      color: #ffffff;
      font-weight: 900;
      cursor: pointer;
    }

    .award-card h3,
    .patent-panel h3 {
      margin: 0;
      color: var(--blue);
      font-size: 16px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .patent-panel {
      padding-right: 52px;
    }

    .patent-countries {
      margin: 6px 0 12px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 600;
    }

    .patent-panel ul {
      columns: 2;
      margin: 0;
      padding-left: 18px;
      color: var(--blue);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 400;
    }

    .experience-detail-copy ul,
    .experience-detail-copy li {
      font-weight: 400 !important;
    }

    .project-copy em {
      font-weight: 500 !important;
    }

    .project-detail-copy .project-summary {
      font-weight: 900 !important;
    }

    .project-detail-copy p {
      font-weight: 400 !important;
    }

    .project-detail-copy .project-summary {
      font-weight: 900 !important;
    }

    @media (max-width: 760px) {
      .awards-panel {
        grid-template-columns: 1fr;
      }

      .patent-panel ul {
        columns: 1;
      }
    }

    /* Authoritative final override: keep hero text visible over the clean hero image. */
    .desktop-reference-copy,
    body.hero-image-ready .desktop-reference-copy,
    .hero-copy.desktop-reference-copy,
    body.hero-image-ready .hero-copy.desktop-reference-copy {
      display: block !important;
      visibility: visible !important;
    }

    /* Final interaction layer: language state and clickable experience metrics. */
    .lang.active {
      filter: drop-shadow(0 0 6px rgba(51, 188, 203, 0.55));
    }

    .metrics-grid {
      align-items: stretch;
    }

    .experience-item {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .experience-card.metric {
      width: 100%;
      min-height: 108px;
      border: 0;
      border-right: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
      text-align: left;
      transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .experience-card.metric > div {
      display: block;
    }

    .experience-card:hover,
    .experience-card:focus-visible,
    .experience-item.open .experience-card {
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 10px 22px rgba(0, 17, 68, 0.08);
      transform: translateY(-1px);
      outline: none;
    }

    .experience-item:last-child .experience-card.metric {
      border-right: 0;
    }

    .experience-panel {
      grid-column: 1 / -1;
      max-height: 0;
      margin-top: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-8px);
      transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin-top 220ms ease;
    }

    .experience-item.open .experience-panel,
    .experience-panel.open {
      max-height: 1040px;
      margin-top: 12px;
      opacity: 1;
      transform: translateY(0);
    }

    .experience-panel-inner {
      position: relative;
      padding: 22px 24px;
      border: 1px solid rgba(51, 188, 203, 0.35);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 14px 28px rgba(0, 17, 68, 0.11);
    }

    .experience-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(0, 27, 115, 0.22);
      border-radius: 50%;
      background: #001b73;
      color: #ffffff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 8px 16px rgba(0, 17, 68, 0.14);
    }

    .experience-detail-copy {
      padding-right: 36px;
      color: var(--blue);
    }

    .experience-detail-copy h3 {
      margin: 0 0 8px;
      color: var(--blue);
      font-size: 24px;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .experience-detail-copy h3 span {
      margin-right: 8px;
    }

    .experience-summary {
      max-width: 920px;
      margin: 0 0 14px;
      color: var(--blue);
      font-size: 17px;
      line-height: 1.35;
      font-weight: 800;
    }

    .experience-detail-copy h4 {
      margin: 14px 0 8px;
      color: var(--blue);
      font-size: 15px;
      text-transform: uppercase;
    }

    .experience-detail-copy ul {
      margin: 0;
      padding-left: 18px;
      color: var(--blue);
      font-size: 15px;
      line-height: 1.42;
      font-weight: 700;
    }

    .experience-group {
      margin-top: 12px;
    }

    @media (max-width: 900px) {
      .experience-card.metric {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 620px) {
      .experience-card.metric {
        min-height: 84px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .experience-detail-copy {
        padding-right: 0;
      }

      .experience-panel-inner {
        padding: 18px 16px;
      }

      .experience-detail-copy h3 {
        padding-right: 34px;
        font-size: 19px;
      }

      .experience-summary,
      .experience-detail-copy ul {
        font-size: 14px;
      }

      .footer-logo {
        width: 139px !important;
      }
    }

    @media (max-width: 620px) {
      .hero-content {
        width: calc(100% - 40px) !important;
        padding-top: 34px !important;
        align-items: flex-start !important;
      }

      .hero-copy.desktop-reference-copy,
      body.hero-image-ready .hero-copy.desktop-reference-copy {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: min(100%, 330px) !important;
        max-width: 330px !important;
      }

      .hero-copy h1 {
        max-width: 330px !important;
        font-size: clamp(23px, 6.45vw, 27px) !important;
        line-height: 1.12 !important;
        overflow-wrap: break-word !important;
      }

      .hero-copy p {
        width: 100% !important;
        max-width: 330px !important;
        font-size: clamp(14px, 3.9vw, 16px) !important;
        line-height: 1.3 !important;
        overflow-wrap: break-word !important;
      }
    }

    /* Final hero treatment: clean image plus real HTML copy. */
    .desktop-reference-copy,
    body.hero-image-ready .desktop-reference-copy {
      display: block !important;
      visibility: visible !important;
    }

    @media (max-width: 620px) {
      .hero-copy.desktop-reference-copy,
      body.hero-image-ready .hero-copy.desktop-reference-copy {
        display: block !important;
        visibility: visible !important;
      }
    }

    /* Final deployment mobile header: hide desktop CTA, show compact mobile CTA. */
    @media (max-width: 620px) {
      .site-header .header-inner {
        grid-template-columns: 104px minmax(74px, 1fr) 76px !important;
      }

      .site-header .header-actions {
        display: contents !important;
      }

      .site-header .header-actions .langs {
        grid-column: 2 !important;
        display: flex !important;
        justify-self: center !important;
        justify-content: center !important;
      }

      .site-header .header-actions .top-advisory {
        display: none !important;
      }

      .site-header .mobile-top-contact {
        display: inline-flex !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        justify-self: end !important;
        align-self: center !important;
        width: 76px !important;
        max-width: 76px !important;
        min-height: 34px !important;
        padding: 0 7px !important;
        font-size: 10px !important;
        line-height: 1 !important;
        border-radius: 7px !important;
        white-space: nowrap !important;
        transform: none !important;
      }
    }

    /* Emergency-clean mobile placement: viewport-based, independent of inherited header width. */
    @media (max-width: 620px) {
      .site-header {
        position: relative !important;
        min-height: 78px !important;
      }

      .site-header .logo {
        width: 104px !important;
      }

      .site-header .header-actions {
        display: block !important;
        position: static !important;
        width: auto !important;
      }

      .site-header .header-actions .langs {
        position: absolute !important;
        top: 16px !important;
        left: min(calc(50vw - 37px), 158px) !important;
        width: 74px !important;
        display: flex !important;
        justify-content: center !important;
        gap: 9px !important;
        z-index: 30 !important;
      }

      .site-header .header-actions .top-advisory {
        display: none !important;
      }

      .site-header .mobile-top-contact {
        position: absolute !important;
        top: 22px !important;
        left: min(calc(100vw - 88px), 302px) !important;
        width: 76px !important;
        max-width: 76px !important;
        min-height: 34px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 7px !important;
        font-size: 10px !important;
        line-height: 1 !important;
        transform: none !important;
        z-index: 31 !important;
      }
    }

    @media (max-width: 620px) {
      .site-header #topAdvisoryButton {
        display: none !important;
      }

      .site-header .mobile-top-contact {
        display: inline-flex !important;
      }

      .site-header .header-inner .header-actions .langs {
        position: absolute !important;
        top: 16px !important;
        left: 158px !important;
        right: auto !important;
        width: 74px !important;
        display: flex !important;
        justify-content: center !important;
        gap: 9px !important;
      }
    }

    /* Mobile header: one row with logo, language flags, and contact button. */
    @media (max-width: 620px) {
      .site-header {
        min-height: 70px;
      }

      .header-inner {
        width: calc(100% - 20px);
        min-height: 70px;
        display: grid;
        grid-template-columns: 108px 1fr 94px;
        align-items: center;
        gap: 8px;
        padding: 6px 0;
      }

      .logo {
        width: 108px;
        grid-column: 1;
        justify-self: start;
      }

      .header-actions {
        position: static;
        display: contents !important;
      }

      .header-actions .langs {
        position: static !important;
        width: auto;
        justify-content: center;
        gap: 10px;
        grid-column: 2;
        justify-self: center;
        align-self: center;
      }

      .header-actions .lang {
        font-size: 10px;
      }

      .header-actions .flag {
        width: 26px;
        height: 18px;
      }

      .header-actions .top-advisory {
        position: static;
        width: 94px;
        max-width: 94px;
        min-height: 34px;
        grid-column: 3;
        justify-self: end;
        padding: 0 7px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
      }
    }

    /* Final CTA sizing and mobile alignment refinements. */
    @media (min-width: 621px) {
      .top-advisory {
        width: 176px;
        min-height: 42px;
        padding: 0 10px;
        font-size: 11px;
        line-height: 1.1;
        text-align: center;
      }

      .top-advisory .calendar-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
      }
    }

    @media (max-width: 620px) {
      .langs {
        left: calc(100vw - 116px);
      }

      .header-actions .btn {
        left: calc(100vw - 168px);
        width: 156px;
        min-height: 36px;
        font-size: 9.6px;
        padding: 0 7px;
      }

      .hero,
      .hero-content {
        height: min(440px, max(405px, calc(100vw * 1.08)));
      }
    }

    /* Focused fixes: notebook hero, compact mobile header, modal contrast, metrics and footer. */
    .desktop-reference-copy,
    body.hero-image-ready .desktop-reference-copy {
      display: none !important;
    }

    .metrics-grid .metric {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }

    .metrics-grid .metric-icon {
      display: none;
    }

    .footer-grid {
      grid-template-columns: 1.45fr 1.2fr;
    }

    .footer-col:nth-child(1) {
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .footer-col:nth-child(2) {
      border-right: 0;
    }

    .modal-card {
      background: #f3f6fb;
      color: var(--blue);
      border: 1px solid rgba(5, 20, 158, 0.12);
    }

    .modal-head {
      background: var(--blue);
      border-bottom: 0;
    }

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

    .modal-card .field label {
      color: var(--blue);
    }

    .modal-card .form-note {
      color: var(--blue);
    }

    .modal .field input,
    .modal .field select,
    .modal .field textarea {
      background: var(--white);
      color: var(--blue);
      border-color: #cbd3e9;
    }

    .modal .form-actions .btn {
      background: var(--white);
      color: var(--blue);
      border: 2px solid var(--blue);
      box-shadow: none;
    }

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

    @media (max-width: 620px) {
      .header-inner {
        gap: 8px 0;
        padding: 9px 0 12px;
        min-height: 104px;
      }

      .logo {
        width: 148px;
      }

      .langs {
        top: 18px;
        left: calc(100vw - 158px);
      }

      .header-actions .btn {
        position: absolute;
        top: 57px;
        right: auto;
        left: calc(100vw - 280px);
        grid-column: auto;
        width: 190px;
        min-height: 40px;
        padding: 0 9px;
        font-size: 11px;
        line-height: 1.12;
        gap: 0;
        border-radius: 7px;
        text-align: center;
      }

      .header-actions .calendar-icon {
        display: none;
      }

      .hero,
      .hero-content {
        height: min(610px, max(535px, calc(100vw * 1.46)));
      }

      .hero {
        background-size: 100% 100%;
      }

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

      .footer-col:nth-child(1),
      .footer-col:nth-child(2) {
        border-right: 0;
      }

      .section-title {
        max-width: 340px;
        font-size: 22px;
        overflow-wrap: break-word;
      }
    }

    /* Pin the initial mobile header actions to the right edge. */
    @media (max-width: 620px) {
      .site-header {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        min-height: 110px;
        overflow: hidden;
      }

      .header-inner {
        width: calc(100% - 24px);
        max-width: none;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        padding: 9px 0 12px;
      }

      .header-actions {
        position: absolute;
        top: 17px;
        right: 84px;
        left: auto;
        width: 118px;
        display: flex !important;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 7px;
        z-index: 20;
      }

      .header-actions .langs {
        display: flex !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: 72px;
        justify-content: flex-end;
        gap: 6px;
        margin-left: 0;
        opacity: 1;
        visibility: visible;
        z-index: 20;
      }

      .header-actions .lang {
        display: grid !important;
        font-size: 11px;
      }

      .header-actions .flag {
        width: 28px;
        height: 19px;
      }

      .header-actions .top-advisory {
        position: static;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        inset-inline-start: auto;
        inset-inline-end: auto;
        width: 118px;
        max-width: 118px;
        min-height: 34px;
        padding: 0 8px;
        font-size: 10px;
        line-height: 1;
        border-radius: 7px;
        text-align: center;
        white-space: nowrap;
        transform: none;
        z-index: 19;
      }

      .top-advisory .calendar-icon {
        display: none;
      }
    }

    /* Final mobile header layout: logo left, flags center, Contact Us right. */
    @media (max-width: 620px) {
      .site-header {
        min-height: 78px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
      }

      .header-inner {
        width: calc(100% - 20px) !important;
        max-width: none !important;
        min-height: 78px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 104px 1fr 76px;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
      }

      .header-inner .logo {
        width: 104px;
        grid-column: 1;
        justify-self: start;
      }

      .header-inner .header-actions {
        position: static !important;
        inset: auto;
        width: auto;
        display: contents !important;
      }

      .header-inner .header-actions .langs {
        position: static !important;
        width: auto;
        grid-column: 2;
        display: flex !important;
        justify-content: center;
        justify-self: center;
        align-self: center;
        gap: 10px;
      }

      .header-inner .header-actions .top-advisory {
        display: none !important;
      }

      .header-inner .mobile-top-contact {
        display: inline-flex !important;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        width: 76px;
        min-height: 34px;
        padding: 0 7px;
        font-size: 10px;
        line-height: 1;
        border-radius: 7px;
        white-space: nowrap;
        transform: none;
      }

      .header-inner .header-actions .top-advisory .calendar-icon,
      .header-inner .mobile-top-contact .calendar-icon {
        display: none !important;
      }
    }

    /* Definitive mobile header override: one button only, same as approved mockup. */
    @media (max-width: 620px) {
      .site-header {
        min-height: 78px !important;
      }

      .site-header .header-inner {
        width: calc(100% - 20px) !important;
        min-height: 78px !important;
        display: grid !important;
        grid-template-columns: 104px minmax(74px, 1fr) 76px !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 8px 0 !important;
      }

      .site-header .logo {
        grid-column: 1 !important;
        width: 104px !important;
        justify-self: start !important;
      }

      .site-header .header-actions {
        grid-column: 2 / 4 !important;
        display: grid !important;
        grid-template-columns: minmax(74px, 1fr) 76px !important;
        align-items: center !important;
        gap: 8px !important;
        position: static !important;
        width: auto !important;
        transform: none !important;
      }

      .site-header .langs {
        grid-column: 1 !important;
        display: flex !important;
        justify-content: center !important;
        justify-self: center !important;
        width: auto !important;
        gap: 9px !important;
        position: static !important;
        transform: none !important;
      }

      .site-header .header-inner .header-actions .top-advisory {
        display: inline-flex !important;
        grid-column: 2 !important;
        justify-self: end !important;
        width: 76px !important;
        max-width: 76px !important;
        min-height: 34px !important;
        padding: 0 7px !important;
        font-size: 10px !important;
        line-height: 1 !important;
        position: static !important;
        transform: none !important;
        white-space: nowrap !important;
      }

      .site-header .top-advisory .calendar-icon {
        display: none !important;
      }
    }

    /* Authoritative final override: keep hero text visible over the clean hero image. */
    .desktop-reference-copy,
    body.hero-image-ready .desktop-reference-copy,
    .hero-copy.desktop-reference-copy,
    body.hero-image-ready .hero-copy.desktop-reference-copy {
      display: block !important;
      visibility: visible !important;
    }
