@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");
:root {
  --blue: #0b3f87;
  --blue2: #1262a6;
  --light: #eef7ff;
  --line: #cad9ec;
  --text: #0b3f87;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: relative;
  z-index: 5;
  height: 94px;
  display: flex;
  align-items: center;
}
.burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 15px 18px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.mobile-nav a {
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn {
  margin-top: 10px;
  align-self: flex-start;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
}
.brand img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
.brand-mark {
  font-family: Georgia, serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 0.8;
  color: #1782df;
}
.brand-text {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 12px;
  line-height: 1.05;
}
.brand-text strong {
  font-weight: 700;
}
.brand-text span {
  font-size: 11px;
}
.nav {
  display: flex;
  /* display: none; */
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.linkedin-icon {
  background: #1262a6;
  color: #fff;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 6px;
  background: #167ed7;
  color: #fff;
  padding: 13px 21px !important;
  font-size: 13px;
  font-weight: 600;
}
.btn span {
  font-size: 20px;
  line-height: 0;
}
.btn-outline {
  background: transparent;
  border: 1px solid #167ed7;
  color: #0b4f9a;
}
.btn-small {
  padding: 10px 15px;
}
.lang {
  font-size: 12px;
}
.hero {
  --hero-pad: clamp(50px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  padding: var(--hero-pad) 0;
  position: relative;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/images/banner.png") center right/cover no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.86) 27%,
    rgba(255, 255, 255, 0.2) 57%,
    rgba(255, 255, 255, 0.06) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  /* padding: 50px 0 30px 60px; */
  padding: 0 0 0 30px;
  max-width: 700px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  margin: 0 0 12px;
}
.hero h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}
.hero h1 {
  font-size: 49px;
  line-height: 1.02;
  margin: 0 0 16px;
}
.lead {
  font-size: 15px;
  line-height: 1.45;
  max-width: 560px;
  margin-bottom: 21px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
}
.anchor-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  font-weight: 500;
  margin-top: 21px;
  font-size: 10px;
  letter-spacing: 0.09em;
}
.anchor-row i {
  width: 22px;
  height: 1px;
  background: #7e9cbd;
}
.hero-side-label {
  position: absolute;
  z-index: 3;
  right: 40px;
  top: 155px;
  display: flex;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.17em;
  line-height: 1.7;
  color: #fff;
}
.hero-side-label span {
  width: 1px;
  height: 74px;
  background: rgba(255, 255, 255, 0.7);
}
.hero-location {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: var(--hero-pad);
  font-size: 10px;
  color: #fff;
}
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 400px;
}
.about-photo {
  position: relative;
}
.about-photo p {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  max-width: 90px;
  margin: 0;
}
.about-copy {
  padding: 60px;
}
.about h2,
.benefits h2,
.membership h2 {
  font-size: 36px;
  line-height: 1.04;
  margin: 0 0 18px;
}
.about-copy p {
  font-size: 14px;
  line-height: 1.45;
  max-width: 570px;
  margin: 0 0 11px;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 5px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefits {
  background: #eef7ff;
  padding: 40px 60px 45px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mini-caption {
  font-size: 9px;
  letter-spacing: 0.1em;
  display: flex;
  gap: 10px;
  align-items: center;
}
.mini-caption span {
  width: 36px;
  height: 1px;
  background: #1f4d81;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.benefit-grid article {
  text-align: center;
  padding: 8px 14px;
  border-right: 1px solid #cadcef;
}
.benefit-grid article:last-child {
  border-right: 0;
}
.icon {
  /* font-size: 29px; */
  /* height: 50px; */
  display: grid;
  place-items: center;
}
.icon img {
  width: 35px;
  height: 35px;
}
.benefit-grid h3 {
  font-size: 12.5px;
  line-height: 1.2;
  margin: 10px 0 8px;
}
.benefit-grid p {
  font-size: 11px;
  line-height: 1.42;
  margin: 0;
}
#membership {
  background: linear-gradient(90deg, #083a80, #0a3e88);
}
.membership {
  color: #fff;
  padding: 44px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}
.membership h2 {
  font-size: 41px;
}
.membership-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
}
.light {
  color: #fff;
}
.light-row {
  margin-top: 38px;
  gap: 28px;
}
.interest-form {
  background: #fff;
  color: #0b3f87;
  border-radius: 9px;
  padding: 18px 19px;
}
.interest-form h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 11px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.form-grid input,
.form-grid select {
  width: 100%;
  height: 30px;
  border: 1px solid #bfd1e7;
  border-radius: 4px;
  padding: 0 9px;
  font:
    11px "DM Sans",
    Arial;
  background: #fff;
  color: #244a78;
}
.check-title {
  font-size: 10px;
  font-weight: 700;
  margin: 10px 0 5px;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  font-size: 10px;
}
.checks label {
  display: flex;
  gap: 6px;
  align-items: center;
}
.form-btn {
  width: 100%;
  margin: 12px 0 9px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: #083f89;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
}
.form-message {
  min-height: 14px;
  font-size: 11px;
  font-weight: 600;
  margin: 4px 0 0;
}
.form-message.is-success {
  color: #0a7a3d;
}
.form-message.is-error {
  color: #c22;
}
.interest-form small {
  font-size: 7px;
  line-height: 1.35;
  display: block;
  color: #7385a0;
}
footer {
  background: #062e67;
}
.footer-wrapper {
  color: #fff;
  padding: 25px 60px 17px;
  display: grid;
  grid-template-columns: 235px 170px 1fr 1.35fr;
  gap: 20px;
  /* align-items: center; */
  font-size: 11px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-brand img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.footer-brand .brand-mark {
  font-size: 40px;
  color: #fff;
}
footer strong {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
footer strong img {
  width: 16px;
  height: 16px;
}
.social-mail-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-mail-wrapper img {
  width: 16px;
  height: 16px;
}
.social-linkedin-wrapper {
  display: flex;
  gap: 10px;
}
.social-linkedin-wrapper img {
  width: 16px;
  height: 16px;
}
.footer-links {
  display: flex;
  justify-content: start;
  gap: 22px;
  align-items: center;
}
.footer-links span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.11em;
  font-size: 9px;
}
.copyright {
  grid-column: 1/-1;
  font-size: 9px;
  opacity: 0.75;
  margin-top: 3px;
}
@media (max-width: 991px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 26px 20px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    padding: 15px 25px;
  }
  .brand {
    min-width: 220px;
  }
  .nav {
    gap: 18px;
  }
  .hero-content {
    padding-left: 34px;
  }
  .benefits {
    padding-left: 30px;
    padding-right: 30px;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefit-grid article:nth-child(3) {
    border-right: 0;
  }
  .benefit-grid article:nth-child(-n + 3) {
    border-bottom: 1px solid #cadcef;
    padding-bottom: 18px;
  }
  .membership {
    grid-template-columns: 1fr 405px;
    padding: 38px 30px;
  }
  .footer-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0;
  }
  .brand-text span,
  .nav,
  .header-actions .lang {
    display: none;
  }
  .brand {
    min-width: auto;
  }
  .brand-mark {
    font-size: 39px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn {
    display: none;
  }
  /* .hero {
    padding-top: 72px;
    min-height: 690px;
  } */
  .hero-media {
    background-position: 65% center;
  }
  .hero-content {
    padding: 43px 22px 22px;
    text-align: center;
  }
  .hero h1 {
    font-size: 35px;
  }
  .lead {
    font-size: 13px;
  }
  .hero-buttons {
    flex-wrap: wrap;
  }
  .hero-buttons .btn-outline {
    backdrop-filter: blur(5px);
  }
  .hero-buttons .btn {
    width: auto;
  }
  .hero-side-label,
  .hero-location {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-copy {
    padding: 42px 22px;
    text-align: center;
  }
  .about-photo p {
    left: 50%;
    max-width: 100%;
    text-align: center;
  }
  .about-photo {
    min-height: 290px;
  }
  .benefits {
    padding: 38px 16px;
  }
  .section-head {
    display: block;
    text-align: center;
  }
  .mini-caption {
    margin-top: 13px;
    justify-content: center;
    flex-direction: column;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid #cadcef;
  }
  .membership {
    grid-template-columns: 1fr;
    padding: 38px 16px;
  }
  .membership-copy {
    text-align: center;
  }
  .membership-copy .light-row {
    margin: 0;
    display: flex;
    gap: 13px;
    justify-content: center;
  }
  .membership h2 {
    font-size: 35px;
  }
  .membership-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .interest-form {
    margin-top: 14px;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: start;
  }
  .footer-links span {
    padding: 0;
    border: none;
  }

  .copyright {
    grid-column: 1/-1;
  }
}
@media (max-width: 576px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
  footer strong {
    justify-content: center;
  }
  .social-mail-wrapper {
    justify-content: center;
  }
  .social-linkedin-wrapper {
    justify-content: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 460px) {
  .anchor-row {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5px;
  }
  .anchor-row i {
    margin: 0 auto;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 31px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .footer-wrapper {
    grid-template-columns: 1fr;
  }
}
