@font-face {
  font-family: 'Graphik';
  src: url('../fonts/graphik/Graphik-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Freight';
  src: url('../fonts/freight/FreightTextPro-Regular.woff2') format('woff2');
}

:root{
  --brand:#0a254e;
  --brand-dark:#071b35;
  --cta:#f59e0b;
  --accent:#42d392;
  --text:#4b5565;
  --header-bg:rgba(232,239,247,.88);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Graphik',sans-serif;
  color:var(--text);
  background:#fff;
}

.container{
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(20px);
  background:var(--header-bg);
  border-bottom:1px solid rgba(255,255,255,.6);
  box-shadow:0 10px 40px rgba(10,37,78,.08);
}

.header-inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand__logo{
  height:52px;
  width:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:0;
}

.nav__link{
  text-decoration:none;
  color:var(--brand);
  font-size:14px;
  font-weight:300;
  letter-spacing:.04em;
  padding:0 18px;
  height:92px;
  display:flex;
  align-items:center;
  position:relative;
  transition:.25s ease;
}

.nav__link:not(:first-child)::before{
  content:'';
  position:absolute;
  left:0;
  top:34px;
  width:1px;
  height:24px;
  background:rgba(10,37,78,.14);
}

.nav__link:hover{
  transform:translateY(-2px);
  color:#163d77;
}

.nav__link.is-active{
  font-weight:700;
}

.lang-switcher{
  position:relative;
  margin-left:16px;
}

.lang-btn{
  border:1px solid rgba(255,255,255,.7);
  background:rgba(255,255,255,.35);
  backdrop-filter:blur(18px);
  border-radius:999px;
  padding:12px 18px;
  cursor:pointer;
  color:var(--brand);
  font-weight:600;
}

.lang-menu{
  position:absolute;
  top:58px;
  right:0;
  width:220px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(20px);
  border-radius:20px;
  box-shadow:0 20px 50px rgba(10,37,78,.15);
  padding:12px;
  display:none;
}

.lang-menu a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:var(--brand);
  border-radius:12px;
}

.lang-menu a:hover{
  background:#eef4fb;
}

.lang-switcher:hover .lang-menu{
  display:block;
}

.menu-toggle{
  display:none;
}

.site-main {
  min-height: 60vh;
}

.site-footer {
  background: #0a254e;
  color: #fff;
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
}
.hero,
.inner-hero {
  min-height: 350px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #071b35, #0a3d73);
  color: #fff;
}

.hero h1,
.inner-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  margin: 0 0 20px;
}

.hero p,
.inner-hero p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: #0a254e;
  margin: 0 0 20px;
}

.section p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5870;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  background: #ffffff;
  color: #0a254e;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 12px;
}
/* Premium Header V2 */

.site-header {
  background: rgba(231, 238, 247, .92);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  max-width: 230px;
  object-fit: contain;
}

.lang-switcher.is-open .lang-menu {
  display: block;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.flag {
  width: 24px;
  height: 16px;
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,37,78,.16);
}

.flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-arrow {
  font-size: 13px;
  transform: translateY(-1px);
}

.lang-menu {
  z-index: 1000;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(10,37,78,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--brand);
  display: block;
  margin: 5px auto;
  border-radius: 99px;
  transition: .25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Premium Hero */

.hero,
.inner-hero {
  min-height: 350px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7,27,53,.92), rgba(10,37,78,.78)),
    radial-gradient(circle at 82% 20%, rgba(66,211,146,.28), transparent 32%),
    radial-gradient(circle at 20% 90%, rgba(245,158,11,.22), transparent 34%),
    #071b35;
}

.hero::after,
.inner-hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -35% auto;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  filter: blur(2px);
}

.hero .container,
.inner-hero .container {
  position: relative;
  z-index: 2;
}

.hero h1,
.inner-hero h1,
.section h2 {
  font-family: 'Freight', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero p,
.inner-hero p,
.section p {
  color: #566173;
}

.hero p,
.inner-hero p {
  color: rgba(255,255,255,.82);
}

.btn {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 12px 28px rgba(245,158,11,.25);
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245,158,11,.34);
}

/* Reveal animation baseline */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}

.reveal {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-zoom {
  transform: scale(.96);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
  opacity: 1;
  transform: none;
}
.lang-switcher {
  padding: 18px 0;
}

.lang-switcher::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
  height: 22px;
}

.lang-switcher:hover .lang-menu {
  display: block;
}

.lang-menu {
  top: 56px;
}
.nav__home {
  padding: 0 20px;
  justify-content: center;
}

.nav__home svg {
  width: 20px;
  height: 20px;
  fill: #2f5f9f;
  transition: .25s ease;
  filter: drop-shadow(0 2px 8px rgba(47,95,159,.14));
}

.nav__home:hover svg {
  fill: #0a254e;
  transform: translateY(-2px) scale(1.08);
}

.nav__home.is-active svg {
  fill: #0a254e;
}
/* Home Premium V1 */

.hero--home {
  min-height: calc(100vh - 92px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,27,53,.94), rgba(10,37,78,.76), rgba(10,37,78,.30)),
    radial-gradient(circle at 82% 24%, rgba(66,211,146,.25), transparent 34%);
}

.hero__inner {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero__copy {
  max-width: 780px;
}

.hero__kicker,
.howband__kicker {
  color: var(--cta);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__title {
  font-family: 'Freight', Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  color: #fff;
  margin: 0 0 22px;
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero__subtitle {
  max-width: 720px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.hero__text {
  max-width: 720px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__cta {
  margin-top: 28px;
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.36);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.section .btn--ghost,
.about-content .btn--ghost,
.careers-content .btn--ghost,
.faq-cta .btn--ghost {
  color: var(--brand);
  border-color: rgba(10,37,78,.18);
  background: rgba(10,37,78,.04);
}

.hero-note {
  margin-top: 34px;
  max-width: 760px;
  padding: 22px 24px;
  border-left: 3px solid var(--cta);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  backdrop-filter: blur(16px);
  border-radius: 0 22px 22px 0;
}

.section--featured {
  background: #f5f8fb;
}

.home-intro {
  max-width: 780px;
  margin-bottom: 36px;
}

.home-h2 {
  font-family: 'Freight', Georgia, serif;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
  color: var(--brand);
  margin: 0 0 16px;
  font-weight: 400;
  letter-spacing: -.04em;
}

.lead {
  font-size: 18px;
  line-height: 1.75;
  color: #566173;
  max-width: 760px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feat-card {
  background: #fff;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(10,37,78,.08);
  border: 1px solid rgba(10,37,78,.06);
  transition: .28s ease;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(10,37,78,.13);
}

.feat-ico {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(66,211,146,.12);
  margin-bottom: 22px;
}

.feat-ico svg {
  width: 28px;
  height: 28px;
}

.feat-title {
  color: var(--brand);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.feat-text {
  color: #566173;
  line-height: 1.75;
  margin: 0 0 18px;
}

.feat-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.about-grid,
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-img,
.careers-img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(10,37,78,.16);
}

.about-lead,
.careers-lead {
  font-size: 20px;
  line-height: 1.7;
  color: #344056;
}

.about-text,
.careers-text {
  line-height: 1.85;
  color: #566173;
}

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

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #344056;
  font-weight: 600;
}

.about-check {
  width: 25px;
  height: 25px;
  min-width: 25px;
  border-radius: 50%;
  background: rgba(66,211,146,.15);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
}

.howband {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7,27,53,.96), rgba(10,37,78,.84)),
    radial-gradient(circle at 85% 25%, rgba(66,211,146,.22), transparent 34%),
    #071b35;
  color: #fff;
  padding: 110px 0;
}

.howband__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.howband__title {
  font-family: 'Freight', Georgia, serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.04em;
  margin: 0 0 24px;
}

.howband__text {
  max-width: 880px;
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  font-size: 17px;
}

.howband__cta {
  margin-top: 30px;
}

.section--faq {
  background: #f5f8fb;
}

.faq {
  border-top: 1px solid rgba(10,37,78,.14);
}

.faq-item {
  border-bottom: 1px solid rgba(10,37,78,.14);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.faq-ico {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 24px;
}

.faq-ico::before,
.faq-ico::after {
  content: '';
  position: absolute;
  background: var(--brand);
  border-radius: 99px;
}

.faq-ico::before {
  width: 18px;
  height: 2px;
  top: 11px;
  left: 3px;
}

.faq-ico::after {
  width: 2px;
  height: 18px;
  top: 3px;
  left: 11px;
  transition: .2s ease;
}

.faq-q[aria-expanded="true"] .faq-ico::after {
  transform: scaleY(0);
}

.faq-a {
  padding: 0 0 24px;
}

.faq-a p {
  margin: 0;
  max-width: 820px;
  line-height: 1.8;
  color: #566173;
}

.faq-cta {
  margin-top: 36px;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(10,37,78,.08);
}

.faq-cta__title {
  font-family: 'Freight', Georgia, serif;
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 8px;
}

.faq-cta__text {
  color: #566173;
  margin-bottom: 18px;
}
/* Footer Premium V1 */

.site-footer--dark {
  position: relative;
  overflow: hidden;
  background: #071b35;
  color: rgba(255,255,255,.78);
  padding: 78px 0 34px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(66,211,146,.14), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(245,158,11,.16), transparent 30%),
    linear-gradient(135deg, #071b35, #0a254e);
  opacity: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-row {
  display: grid;
  grid-template-columns: 1.05fr 1.6fr;
  gap: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-tag {
  font-family: 'Freight', Georgia, serif;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.035em;
  max-width: 460px;
}

.footer-desc {
  margin-top: 22px;
  max-width: 520px;
  line-height: 1.85;
  color: rgba(255,255,255,.68);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 42px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

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

.footer-col a {
  color: rgba(255,255,255,.70);
  text-decoration: none;
  transition: .22s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-muted {
  line-height: 1.8;
  color: rgba(255,255,255,.68);
}

.footer-muted strong {
  color: #fff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 50px;
  padding-top: 28px;
}

.footer-copy {
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.footer-disclaimer {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.75;
}

/* Cookie banner */

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
}

.cookie-box {
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10,37,78,.10);
  box-shadow: 0 24px 70px rgba(10,37,78,.18);
  border-radius: 28px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-text strong {
  color: var(--brand);
}

.cookie-text p {
  margin: 6px 0 0;
  line-height: 1.65;
  color: #566173;
}

.cookie-text a {
  color: var(--brand);
  font-weight: 700;
}
/* About Premium V1 */

.hero--about {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.section-head {
  margin-bottom: 38px;
}

.section-line {
  width: 88px;
  height: 3px;
  background: var(--cta);
  border-radius: 99px;
  margin-top: 18px;
}

.about-why-grid,
.about-story-grid,
.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-why-img,
.about-story-img,
.about-who-img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(10,37,78,.16);
}

.prose p {
  color: #566173;
  line-height: 1.85;
  font-size: 17px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.pillar {
  background: #fff;
  border: 1px solid rgba(10,37,78,.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(10,37,78,.07);
}

.pillar-title {
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 9px;
}

.pillar-text {
  margin: 0;
  color: #566173;
  line-height: 1.7;
}

.section--stats {
  background: #f5f8fb;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(10,37,78,.08);
  border: 1px solid rgba(10,37,78,.06);
}

.stat-ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #2f5f9f;
  background: rgba(47,95,159,.10);
  font-size: 26px;
}

.stat-num {
  font-family: 'Freight', Georgia, serif;
  color: var(--brand);
  font-size: 52px;
  line-height: 1;
}

.stat-label {
  color: #566173;
  margin-top: 8px;
  font-weight: 700;
}

.section--about-story {
  background: #fff;
}

.section--about-who {
  background: #f5f8fb;
}

.legal-piano {
  border-top: 1px solid rgba(10,37,78,.14);
}

.legal-key {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10,37,78,.14);
  transition: .25s ease;
}

.legal-key:hover {
  transform: translateX(6px);
}

.legal-key__title {
  color: var(--brand);
  font-size: 21px;
  font-weight: 800;
}

.legal-key__meta {
  color: #566173;
  text-align: right;
}
/* Service Premium V1 */

.hero--service {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.service-band {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(70% 90% at 15% 30%, rgba(245,158,11,.22), transparent 60%),
    radial-gradient(70% 80% at 80% 40%, rgba(66,211,146,.18), transparent 62%),
    linear-gradient(135deg, #071b35, #0a254e);
}

.service-band__inner {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.service-band__copy {
  max-width: 980px;
  color: #fff;
}

.service-band__copy h2 {
  font-family: 'Freight', Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}

.service-band__copy p {
  max-width: 880px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}

.svc-global-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: stretch;
}

.svc-global-content {
  background: #fff;
  padding: 38px;
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  border: 1px solid rgba(10,37,78,.06);
}

.svc-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.svc-chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,37,78,.06);
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}

.svc-sub {
  border-top: 1px solid rgba(10,37,78,.10);
  padding-top: 22px;
  margin-top: 22px;
}

.svc-h3 {
  color: var(--brand);
  margin: 0 0 8px;
  font-size: 22px;
}

.svc-global-media {
  min-height: 100%;
}

.svc-global-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(10,37,78,.16);
}

.section--svc-grid {
  background: #f5f8fb;
}

.svc-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.svc-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  border: 1px solid rgba(10,37,78,.06);
  transition: .28s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(10,37,78,.13);
}

.svc-media {
  height: 210px;
  overflow: hidden;
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

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

.svc-body {
  padding: 26px;
}

.svc-title {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

.svc-link {
  color: var(--brand);
  text-decoration: none;
}

.svc-text {
  color: #566173;
  line-height: 1.75;
  margin: 0 0 18px;
}

.svc-cta {
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
}
/* Resources Premium V1 */

.hero--resources {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.section--resources {
  background: #fff;
}

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

.res-card {
  background: #fff;
  border: 1px solid rgba(10,37,78,.07);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  transition: .28s ease;
}

.res-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(10,37,78,.13);
}

.res-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #2f5f9f;
  background: rgba(47,95,159,.10);
  margin-bottom: 22px;
}

.res-ico svg {
  width: 29px;
  height: 29px;
}

.res-title {
  color: var(--brand);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.res-text {
  color: #566173;
  line-height: 1.75;
  margin: 0;
}

.section--resources-news {
  background: #f5f8fb;
}

.res-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.res-news-card {
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(10,37,78,.14);
  transition: .3s ease;
}

.res-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(10,37,78,.22);
}

.res-news-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,27,53,.12), rgba(7,27,53,.92)),
    radial-gradient(circle at 20% 20%, rgba(245,158,11,.16), transparent 45%);
}

.res-news-content {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: #fff;
}

.res-news-meta {
  color: var(--cta);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.res-news-title {
  color: #fff;
  font-size: 23px;
  line-height: 1.18;
  margin: 0 0 12px;
}

.res-news-text {
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin: 0 0 18px;
}

.res-news-cta {
  color: #fff;
  font-weight: 800;
}
/* Funds Premium V1 */

.hero--funds {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.section--funds-focus {
  background: #fff;
}

.funds-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.funds-card {
  background: #fff;
  border: 1px solid rgba(10,37,78,.07);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  transition: .28s ease;
}

.funds-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(10,37,78,.13);
}

.funds-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #2f5f9f;
  background: rgba(47,95,159,.10);
  margin-bottom: 22px;
}

.funds-ico svg {
  width: 29px;
  height: 29px;
}

.funds-title {
  color: var(--brand);
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.funds-text {
  color: #566173;
  line-height: 1.75;
  margin: 0;
}

.section--offer {
  background: #f5f8fb;
}

.offer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  margin-top: 34px;
}

.offer-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  border: 1px solid rgba(10,37,78,.06);
}

.offer-card--soft {
  background:
    radial-gradient(circle at 80% 10%, rgba(66,211,146,.12), transparent 34%),
    #fff;
}

.offer-kicker {
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}

.meter {
  margin-bottom: 22px;
}

.meter-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.meter-label {
  color: #566173;
  font-weight: 700;
}

.meter-val {
  color: var(--brand);
  font-weight: 800;
}

.meter-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(10,37,78,.08);
  overflow: hidden;
}

.meter-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #2f5f9f);
}

.offer-note,
.muted {
  color: #566173;
  line-height: 1.8;
}

.offer-points {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.offer-point {
  display: flex;
  gap: 12px;
  color: #344056;
  line-height: 1.6;
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 10px;
}

.section--funds-features {
  background: #fff;
}

.funds-feat-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.funds-feat-img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(10,37,78,.16);
}

.funds-divider {
  height: 1px;
  background: rgba(10,37,78,.14);
  margin: 32px 0;
}
/* Private Clients Premium V1 */

.hero--pc {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.hero__overlay--strong {
  background:
    linear-gradient(90deg, rgba(7,27,53,.96), rgba(10,37,78,.74), rgba(10,37,78,.28)),
    radial-gradient(circle at 80% 22%, rgba(245,158,11,.20), transparent 34%);
}

.section--pc-unified {
  background: #f5f8fb;
}

.pc6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.pc6-card {
  background: #fff;
  border: 1px solid rgba(10,37,78,.07);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  transition: .28s ease;
}

.pc6-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(10,37,78,.13);
}

.pc6-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #2f5f9f;
  background: rgba(47,95,159,.10);
  margin-bottom: 22px;
}

.pc6-ico svg {
  width: 29px;
  height: 29px;
}

.pc6-title {
  color: var(--brand);
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.pc6-text {
  color: #566173;
  line-height: 1.75;
  margin: 0;
}

.pc6-cta {
  margin-top: 28px;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

.pc6-cta__title {
  font-family: 'Freight', Georgia, serif;
  color: var(--brand);
  font-size: 34px;
  line-height: 1.05;
}

.pc6-cta__text {
  color: #566173;
  margin-top: 8px;
}

.section--pc-gov {
  background: #fff;
}

.pc-gov-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.pc-gov-img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(10,37,78,.16);
}

.pc-gov-divider {
  height: 1px;
  background: rgba(10,37,78,.14);
  margin: 32px 0;
}
/* Corporate Clients Premium V1 */

.hero--corp {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.section--corp-services {
  background: #f5f8fb;
}

.corp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.corp-card {
  background: #fff;
  border: 1px solid rgba(10,37,78,.07);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  transition: .28s ease;
}

.corp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(10,37,78,.13);
}

.corp-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #2f5f9f;
  background: rgba(47,95,159,.10);
  margin-bottom: 22px;
}

.corp-ico svg {
  width: 29px;
  height: 29px;
}

.corp-title {
  color: var(--brand);
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.corp-text {
  color: #566173;
  line-height: 1.75;
  margin: 0;
}

.corp-cta {
  margin-top: 28px;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

.corp-cta__title {
  font-family: 'Freight', Georgia, serif;
  color: var(--brand);
  font-size: 34px;
  line-height: 1.05;
}

.corp-cta__text {
  color: #566173;
  margin-top: 8px;
}

.section--corp-global {
  background: #fff;
}

.corp-global-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.corp-global-img {
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(10,37,78,.16);
}

.corp-global-content {
  background: #fff;
}
/* Contact Premium V1 */

.hero--contact {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.section--contact {
  background: #f5f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
  border: 1px solid rgba(10,37,78,.06);
}

.contact-h3 {
  color: var(--brand);
  font-size: 24px;
  margin: 0 0 24px;
}

.contact-kv {
  display: grid;
  gap: 18px;
}

.contact-k {
  color: var(--cta);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-v {
  color: #344056;
  line-height: 1.65;
}

.contact-v a {
  color: var(--brand);
  font-weight: 800;
}

.contact-mini {
  margin-top: 30px;
  padding: 24px;
  border-radius: 24px;
  background: #f5f8fb;
}

.contact-mini__title {
  color: var(--brand);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-mini__list {
  margin: 14px 0;
  padding-left: 20px;
  color: #566173;
  line-height: 1.8;
}

.contact-mini__note,
.contact-mini p {
  color: #566173;
  line-height: 1.75;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
}

.form-grid .span-2 {
  grid-column: span 2;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(10,37,78,.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: #344056;
  background: #fff;
  outline: none;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: #2f5f9f;
  box-shadow: 0 0 0 4px rgba(47,95,159,.10);
}

.hp-field {
  display: none !important;
}

.contact-hint {
  margin-top: 22px;
  color: #566173;
  line-height: 1.75;
  font-size: 14px;
}

.contact-toast {
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.contact-toast--ok {
  background: rgba(66,211,146,.12);
  color: #166044;
}

.contact-toast--error {
  background: rgba(220,38,38,.10);
  color: #991b1b;
}

.contact-toast__title {
  font-weight: 800;
  margin-bottom: 4px;
}

.section--contact-boxes {
  background: #fff;
}

.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-box {
  background: #fff;
  border: 1px solid rgba(10,37,78,.07);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
}

.contact-ico {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(47,95,159,.10);
  color: #2f5f9f;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-box__title {
  color: var(--brand);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-box__text {
  color: #566173;
  line-height: 1.75;
}

.contact-cta-band {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7,27,53,.94), rgba(10,37,78,.78)),
    radial-gradient(circle at 82% 24%, rgba(66,211,146,.20), transparent 34%);
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 940px;
}

.contact-cta-title {
  font-family: 'Freight', Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}

.contact-cta-text {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 26px;
}
/* Legal Premium V1 */

.hero--legal {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.section--legal {
  background: #f5f8fb;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.legal-main {
  display: grid;
  gap: 22px;
}

.legal-card,
.legal-sidecard {
  background: #fff;
  border: 1px solid rgba(10,37,78,.07);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(10,37,78,.08);
}

.legal-h3 {
  color: var(--brand);
  font-size: 24px;
  margin: 0 0 16px;
}

.legal-h4 {
  color: var(--brand);
  font-size: 18px;
  margin: 22px 0 10px;
}

.legal-p,
.legal-list {
  color: #566173;
  line-height: 1.85;
  font-size: 16px;
}

.legal-p a,
.legal-card a {
  color: var(--brand);
  font-weight: 800;
}

.legal-note {
  margin-top: 18px;
  padding: 18px;
  border-left: 3px solid var(--cta);
  background: #f5f8fb;
  border-radius: 0 18px 18px 0;
  color: #566173;
  line-height: 1.75;
}

.legal-muted {
  color: #7a8495;
}

.legal-sticky {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.legal-side-title {
  color: var(--brand);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
}

.legal-side-text {
  color: #566173;
  line-height: 1.7;
  margin-bottom: 18px;
}

.legal-nav {
  display: grid;
  gap: 10px;
}

.legal-nav a {
  color: #566173;
  text-decoration: none;
  transition: .22s ease;
}

.legal-nav a:hover {
  color: var(--brand);
  transform: translateX(4px);
}
