    :root {
      --blue-950: #061f3f;
      --blue-900: #082a5e;
      --blue-800: #123985;
      --blue-700: #143f9a;
      --blue-100: #edf4fb;
      --green: #00b531;
      --green-dark: #008e2d;
      --ink: #10243d;
      --muted: #5e6f86;
      --line: #dce6ef;
      --soft: #f5f7f9;
      --white: #fff;
      --shadow: 0 18px 50px rgba(8, 42, 94, 0.16);
      --page-max: 1840px;
      --page-gutter: clamp(20px, 5vw, 110px);
      --body-copy-size: clamp(15px, 1.05vw, 19px);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

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

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

    .shell {
      width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--white);
      font-weight: 800;
      line-height: 1;
      text-transform: uppercase;
    }

    .brand-logo {
      width: clamp(180px, 15vw, 254px);
      height: auto;
      transition: filter 0.35s ease, opacity 0.35s ease;
    }

    .brand svg {
      width: 39px;
      height: 45px;
      flex: 0 0 auto;
    }

    .brand span {
      display: block;
      font-size: 22px;
    }

    .brand small {
      display: block;
      margin-top: 4px;
      font-size: 16px;
      font-weight: 700;
      opacity: 0.78;
    }

    .wave-mark {
      position: absolute;
      width: clamp(150px, 23vw, 325px);
      height: clamp(94px, 14vw, 210px);
      pointer-events: none;
    }

    .wave-mark span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 30%;
      border-radius: 999px;
      transform: skewX(-22deg);
      background: var(--white);
      clip-path: polygon(0 22%, 48% 22%, 48% 0, 100% 0, 100% 58%, 48% 58%, 48% 82%, 0 82%);
    }

    .wave-mark span:nth-child(1) {
      top: 0;
    }

    .wave-mark span:nth-child(2) {
      top: 38%;
    }

    .wave-mark::after {
      content: "";
      position: absolute;
      right: -2%;
      top: 0;
      width: 51%;
      height: 30%;
      border-radius: 999px;
      transform: skewX(-22deg);
      background: var(--green);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 96px);
      overflow: hidden;
      color: var(--white);
      background: var(--blue-950);
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: flex;
      width: 100%;
      transition: transform 0.6s ease;
      touch-action: pan-y;
      cursor: grab;
      will-change: transform;
    }

    .hero-slide {
      position: relative;
      flex: 0 0 100%;
      min-width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
    }

    .hero-slider.is-swiping {
      cursor: grabbing;
    }

    .hero-slide:nth-child(1) {
      background-image: url("../images/banner_01.jpg");
    }

    .hero-slide:nth-child(2) {
      background-image: url("../images/banner_02.jpg");
    }

    .hero-slide:nth-child(3) {
      background-image: url("../images/banner_03.jpg");
    }

    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 30;
      background: var(--white);
      box-shadow: 0 8px 26px rgba(4, 24, 50, 0.08);
      transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    }

    .site-header::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(8, 42, 94, 0.1);
      opacity: 1;
      transition: opacity 0.35s ease;
    }

    .nav {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      min-height: 96px;
      padding: 0;
      transition: min-height 0.35s ease;
    }

    .site-header .brand-logo {
      width: clamp(170px, 11vw, 224px);
      filter: brightness(0) saturate(100%) invert(16%) sepia(57%) saturate(1754%) hue-rotate(191deg) brightness(87%) contrast(96%);
    }

    .nav ul {
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(18px, 3vw, 62px);
      padding: 0;
      margin: 0;
      list-style: none;
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      color: #252a31;
    }

    .nav li {
      position: relative;
      white-space: nowrap;
    }

    .nav li::after {
      content: "";
      position: absolute;
      left: 50%;
      right: 50%;
      bottom: -34px;
      height: 3px;
      background: var(--green);
      transition: left 0.28s ease, right 0.28s ease;
    }

    .nav li:hover::after,
    .nav li:focus-within::after {
      left: 0;
      right: 0;
    }

    .nav-sub {
      position: absolute;
      left: 50%;
      top: calc(100% + 34px);
      width: max-content;
      min-width: 190px;
      padding: 14px 0;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 16px 44px rgba(4, 24, 50, 0.16);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 12px);
      transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .nav-sub a {
      display: block;
      padding: 10px 22px;
      color: #1d3554;
      font-size: 15px;
      line-height: 1.55;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav-sub a:hover {
      color: var(--green-dark);
      background: #f3f7fb;
    }

    .nav li:hover .nav-sub,
    .nav li:focus-within .nav-sub {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .nav a:hover {
      color: var(--green-dark);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: 8px;
    }

    .language-picker {
      position: relative;
    }

    .language-toggle {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid rgba(8, 42, 94, 0.18);
      border-radius: 50%;
      color: #252a31;
      background: var(--white);
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .language-toggle:hover,
    .language-toggle:focus-visible {
      color: var(--green-dark);
      border-color: var(--green);
      box-shadow: 0 8px 22px rgba(8, 42, 94, 0.12);
      outline: none;
    }

    .language-toggle svg {
      width: 25px;
      height: 25px;
      fill: currentColor;
    }

    .language-menu {
      position: absolute;
      top: calc(100% + 14px);
      right: 0;
      width: 128px;
      padding: 8px;
      color: #252a31;
      background: var(--white);
      box-shadow: 0 18px 38px rgba(4, 24, 50, 0.14);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .language-menu a {
      display: block;
      padding: 9px 12px;
      font-size: 16px;
      line-height: 1.2;
      text-align: center;
    }

    .language-menu a:hover {
      color: var(--green-dark);
      background: #f3f7fb;
    }

    .language-picker:hover .language-menu,
    .language-picker:focus-within .language-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      padding: 0;
      border: 1px solid rgba(8, 42, 94, 0.24);
      background: var(--white);
      color: var(--blue-900);
      cursor: pointer;
    }

    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    body.nav-locked {
      overflow: hidden;
    }

    .nav-scrolled .site-header {
      box-shadow: 0 10px 34px rgba(4, 24, 50, 0.1);
    }

    .nav-scrolled .site-header::after {
      opacity: 1;
      background: rgba(8, 42, 94, 0.1);
    }

    .nav-scrolled .nav {
      min-height: 78px;
    }

    .nav-scrolled .nav li::after {
      bottom: -27px;
    }

    .hero-dots {
      position: absolute;
      left: 50%;
      bottom: 34px;
      z-index: 3;
      display: flex;
      gap: 12px;
      transform: translateX(-50%);
    }

    .hero-dots button {
      width: 34px;
      height: 4px;
      padding: 0;
      border: 0;
      background: rgba(255, 255, 255, 0.42);
      cursor: pointer;
      transition: background 0.25s ease, width 0.25s ease;
    }

    .hero-dots button.is-active {
      width: 56px;
      background: var(--green);
    }

    .hero h1 {
      max-width: 1040px;
      margin: 0;
      font-size: clamp(46px, 7.1vw, 118px);
      line-height: 0.95;
      font-weight: 900;
      text-transform: uppercase;
    }

    .hero p {
      margin: 26px 0 0;
      max-width: 720px;
      font-size: clamp(16px, 1.8vw, 24px);
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.86);
    }

    .hero .wave-mark {
      z-index: 2;
      right: -28px;
      top: 24vh;
    }

    .clients {
      background: #f1f3f5;
      padding: 82px 0 52px;
    }

    .clients-top {
      display: grid;
      grid-template-columns: minmax(250px, 0.95fr) minmax(300px, 1.4fr);
      gap: 52px;
      align-items: end;
      margin-bottom: 64px;
    }

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

    h2 {
      margin: 0;
      font-size: clamp(34px, 4.6vw, 62px);
      line-height: 0.95;
      color: var(--blue-800);
      font-weight: 900;
      text-transform: uppercase;
    }

    .clients h2 {
      color: var(--green);
    }

    .section-note {
      margin: 0;
      color: var(--muted);
      font-size: var(--body-copy-size);
      line-height: 1.65;
      font-weight: 400;
    }

    .trust-line {
      margin-top: 70px;
      color: var(--blue-900);
      font-size: var(--body-copy-size);
      font-weight: 800;
    }

    .client-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      margin-top: 24px;
    }

    .metric strong {
      display: inline-block;
      color: var(--blue-700);
      font-size: clamp(44px, 5vw, 70px);
      line-height: 0.9;
      font-weight: 900;
    }

    .metric sup {
      color: var(--blue-700);
      font-size: 24px;
      font-weight: 900;
    }

    .metric span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: var(--body-copy-size);
      font-weight: 800;
    }

    .client-carousel {
      position: relative;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) 42px;
      gap: 14px;
      align-items: center;
      max-width: 100%;
    }

    .client-viewport {
      overflow: hidden;
      padding: 2px 0;
    }

    .client-track {
      display: flex;
      gap: 14px;
      transition: transform 0.45s ease;
      will-change: transform;
    }

    .client-logo-card,
    .brand-tile {
      display: grid;
      place-items: center;
      min-height: 98px;
      padding: 16px 12px;
      border: 1px solid #e2e9ef;
      border-radius: 8px;
      background: var(--white);
      color: #17345c;
      box-shadow: 0 8px 18px rgba(16, 36, 61, 0.04);
      font-weight: 900;
      text-align: center;
    }

    .client-logo-card {
      flex: 0 0 calc((100% - 84px) / 7);
      height: clamp(104px, 5.4vw, 126px);
      box-shadow: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .client-logo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(8, 42, 94, 0.10);
      border-color: var(--green);
    }

    .client-logo-card img {
      width: auto;
      height: auto;
      max-width: 86%;
      max-height: 78%;
      object-fit: contain;
      transition: transform 0.35s ease;
    }

    .client-logo-card:hover img {
      transform: scale(1.10);
    }

    .client-arrow {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid #d8e3ee;
      border-radius: 50%;
      color: var(--blue-800);
      background: var(--white);
      box-shadow: 0 8px 20px rgba(16, 36, 61, 0.08);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    }

    .client-arrow:hover {
      color: var(--white);
      border-color: var(--green);
      background: var(--green);
      transform: translateY(-1px);
    }

    .client-arrow:disabled {
      opacity: 0.32;
      cursor: default;
      transform: none;
    }

    .client-arrow:disabled:hover {
      color: var(--blue-800);
      border-color: #d8e3ee;
      background: var(--white);
    }

    .brand-tile em {
      color: var(--green-dark);
      font-style: normal;
    }

    .core {
      position: relative;
      overflow: hidden;
      padding: 132px 0 128px;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(2, 14, 31, 0.1) 0%, rgba(3, 21, 49, 0.2) 33%, rgba(3, 18, 40, 0.72) 52%, rgba(3, 18, 40, 0.92) 100%),
        url("../images/cen_01.jpg") center / cover no-repeat;
    }

    .core::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(2, 15, 35, 0.18), rgba(2, 12, 29, 0.35));
      pointer-events: none;
    }

    .core-content {
      position: relative;
      z-index: 1;
      margin-left: min(39vw, 520px);
    }

    .core h2 {
      margin-bottom: 64px;
      color: var(--white);
      font-size: clamp(34px, 4.4vw, 58px);
    }

    .strength-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 42px 58px;
    }

    .strength h3 {
      margin: 0 0 10px;
      color: var(--green);
      font-size: 17px;
      line-height: 1.05;
      font-weight: 900;
      text-transform: uppercase;
    }

    .strength p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: var(--body-copy-size);
      line-height: 1.65;
      font-weight: 400;
    }

    .process {
      position: relative;
      padding: 72px 0 76px;
      min-height: 0;
      color: var(--white);
      background: var(--blue-800);
      overflow: hidden;
    }

    .process::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5, 31, 77, 0.76), rgba(18, 57, 133, 0.70)),
        url("../images/cen_02.jpg") center / cover no-repeat;
    }

    .process-decoration {
      position: absolute;
      right: -36px;
      top: 54px;
      z-index: 1;
      width: 180px;
      height: auto;
      opacity: 0.95;
      pointer-events: none;
    }

    .process h2 {
      position: relative;
      z-index: 2;
      margin: 0 0 40px;
      color: var(--white);
      text-align: center;
      font-size: clamp(48px, 5vw, 86px);
      line-height: 0.95;
      text-transform: uppercase;
    }

    .process-carousel {
      position: relative;
      z-index: 2;
    }

    .process-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 18px;
      width: min(1540px, calc(100% - 96px));
      margin: 0 auto;
      counter-reset: process-step;
    }

    .process-cards {
      display: flex;
      gap: 16px;
      transition: transform 0.45s ease;
      will-change: transform;
      cursor: grab;
      user-select: none;
    }

    .process-cards.is-swiping {
      cursor: grabbing;
    }

    .step {
      display: flex;
      align-items: flex-start;
      aspect-ratio: 0.72 / 1;
      min-height: 0;
      padding: 24px 18px 28px;
      min-width: 0;
      position: relative;
      z-index: auto;
      overflow: visible;
      border-radius: 20px;
      color: var(--white);
      background: linear-gradient(145deg, #08d800 0%, #00b92d 100%);
      box-shadow: 0 20px 48px rgba(2, 20, 55, 0.20);
      counter-increment: process-step;
    }

    .step:nth-child(4) {
      grid-column: auto;
      grid-row: auto;
    }

    .step:nth-child(5) {
      grid-column: auto;
      grid-row: auto;
    }

    .step:nth-child(6) {
      grid-column: auto;
      grid-row: auto;
    }

    .process-arrow {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: 50%;
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 24px rgba(4, 24, 50, 0.14);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    }

    .process-arrow:hover {
      border-color: var(--green);
      background: var(--green);
      transform: translateY(-1px);
    }

    .process-arrow:disabled {
      opacity: 0.32;
      cursor: default;
      transform: none;
    }

    .process-arrow:disabled:hover {
      border-color: rgba(255, 255, 255, 0.42);
      background: rgba(255, 255, 255, 0.1);
    }

    .step-image {
      overflow: hidden;
      border-radius: 8px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 12px 28px rgba(8, 42, 94, 0.12);
      transition: box-shadow 0.45s ease;
    }

    .step img {
      width: 100%;
      aspect-ratio: 1.48 / 1;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .step:hover img {
      transform: scale(1.06);
    }

    .step:hover .step-image {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 18px 40px rgba(8, 42, 94, 0.20);
    }

    .step-body {
      position: relative;
      z-index: 2;
      padding: 0;
    }

    .step h3 {
      margin: 0 0 20px;
      color: var(--blue-800);
      font-size: clamp(18px, 1.12vw, 24px);
      line-height: 1.05;
      font-weight: 900;
      text-transform: uppercase;
    }

    .step p {
      margin: 0;
      color: var(--white);
      font-size: var(--body-copy-size);
      line-height: 1.45;
      font-weight: 700;
    }

    .step::before {
      content: counter(process-step);
      position: absolute;
      left: 50%;
      right: auto;
      bottom: 6px;
      display: grid;
      place-items: center;
      width: 132px;
      height: 132px;
      color: rgba(0, 132, 39, 0.24);
      font-size: 132px;
      line-height: 1;
      font-weight: 900;
      text-align: center;
      transform: translateX(-50%);
    }

    .process-connector {
      position: absolute;
      z-index: 10;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: 0 10px 24px rgba(5, 31, 77, 0.18);
    }

    .process-connector::before {
      content: "";
      width: 14px;
      height: 14px;
      border-top: 5px solid var(--blue-800);
      border-right: 5px solid var(--blue-800);
    }

    .process-connector-right {
      right: -31px;
      top: calc(50% - 22px);
    }

    .process-connector-right::before {
      transform: rotate(45deg) translate(-2px, 2px);
    }

    .process-connector-down {
      right: -31px;
      top: calc(50% - 22px);
    }

    .process-connector-down::before {
      transform: rotate(45deg) translate(-2px, 2px);
    }

    .process-connector-left {
      right: -31px;
      top: calc(50% - 22px);
    }

    .process-connector-left::before {
      transform: rotate(45deg) translate(-2px, 2px);
    }

    .brands {
      padding: 102px 0 108px;
      background: var(--white);
    }

    .brands-head {
      padding-bottom: 28px;
      margin-bottom: 42px;
      border-bottom: 1px solid var(--line);
    }

    .brands-head p {
      margin: 18px 0 0;
      color: var(--green);
      font-size: var(--body-copy-size);
      font-weight: 900;
      text-transform: uppercase;
    }

    .brands-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 82px;
      align-items: center;
    }

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

    .brand-tile {
      min-height: 94px;
      padding: 10px;
      color: var(--blue-800);
      font-size: clamp(16px, 1.4vw, 20px);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .brand-tile img {
      width: 100%;
      height: 100%;
      max-height: 76px;
      object-fit: contain;
      transition: transform 0.4s ease;
    }

    .brand-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(8, 42, 94, 0.12);
      border-color: var(--green);
    }

    .brand-tile:hover img {
      transform: scale(1.08);
    }

    .brand-benefits {
      display: grid;
      gap: 0;
    }

    .benefit {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 15px;
      align-items: center;
      min-height: 86px;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
      color: var(--blue-800);
      font-size: var(--body-copy-size);
      line-height: 1.45;
      font-weight: 700;
      text-transform: uppercase;
    }

    .benefit:last-child {
      border-bottom: 0;
    }

    .benefit-icon {
      display: block;
      width: 42px;
      height: 42px;
    }

    .benefit-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer {
      position: relative;
      overflow: hidden;
      padding: 46px 0 78px;
      color: rgba(255, 255, 255, 0.82);
      background: var(--blue-800);
    }

    .footer .brand {
      margin-bottom: 34px;
    }

    .footer .brand-logo {
      width: 190px;
    }

    .footer .shell {
      width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
    }

    .footer-columns {
      display: grid;
      grid-template-columns: 1.16fr 1fr 1.02fr 1.02fr 0.82fr;
      gap: clamp(42px, 5vw, 92px);
      padding: 24px 0 38px;
      border-top: 1px solid rgba(255, 255, 255, 0.34);
    }

    .footer h3 {
      margin: 0 0 18px;
      color: var(--green);
      font-size: 17px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .footer p,
    .footer li {
      margin: 0;
      font-size: var(--body-copy-size);
      line-height: 1.68;
      font-weight: 400;
    }

    .footer li {
      white-space: nowrap;
    }

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

    .contact-row {
      display: grid;
      grid-template-columns: max-content max-content max-content;
      align-items: center;
      column-gap: clamp(36px, 4.2vw, 86px);
      row-gap: 8px;
      padding: 22px 0;
      margin-top: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.46);
      border-bottom: 1px solid rgba(255, 255, 255, 0.46);
      color: rgba(255, 255, 255, 0.78);
      font-size: var(--body-copy-size);
      font-weight: 400;
    }

    .contact-row span {
      min-width: 0;
      white-space: nowrap;
    }

    .contact-row .contact-address {
      grid-column: 1 / -1;
      white-space: normal;
    }

    .contact-row strong {
      color: var(--green);
      font-weight: 900;
    }

    .copyright {
      margin: 0;
      font-size: var(--body-copy-size);
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 400;
      text-transform: uppercase;
    }

    .footer-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      padding-top: 52px;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 0;
    }

    .footer-socials a {
      display: block;
      width: 30px;
      height: 32px;
    }

    .footer-socials img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .float-tools {
      position: fixed;
      right: 0;
      bottom: 66px;
      z-index: 5;
      display: grid;
      gap: 0.75px;
    }

    .float-tools a {
      display: grid;
      place-items: center;
      width: 49.7777px;
      height: 49.7777px;
      color: var(--white);
      background: #e0e2e6;
      border: 0;
      position: relative;
      overflow: visible;
    }

    .float-tools a:first-child {
      background: #e0e2e6;
    }

    .float-tools a:last-child {
      border-bottom: 0;
    }

    .float-tools a:nth-child(2)::before,
    .float-tools a:nth-child(3)::before {
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate(10px, -50%);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      box-sizing: border-box;
      background-color: #fff;
      border: 1px solid rgba(8, 42, 94, 0.14);
      box-shadow: 0 6px 22px rgba(8, 42, 94, 0.2);
    }

    .float-tools a:nth-child(2)::before {
      content: "+86 13942079986";
      width: max-content;
      padding: 15px 20px;
      color: #143a72;
      font-size: 16px;
      line-height: 1;
      white-space: nowrap;
    }

    .float-tools a:nth-child(3)::before {
      content: "";
      width: 142px;
      height: 142px;
      padding: 8px;
      background-image: url("/images/ewm.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: calc(100% - 16px) calc(100% - 16px);
    }

    .float-tools a:nth-child(2):hover::before,
    .float-tools a:nth-child(2):focus-visible::before,
    .float-tools a:nth-child(3):hover::before,
    .float-tools a:nth-child(3):focus-visible::before {
      opacity: 1;
      visibility: visible;
      transform: translate(0, -50%);
    }

    .float-tools img {
      display: block;
      width: 83.3334%;
      height: 83.3334%;
      object-fit: contain;
    }

    @media (max-width: 1300px) {
      :root {
        --page-gutter: 32px;
      }
    }

    @media (min-width: 1301px) {
      .core {
        padding: 200px 0 200px;
        min-height: 760px;
      }
    }

    @media (max-width: 1040px) {
      .hero {
        min-height: 650px;
      }

      .nav {
        min-height: 96px;
      }

      .nav ul {
        gap: 14px 22px;
      }

      .clients-top,
      .brands-layout {
        grid-template-columns: 1fr;
      }

      .trust-line {
        margin-top: 32px;
      }

      .client-logo-card {
        flex-basis: calc((100% - 42px) / 4);
      }

      .core-content {
        max-width: 720px;
        margin-left: auto;
      }

      .core {
        padding: 100px 0 104px;
        background-position: 30% center;
      }

      .core h2 {
        margin-bottom: 48px;
      }

      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        width: min(660px, calc(100% - 56px));
      }

      .step:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
      }

      .step:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
      }

      .step:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
      }

      .step:nth-child(6) {
        grid-column: 2;
        grid-row: 3;
      }

      .step {
        min-height: 0;
        padding: 24px 24px 28px;
      }

      .step h3 {
        margin-bottom: 22px;
        font-size: 20px;
      }

      .step p {
        font-size: var(--body-copy-size);
      }

      .process-connector-right {
        right: -31px;
      }

      .process-connector-left {
        left: -31px;
      }

      .step:nth-child(2) .process-connector,
      .step:nth-child(4) .process-connector {
        left: calc(50% - 22px);
        right: auto;
        top: auto;
        bottom: -31px;
      }

      .step:nth-child(2) .process-connector::before,
      .step:nth-child(4) .process-connector::before {
        transform: rotate(135deg) translate(-2px, 2px);
      }

      .step:nth-child(3) .process-connector {
        left: -31px;
        right: auto;
        top: calc(50% - 22px);
        bottom: auto;
      }

      .step:nth-child(3) .process-connector::before {
        transform: rotate(225deg) translate(-2px, 2px);
      }

      .step:nth-child(5) .process-connector {
        left: auto;
        right: -31px;
        top: calc(50% - 22px);
        bottom: auto;
      }

      .step:nth-child(5) .process-connector::before {
        transform: rotate(45deg) translate(-2px, 2px);
      }

      .brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .contact-row {
        grid-template-columns: repeat(3, max-content);
        justify-content: start;
      }
    }

    @media (max-width: 720px) {
      .shell {
        width: min(100% - 20px, 1600px);
      }

      .hero {
        min-height: 0;
        aspect-ratio: 3403 / 1898;
      }

      .hero-slider {
        position: relative;
        height: 100%;
      }

      .hero-slide {
        background-size: contain;
        background-repeat: no-repeat;
        background-color: var(--blue-950);
      }

      .hero-dots {
        bottom: 12px;
        gap: 8px;
      }

      .hero-dots button {
        width: 24px;
        height: 3px;
      }

      .hero-dots button.is-active {
        width: 38px;
      }

      .nav {
        gap: 14px;
        min-height: 78px;
      }

      .nav ul {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        align-content: start;
        gap: 0;
        max-width: none;
        width: 100%;
        height: calc(100vh - 78px);
        box-sizing: border-box;
        padding: 22px 9% 54px;
        overflow-x: hidden;
        overflow-y: auto;
        align-items: stretch;
        justify-content: stretch;
        text-align: left;
        color: var(--white);
        background: rgba(5, 18, 40, 0.98);
        box-shadow: none;
        visibility: visible;
        transform: translateX(100%);
        transition: transform 0.42s cubic-bezier(0.6, 0, 0.2, 1);
      }

      .nav li::after {
        display: none;
      }

      .nav li {
        position: relative;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      }

      .nav li.has-submenu::before,
      .nav li.has-submenu::after {
        display: none;
      }

      .nav li a {
        display: block;
        padding: 18px 0;
        color: var(--white);
        font-size: 18px;
        line-height: 1.25;
        letter-spacing: 0;
      }

      .nav li.has-submenu > a {
        position: relative;
        padding-right: 44px;
      }

      .nav li.has-submenu > a::before,
      .nav li.has-submenu > a::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        display: block;
        width: 15px;
        height: 2px;
        background: rgba(255, 255, 255, 0.82);
        transform: translateY(-50%);
        transition: opacity 0.24s ease, transform 0.24s ease;
      }

      .nav li.has-submenu > a::after {
        transform: translateY(-50%) rotate(90deg);
      }

      .nav li.has-submenu.is-expanded > a::after {
        opacity: 0;
        transform: translateY(-50%) rotate(90deg) scaleX(0.2);
      }

      .nav-open .nav ul {
        transform: translateX(0);
      }

      .nav-sub {
        position: static;
        display: block;
        width: auto;
        min-width: 0;
        max-height: 0;
        padding: 0 0 0 5%;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.7);
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: visible;
        transform: translateY(-8px);
        transition: max-height 0.34s ease, padding 0.34s ease, opacity 0.24s ease, transform 0.34s ease;
      }

      .nav li.is-expanded .nav-sub,
      .nav li.is-expanded:hover .nav-sub,
      .nav li.is-expanded:focus-within .nav-sub {
        max-height: 180px;
        padding: 0 0 10px 5%;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .nav-sub a {
        padding: 4px 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 13px;
        line-height: 1.25;
        font-weight: 400;
        text-transform: capitalize;
      }

      .nav-sub a:hover {
        color: var(--green);
        background: transparent;
      }

      .nav-actions {
        gap: 10px;
        margin-left: auto;
      }

      .language-toggle,
      .nav-toggle {
        width: 40px;
        height: 40px;
      }

      .language-toggle svg {
        width: 22px;
        height: 22px;
      }

      .language-menu {
        top: calc(100% + 10px);
      }

      .nav-toggle {
        display: block;
        position: relative;
        z-index: 32;
        overflow: hidden;
      }

      .nav-open .nav-toggle::before {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-open .nav-toggle span {
        opacity: 0;
      }

      .nav-open .nav-toggle::after {
        transform: translateY(-7px) rotate(-45deg);
      }

      .brand span {
        font-size: 18px;
      }

      .brand-logo {
        width: 170px;
      }

      .hero .wave-mark {
        top: auto;
        right: -52px;
        bottom: 58px;
      }

      .clients,
      .brands {
        padding: 66px 0;
      }

      .clients {
        padding: 34px 0 50px;
      }

      .clients-top {
        display: block;
        margin-bottom: 76px;
      }

      .clients-top > div:first-child {
        display: none;
      }

      .clients .section-note {
        color: #607088;
        font-size: clamp(16px, 4.8vw, 24px);
        line-height: 1.58;
      }

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

      .strength-grid {
        grid-template-columns: 1fr;
        gap: 36px 0;
        max-width: 520px;
      }

      .client-metrics {
        display: grid;
        gap: 34px 28px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 42px;
        width: 100%;
      }

      .clients .metric {
        min-width: 0;
      }

      .metric strong {
        font-size: clamp(54px, 18vw, 78px);
      }

      .metric sup {
        font-size: clamp(24px, 7vw, 34px);
      }

      .metric span {
        margin-top: 10px;
        color: #607088;
        font-size: clamp(16px, 4.8vw, 24px);
        line-height: 1.2;
      }

      .client-carousel {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 12px;
      }

      .client-arrow {
        width: 36px;
        height: 36px;
      }

      .client-logo-card {
        flex-basis: calc((100% - 14px) / 2);
        height: clamp(104px, 25vw, 138px);
      }

      .core {
        padding: 72px 0 80px;
        background:
          linear-gradient(180deg, rgba(3, 18, 40, 0.78), rgba(3, 18, 40, 0.96)),
          url("../images/cen_01.jpg") 28% center / cover no-repeat;
      }

      .core-content {
        margin-left: 0;
      }

      .core h2 {
        margin-bottom: 36px;
        font-size: clamp(28px, 7.6vw, 42px);
        line-height: 1.15;
      }

      .strength h3 {
        font-size: 15px;
      }

      .strength p {
        font-size: var(--body-copy-size);
        line-height: 1.6;
      }

      .process {
        padding: 78px 0 60px;
        min-height: 0;
      }

      .process h2 {
        margin-bottom: 48px;
        font-size: clamp(38px, 11vw, 58px);
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: min(100% - 32px, 420px);
      }

      .step {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 220px;
        padding: 24px 24px 28px;
        border-radius: 20px;
      }

      .step::before {
        left: 50%;
        right: auto;
        bottom: 6px;
        width: 116px;
        height: 116px;
        font-size: 116px;
        transform: translateX(-50%);
      }

      .step h3 {
        margin-bottom: 18px;
        font-size: clamp(20px, 6.5vw, 26px);
      }

      .step p {
        font-size: var(--body-copy-size);
      }

      .process-connector-right,
      .process-connector-left,
      .process-connector-down {
        left: calc(50% - 23px) !important;
        right: auto !important;
        top: auto !important;
        bottom: -34px !important;
        width: 46px;
        height: 46px;
      }

      .process-connector-right::before,
      .process-connector-left::before,
      .process-connector-down::before {
        width: 13px;
        height: 13px;
        transform: rotate(135deg) translate(-2px, 2px) !important;
      }

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

      .brand-benefits {
        gap: 24px;
      }

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

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

      .contact-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .contact-row span {
        white-space: normal;
      }

      .footer-socials {
        margin-top: 12px;
      }

      .process-decoration {
        opacity: 0.28;
      }
    }

    @media (max-width: 460px) {
      .hero {
        min-height: 0;
      }

      .hero h1 {
        font-size: 36px;
      }

      .hero p {
        font-size: 16px;
      }

      .client-metrics,
      .strength-grid,
      .brand-grid,
      .footer-columns {
        grid-template-columns: 1fr;
      }

      .client-metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

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

      .brand-tile {
        min-height: 82px;
      }

      .client-logo-card {
        flex-basis: calc((100% - 14px) / 2);
      }

      .core {
        padding: 60px 0 64px;
      }

      .core h2 {
        margin-bottom: 30px;
        font-size: 28px;
      }

      .strength-grid {
        gap: 28px 0;
      }

      .strength h3 {
        font-size: 14px;
      }

    }

    .talent-page main {
      background: var(--white);
    }

    .talent-banner {
      position: relative;
      width: 100%;
      height: 461px;
      overflow: hidden;
      background: var(--blue-950);
    }

    .talent-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .talent-banner h1 {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      margin: 0;
      color: var(--white);
      font-size: clamp(42px, 5vw, 78px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0;
      text-align: center;
      text-transform: uppercase;
      transform: translate(-50%, -50%);
      white-space: nowrap;
    }

    .talent-shell {
      width: min(1540px, calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .talent-section {
      padding: 88px 0 42px;
    }

    .talent-heading {
      margin: 0 auto 70px;
      text-align: center;
    }

    .talent-heading h1,
    .talent-heading h2 {
      margin: 0;
      color: #0d1118;
      font-size: clamp(28px, 3vw, 43px);
      line-height: 1.08;
      font-weight: 900;
      text-transform: uppercase;
    }

    .talent-heading p {
      margin: 22px auto 0;
      max-width: 820px;
      color: #626a76;
      font-size: var(--body-copy-size);
      line-height: 1.6;
      font-weight: 700;
      text-transform: uppercase;
    }

    .talent-heading span {
      display: block;
      width: 58px;
      height: 2px;
      margin: 26px auto 0;
      background: var(--green);
    }

    .talent-feature {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
      align-items: stretch;
      gap: 0;
    }

    .talent-feature-reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    }

    .talent-photo {
      height: clamp(300px, 28vw, 430px);
      background: #eef2f5;
      overflow: hidden;
    }
    .talent-feature:has(.core-block) {
      height: auto;
      align-items: stretch;
    }
    .talent-feature:has(.core-block) .talent-photo {
      height: auto;
      min-height: clamp(400px, 35vw, 520px);
      width: 100%;
    }
    .talent-feature:has(.core-block) .talent-photo img {
      height: 100%;
      object-fit: cover;
    }
    .talent-feature:has(.core-block) .talent-panel {
      height: auto;
      overflow: visible;
      background: #f5f6f8;
    }

    .talent-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .talent-photo:hover img {
      transform: scale(1.06);
    }

    .talent-panel {
      display: grid;
      align-content: start;
      height: clamp(300px, 28vw, 430px);
      padding: clamp(28px, 3vw, 42px) clamp(38px, 4.4vw, 64px);
      background: #f5f6f8;
    }
    .talent-panel:has(> .core-block) {
      height: auto;
      padding: clamp(18px, 1.8vw, 26px);
      background: transparent;
    }

    .talent-text-card {
      padding-bottom: clamp(24px, 2.6vw, 34px);
      border-bottom: 1px solid #e5e9ef;
    }

    .talent-text-card + .talent-text-card {
      padding-top: clamp(24px, 2.6vw, 34px);
    }

    .talent-text-card:last-child {
      border-bottom: 0;
    }

    .talent-text-card h2,
    .talent-text-card h3 {
      margin: 0;
      color: #10141b;
      font-size: clamp(18px, 1.45vw, 23px);
      line-height: 1.25;
      font-weight: 900;
    }

    .talent-text-card h2::after,
    .talent-text-card h3::after {
      content: "";
      display: block;
      width: 35px;
      height: 2px;
      margin: 13px 0 18px;
      background: var(--green);
    }

    .talent-text-card.is-accent h2,
    .talent-text-card.is-accent h3 {
      color: var(--green);
    }

    .talent-text-card p {
      max-width: 520px;
      margin: 0;
      color: #56606c;
      font-size: var(--body-copy-size);
      line-height: 1.7;
      font-weight: 600;
    }

    #team .talent-text-card p {
      font-weight: 400;
    }

    #team .talent-heading p {
      font-weight: 400;
    }

    #contribution .talent-heading p,
    #certificates .talent-heading p {
      font-weight: 400;
    }

    @media (min-width: 1301px) {
      #team .talent-text-card p {
        max-width: none;
      }
    }

    #contribution .talent-text-card p {
      font-weight: 400;
    }

    .core-business-panel {
      height: auto;
      padding: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 38px);
      gap: clamp(14px, 1.4vw, 20px);
      background: transparent;
    }
    .core-block {
      padding: clamp(12px, 1.2vw, 16px) 0;
      border: 0;
      border-bottom: 1px solid #e5e9ef;
      border-radius: 0;
    }
    .core-block:last-child {
      border-bottom: 0;
    }
    .core-block h2 {
      margin: 0 0 8px;
      color: var(--green);
      font-size: clamp(15px, 1.1vw, 17px);
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .core-block h2::after {
      content: none;
    }
    .core-block p {
      max-width: none;
      margin: 4px 0 0;
      color: #56606c;
      font-size: var(--body-copy-size);
      line-height: 1.45;
      font-weight: 400;
    }
    .core-block p strong {
      color: #10141b;
      font-weight: 700;
    }

    .certificates {
      padding: 92px 0 110px;
    }

    .certificate-carousel {
      position: relative;
    }

    .certificate-viewport {
      overflow: hidden;
      padding: 0 2px;
    }

    .certificate-track {
      display: flex;
      gap: 22px;
      transition: transform 0.42s ease;
      will-change: transform;
    }

    .certificate-card {
      display: grid;
      place-items: center;
      flex: 0 0 calc((100% - 66px) / 4);
      min-width: 0;
      min-height: 510px;
      padding: 26px;
      margin: 0;
      border-radius: 8px;
      background: #f5f5f5;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .certificate-card img {
      max-width: 100%;
      max-height: 462px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform 0.45s ease;
    }

    .certificate-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 34px rgba(8, 42, 94, 0.12);
    }

    .certificate-card:hover img {
      transform: scale(1.04);
    }

    .certificate-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-top: 42px;
    }

    .certificate-controls button {
      display: grid;
      place-items: center;
      border: 0;
      cursor: pointer;
    }

    .certificate-prev,
    .certificate-next {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      color: var(--white);
      background: #26316d;
      font-size: 24px;
      line-height: 1;
      transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    }

    .certificate-prev:hover,
    .certificate-next:hover {
      background: var(--green);
      transform: translateY(-1px);
    }

    .certificate-prev:disabled,
    .certificate-next:disabled {
      opacity: 0.45;
      cursor: default;
      transform: none;
    }

    .certificate-dots {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .certificate-dots button {
      width: 10px;
      height: 10px;
      padding: 0;
      border-radius: 50%;
      background: #cfcfcf;
    }

    .certificate-dots button.is-active {
      background: #26316d;
    }

    @media (max-width: 1040px) {
      .talent-section {
        padding: 70px 0 34px;
      }

      .talent-feature,
      .talent-feature-reverse {
        grid-template-columns: 1fr;
      }

      .talent-feature-reverse .talent-panel {
        order: 2;
      }

      .talent-feature-reverse .talent-photo {
        order: 1;
      }

      .talent-photo,
      .talent-panel {
        min-height: 0;
      }

      .talent-photo {
        aspect-ratio: 1.48 / 1;
      }

      .talent-feature:has(.core-block) .talent-photo {
        min-height: 0;
      }

      .certificate-card {
        flex-basis: calc((100% - 22px) / 2);
        min-height: 470px;
      }
    }

    @media (max-width: 720px) {
      .talent-shell {
        width: min(100% - 20px, 1600px);
      }

      .talent-banner img {
        width: 100%;
        height: 100%;
      }

      .talent-banner {
        height: clamp(190px, 46vw, 300px);
      }

      .talent-banner h1 {
        font-size: clamp(30px, 8vw, 46px);
      }

      .talent-section {
        padding: 48px 0 24px;
      }

      .talent-heading {
        margin-bottom: 34px;
      }

      .talent-heading h1,
      .talent-heading h2 {
        font-size: 26px;
      }

      .talent-heading p {
        margin-top: 14px;
        font-size: var(--body-copy-size);
        line-height: 1.55;
      }

      .talent-panel {
        padding: 28px 22px;
      }

      .talent-text-card,
      .talent-text-card + .talent-text-card {
        padding-top: 0;
        padding-bottom: 28px;
      }

      .talent-text-card + .talent-text-card {
        padding-top: 28px;
      }

      .talent-text-card h2,
      .talent-text-card h3 {
        font-size: 18px;
      }

      .talent-text-card p {
        font-size: var(--body-copy-size);
      }

      .certificates {
        padding-bottom: 72px;
      }

      .certificate-track {
        gap: 14px;
      }

      .certificate-card {
        flex-basis: 100%;
        min-height: 420px;
        padding: 22px;
      }

      .certificate-card img {
        max-height: 376px;
      }
    }

    .about-page main {
      background: var(--white);
    }

    .about-shell {
      width: min(1920px, calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .about-beliefs {
      display: flex;
      align-items: center;
      min-height: clamp(420px, 46vw, 640px);
      padding: clamp(48px, 5vw, 90px) 0;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(9, 39, 138, 0.82) 0%, rgba(9, 39, 138, 0.55) 45%, rgba(9, 39, 138, 0.08) 100%),
        url("../images/r_b.jpg") center / cover no-repeat;
    }

    .beliefs-copy {
      max-width: 1180px;
    }

    .beliefs-copy h1 {
      margin: 0;
      font-size: clamp(38px, 4.6vw, 84px);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .beliefs-tagline {
      margin: clamp(24px, 2.4vw, 40px) 0;
      color: var(--green);
      font-size: clamp(20px, 1.9vw, 32px);
      line-height: 1.25;
      font-weight: 900;
      text-transform: uppercase;
    }

    .beliefs-text {
      display: grid;
      gap: clamp(18px, 1.6vw, 28px);
      color: rgba(255, 255, 255, 0.94);
      font-size: var(--body-copy-size);
      line-height: 1.45;
      font-weight: 400;
      max-width: 920px;
    }

    .beliefs-text p {
      margin: 0;
    }

    .about-intro {
      padding: 116px 0 98px;
      background: var(--white);
    }

    .about-intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
      gap: clamp(60px, 8vw, 150px);
      align-items: center;
    }

    .about-intro-copy h2,
    .advantage-copy h2 {
      margin: 0 0 44px;
      color: var(--green);
      font-size: clamp(44px, 5vw, 82px);
      line-height: 0.9;
      font-weight: 900;
      text-transform: uppercase;
    }

    .about-intro-copy p {
      margin: 0 0 22px;
      color: #8a8d92;
      font-size: max(var(--body-copy-size), clamp(17px, 1.1vw, 20px));
      line-height: 1.55;
      font-weight: 400;
    }

    .about-intro-copy strong {
      color: #6a7078;
      font-weight: 700;
    }

    .about-map {
      overflow: hidden;
      border-radius: 6px;
    }

    .about-map img {
      width: 100%;
      height: auto;
      transition: transform 0.45s ease;
    }

    .about-map:hover img {
      transform: scale(1.04);
    }

    .about-culture {
      min-height: 680px;
      padding: 178px 0 120px;
      color: var(--white);
      background:
        linear-gradient(180deg, rgba(18, 57, 133, 0.74), rgba(18, 57, 133, 0.78)),
        url("../images/rc_bg.jpg") center / cover no-repeat;
      text-align: center;
    }

    .about-culture h2 {
      margin: 0 0 112px;
      color: var(--white);
      font-size: clamp(48px, 5.8vw, 90px);
      line-height: 0.92;
      font-weight: 900;
      text-transform: uppercase;
    }

    .culture-items {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
      max-width: 1260px;
      margin: 0 auto;
    }

    .culture-items article {
      position: relative;
      padding: 0 36px;
    }

    .culture-items article + article::before {
      content: "";
      position: absolute;
      left: -17px;
      top: 8px;
      width: 2px;
      height: 78px;
      background: rgba(255, 255, 255, 0.82);
    }

    .culture-items h3 {
      margin: 0 0 15px;
      color: var(--white);
      font-size: clamp(22px, 2vw, 32px);
      line-height: 1.15;
      font-weight: 900;
    }

    .culture-items p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: max(var(--body-copy-size), clamp(14px, 1.18vw, 20px));
      line-height: 1.3;
      font-weight: 500;
    }

    .about-advantage {
      padding: 92px 0 104px;
    }

    .advantage-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
      gap: clamp(70px, 7vw, 126px);
      align-items: start;
    }

    .advantage-copy h2 {
      max-width: none;
      margin: 0 0 18px;
      font-size: clamp(46px, 4vw, 70px);
      line-height: 1;
      white-space: nowrap;
    }

    .advantage-subtitle {
      margin: 0 0 62px;
      color: var(--blue-800);
      font-size: clamp(26px, 2.4vw, 38px);
      line-height: 1.2;
      font-weight: 900;
    }

    .advantage-copy article {
      padding: 0 0 34px;
      margin-bottom: 36px;
      border-bottom: 1px solid rgba(18, 57, 133, 0.45);
    }

    .advantage-copy article:first-of-type {
      margin-top: 96px;
    }

    .advantage-copy article:last-child {
      margin-bottom: 0;
    }

    .advantage-copy h3,
    .advantage-cert h3 {
      margin: 0 0 20px;
      color: var(--green);
      font-size: clamp(24px, 1.85vw, 34px);
      line-height: 1.1;
      font-weight: 900;
      text-transform: uppercase;
    }

    .advantage-copy h3 {
      margin-bottom: 16px;
    }

    .advantage-copy p {
      margin: 0;
      color: var(--blue-800);
      font-size: var(--body-copy-size);
      line-height: 1.42;
      font-weight: 400;
    }

    .advantage-cert {
      padding-top: 4px;
    }

    .advantage-cert h3 {
      margin-bottom: 58px;
      font-size: clamp(24px, 2vw, 34px);
    }

    .advantage-cert img {
      width: 100%;
      max-width: 620px;
      margin: 0 auto;
      transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    .advantage-cert img:hover {
      transform: scale(1.04);
      box-shadow: 0 14px 34px rgba(8, 42, 94, 0.14);
    }

    @media (max-width: 1040px) {
      .about-beliefs {
        min-height: clamp(380px, 50vw, 520px);
        padding: 58px 0;
      }

      .beliefs-copy h1 {
        font-size: clamp(34px, 5.6vw, 64px);
        white-space: normal;
      }

      .beliefs-tagline {
        font-size: clamp(18px, 2.4vw, 26px);
      }

      .beliefs-text {
        font-size: var(--body-copy-size);
      }

      .about-intro-grid,
      .advantage-grid {
        grid-template-columns: 1fr;
      }

      .about-map {
        max-width: 720px;
      }

      .about-culture {
        min-height: 560px;
        padding: 120px 0 96px;
      }

      .about-culture h2 {
        margin-bottom: 72px;
      }
    }

    @media (max-width: 720px) {
      .about-shell {
        width: min(100% - 20px, 1600px);
      }

      .about-beliefs {
        min-height: 0;
        padding: 64px 0 76px;
        background-position: 62% center;
      }

      .beliefs-copy h1 {
        font-size: clamp(28px, 9vw, 40px);
        white-space: normal;
      }

      .beliefs-tagline {
        margin: 30px 0 36px;
        font-size: clamp(18px, 5vw, 22px);
      }

      .beliefs-text {
        gap: 22px;
        font-size: var(--body-copy-size);
        line-height: 1.55;
      }

      .about-intro,
      .about-advantage {
        padding: 58px 0 64px;
      }

      .about-intro-grid,
      .advantage-grid {
        gap: 34px;
      }

      .about-intro-copy h2,
      .advantage-copy h2 {
        margin-bottom: 28px;
        font-size: 38px;
      }

      .advantage-copy h2 {
        max-width: none;
        white-space: normal;
      }

      .about-intro-copy p {
        font-size: var(--body-copy-size);
      }

      .advantage-copy p {
        font-size: var(--body-copy-size);
      }

      .about-culture {
        min-height: 0;
        padding: 78px 0 68px;
      }

      .about-culture h2 {
        margin-bottom: 42px;
        font-size: 38px;
      }

      .culture-items {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .culture-items article {
        padding: 0;
      }

      .culture-items article + article::before {
        display: none;
      }

      .culture-items h3 {
        font-size: 22px;
      }

      .culture-items p {
        font-size: var(--body-copy-size);
      }

      .advantage-subtitle {
        margin: 0 0 34px;
        font-size: clamp(22px, 6vw, 30px);
      }

      .advantage-copy article {
        padding-bottom: 30px;
        margin-bottom: 30px;
      }

      .advantage-copy article:first-of-type {
        margin-top: 42px;
      }

      .advantage-copy h3,
      .advantage-cert h3 {
        font-size: clamp(22px, 6.5vw, 28px);
      }

      .advantage-copy h3 {
        margin-bottom: 18px;
      }

      .advantage-cert {
        padding-top: 0;
      }

      .advantage-cert h3 {
        margin-bottom: 28px;
      }

      .advantage-cert img {
        margin-top: 0;
      }
    }

    .news-page main {
      background: var(--white);
    }

    .news-banner {
      position: relative;
      width: 100%;
      height: clamp(300px, 32vw, 430px);
      overflow: hidden;
      background: var(--blue-950);
    }

    .news-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 42%;
    }

    .news-banner h1 {
      position: absolute;
      left: 50%;
      top: 50%;
      margin: 0;
      color: var(--white);
      font-size: clamp(42px, 4.4vw, 70px);
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0;
      text-align: center;
      text-transform: uppercase;
      transform: translate(-50%, -50%);
      white-space: nowrap;
    }

    .news-section {
      padding: 48px 0 86px;
    }

    .news-shell {
      width: min(1680px, calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .news-tabs {
      display: flex;
      gap: clamp(42px, 5vw, 92px);
      align-items: flex-end;
      margin-bottom: 34px;
      border-bottom: 1px solid #d4dde7;
    }

    .news-tabs button {
      position: relative;
      min-width: clamp(112px, 10vw, 160px);
      padding: 0 0 34px;
      border: 0;
      color: #333945;
      background: transparent;
      cursor: pointer;
      font: inherit;
      font-size: clamp(16px, 1.4vw, 22px);
      line-height: 1;
      font-weight: 800;
      text-align: left;
      transition: color 0.2s ease;
    }

    .news-tabs button::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      height: 2px;
      background: transparent;
      transition: background 0.2s ease;
    }

    .news-tabs button.is-active {
      color: var(--green);
    }

    .news-tabs button.is-active::after {
      background: var(--green);
    }

    .news-grid {
      display: none;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 58px clamp(24px, 2.2vw, 44px);
    }

    .news-grid.is-active {
      display: grid;
    }

    .news-pagination {
      display: none;
      justify-content: center;
      margin-top: 52px;
    }
    .news-pagination.is-active {
      display: flex;
    }
    .news-pagination ul {
      display: flex;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .news-pagination li {
      display: inline-flex;
    }
    .news-pagination a,
    .news-pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 38px;
      padding: 0 6px;
      border: 1px solid #d4dde7;
      border-radius: 2px;
      font-size: 15px;
      font-weight: 500;
      color: #333945;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .news-pagination a:hover {
      border-color: var(--green);
      color: var(--green);
    }
    .news-pagination li.active span {
      border-color: var(--green);
      background: var(--green);
      color: #fff;
    }
    .news-pagination li.disabled span {
      opacity: 0.4;
      cursor: default;
    }

    .news-card a {
      display: block;
    }

    .news-card .img-box {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 6px 18px rgba(8, 42, 94, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .news-card .img-box img {
      width: 100%;
      aspect-ratio: 1.5 / 1;
      object-fit: cover;
      object-position: center;
      border-radius: 8px;
      background: #eef2f5;
      transition: transform 0.5s ease;
    }

    .news-card .img-box::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      transition: background 0.35s ease;
      pointer-events: none;
      border-radius: 2px;
    }

    .news-card a:hover .img-box {
      box-shadow: 0 16px 36px rgba(8, 42, 94, 0.18);
    }

    .news-card a:hover .img-box img {
      transform: scale(1.08);
    }

    .news-card a:hover .img-box::after {
      background: rgba(0, 0, 0, 0.20);
    }

    .news-card time {
      display: block;
      margin-top: 14px;
      color: #9aa2ad;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 500;
    }

    .news-card h2 {
      margin: 10px 0 0;
      color: #333945;
      font-size: 17px;
      line-height: 1.42;
      font-weight: 500;
      text-transform: none;
      transition: color 0.25s ease;
    }

    .news-card a:hover h2 {
      color: var(--green);
    }

    @media (max-width: 1040px) {
      .news-shell {
        width: min(100% - 48px, 1680px);
      }

      .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 22px;
      }
    }

    @media (max-width: 720px) {
      .news-banner {
        height: clamp(190px, 48vw, 270px);
      }

      .news-banner h1 {
        font-size: clamp(30px, 8vw, 44px);
        white-space: normal;
      }

      .news-section {
        padding: 34px 0 62px;
      }

      .news-shell {
        width: min(100% - 28px, 1680px);
      }

      .news-tabs {
        gap: 42px;
        margin-bottom: 26px;
      }

      .news-tabs button {
        min-width: 112px;
        padding-bottom: 24px;
        font-size: 15px;
      }

      .news-tabs button::after {
        width: 112px;
      }

      .news-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .news-pagination {
        margin-top: 36px;
      }

      .news-card img {
        aspect-ratio: 1.5 / 1;
      }

      .news-card h2 {
        font-size: 16px;
      }
    }

    .article-page main {
      background: var(--white);
    }

    .article-hero {
      position: relative;
      display: grid;
      place-items: center;
      width: 100%;
      height: clamp(240px, 23vw, 330px);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(58, 23, 86, 0.54), rgba(20, 112, 172, 0.48)),
        url("../images/banner_rc.jpg") center 42% / cover no-repeat;
    }

    .article-hero h1 {
      margin: 0;
      color: var(--white);
      font-size: clamp(54px, 5.6vw, 88px);
      line-height: 1;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .article-main {
      padding: 52px 0 112px;
    }

    .article-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
      gap: clamp(54px, 6vw, 120px);
      align-items: start;
      width: min(1540px, calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .article-content {
      min-width: 0;
    }

    .return-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 38px;
      padding: 0 22px;
      border: 1px solid #e0e4e9;
      border-radius: 999px;
      color: #242b33;
      background: var(--white);
      font-size: 13px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }

    .return-button span {
      color: #999;
      font-size: 24px;
      line-height: 0.6;
      font-weight: 300;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .return-button:hover {
      border-color: var(--green);
      color: var(--green);
      background: #f3fbf6;
      box-shadow: 0 4px 14px rgba(0, 181, 49, 0.14);
    }

    .return-button:hover span {
      color: var(--green);
      transform: translateX(-2px);
    }

    .article-date {
      display: block;
      margin-top: 52px;
      color: var(--green);
      font-size: 15px;
      line-height: 1;
      font-weight: 800;
    }

    .article-content > h2 {
      max-width: 900px;
      margin: 22px 0 26px;
      color: #05070a;
      font-size: clamp(20px, 1.6vw, 28px);
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: 0;
    }

    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
    }

    .article-tag,
    .article-share a {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      border: 1px solid #e0e5ea;
      border-radius: 999px;
      color: #151b22;
      background: var(--white);
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .article-tag {
      padding: 0 18px;
    }

    .article-share {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }

    .article-share a {
      gap: 9px;
      padding: 0 15px;
    }

    .article-share span {
      color: #1f62ad;
      font-size: 18px;
      line-height: 1;
      font-weight: 900;
      transition: transform 0.3s ease;
    }

    .article-share a:hover {
      border-color: currentColor;
      color: var(--white);
      background: var(--green);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 181, 49, 0.26);
    }

    .article-share a:hover span {
      color: var(--white);
      transform: scale(1.15);
    }

    .article-share a[aria-label*="Facebook"]:hover {
      background: var(--green);
      border-color: var(--green);
      box-shadow: 0 6px 16px rgba(0, 181, 49, 0.26);
    }

    .article-share a[aria-label*="Twitter"]:hover {
      background: var(--green);
      border-color: var(--green);
      box-shadow: 0 6px 16px rgba(0, 181, 49, 0.26);
    }

    .article-share a[aria-label*="Linkedin"]:hover {
      background: var(--green);
      border-color: var(--green);
      box-shadow: 0 6px 16px rgba(0, 181, 49, 0.26);
    }

    .article-divider {
      height: 1px;
      margin: 0 0 52px;
      background: #d9dde3;
    }

    .article-body {
      color: #6f747b;
      font-size: var(--body-copy-size);
      line-height: 2.05;
      font-weight: 500;
    }

    .article-body p {
      margin: 0 0 28px;
    }

    .article-body strong {
      color: #1c2229;
      font-weight: 800;
    }

    .article-body figure {
      margin: 42px 0 30px;
    }

    .article-body .img-box {
      display: block;
      overflow: hidden;
      background: #edf1f5;
    }

    .article-body figure img {
      width: 100%;
      aspect-ratio: 1.78 / 1;
      object-fit: cover;
      object-position: center;
      background: #edf1f5;
      transition: transform 0.55s ease, opacity 0.55s ease;
    }

    .article-body .img-box:hover img {
      opacity: 0.94;
      transform: scale(1.06);
    }

    .article-body figcaption {
      margin-top: 28px;
      color: #73777d;
      font-size: 20px;
      line-height: 1.4;
      font-weight: 900;
      text-align: center;
    }

    .article-pager {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 36px;
      margin-top: 28px;
      padding-top: 26px;
      border-top: 1px solid #d9dde3;
    }

    .article-pager a {
      display: grid;
      gap: 14px;
      color: #06090c;
      font-size: var(--body-copy-size);
      line-height: 1.55;
      font-weight: 400;
      transition: color 0.3s ease;
    }

    .article-pager a:last-child {
      text-align: right;
    }

    .article-pager a:hover {
      color: var(--green);
    }

    .article-pager span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 17px;
      line-height: 1;
      font-weight: 700;
    }

    .article-pager a:last-child span {
      justify-content: flex-end;
    }

    .article-pager span .arrow {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .article-pager a:hover span .arrow {
      transform: translateX(4px);
    }

    .article-pager a:first-child:hover span .arrow {
      transform: translateX(-4px);
    }

    .article-pager strong {
      font-weight: 400;
    }

    .article-recommend {
      padding-top: 92px;
    }

    .article-recommend h2 {
      margin: 0 0 20px;
      color: #090c10;
      font-size: 28px;
      line-height: 1.1;
      font-weight: 900;
    }

    .recommend-card {
      display: block;
      margin-bottom: 34px;
    }

    .recommend-card .img-box {
      display: block;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .recommend-card .img-box img {
      width: 100%;
      aspect-ratio: 1.78 / 1;
      object-fit: cover;
      object-position: center;
      background: #edf1f5;
      transition: transform 0.5s ease;
    }

    .recommend-card strong {
      display: block;
      margin-top: 14px;
      color: #12161b;
      font-size: max(var(--body-copy-size), 17px);
      line-height: 1.45;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .recommend-card:hover .img-box {
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    }

    .recommend-card:hover .img-box img {
      transform: scale(1.08);
    }

    .recommend-card:hover strong {
      color: var(--green);
    }

    @media (max-width: 1180px) {
      .article-shell {
        width: min(100% - 48px, 1540px);
        grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
        gap: 46px;
      }

      .article-recommend {
        padding-top: 92px;
      }
    }

    @media (max-width: 940px) {
      .article-shell {
        grid-template-columns: 1fr;
      }

      .article-recommend {
        padding-top: 4px;
      }

      .article-recommend {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }

      .article-recommend h2 {
        grid-column: 1 / -1;
      }

      .recommend-card {
        margin-bottom: 0;
      }
    }

    @media (max-width: 720px) {
      .article-hero {
        height: 210px;
      }

      .article-hero h1 {
        font-size: 44px;
      }

      .article-main {
        padding: 34px 0 70px;
      }

      .article-shell {
        width: min(100% - 30px, 1540px);
      }

      .article-date {
        margin-top: 36px;
      }

      .article-content > h2 {
        font-size: 18px;
      }

      .article-meta {
        display: grid;
        justify-content: stretch;
      }

      .article-share {
        justify-content: flex-start;
      }

      .article-divider {
        margin-bottom: 34px;
      }

      .article-body {
        font-size: var(--body-copy-size);
        line-height: 1.85;
      }

      .article-body figcaption {
        font-size: 17px;
      }

      .article-pager {
        grid-template-columns: 1fr;
      }

      .article-pager a:last-child {
        text-align: left;
      }

      .article-recommend {
        grid-template-columns: 1fr;
      }
    }

    .contact-page main {
      background: var(--white);
    }

    .contact-shell {
      width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .contact-main {
      padding: 64px 0 86px;
    }

    .contact-tabs {
      display: flex;
      gap: 66px;
      border-bottom: 1px solid #d8e0e8;
    }

    .contact-tabs a {
      position: relative;
      padding: 0 0 16px;
      color: #4f565f;
      font-size: 18px;
      line-height: 1;
      font-weight: 900;
    }

    .contact-tabs a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 96px;
      height: 2px;
      background: transparent;
    }

    .contact-tabs a.is-active {
      color: #4ea16b;
    }

    .contact-tabs a.is-active::after {
      background: #4ea16b;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
      gap: clamp(56px, 5vw, 96px);
      padding-top: 46px;
    }

    .contact-info,
    .contact-form,
    .branch-section {
      scroll-margin-top: 118px;
    }

    .contact-intro {
      margin: 0 0 48px;
      color: #7a838d;
      font-size: var(--body-copy-size);
      line-height: 1.6;
      font-weight: 500;
    }

    .contact-info-list {
      display: grid;
      gap: 22px;
    }

    .contact-info-card {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      min-height: 76px;
      padding: 18px 24px;
      border-radius: 6px;
      background: #f6f8fb;
    }

    .contact-info-icon {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--white);
    }

    .contact-info-icon svg {
      width: 16px;
      height: 16px;
      fill: #4ea16b;
    }

    .contact-info-card h2 {
      margin: 0 0 7px;
      color: #4e5661;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 900;
    }

    .contact-info-card p {
      margin: 0;
      color: #7a838d;
      font-size: var(--body-copy-size);
      line-height: 1.45;
      font-weight: 500;
    }

    .contact-form {
      display: grid;
      gap: 18px;
      align-content: start;
    }

    .contact-form label {
      display: grid;
      gap: 8px;
      color: #343b44;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 500;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #d8e0e8;
      border-radius: 5px;
      color: var(--ink);
      background: var(--white);
      font: inherit;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-form input {
      height: 36px;
      padding: 7px 12px;
    }

    .contact-form textarea {
      min-height: 96px;
      resize: vertical;
      padding: 10px 12px;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #4ea16b;
      box-shadow: 0 0 0 3px rgba(78, 161, 107, 0.12);
    }

    .contact-form button {
      height: 36px;
      margin-top: 6px;
      border: 0;
      border-radius: 5px;
      color: var(--white);
      background: #4ea16b;
      cursor: pointer;
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .contact-form button:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .branch-section {
      padding: 0 0 106px;
    }

    .branch-section h1 {
      margin: 0 0 28px;
      color: #10141b;
      font-size: clamp(30px, 2.8vw, 40px);
      line-height: 1.1;
      font-weight: 900;
      text-align: center;
    }

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

    .branch-card {
      background: #f6f8fb;
      text-align: center;
      overflow: hidden;
      border-radius: 4px;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .branch-card img {
      width: 100%;
      aspect-ratio: 1.58 / 1;
      object-fit: cover;
      object-position: center;
      transition: transform 0.45s ease;
    }

    .branch-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 34px rgba(8, 42, 94, 0.12);
    }

    .branch-card:hover img {
      transform: scale(1.06);
    }

    .branch-card div {
      min-height: 154px;
      padding: 26px 24px 30px;
    }

    .branch-card h2 {
      margin: 0 0 20px;
      color: #12161c;
      font-size: 22px;
      line-height: 1.15;
      font-weight: 900;
    }

    .branch-card p {
      max-width: 250px;
      margin: 0 auto;
      color: #626a76;
      font-size: var(--body-copy-size);
      line-height: 1.7;
      font-weight: 500;
    }

    @media (max-width: 1040px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 720px) {
      .contact-shell {
        width: min(100% - 28px, var(--page-max));
      }

      .contact-main {
        padding: 40px 0 58px;
      }

      .contact-tabs {
        gap: 40px;
      }

      .contact-tabs a {
        font-size: 16px;
      }

      .contact-layout {
        gap: 34px;
        padding-top: 32px;
      }

      .contact-intro {
        margin-bottom: 28px;
      }

      .contact-info-card {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 16px 18px;
      }

      .branch-section {
        padding-bottom: 72px;
        scroll-margin-top: 92px;
      }

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

      .branch-card div {
        min-height: 0;
      }
    }
