*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

@keyframes focusDash {
  from { outline-offset: 2px; }
  to { outline-offset: 5px; }
}

*:focus-visible {
  outline: 2px dashed #49739B;
  outline-offset: 3px;
  animation: focusDash 1.2s ease-out infinite alternate;
}

.skipfocus {
  font-family: 'Cabin', sans-serif;
}

.utilitybar {
  background: #49739B;
  padding: 6px 0;
}

.utilitybar-pod {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brandmark-frame {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: rgba(249, 245, 241, 0.15);
  border: 1px solid rgba(249, 245, 241, 0.35);
  box-shadow: 1px 3px 4px 0 rgba(73, 115, 155, 0.06), 0 1px 2px 0 rgba(249, 245, 241, 0.2) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brandmark-frame img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brandname {
  font-family: 'Cabin', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F9F5F1;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.utilcontacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utilcontact {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: rgba(249, 245, 241, 0.88);
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.2s ease-out;
}

.utilcontact:hover {
  color: #F9F5F1;
}

.utilcontact svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.utiladdress {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: rgba(249, 245, 241, 0.65);
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 6px;
}

.utiladdress svg {
  flex-shrink: 0;
  opacity: 0.55;
}

.headerband {
  background: #F9F5F1;
  border-bottom: 1px solid rgba(73, 115, 155, 0.13);
  box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
}

.headerband-pod {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.primarynav {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.navitem {
  position: relative;
  display: flex;
  align-items: center;
}

.navlink {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2a3d52;
  text-decoration: none;
  padding: 24px 24px;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.25s ease-out;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.navlink::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #49739B;
  border-radius: 4px 4px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease-out;
}

.navlink:hover {
  color: #49739B;
}

.navlink:hover::before {
  transform: scaleX(1);
}

.navlink.active {
  color: #49739B;
}

.navlink.active::before {
  transform: scaleX(1);
}

.headerdivider {
  width: 1px;
  background: rgba(73, 115, 155, 0.12);
  margin: 12px 0;
  flex-shrink: 0;
}

.headeraccent {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.headerbtn {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F9F5F1;
  background: #49739B;
  border: none;
  border-radius: 14px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease-out, box-shadow 0.25s ease-out;
  box-shadow: 1px 3px 4px 0 rgba(73, 115, 155, 0.06);
  white-space: nowrap;
}

.headerbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2a3d52;
  transition: left 0.22s ease-out;
  z-index: 0;
}

.headerbtn:hover::before {
  left: 0;
}

.headerbtn:hover {
  box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
}

.headerbtn span,
.headerbtn svg {
  position: relative;
  z-index: 1;
}

.sitefooter {
  background: #2a3d52;
  font-family: 'Cabin', sans-serif;
}

.footertop {
  background: #334d66;
  padding: 48px 0;
  border-bottom: 1px solid rgba(73, 115, 155, 0.25);
}

.footertop-pod {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footerbrand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.footerbrandmark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footerbrandmark-frame {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: rgba(249, 245, 241, 0.1);
  border: 1px solid rgba(249, 245, 241, 0.2);
  box-shadow: 1px 3px 4px 0 rgba(73, 115, 155, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.footerbrandmark-frame img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footerbrandname {
  font-size: 20px;
  font-weight: 700;
  color: #F9F5F1;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footertagline {
  font-size: 14px;
  color: rgba(249, 245, 241, 0.55);
  line-height: 1.65;
  max-width: 240px;
}

.footerlinks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footerlinkslabel {
  font-size: 14px;
  font-weight: 700;
  color: rgba(249, 245, 241, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
}

.footerlink {
  font-size: 15px;
  color: rgba(249, 245, 241, 0.75);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease-out;
  display: inline-block;
}

.footerlink:hover {
  color: #D3BBB5;
}

.footercontactblock {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footercontactlabel {
  font-size: 14px;
  font-weight: 700;
  color: rgba(249, 245, 241, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 6px;
}

.footercontact {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 15px;
  color: rgba(249, 245, 241, 0.75);
  line-height: 1.45;
  transition: color 0.2s ease-out;
}

.footercontact:hover {
  color: #D3BBB5;
}

.footercontact svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footeraddr {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: rgba(249, 245, 241, 0.5);
  line-height: 1.65;
}

.footeraddr svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.footerbottom {
  padding: 24px 0;
}

.footerbottom-pod {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footercopy {
  font-size: 14px;
  color: rgba(249, 245, 241, 0.4);
  line-height: 1.45;
}

.footerlegallinks {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footerlegallink {
  font-size: 14px;
  color: rgba(249, 245, 241, 0.45);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease-out;
}

.footerlegallink:hover {
  color: rgba(249, 245, 241, 0.75);
}

.cookiepopup {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  width: 340px;
  background: #F9F5F1;
  border-radius: 14px;
  border: 1px solid rgba(73, 115, 155, 0.18);
  box-shadow: 1px 9px 52px 0 rgba(73, 115, 155, 0.13);
  font-family: 'Cabin', sans-serif;
  overflow: hidden;
}

.cookiepopup-inner {
  padding: 24px;
}

.cookietitle {
  font-size: 15px;
  font-weight: 700;
  color: #2a3d52;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cookiedesc {
  font-size: 14px;
  color: #3d5166;
  line-height: 1.65;
  margin-bottom: 12px;
}

.cookiepolicylink {
  color: #49739B;
  text-decoration: underline;
}

.cookieexpand {
  margin-bottom: 12px;
}

.cookieexpandbtn {
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  color: #49739B;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  line-height: 1.45;
  transition: color 0.2s ease-out;
}

.cookieexpandbtn:hover {
  color: #2a3d52;
}

.cookiepanel {
  background: rgba(73, 115, 155, 0.06);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
}

.cookietogglerow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookietogglelabel {
  font-size: 14px;
  color: #2a3d52;
  line-height: 1.45;
  font-weight: 500;
}

.cookietoggle {
  width: 36px;
  height: 20px;
  background: rgba(73, 115, 155, 0.25);
  border-radius: 40px;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease-out;
}

.cookietoggle.enabled {
  background: #49739B;
}

.cookietoggle::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #F9F5F1;
  border-radius: 40px;
  top: 3px;
  left: 3px;
  transition: left 0.2s ease-out;
}

.cookietoggle.enabled::after {
  left: 19px;
}

.cookiebtns {
  display: flex;
  gap: 12px;
}

.cookiebtn {
  flex: 1;
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
  white-space: nowrap;
  text-align: center;
}

.cookiebtn.accept {
  background: #49739B;
  color: #F9F5F1;
  border: 1px solid #49739B;
}

.cookiebtn.accept:hover {
  background: #2a3d52;
  border-color: #2a3d52;
}

.cookiebtn.decline {
  background: transparent;
  color: #49739B;
  border: 1px solid #49739B;
}

.cookiebtn.decline:hover {
  background: rgba(73, 115, 155, 0.08);
}

.cookieminibanner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: 'Cabin', sans-serif;
}

.cookieminibtn {
  background: #49739B;
  color: #F9F5F1;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  font-family: 'Cabin', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
  transition: background 0.2s ease-out;
  line-height: 1.2;
}

.cookieminibtn:hover {
  background: #2a3d52;
}

@media (max-width: 768px) {
  .utilcontacts {
    display: none;
  }

  .utiladdress {
    display: none;
  }

  .primarynav {
    flex-wrap: wrap;
  }

  .navlink {
    padding: 18px 12px;
    font-size: 14px;
  }

  .headeraccent {
    padding-left: 12px;
  }

  .footertop-pod {
    flex-direction: column;
    gap: 24px;
  }

  .footerbottom-pod {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookiepopup {
    width: calc(100vw - 48px);
    right: 24px;
  }
}.qwhv-terms-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #2c3e50;
    line-height: 1.65;
    font-size: 17px;
}

.qwhv-terms-inner strong,
.qwhv-terms-inner b {
    font-weight: 700;
    color: #1e2d3d;
}

.qwhv-terms-inner a {
    color: #49739B;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease-out, text-decoration-color 0.25s ease-out;
}

.qwhv-terms-inner a:hover {
    color: #2e5278;
    text-decoration-color: #D3BBB5;
}

.qwhv-terms-inner a:visited {
    color: #6b8fad;
}

.qwhv-terms-inner table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.45;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
}

.qwhv-terms-inner thead {
    background-color: #49739B;
    color: #ffffff;
}

.qwhv-terms-inner thead th {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: left;
    border-bottom: 2px solid rgba(73, 115, 155, 0.3);
}

.qwhv-terms-inner tbody tr {
    background-color: #ffffff;
    transition: background-color 0.15s ease-out;
}

.qwhv-terms-inner tbody tr:nth-child(even) {
    background-color: #F9F5F1;
}

.qwhv-terms-inner tbody tr:hover {
    background-color: #eef2f7;
}

.qwhv-terms-inner td {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(211, 187, 181, 0.4);
    vertical-align: top;
    color: #2c3e50;
}

.qwhv-terms-inner tbody tr:last-child td {
    border-bottom: none;
}

.qwhv-terms-inner hr {
    border: none;
    border-top: 1px solid rgba(211, 187, 181, 0.6);
    margin: 48px 0;
    box-shadow: inset 0 1px 2px rgba(73, 115, 155, 0.06);
}

.qwhv-terms-inner div {
    margin-bottom: 24px;
}

.qwhv-terms-inner div:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .qwhv-terms-inner {
        padding: 24px 12px;
        font-size: 15px;
    }

    .qwhv-terms-inner table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px;
    }

    .qwhv-terms-inner thead th,
    .qwhv-terms-inner td {
        padding: 12px;
        white-space: nowrap;
    }

    .qwhv-terms-inner hr {
        margin: 24px 0;
    }
}
.aboutus {
  overflow-x: hidden;
  position: relative;
}

.aboutus * {
  box-sizing: border-box;
}

.aboutus .au-grad-text {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aboutus .au-accent {
  color: #49739B;
}

.aboutus .au-page-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION 1: TITLE BLOCK ── */
.aboutus .au-title-block {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(277deg, #49739B 0%, #D3BBB5 55%, #F9F5F1 100%);
  background-size: 300% 300%;
  animation: auGradDrift 9s ease-out infinite alternate;
  overflow: hidden;
}

@keyframes auGradDrift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.aboutus .au-title-block::before {
  content: "\201C";
  position: absolute;
  top: -24px;
  left: 48px;
  font-size: 320px;
  line-height: 1.2;
  color: #fff;
  opacity: 0.12;
  pointer-events: none;
  font-style: normal;
  z-index: 0;
}

.aboutus .au-title-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.aboutus .au-title-text {
  flex: 1 1 55%;
}

.aboutus .au-title-text h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px 0;
}

.aboutus .au-title-text p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 520px;
}

.aboutus .au-title-img-col {
  flex: 0 0 38%;
  position: relative;
}

.aboutus .au-title-img-wrap {
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(73,115,155,0.13);
}

.aboutus .au-title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: auImgZoom 12s ease-out infinite alternate;
  display: block;
}

@keyframes auImgZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07); }
}

/* ── SECTION 2: STORY / ASYMMETRIC ── */
.aboutus .au-story {
  padding: 96px 24px;
  background: #F9F5F1;
  position: relative;
}

.aboutus .au-story::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(73,115,155,0.08);
  pointer-events: none;
}

.aboutus .au-story-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.aboutus .au-story-left {
  flex: 0 0 30%;
  padding-top: 6px;
}

.aboutus .au-story-left h2 {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.aboutus .au-story-left .au-founded-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(73,115,155,0.1);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: #49739B;
  margin-top: 12px;
}

.aboutus .au-story-right {
  flex: 1 1 65%;
}

.aboutus .au-story-right h3 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b2d40;
  margin: 0 0 24px 0;
}

.aboutus .au-story-right p {
  font-size: 17px;
  line-height: 1.65;
  color: #3a4a58;
  margin: 0 0 24px 0;
}

.aboutus .au-story-right p:last-child {
  margin-bottom: 0;
}

.aboutus .au-story-img {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 1px 5px 22px 0 rgba(73,115,155,0.11);
}

.aboutus .au-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease-out;
}

.aboutus .au-story-img:hover img {
  transform: scale(1.04);
}

/* ── SECTION 3: TEAM - GRAINY TEXTURE ── */
.aboutus .au-team {
  padding: 96px 24px;
  position: relative;
  background-color: #49739B;
}

.aboutus .au-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.aboutus .au-team-inner {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.aboutus .au-team-head {
  margin-bottom: 48px;
}

.aboutus .au-team-head h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px 0;
}

.aboutus .au-team-head p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0;
}

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

.aboutus .au-person {
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.25s ease-out, transform 0.2s ease-out;
}

.aboutus .au-person:hover {
  background: rgba(255,255,255,0.17);
  transform: translateY(-4px);
}

.aboutus .au-person-img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}

.aboutus .au-person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease-out;
}

.aboutus .au-person:hover .au-person-img img {
  transform: scale(1.05);
}

.aboutus .au-person h4 {
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.aboutus .au-person-role {
  font-size: 14px;
  line-height: 1.45;
  color: #D3BBB5;
  margin: 0 0 12px 0;
}

.aboutus .au-person-bio {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* ── SECTION 4: VALUES / PRINCIPLES ── */
.aboutus .au-principles {
  padding: 96px 24px;
  background: #fff;
  position: relative;
}

.aboutus .au-principles-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.aboutus .au-principles-left h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b2d40;
  margin: 0 0 24px 0;
}

.aboutus .au-principles-left p {
  font-size: 17px;
  line-height: 1.65;
  color: #3a4a58;
  margin: 0 0 24px 0;
}

.aboutus .au-principles-left .au-img-wrap {
  width: 100%;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(73,115,155,0.13);
}

.aboutus .au-principles-left .au-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: auImgPan 14s ease-out infinite alternate;
}

@keyframes auImgPan {
  0%   { object-position: center top; }
  100% { object-position: center bottom; }
}

.aboutus .au-principles-right {
  padding-top: 12px;
}

.aboutus .au-val-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aboutus .au-val-item {
  padding: 24px;
  border-radius: 14px;
  background: #F9F5F1;
  position: relative;
  box-shadow: 1px 3px 4px 0 rgba(73,115,155,0.06);
  transition: box-shadow 0.25s ease-out, background 0.2s ease-out;
}

.aboutus .au-val-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 85%);
  border-radius: 4px 0 0 4px;
}

.aboutus .au-val-item:hover {
  box-shadow: 1px 5px 22px 0 rgba(73,115,155,0.11);
  background: #fff;
}

.aboutus .au-val-item h5 {
  font-size: 15px;
  line-height: 1.45;
  color: #1b2d40;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.aboutus .au-val-item p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a4a58;
  margin: 0;
}

/* ── HOVER UNDERLINE SLIDE ── */
.aboutus .au-story-inner:hover .au-story-right h3 span {
  background-size: 100% 2px;
}

.aboutus .au-story-right h3 span {
  background: linear-gradient(#49739B, #49739B) no-repeat 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.35s ease-out;
  -webkit-text-fill-color: initial;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .aboutus .au-title-inner {
    flex-direction: column;
  }
  .aboutus .au-title-img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .aboutus .au-title-img-wrap {
    height: 260px;
  }
  .aboutus .au-story-inner {
    flex-direction: column;
  }
  .aboutus .au-story-left {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 0;
  }
  .aboutus .au-team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .aboutus .au-principles-inner {
    grid-template-columns: 1fr;
  }
  .aboutus .au-story-right h3 {
    font-size: 32px;
  }
  .aboutus .au-title-text h1 {
    font-size: 32px;
  }
  .aboutus .au-team-head h2,
  .aboutus .au-principles-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .aboutus .au-team-grid {
    grid-template-columns: 1fr;
  }
  .aboutus .au-title-block,
  .aboutus .au-story,
  .aboutus .au-team,
  .aboutus .au-principles {
    padding: 48px 24px;
  }
  .aboutus .au-title-text h1 {
    font-size: 28px;
  }
  .aboutus .au-team-head h2,
  .aboutus .au-principles-left h2,
  .aboutus .au-story-right h3 {
    font-size: 28px;
  }
}

.prtns {
  background: #fff;
  overflow-x: clip;
}

.prtns .grid-bound {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.prtns .col-anim-1 { animation: colAppear 0.35s ease-out 0.05s both; }
.prtns .col-anim-2 { animation: colAppear 0.38s ease-out 0.18s both; }
.prtns .col-anim-3 { animation: colAppear 0.42s ease-out 0.32s both; }
.prtns .col-anim-4 { animation: colAppear 0.45s ease-out 0.46s both; }

.prtns .titleblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.prtns .titleblock .txtside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  position: relative;
  z-index: 1;
}

.prtns .titleblock .dots {
  position: absolute;
  top: 48px;
  left: 0;
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.prtns .titleblock .dots span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #49739B;
  opacity: 0.22;
  position: absolute;
}

.prtns .titleblock .manifesto {
  font-size: 15px;
  line-height: 1.45;
  color: #49739B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.prtns .titleblock .mainhead {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e2d3d;
  margin-bottom: 24px;
  background: linear-gradient(277deg, #49739B 18%, #2a4a6b 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prtns .titleblock .mainhead em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
}

.prtns .titleblock .subdesc {
  font-size: 17px;
  line-height: 1.65;
  color: #3a4a5a;
  margin-bottom: 0;
}

.prtns .titleblock .imgside {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.prtns .titleblock .imgside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.88;
}

.prtns .titleblock .imgside .vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(73,115,155,0.18) 0%, rgba(30,45,61,0.55) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.prtns .partnerlist {
  background: #F9F5F1;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.prtns .partnerlist .diaglines {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
}

.prtns .partnerlist .diaglines svg {
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

.prtns .partnerlist .plhead {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}

.prtns .partnerlist .plhead .plabel {
  font-size: 15px;
  line-height: 1.45;
  color: #49739B;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prtns .partnerlist .plhead h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(277deg, #D3BBB5 12%, #49739B 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.prtns .partnerlist .pcard {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 1px 3px 4px 0 rgba(73,115,155,0.06);
  transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.prtns .partnerlist .pcard:hover {
  box-shadow: 1px 9px 52px 0 rgba(73,115,155,0.13);
  transform: translateY(-3px);
}

.prtns .partnerlist .pcard .ptag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  color: #49739B;
  background: rgba(73,115,155,0.09);
  border-radius: 4px;
  padding: 6px 12px;
  letter-spacing: 0.03em;
  align-self: flex-start;
}

.prtns .partnerlist .pcard h4 {
  font-size: 17px;
  line-height: 1.45;
  color: #1e2d3d;
  margin: 0;
  letter-spacing: -0.01em;
}

.prtns .partnerlist .pcard .pdesc {
  font-size: 15px;
  line-height: 1.65;
  color: #4a5a6a;
  margin: 0;
  flex: 1;
}

.prtns .partnerlist .pcard .pname {
  font-size: 14px;
  line-height: 1.45;
  color: #49739B;
  border-top: 1px solid rgba(211,187,181,0.45);
  padding-top: 12px;
  margin-top: 6px;
}

.prtns .partnerlist .pcard .pname strong {
  color: #1e2d3d;
  display: block;
  font-size: 15px;
}

.prtns .collab {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.prtns .collab .bgimg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prtns .collab .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(8px) brightness(0.35);
  transform: scale(1.06);
}

.prtns .collab .collabinner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.prtns .collab .collabinner .clabel {
  font-size: 15px;
  line-height: 1.45;
  color: #D3BBB5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.prtns .collab .collabinner h3 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px 0;
}

.prtns .collab .collabinner h3 em {
  font-style: normal;
  color: #D3BBB5;
}

.prtns .collab .collabinner .cleft {
  display: flex;
  flex-direction: column;
}

.prtns .collab .collabinner .cright {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prtns .collab .collabinner .cright .ctext {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.prtns .collab .collabinner .cright .csteps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prtns .collab .collabinner .cright .cstep {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  box-shadow: 1px 5px 22px 0 rgba(73,115,155,0.11);
  transition: background 0.2s ease-out;
}

.prtns .collab .collabinner .cright .cstep:hover {
  background: rgba(255,255,255,0.11);
}

.prtns .collab .collabinner .cright .cstep .cnum {
  font-size: 20px;
  line-height: 1.2;
  color: #D3BBB5;
  font-weight: 700;
  min-width: 32px;
}

.prtns .collab .collabinner .cright .cstep .csteptxt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prtns .collab .collabinner .cright .cstep .csteptxt h5 {
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
}

.prtns .collab .collabinner .cright .cstep .csteptxt p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

.prtns .collab .imgthumb {
  margin-top: 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 1px 9px 52px 0 rgba(73,115,155,0.13);
  position: relative;
}

.prtns .collab .imgthumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.72;
}

.prtns .collab .imgthumb .imlabel {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 14px;
  line-height: 1.45;
  color: #fff;
  background: rgba(73,115,155,0.72);
  border-radius: 4px;
  padding: 6px 12px;
}

@media (max-width: 900px) {
  .prtns .titleblock {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 24px;
  }
  .prtns .titleblock .txtside {
    padding-right: 0;
  }
  .prtns .titleblock .imgside {
    height: 260px;
  }
  .prtns .partnerlist .plhead {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .prtns .partnerlist .pgrid {
    grid-template-columns: 1fr;
  }
  .prtns .collab .collabinner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .prtns .titleblock .mainhead {
    font-size: 34px;
  }
  .prtns .partnerlist .plhead h2 {
    font-size: 34px;
  }
  .prtns .collab .collabinner h3 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .prtns .partnerlist .pgrid {
    grid-template-columns: 1fr;
  }
  .prtns .titleblock .mainhead {
    font-size: 28px;
  }
}

.ld {
  background: #fff;
  overflow-x: clip;
}

.ld .pgwrap {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@keyframes diagSlideIn {
  from {
    opacity: 0;
    transform: translate(-18px, -18px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.ld .titleblock {
  padding-top: 96px;
  padding-bottom: 0;
  position: relative;
}

.ld .titleblock .tbinner {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ld .titleblock .tbtext {
  animation: diagSlideIn 0.45s ease-out both;
}

.ld .titleblock .tbtext .tbkicker {
  display: inline-block;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #49739B;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid #D3BBB5;
  padding-bottom: 6px;
}

.ld .titleblock .tbtext h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a2533;
  margin: 0 0 24px 0;
  max-width: 820px;
}

.ld .titleblock .tbtext h1 .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld .titleblock .tbtext .tbdesc {
  font-size: 17px;
  line-height: 1.65;
  color: #3a4450;
  max-width: 620px;
  margin: 0;
}

.ld .titleblock .tbdeco {
  position: absolute;
  top: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.18;
  pointer-events: none;
}

.ld .titleblock .tbdeco span {
  display: block;
  height: 1px;
  background: #49739B;
}

.ld .titleblock .tbimgrow {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: end;
  animation: diagSlideIn 0.35s ease-out 0.15s both;
}

.ld .titleblock .tbimgrow .imgmain {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  height: 340px;
}

.ld .titleblock .tbimgrow .imgmain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ld .titleblock .tbimgrow .tbstat {
  background: #F9F5F1;
  border-radius: 14px 14px 0 0;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 260px;
  justify-content: center;
}

.ld .titleblock .tbimgrow .tbstat .statnum {
  font-size: 48px;
  line-height: 1.2;
  color: #49739B;
  letter-spacing: -0.03em;
}

.ld .titleblock .tbimgrow .tbstat .statlabel {
  font-size: 15px;
  line-height: 1.45;
  color: #3a4450;
}

.ld .diffblock {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.ld .diffblock .diffgrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}

.ld .diffblock .difflabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #49739B;
  margin-bottom: 24px;
}

.ld .diffblock h2 {
  font-size: 20px;
  line-height: 1.45;
  color: #1a2533;
  letter-spacing: -0.01em;
  margin: 0;
}

.ld .diffblock h2 .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld .diffblock .diffitems {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ld .diffblock .diffitem {
  padding: 24px 0;
  border-bottom: 1px solid #e8e2dc;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.ld .diffblock .diffitem:first-child {
  border-top: 1px solid #e8e2dc;
}

.ld .diffblock .diffitem .dnum {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D3BBB5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.ld .diffblock .diffitem .dnum svg {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
}

.ld .diffblock .diffitem .dnum span {
  font-size: 14px;
  line-height: 1.2;
  color: #49739B;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.ld .diffblock .diffitem .dtxt h4 {
  font-size: 17px;
  line-height: 1.45;
  color: #1a2533;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.ld .diffblock .diffitem .dtxt p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0;
}

.ld .objblock {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #F9F5F1;
  position: relative;
}

.ld .objblock .objsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.ld .objblock .objleft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ld .objblock .objlabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #49739B;
}

.ld .objblock h2 {
  font-size: 20px;
  line-height: 1.45;
  color: #1a2533;
  letter-spacing: -0.01em;
  margin: 0;
}

.ld .objblock h2 .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld .objblock .objimg {
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
}

.ld .objblock .objimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ld .objblock .objright {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ld .objblock .objcard {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
}

.ld .objblock .objcard h5 {
  font-size: 15px;
  line-height: 1.45;
  color: #49739B;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.ld .objblock .objcard p {
  font-size: 15px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0;
}

.ld .objblock .objdeco {
  position: absolute;
  bottom: 48px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.12;
  pointer-events: none;
}

.ld .objblock .objdeco span {
  display: block;
  height: 1px;
  background: #49739B;
}

.ld .adaptblock {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.ld .adaptblock .adaptheader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}

.ld .adaptblock .adaptlabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #49739B;
  margin-bottom: 12px;
}

.ld .adaptblock h2 {
  font-size: 20px;
  line-height: 1.45;
  color: #1a2533;
  letter-spacing: -0.01em;
  margin: 0;
}

.ld .adaptblock h2 .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld .adaptblock .adaptdesc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0;
}

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

.ld .adaptblock .adaptcard {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 3px 4px 0 rgba(73, 115, 155, 0.06);
  transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
  cursor: default;
}

.ld .adaptblock .adaptcard:hover {
  box-shadow: 1px 9px 52px 0 rgba(73, 115, 155, 0.13);
  transform: translateY(-4px);
}

.ld .adaptblock .adaptcard .cardimg {
  height: 200px;
  overflow: hidden;
}

.ld .adaptblock .adaptcard .cardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease-out;
}

.ld .adaptblock .adaptcard:hover .cardimg img {
  transform: scale(1.04);
}

.ld .adaptblock .adaptcard .cardbody {
  padding: 24px;
  background: #fff;
}

.ld .adaptblock .adaptcard .cardbody h4 {
  font-size: 17px;
  line-height: 1.45;
  color: #1a2533;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.ld .adaptblock .adaptcard .cardbody p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0;
}

.ld .adaptblock .adaptgrid .adaptcard:nth-child(2) {
  margin-top: 48px;
}

.ld .whoblock {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.ld .whoblock .whobg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.ld .whoblock .whobg .bgtop {
  flex: 0 0 50%;
  background: #49739B;
}

.ld .whoblock .whobg .bgbot {
  flex: 0 0 50%;
  background: #F9F5F1;
}

.ld .whoblock .whoinner {
  position: relative;
  z-index: 2;
}

.ld .whoblock .wholabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #D3BBB5;
  margin-bottom: 12px;
}

.ld .whoblock h2 {
  font-size: 20px;
  line-height: 1.45;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 48px 0;
  max-width: 640px;
}

.ld .whoblock h2 .acc {
  color: #D3BBB5;
}

.ld .whoblock .whogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ld .whoblock .whocard {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease-out;
}

.ld .whoblock .whocard:hover {
  box-shadow: 1px 9px 52px 0 rgba(73, 115, 155, 0.13);
}

.ld .whoblock .whocard h5 {
  font-size: 15px;
  line-height: 1.45;
  color: #1a2533;
  margin: 0;
  letter-spacing: -0.01em;
}

.ld .whoblock .whocard p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0;
}

.ld .whoblock .whocard .cardtag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  color: #49739B;
  background: #F9F5F1;
  border-radius: 4px;
  padding: 6px 12px;
  align-self: flex-start;
}

.ld .readyblock {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #fff;
}

.ld .readyblock .readygrid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}

.ld .readyblock .readylabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #49739B;
  margin-bottom: 12px;
}

.ld .readyblock h2 {
  font-size: 20px;
  line-height: 1.45;
  color: #1a2533;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
}

.ld .readyblock h2 .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld .readyblock .readyimg {
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
}

.ld .readyblock .readyimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ld .readyblock .readylist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ld .readyblock .readylist li {
  padding: 24px 0 24px 24px;
  border-bottom: 1px solid #e8e2dc;
  font-size: 15px;
  line-height: 1.65;
  color: #3a4450;
  position: relative;
}

.ld .readyblock .readylist li:first-child {
  border-top: 1px solid #e8e2dc;
}

.ld .readyblock .readylist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49739B;
}

.ld .readyblock .readylist li strong {
  color: #1a2533;
  font-weight: 600;
}

.ld .commitblock {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #F9F5F1;
}

.ld .commitblock .commitinner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ld .commitblock .commitlabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #49739B;
  margin-bottom: 12px;
}

.ld .commitblock h2 {
  font-size: 20px;
  line-height: 1.45;
  color: #1a2533;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
}

.ld .commitblock h2 .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld .commitblock .commitdesc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0 0 24px 0;
}

.ld .commitblock .commitsteps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ld .commitblock .cstep {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e0d8d2;
  align-items: start;
}

.ld .commitblock .cstep:first-child {
  border-top: 1px solid #e0d8d2;
}

.ld .commitblock .cstep .stepring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D3BBB5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.ld .commitblock .cstep .stepring svg {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
}

.ld .commitblock .cstep .stepring span {
  font-size: 14px;
  line-height: 1.2;
  color: #49739B;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.ld .commitblock .cstep .steptxt h5 {
  font-size: 15px;
  line-height: 1.45;
  color: #1a2533;
  margin: 0 0 6px 0;
}

.ld .commitblock .cstep .steptxt p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a4450;
  margin: 0;
}

.ld .commitblock .commitcloser {
  background: #49739B;
  border-radius: 14px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ld .commitblock .commitcloser h4 {
  font-size: 20px;
  line-height: 1.45;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.ld .commitblock .commitcloser p {
  font-size: 15px;
  line-height: 1.65;
  color: #D3BBB5;
  margin: 0;
}

.ld .commitblock .commitcloser .cllink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 187, 181, 0.5);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: border-color 0.2s ease-out, color 0.15s ease-out;
}

.ld .commitblock .commitcloser .cllink:hover {
  border-color: #D3BBB5;
  color: #D3BBB5;
}

@media (max-width: 900px) {
  .ld .titleblock .tbimgrow {
    grid-template-columns: 1fr;
  }
  .ld .titleblock .tbimgrow .tbstat {
    height: auto;
  }
  .ld .diffblock .diffgrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ld .objblock .objsplit {
    grid-template-columns: 1fr;
  }
  .ld .adaptblock .adaptheader {
    grid-template-columns: 1fr;
  }
  .ld .adaptblock .adaptgrid {
    grid-template-columns: 1fr;
  }
  .ld .adaptblock .adaptgrid .adaptcard:nth-child(2) {
    margin-top: 0;
  }
  .ld .whoblock .whogrid {
    grid-template-columns: 1fr;
  }
  .ld .readyblock .readygrid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ld .commitblock .commitinner {
    grid-template-columns: 1fr;
  }
  .ld .titleblock .tbtext h1 {
    font-size: 34px;
  }
}

.ctus {
  background: #F9F5F1;
  padding: 0;
  overflow-x: clip;
}

.ctus .strip-img {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.ctus .strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ctus .strip-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, rgba(73,115,155,0.82) 18%, rgba(211,187,181,0.38) 100%);
}

.ctus .strip-img .blob1 {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 40px;
  background: rgba(73,115,155,0.22);
  filter: blur(48px);
  top: -80px;
  left: 8%;
  pointer-events: none;
}

.ctus .strip-img .blob2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: rgba(211,187,181,0.28);
  filter: blur(36px);
  bottom: -60px;
  right: 14%;
  pointer-events: none;
}

.ctus .titlezone {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 48px 96px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.ctus .titleleft {
  flex: 0 0 320px;
}

.ctus .titleright {
  flex: 1;
  padding-top: 12px;
}

.ctus .pagelabel {
  display: inline-block;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #49739B;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 2px solid #D3BBB5;
  padding-bottom: 6px;
}

.ctus .pagetitle {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #1e2d3d;
  margin: 0 0 24px;
}

.ctus .pagetitle .acc {
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus .pagedesc {
  font-size: 17px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0 0 24px;
}

.ctus .pagelink {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.45;
  color: #49739B;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid #D3BBB5;
  padding-bottom: 2px;
  transition: color 0.2s ease-out, border-color 0.25s ease-out;
}

.ctus .pagelink:hover {
  color: #1e2d3d;
  border-color: #49739B;
}

.ctus .pagelink svg {
  flex-shrink: 0;
}

.ctus .infocards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctus .infocard {
  border: 1.5px solid #D3BBB5;
  border-radius: 14px;
  padding: 24px;
  background: #fff;
  box-shadow: 1px 3px 4px 0 rgba(73,115,155,0.06);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.ctus .infocard:hover {
  box-shadow: 1px 5px 22px 0 rgba(73,115,155,0.11);
  transform: translateY(-2px);
}

.ctus .infocard .iclabel {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #49739B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ctus .infocard .icval {
  font-size: 15px;
  line-height: 1.65;
  color: #1e2d3d;
  font-weight: 500;
  text-decoration: none;
  display: block;
  transition: color 0.15s ease-out;
}

.ctus .infocard .icval:hover {
  color: #49739B;
}

.ctus .formblock {
  background: #fff;
  border-top: 2px solid #D3BBB5;
}

.ctus .formwrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}

.ctus .formleft {
  position: sticky;
  top: 48px;
}

.ctus .formleft .flabel {
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #49739B;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.ctus .formleft .ftitle {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #1e2d3d;
  margin: 0 0 24px;
  background: linear-gradient(277deg, #49739B 18%, #D3BBB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus .formleft .fdesc {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0 0 24px;
}

.ctus .formleft .fdashedbox {
  border: 1.5px dashed #49739B;
  border-radius: 14px;
  padding: 24px;
  background: rgba(73,115,155,0.04);
}

.ctus .formleft .fdashedbox .dbtext {
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0;
}

.ctus .formleft .fdashedbox .dbtext strong {
  color: #49739B;
  font-weight: 600;
}

.ctus .formright form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus .fieldrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ctus .fieldgrp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus .fieldgrp label {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #1e2d3d;
  letter-spacing: 0.02em;
}

.ctus .fieldgrp label .req {
  color: #49739B;
  margin-left: 2px;
}

.ctus .fieldinput {
  font-size: 15px;
  line-height: 1.45;
  color: #1e2d3d;
  background: #F9F5F1;
  border: 1.5px solid #D3BBB5;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  outline: none;
  box-shadow: inset 1px 1px 2px rgba(73,115,155,0.06);
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.ctus .fieldinput::placeholder {
  color: rgba(30,45,61,0.38);
}

.ctus .fieldinput:focus {
  border-color: #49739B;
  box-shadow: inset 1px 1px 2px rgba(73,115,155,0.08), 0 0 0 3px rgba(73,115,155,0.12);
  background: #fff;
}

.ctus .fieldinput:invalid:not(:placeholder-shown) {
  border-color: #b94a48;
}

.ctus select.fieldinput {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2349739B' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.ctus textarea.fieldinput {
  resize: vertical;
  min-height: 120px;
}

.ctus .privacyrow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.ctus .privacyrow input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #49739B;
  cursor: pointer;
}

.ctus .privacyrow .privtext {
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
}

.ctus .privacyrow .privtext a {
  color: #49739B;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-out;
}

.ctus .privacyrow .privtext a:hover {
  color: #1e2d3d;
}

.ctus .submitbtn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  background: #49739B;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  box-shadow: 1px 5px 22px 0 rgba(73,115,155,0.11);
  transition: box-shadow 0.25s ease-out, color 0.2s ease-out;
}

.ctus .submitbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1e2d3d;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease-out;
  border-radius: 4px;
}

.ctus .submitbtn:hover::before {
  transform: scaleX(1);
}

.ctus .submitbtn:hover {
  box-shadow: 1px 9px 52px 0 rgba(73,115,155,0.13);
}

.ctus .submitbtn span,
.ctus .submitbtn svg {
  position: relative;
  z-index: 1;
}

.ctus .submitbtn:focus-visible {
  outline: 3px solid #49739B;
  outline-offset: 3px;
}

@keyframes dropbounce {
  0% { opacity: 0; transform: translateY(-32px); }
  65% { opacity: 1; transform: translateY(6px); }
  80% { transform: translateY(-3px); }
  92% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

.ctus .pagetitle {
  animation: dropbounce 0.55s ease-out both;
}

.ctus .pagelabel {
  animation: dropbounce 0.45s 0.1s ease-out both;
}

.ctus .pagelink {
  animation: dropbounce 0.45s 0.2s ease-out both;
}

@media (max-width: 900px) {
  .ctus .titlezone {
    flex-direction: column;
    padding: 48px 24px 48px;
    gap: 24px;
  }

  .ctus .titleleft {
    flex: none;
    width: 100%;
  }

  .ctus .pagetitle {
    font-size: 32px;
  }

  .ctus .formwrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px;
  }

  .ctus .formleft {
    position: static;
  }

  .ctus .fieldrow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ctus .strip-img {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .ctus .titlezone {
    padding: 24px 24px 48px;
  }

  .ctus .formwrap {
    padding: 48px 24px;
  }
}

.successPage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px;
    background-color: #F9F5F1;
}

.successPage .confirmWrap {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 1px 9px 52px 0 rgba(73, 115, 155, 0.13);
    text-align: center;
}

.successPage .iconMark {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 40px;
    background: linear-gradient(277deg, #D3BBB5 18%, #49739B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.successPage .iconMark svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.successPage .confirmTitle {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1b2a38;
    margin: 0 0 12px;
    background: linear-gradient(277deg, #D3BBB5 18%, #49739B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.successPage .confirmSubtitle {
    font-size: 20px;
    line-height: 1.45;
    color: #2c3e50;
    margin: 0 0 24px;
}

.successPage .confirmBody {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0 0 48px;
}

.successPage .confirmBody span {
    color: #49739B;
    font-weight: 600;
}

.successPage .dividerLine {
    width: 48px;
    height: 2px;
    background: linear-gradient(277deg, #D3BBB5 18%, #49739B 100%);
    border-radius: 4px;
    margin: 0 auto 48px;
}

.successPage .actionGroup {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.successPage .btnPrimary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 14px;
    border: none;
    background: #49739B;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.25s ease-out, color 0.2s ease-out;
    box-shadow: 1px 5px 22px 0 rgba(73, 115, 155, 0.11);
}

.successPage .btnPrimary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2c5278;
    transform: translateX(-100%);
    transition: transform 0.35s ease-out;
    border-radius: 14px;
    z-index: 0;
}

.successPage .btnPrimary:hover::before {
    transform: translateX(0);
}

.successPage .btnPrimary:hover {
    box-shadow: 1px 9px 52px 0 rgba(73, 115, 155, 0.13);
}

.successPage .btnPrimary svg,
.successPage .btnPrimary span {
    position: relative;
    z-index: 1;
}

.successPage .btnPrimary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.successPage .btnSecondary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 14px;
    border: 1.5px solid #D3BBB5;
    background: transparent;
    color: #49739B;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease-out, background 0.35s ease-out;
}

.successPage .btnSecondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #F9F5F1;
    transform: translateX(-100%);
    transition: transform 0.35s ease-out;
    z-index: 0;
}

.successPage .btnSecondary:hover::before {
    transform: translateX(0);
}

.successPage .btnSecondary:hover {
    border-color: #49739B;
}

.successPage .btnSecondary svg,
.successPage .btnSecondary span {
    position: relative;
    z-index: 1;
}

.successPage .btnSecondary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.successPage .metaNote {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.45;
    color: #7a8a99;
}

@media (max-width: 600px) {
    .successPage {
        padding: 48px 12px;
    }

    .successPage .confirmWrap {
        padding: 48px 24px;
    }

    .successPage .confirmTitle {
        font-size: 20px;
    }

    .successPage .confirmSubtitle {
        font-size: 17px;
    }

    .successPage .actionGroup {
        flex-direction: column;
        align-items: stretch;
    }

    .successPage .btnPrimary,
    .successPage .btnSecondary {
        justify-content: center;
    }
}
